/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.apache.axis2.jaxws.client.proxy; import org.apache.axiom.om.OMAbstractFactory; import org.apache.axiom.om.OMElement; import org.apache.axiom.om.OMFactory; import org.apache.axis2.addressing.AddressingConstants; import org.apache.axis2.addressing.AddressingConstants.Final; import org.apache.axis2.addressing.EndpointReferenceHelper; import org.apache.axis2.jaxws.addressing.SubmissionEndpointReference; import org.apache.axis2.jaxws.addressing.SubmissionEndpointReferenceBuilder; import org.apache.axis2.jaxws.client.InterceptableClientTestCase; import org.apache.axis2.jaxws.client.TestClientInvocationController; import org.apache.axis2.jaxws.core.InvocationContext; import org.apache.axis2.jaxws.core.MessageContext; import javax.jws.WebService; import javax.xml.namespace.QName; import javax.xml.ws.Service; import javax.xml.ws.WebServiceException; import javax.xml.ws.soap.AddressingFeature; import javax.xml.ws.wsaddressing.W3CEndpointReference; import javax.xml.ws.wsaddressing.W3CEndpointReferenceBuilder; /** * This suite of tests is for the AddressingFeature configuration that can * be used on Proxy clients. */ public class ProxyAddressingFeatureTest extends InterceptableClientTestCase { private static final OMFactory OMF = OMAbstractFactory.getOMFactory(); private static final QName ELEMENT200508 = new QName(Final.WSA_NAMESPACE, "EndpointReference", "wsa"); private W3CEndpointReference w3cEPR; private SubmissionEndpointReference subEPR; @Override public void setUp() throws Exception { super.setUp(); W3CEndpointReferenceBuilder w3cBuilder = new W3CEndpointReferenceBuilder(); w3cBuilder = w3cBuilder.address("http://somewhere.com/somehow"); w3cBuilder = w3cBuilder.serviceName(new QName("http://test", "ProxyAddressingService")); w3cBuilder = w3cBuilder.endpointName(new QName("http://test", "TestPort")); w3cEPR = w3cBuilder.build(); SubmissionEndpointReferenceBuilder subBuilder = new SubmissionEndpointReferenceBuilder(); subBuilder = subBuilder.address("http://somewhere.com/somehow"); subBuilder = subBuilder.serviceName(new QName("http://test", "ProxyAddressingService")); subBuilder = subBuilder.endpointName(new QName("http://test", "TestPort")); subEPR = subBuilder.build(); } /* * Make sure Addressing is not enabled by default. */ public void testNoAddressingFeature() { Service svc = Service.create(new QName("http://test", "ProxyAddressingService")); ProxyAddressingService proxy = svc.getPort(ProxyAddressingService.class); assertNotNull(proxy); proxy.doSomething("12345"); TestClientInvocationController testController = getInvocationController(); InvocationContext ic = testController.getInvocationContext(); MessageContext request = ic.getRequestMessageContext(); String version = (String) request.getProperty(AddressingConstants.WS_ADDRESSING_VERSION); Boolean disabled = (Boolean) request.getProperty(AddressingConstants.DISABLE_ADDRESSING_FOR_OUT_MESSAGES); String responses = (String) request.getProperty(AddressingConstants.WSAM_INVOCATION_PATTERN_PARAMETER_NAME); String required = (String) request.getProperty(AddressingConstants.ADDRESSING_REQUIREMENT_PARAMETER); assertNull(version); assertTrue(disabled); assertNull(responses); assertNull(required); org.apache.axis2.context.MessageContext axis2Request = request.getAxisMessageContext(); org.apache.axis2.addressing.EndpointReference epr = axis2Request.getTo(); assertNull(epr); } /* * Test the default configuration of the AddressingFeature. */ public void testDefaultAddressingFeature() throws Exception { // Use the default feature config AddressingFeature feature = new AddressingFeature(); Service svc = Service.create(new QName("http://test", "ProxyAddressingService")); ProxyAddressingService proxy = svc.getPort(w3cEPR, ProxyAddressingService.class, feature); assertNotNull(proxy); proxy.doSomething("12345"); TestClientInvocationController testController = getInvocationController(); InvocationContext ic = testController.getInvocationContext(); MessageContext request = ic.getRequestMessageContext(); String version = (String) request.getProperty(AddressingConstants.WS_ADDRESSING_VERSION); Boolean disabled = (Boolean) request.getProperty(AddressingConstants.DISABLE_ADDRESSING_FOR_OUT_MESSAGES); String responses = (String) request.getProperty(AddressingConstants.WSAM_INVOCATION_PATTERN_PARAMETER_NAME); String required = (String) request.getProperty(AddressingConstants.ADDRESSING_REQUIREMENT_PARAMETER); assertEquals(Final.WSA_NAMESPACE, version); assertFalse(disabled); assertEquals("Wrong default responses", AddressingConstants.WSAM_INVOCATION_PATTERN_BOTH, responses); assertEquals("Wrong required attribute", AddressingConstants.ADDRESSING_UNSPECIFIED, required); org.apache.axis2.context.MessageContext axis2Request = request.getAxisMessageContext(); org.apache.axis2.addressing.EndpointReference epr = axis2Request.getTo(); OMElement omElement = EndpointReferenceHelper.toOM(OMF, epr, ELEMENT200508, Final.WSA_NAMESPACE); assertXMLEqual(w3cEPR.toString(), omElement.toString()); } /* * Test disabling the Addressing feature. */ public void testDisabledAddressingFeature() { // Set the feature to be disabled. AddressingFeature feature = new AddressingFeature(false); Service svc = Service.create(new QName("http://test", "ProxyAddressingService")); ProxyAddressingService proxy = svc.getPort(w3cEPR, ProxyAddressingService.class, feature); assertTrue("Proxy instance was null", proxy != null); proxy.doSomething("12345"); TestClientInvocationController testController = getInvocationController(); InvocationContext ic = testController.getInvocationContext(); MessageContext request = ic.getRequestMessageContext(); String version = (String) request.getProperty(AddressingConstants.WS_ADDRESSING_VERSION); Boolean disabled = (Boolean) request.getProperty(AddressingConstants.DISABLE_ADDRESSING_FOR_OUT_MESSAGES); String required = (String) request.getProperty(AddressingConstants.ADDRESSING_REQUIREMENT_PARAMETER); assertEquals(Final.WSA_NAMESPACE, version); assertTrue(disabled); assertEquals("Wrong required attribute", AddressingConstants.ADDRESSING_UNSPECIFIED, required); org.apache.axis2.context.MessageContext axis2Request = request.getAxisMessageContext(); org.apache.axis2.addressing.EndpointReference epr = axis2Request.getTo(); assertNull(epr); } /* * Test requiring the AddressingFeature. */ public void testRequiredAddressingFeature() throws Exception { // Set the feature to be required. AddressingFeature feature = new AddressingFeature(true, true); Service svc = Service.create(new QName("http://test", "ProxyAddressingService")); ProxyAddressingService proxy = svc.getPort(w3cEPR, ProxyAddressingService.class, feature); assertNotNull(proxy); proxy.doSomething("12345"); TestClientInvocationController testController = getInvocationController(); InvocationContext ic = testController.getInvocationContext(); MessageContext request = ic.getRequestMessageContext(); String version = (String) request.getProperty(AddressingConstants.WS_ADDRESSING_VERSION); Boolean disabled = (Boolean) request.getProperty(AddressingConstants.DISABLE_ADDRESSING_FOR_OUT_MESSAGES); String responses = (String) request.getProperty(AddressingConstants.WSAM_INVOCATION_PATTERN_PARAMETER_NAME); String required = (String) request.getProperty(AddressingConstants.ADDRESSING_REQUIREMENT_PARAMETER); assertEquals(Final.WSA_NAMESPACE, version); assertFalse(disabled); assertEquals("Wrong default responses", AddressingConstants.WSAM_INVOCATION_PATTERN_BOTH, responses); assertEquals("Wrong required attribute", AddressingConstants.ADDRESSING_REQUIRED, required); org.apache.axis2.context.MessageContext axis2Request = request.getAxisMessageContext(); org.apache.axis2.addressing.EndpointReference epr = axis2Request.getTo(); OMElement omElement = EndpointReferenceHelper.toOM(OMF, epr, ELEMENT200508, Final.WSA_NAMESPACE); assertXMLEqual(w3cEPR.toString(), omElement.toString()); } /* * Test the default configuration of the AddressingFeature. */ public void testInvalidAddressingFeature() { // Use the default feature config AddressingFeature feature = new AddressingFeature(); Service svc = Service.create(new QName("http://test", "ProxyAddressingService")); ProxyAddressingService proxy = svc.getPort(subEPR, ProxyAddressingService.class, feature); assertNotNull(proxy); try { proxy.doSomething("12345"); fail("An exception should have been thrown"); } catch (WebServiceException wse) { //pass } catch (Exception e) { fail("The wrong exception type was thrown."); } } @WebService() public interface ProxyAddressingService { public String doSomething(String id); } }