TestXMLLoader.java

54 lines | 1.797 kB Blame History Raw Download
/*
 * Copyright 2010-2011 Ning, Inc.
 *
 * Ning licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

package com.ning.billing.util.config;

import javax.xml.bind.JAXBException;
import javax.xml.transform.TransformerException;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.net.URISyntaxException;

import org.testng.annotations.Test;
import org.xml.sax.SAXException;

import com.ning.billing.catalog.api.InvalidConfigException;

import static org.testng.Assert.assertEquals;


public class TestXMLLoader {
    public static final String TEST_XML =
            "<xmlTestClass>" +
                    "	<foo>foo</foo>" +
                    "	<bar>1.0</bar>" +
                    "	<lala>42</lala>" +
                    "</xmlTestClass>";

    @Test
    public void test() throws SAXException, InvalidConfigException, JAXBException, IOException, TransformerException, URISyntaxException, ValidationException {
        final InputStream is = new ByteArrayInputStream(TEST_XML.getBytes());
        final XmlTestClass test = XMLLoader.getObjectFromStream(new URI("internal:/"), is, XmlTestClass.class);
        assertEquals(test.getFoo(), "foo");
        assertEquals(test.getBar(), 1.0);
        assertEquals(test.getLala(), 42);
    }


}