/* * JBoss, Home of Professional Open Source. * Copyright 2006, 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.jbws1809; import java.io.File; import java.net.URL; import java.util.Iterator; 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.Document; import org.w3c.dom.Element; /** * Test the JAXBIntroduction features. * * Check if the WSDL is generated correctly. * The introduction should turn a property into a xsd:attribute declaration. * * @author heiko.braun@jboss.com */ @RunWith(Arquillian.class) public class JBWS1809TestCase extends JBossWSTest { @ArquillianResource private URL baseURL; @Deployment(testable = false) public static JavaArchive createDeployments() { JavaArchive archive = ShrinkWrap.create(JavaArchive.class, "jaxws-jbws1809.jar"); archive .addManifest() .addClass(org.jboss.test.ws.jaxws.jbws1809.DocRequest.class) .addClass(org.jboss.test.ws.jaxws.jbws1809.DocResponse.class) .addClass(org.jboss.test.ws.jaxws.jbws1809.Endpoint.class) .addClass(org.jboss.test.ws.jaxws.jbws1809.EndpointImpl.class) .addAsManifestResource(new File(JBossWSTestHelper.getTestResourcesDir() + "/jaxws/jbws1809/META-INF/jaxb-intros.xml"), "jaxb-intros.xml"); return archive; } @Test @RunAsClient public void testWSDLAccess() throws Exception { URL wsdlURL = new URL(baseURL + "/jaxws-jbws1809/EndpointImpl?wsdl"); Document doc = DOMUtils.getDocumentBuilder().parse(wsdlURL.toString()); Element types = (Element)((Element)doc.getDocumentElement() .getElementsByTagNameNS("http://schemas.xmlsoap.org/wsdl/", "types").item(0)) .getElementsByTagNameNS("http://www.w3.org/2001/XMLSchema", "schema").item(0); Iterator<?> it = DOMUtils.getChildElements(types, "complexType"); boolean foundAttributeDeclaration = false; while(it.hasNext()) { Element next = (Element)it.next(); if(DOMUtils.getAttributeValue(next, "name").equals("docRequest")) { Iterator<?> it2 = DOMUtils.getChildElements(next, "attribute"); while(it2.hasNext()) { Element next2 = (Element)it2.next(); if(DOMUtils.getAttributeValue(next2, "name").equals("value")) { foundAttributeDeclaration = true; } } } } assertTrue("JAXBIntros should turn the 'docRequest.name' property into a XML attribute", foundAttributeDeclaration); } }