/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2006-2013 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * http://glassfish.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package wsa.submission.fromwsdl.crinterop.s11.client; import testutil.MemberSubmissionAddressingConstants; import testutil.WsaSOAPMessages; import static testutil.WsaUtils.*; import testutil.XMLTestCase; import static wsa.submission.fromwsdl.crinterop.s11.client.BindingProviderUtil.*; import static wsa.submission.fromwsdl.crinterop.s11.common.TestConstants.*; import javax.xml.soap.SOAPFault; import javax.xml.soap.SOAPMessage; import javax.xml.ws.WebServiceException; import javax.xml.ws.soap.SOAPFaultException; import java.io.ByteArrayOutputStream; /** * @author Arun Gupta * @authir Rama Pulavarthi */ public class EchoClient extends XMLTestCase { public EchoClient(String name) { super(name); } /** * SOAP 1.1 two-way message. */ public void test1130() throws Exception { String result = createStub().echo("test1130"); assertEquals("test1130", result); } /** * SOAP 1.1 two-way message with ReplyTo address of anonymous. */ public void test1131() throws Exception { String result = createStub().echo("test1131"); assertEquals("test1131", result); } /** * SOAP 1.1 two-way message with ReplyTo address containing Reference Parameters. */ public void test1132() throws Exception { SOAPMessage response = invoke(createDispatchWithWSDLWithoutAddressing(), MESSAGES.getReplyToRefpsEchoMessage(), S11_NS, getAddress(), ECHO_IN_ACTION, "test1132"); ByteArrayOutputStream baos = new ByteArrayOutputStream(); response.writeTo(baos); assertXpathExists(ENVELOPE_HEADER, baos.toString()); assertXpathExists(ACTION_HEADER, baos.toString()); assertXpathEvaluatesTo(ACTION_HEADER, baos.toString(), ECHO_OUT_ACTION); } /** * SOAP 1.2 two-way message with fault. ReplyTo and FaultTo addresses containing Reference Parameters. */ public void test1133() throws Exception { try { invoke(createDispatchWithWSDLWithoutAddressing(), MESSAGES.getReplyToFaultToRefpsEchoMessage(), S11_NS, getAddress(), ECHO_IN_ACTION, "fault-test1133"); fail("Fault must be thrown"); } catch (SOAPFaultException e) { assertNotNull(e.getFault()); assertEquals(WsaSOAPMessages.USER_FAULT_CODE, e.getFault().getFaultCodeAsQName()); } } /** * SOAP 1.1 two-way message with fault. FaultTo is defaulted, ReplyTo address contains Reference Parameters. */ public void test1134() throws Exception { try { invoke(createDispatchWithWSDLWithoutAddressing(), MESSAGES.getReplyToRefpsEchoMessage(), S11_NS, getAddress(), ECHO_IN_ACTION, "fault-test1134"); fail("Fault must be thrown"); } catch (SOAPFaultException e) { assertNotNull(e.getFault()); assertEquals(WsaSOAPMessages.USER_FAULT_CODE, e.getFault().getFaultCodeAsQName()); } } /** * SOAP 1.1 two-way message with fault. FaultTo is anonymous, ReplyTo is non-anonymous. */ public void test1135() throws Exception { try { invoke(createDispatchWithWSDLWithoutAddressing(), MESSAGES.getNonAnonymousReplyToAnonymousFaultToMessage(), S11_NS, getAddress(), getNonAnonymousAddress(), ECHO_IN_ACTION, "fault-test1135"); fail("Fault must be thrown"); } catch (SOAPFaultException e) { assertNotNull(e.getFault()); assertEquals(WsaSOAPMessages.USER_FAULT_CODE, e.getFault().getFaultCodeAsQName()); } } /** * SOAP 1.1 two-way message with a duplicate To header. */ public void test1140() throws Exception { try { invoke(createDispatchWithWSDLWithAddressing(), MESSAGES.getDuplicateToMessage(), S11_NS, getAddress(), getAddress(), "test1140"); fail("SOAPFaultException must be thrown"); } catch (SOAPFaultException e) { assertNotNull(e.getFault()); SOAPFault f = e.getFault(); assertInvalidHeaderFaultCode(f.getFaultCodeAsQName(), MemberSubmissionAddressingConstants.WSA_NAMESPACE_NAME); } } /** * SOAP 1.1 two-way message with a duplicate Reply-To header. */ public void test1141() throws Exception { try { invoke(createDispatchWithWSDLWithAddressing(), MESSAGES.getDuplicateReplyToMessage(), S11_NS, "test1141"); fail("SOAPFaultException must be thrown"); } catch (SOAPFaultException e) { assertNotNull(e.getFault()); SOAPFault f = e.getFault(); assertInvalidHeaderFaultCode(f.getFaultCodeAsQName(), MemberSubmissionAddressingConstants.WSA_NAMESPACE_NAME); } } /** * SOAP 1.1 two-way message with a duplicate Fault-To header. */ public void test1142() throws Exception { try { invoke(createDispatchWithWSDLWithAddressing(), MESSAGES.getDuplicateFaultToMessage(), S11_NS, "test1142"); fail("SOAPFaultException must be thrown"); } catch (SOAPFaultException e) { assertNotNull(e.getFault()); SOAPFault f = e.getFault(); assertInvalidHeaderFaultCode(f.getFaultCodeAsQName(), MemberSubmissionAddressingConstants.WSA_NAMESPACE_NAME); } } /** * SOAP 1.1 two-way message with a duplicate action header. */ public void test1143() throws Exception { try { invoke(createDispatchWithWSDLWithAddressing(), MESSAGES.getDuplicateActionMessage(), S11_NS,getAddress(),ECHO_IN_ACTION, ECHO_IN_ACTION, "test1143"); fail("SOAPFaultException must be thrown"); } catch (SOAPFaultException e) { assertNotNull(e.getFault()); SOAPFault f = e.getFault(); assertInvalidHeaderFaultCode(f.getFaultCodeAsQName(), MemberSubmissionAddressingConstants.WSA_NAMESPACE_NAME); } } /** * SOAP 1.1 two-way message with a duplicate MessageID header. */ public void test1144() throws Exception { try { invoke(createDispatchWithWSDLWithAddressing(), MESSAGES.getDuplicateMessageIDMessage(), S11_NS, "test1144"); fail("SOAPFaultException must be thrown"); } catch (SOAPFaultException e) { assertNotNull(e.getFault()); SOAPFault f = e.getFault(); assertInvalidHeaderFaultCode(f.getFaultCodeAsQName(), MemberSubmissionAddressingConstants.WSA_NAMESPACE_NAME); } } /** * SOAP 1.1 two-way message with no Action header. */ // public void test1147() throws Exception { // try { // invoke(createDispatchWithWSDLWithoutAddressing(), // MESSAGES.getNoActionEchoMessage(), // S11_NS, // getAddress(), // "test1147"); // fail("SOAPFaultException must be thrown"); // } catch (SOAPFaultException e) { // assertNotNull(e.getFault()); // SOAPFault f = e.getFault(); // assertHeaderRequiredFaultCode(f.getFaultCodeAsQName()); // } // } /** * SOAP 1.1 two-way message with a non-anonymous ReplyTo address. */ public void test1150() throws Exception { try { invoke(createDispatchWithWSDLWithoutAddressing(), MESSAGES.getNonAnonymousReplyToMessage(), S11_NS, getAddress(), getNonAnonymousAddress(), ECHO_IN_ACTION, "test1150"); fail("WebServiceException must be thrown"); } catch (WebServiceException e) { assertEquals("No response returned.", e.getMessage()); } } /** * SOAP 1.1 two-way message with a non-anonymous ReplyTo address and a none FaultTo. */ public void test1152() throws Exception { try { invoke(createDispatchWithWSDLWithoutAddressing(), MESSAGES.getNonAnonymousReplyToNoneFaultToMessage(), S11_NS, getAddress(), getNonAnonymousAddress(), ECHO_IN_ACTION, "fault-test1152"); fail("WebServiceException must be thrown"); } catch (WebServiceException e) { assertEquals("No response returned.", e.getMessage()); } } /** * SOAP 1.1 two-way message with wsa:From. */ public void test1170() throws Exception { SOAPMessage response = invoke(createDispatchWithWSDLWithoutAddressing(), MESSAGES.getFromMustUnderstandEchoMessage(), S11_NS, getAddress(), ECHO_IN_ACTION, "test1170"); ByteArrayOutputStream baos = new ByteArrayOutputStream(); response.writeTo(baos); assertXpathExists(ENVELOPE_HEADER, baos.toString()); assertXpathExists(ACTION_HEADER, baos.toString()); assertXpathEvaluatesTo(ACTION_HEADER, baos.toString(), ECHO_OUT_ACTION); } private static final String ENVELOPE_HEADER = "//S11:Envelope"; private static final String ACTION_HEADER = "//S11:Envelope/S11:Header/wsa04:Action"; }