/* * JBoss, Home of Professional Open Source. * Copyright 2009, Red Hat Middleware LLC, and individual contributors * as indicated by the @author tags. See the copyright.txt file 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.samples.jaxbintros; import java.io.File; import java.net.URL; import java.util.Iterator; import javax.xml.namespace.QName; import javax.xml.ws.Service; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.container.test.api.RunAsClient; import org.jboss.arquillian.junit.Arquillian; import org.jboss.arquillian.test.api.ArquillianResource; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.jboss.ws.common.DOMUtils; import org.jboss.wsf.test.JBossWSTest; import org.jboss.wsf.test.JBossWSTestHelper; import org.junit.Test; import org.junit.runner.RunWith; import org.w3c.dom.Element; /** * Test the JAXBIntroduction features. * * jaxb-intros.xml can reside under META-INF or WEB-INF and should be * picked up by JAXBIntroduction deployment aspect on server side. * * @author alessio.soldano@jboss.com */ @RunWith(Arquillian.class) public class JAXBIntroTestCase extends JBossWSTest { @ArquillianResource private URL baseURL; @Deployment(testable = false) public static JavaArchive createDeployments() { JavaArchive archive = ShrinkWrap.create(JavaArchive.class, "jaxws-samples-jaxbintros.jar"); archive .addManifest() .addClass(org.jboss.test.ws.jaxws.samples.jaxbintros.Endpoint.class) .addClass(org.jboss.test.ws.jaxws.samples.jaxbintros.EndpointBean.class) .addClass(org.jboss.test.ws.jaxws.samples.jaxbintros.UserType.class) .addAsManifestResource(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/samples/jaxbintros/META-INF/jaxb-intros.xml"), "jaxb-intros.xml"); return archive; } @Test @RunAsClient public void testWSDLAccess() throws Exception { URL wsdlURL = new URL(baseURL + "/jaxws-samples-jaxbintros/EndpointService?wsdl"); Element wsdl = DOMUtils.parse(wsdlURL.openStream()); assertNotNull(wsdl); Iterator<Element> it = DOMUtils.getChildElements(wsdl, new QName("http://www.w3.org/2001/XMLSchema","attribute"), true); boolean attributeFound = false; while (it.hasNext()) { Element el = it.next(); if ("string".equals(el.getAttribute("name"))) { attributeFound = true; } } assertTrue("<xs:attribute name=\"string\" ..> not found in wsdl", attributeFound); } /** * Client side uses the annotated user type class, server side uses the plain one but has jaxbintros in place * * @throws Exception */ @Test @RunAsClient public void testAnnotatedUserEndpoint() throws Exception { URL wsdlURL = new URL(baseURL + "/jaxws-samples-jaxbintros/EndpointService?wsdl"); QName serviceName = new QName("http://org.jboss.ws/samples/jaxbintros", "EndpointBeanService"); Service service = Service.create(wsdlURL, serviceName); AnnotatedUserEndpoint port = service.getPort(AnnotatedUserEndpoint.class); AnnotatedUserType user = new AnnotatedUserType(); QName qname = new QName("ns", "local", "prefix"); user.setQname(qname); user.setString("Foo"); AnnotatedUserType result = port.echo(user); assertEquals("Foo", result.getString()); assertEquals(qname, result.getQname()); } }