/* * JBoss, Home of Professional Open Source. * Copyright 2015, 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.eardeployment; import java.io.File; import java.io.IOException; import java.net.URL; import javax.wsdl.Definition; import javax.wsdl.factory.WSDLFactory; import javax.wsdl.xml.WSDLReader; import javax.xml.namespace.QName; import javax.xml.ws.BindingProvider; 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.asset.StringAsset; import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.jboss.ws.common.IOUtils; import org.jboss.wsf.test.JBossWSTest; import org.jboss.wsf.test.JBossWSTestHelper; import org.junit.Test; import org.junit.runner.RunWith; /** * Test ear deployment * * [JBWS-1616] Verify correct bahaviour of @WebService.wsdlLocation * * ---- * * Test the wsdl is published to local filesystem; this test assumes * client and server share the filesystem * * @author Thomas.Diesler@jboss.org * @author <a href="mailto:richard.opalka@jboss.org">Richard Opalka</a> * @author <a href="mailto:alessio.soldano@jboss.com">Alessio Soldano</a> */ @RunWith(Arquillian.class) public class EarTestCase extends JBossWSTest { private File wsdlFileDir; private static long testStart = System.currentTimeMillis(); @ArquillianResource private URL baseURL; @Deployment(testable = false) public static EnterpriseArchive createDeployment() { JavaArchive archive1 = ShrinkWrap.create(JavaArchive.class, "jaxws-samples-eardeployment-ejb3.jar"); archive1 .setManifest(new StringAsset("Manifest-Version: 1.0\n" + "Dependencies: org.jboss.logging\n")) .addClass(org.jboss.test.ws.jaxws.samples.eardeployment.EJB3Bean.class) .addAsManifestResource(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/samples/eardeployment/WEB-INF/wsdl/Endpoint.wsdl"), "wsdl/Endpoint.wsdl") .addAsManifestResource(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/samples/eardeployment/WEB-INF/wsdl/TestService.xsd"), "wsdl/TestService.xsd"); WebArchive archive2 = ShrinkWrap.create(WebArchive.class, "jaxws-samples-eardeployment-pojo.war"); archive2 .setManifest(new StringAsset("Manifest-Version: 1.0\n" + "Dependencies: org.jboss.logging,org.jboss.ws.common,org.jboss.as.server\n")) .addClass(org.jboss.test.ws.jaxws.samples.eardeployment.JSEBean.class) .addClass(org.jboss.test.ws.jaxws.samples.eardeployment.SupportServlet.class) .addAsWebInfResource(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/samples/eardeployment/WEB-INF/jboss-web.xml"), "jboss-web.xml") .addAsWebInfResource(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/samples/eardeployment/WEB-INF/wsdl/Endpoint.wsdl"), "wsdl/Endpoint.wsdl") .addAsWebInfResource(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/samples/eardeployment/WEB-INF/wsdl/TestService.xsd"), "wsdl/TestService.xsd") .setWebXML(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/samples/eardeployment/WEB-INF/web.xml")); EnterpriseArchive archive = ShrinkWrap.create(EnterpriseArchive.class, "jaxws-samples-eardeployment.ear"); archive .setManifest(new StringAsset("Manifest-Version: 1.0\n" + "Dependencies: org.jboss.as.server\n")) .addAsModule(archive1) .addAsModule(archive2) .addAsManifestResource(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/samples/eardeployment/META-INF/permissions.xml"), "permissions.xml"); return archive; } @Test @RunAsClient public void testEJB3Endpoint() throws Exception { String soapAddress = "http://" + baseURL.getHost() + ":" + baseURL.getPort() + "/jaxws-samples-eardeployment-ejb3/EndpointService/Endpoint"; QName serviceName = new QName("http://eardeployment.jaxws/", "EndpointService"); Service service = Service.create(new URL(soapAddress + "?wsdl"), serviceName); Endpoint port = service.getPort(Endpoint.class); Definition wsdl = getWSDLDefinition(soapAddress + "?wsdl"); String nsURI = wsdl.getNamespace("jbws1616"); assertEquals("http://jira.jboss.org/jira/browse/JBWS-1616", nsURI); BindingProvider bp = (BindingProvider)port; bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, soapAddress); String helloWorld = "Hello world!"; String retObj = port.echo(helloWorld); assertEquals(helloWorld, retObj); } @Test @RunAsClient public void testJSEEndpoint() throws Exception { String soapAddress = baseURL + "JSEBean"; QName serviceName = new QName("http://eardeployment.jaxws/", "EndpointService"); Service service = Service.create(new URL(soapAddress + "?wsdl"), serviceName); Endpoint port = service.getPort(Endpoint.class); Definition wsdl = getWSDLDefinition(soapAddress + "?wsdl"); String nsURI = wsdl.getNamespace("jbws1616"); assertEquals("http://jira.jboss.org/jira/browse/JBWS-1616", nsURI); BindingProvider bp = (BindingProvider)port; bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, soapAddress); String helloWorld = "Hello world!"; String retObj = port.echo(helloWorld); assertEquals(helloWorld, retObj); } @Test @RunAsClient public void testEJB3EndpointPublishedWsdl() throws Exception { String soapAddress = "http://" + baseURL.getHost() + ":" + baseURL.getPort() + "/jaxws-samples-eardeployment-ejb3/EndpointService/Endpoint"; QName serviceName = new QName("http://eardeployment.jaxws/", "EndpointService"); File file = new File(getWsdlFileDir().getAbsolutePath() + File.separator + "jaxws-samples-eardeployment.ear" + File.separator + "jaxws-samples-eardeployment-ejb3.jar" + File.separator + "Endpoint.wsdl"); assertTrue("Wsdl file not found", file.exists()); assertTrue("Stale wsdl file found", file.lastModified() > testStart - 1000); URL wsdlUrl = file.toURI().toURL(); Service service = Service.create(wsdlUrl, serviceName); Endpoint port = service.getPort(Endpoint.class); BindingProvider bp = (BindingProvider)port; bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, soapAddress); String helloWorld = "Hello world!"; String retObj = port.echo(helloWorld); assertEquals(helloWorld, retObj); } @Test @RunAsClient public void testJSEEndpointPublishedWsdl() throws Exception { String soapAddress = baseURL + "JSEBean"; QName serviceName = new QName("http://eardeployment.jaxws/", "EndpointService"); File file = new File(getWsdlFileDir().getAbsolutePath() + File.separator + "jaxws-samples-eardeployment.ear" + File.separator + "jaxws-samples-eardeployment-pojo.war" + File.separator + "Endpoint.wsdl"); assertTrue("Wsdl file not found", file.exists()); assertTrue("Stale wsdl file found", file.lastModified() > testStart - 1000); URL wsdlUrl = file.toURI().toURL(); Service service = Service.create(wsdlUrl, serviceName); Endpoint port = service.getPort(Endpoint.class); BindingProvider bp = (BindingProvider)port; bp.getRequestContext().put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY, soapAddress); String helloWorld = "Hello world!"; String retObj = port.echo(helloWorld); assertEquals(helloWorld, retObj); } private File getWsdlFileDir() throws IOException { if (wsdlFileDir == null) { URL url = new URL(baseURL + "/support"); wsdlFileDir = new File(IOUtils.readAndCloseStream(url.openStream()), "wsdl"); } return wsdlFileDir; } private Definition getWSDLDefinition(String wsdlLocation) throws Exception { WSDLFactory wsdlFactory = WSDLFactory.newInstance(); WSDLReader wsdlReader = wsdlFactory.newWSDLReader(); Definition definition = wsdlReader.readWSDL(null, wsdlLocation); return definition; } }