Package org.jboss.test.ws.jaxws.jaxbintros

Source Code of org.jboss.test.ws.jaxws.jaxbintros.AnnotationReaderTestCase

/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., and individual contributors as indicated
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.test.ws.jaxws.jaxbintros;

import com.sun.xml.bind.api.JAXBRIContext;
import junit.framework.TestCase;
import org.jboss.jaxb.intros.IntroductionsAnnotationReader;
import org.jboss.jaxb.intros.IntroductionsConfigParser;
import org.jboss.jaxb.intros.configmodel.JaxbIntros;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.Unmarshaller;
import javax.xml.transform.stream.StreamSource;
import java.io.ByteArrayInputStream;
import java.io.FileInputStream;
import java.util.HashMap;
import java.util.Map;

/**
* @author Heiko.Braun@jboss.com
* @version $Revision: 4596 $
*/
public class AnnotationReaderTestCase extends TestCase
{
   public void testUnmarshal() throws Exception
   {
      String reqString =
        "   <ns1:user xmlns:ns1='http://org.jboss.ws/provider' string='Kermit'>" +
          "      <qname>The Frog</qname>" +
          "    </ns1:user>";

      JaxbIntros config = IntroductionsConfigParser.parseConfig(
        new FileInputStream("resources/jaxws/jaxbintros/WEB-INF/jaxb-intros.xml")
      );
     
      IntroductionsAnnotationReader reader = new IntroductionsAnnotationReader(config);
      Map<String, Object> jaxbConfig = new HashMap<String, Object>();

      jaxbConfig.put(JAXBRIContext.DEFAULT_NAMESPACE_REMAP, "http://org.jboss.ws/provider");
      jaxbConfig.put(JAXBRIContext.ANNOTATION_READER, reader);

      JAXBContext jaxbContext = JAXBContext.newInstance(new Class[] {UserType.class}, jaxbConfig);
      Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();

      JAXBElement jbe = unmarshaller.unmarshal(
        new StreamSource(
          new ByteArrayInputStream(reqString.getBytes())

        ), UserType.class
      );

      UserType ut = (UserType)jbe.getValue();
      assertEquals("Kermit", ut.getString());
      assertEquals("The Frog", ut.getQname().getLocalPart());

   }
}
TOP

Related Classes of org.jboss.test.ws.jaxws.jaxbintros.AnnotationReaderTestCase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.