/* * 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.description.feature; import junit.framework.TestCase; import org.apache.axis2.addressing.AddressingConstants; import org.apache.axis2.jaxws.addressing.SubmissionAddressing; import org.apache.axis2.description.AxisService; import org.apache.axis2.description.Parameter; import org.apache.axis2.jaxws.description.DescriptionFactory; import org.apache.axis2.jaxws.description.EndpointDescription; import org.apache.axis2.jaxws.description.ServiceDescription; import org.apache.axis2.util.Utils; import javax.jws.WebService; import javax.xml.namespace.QName; import javax.xml.ws.soap.Addressing; import javax.xml.ws.soap.AddressingFeature.Responses; public class AddressingFeatureTests extends TestCase { private static final String ns = "http://jaxws.axis2.apache.org/metadata/feature/addressing"; private static final String defaultServicePortName = "DefaultServicePort"; private static final String plainServicePortName = "PlainServicePort"; private static final String disabledServicePortName = "DisabledServicePort"; private static final String requiredServicePortName = "RequiredServicePort"; private static final String responsesALLServicePortName = "ResponsesALLServicePort"; private static final String responsesANONServicePortName = "ResponsesANONServicePort"; private static final String responsesNONANONServicePortName = "ResponsesNONANONServicePort"; private static final String responsesNoAddressingServicePortName = "ResponsesNoAddressingServicePort"; public void testNoAnnotation() { ServiceDescription sd = DescriptionFactory.createServiceDescription(DefaultService.class); EndpointDescription ed = sd.getEndpointDescription(new QName(ns, defaultServicePortName)); assertNotNull(ed); AxisService axisService = ed.getAxisService(); Parameter versionParam = axisService.getParameter(AddressingConstants.WS_ADDRESSING_VERSION); Parameter disabledParam = axisService.getParameter(AddressingConstants.DISABLE_ADDRESSING_FOR_IN_MESSAGES); Parameter requiredParam = axisService.getParameter(AddressingConstants.ADDRESSING_REQUIREMENT_PARAMETER); assertNull(versionParam); assertNull(disabledParam); assertNull(requiredParam); } public void testPlainAnnotation() { ServiceDescription sd = DescriptionFactory.createServiceDescription(PlainService.class); EndpointDescription ed = sd.getEndpointDescription(new QName(ns, plainServicePortName)); assertNotNull(ed); AxisService axisService = ed.getAxisService(); Parameter versionParam = axisService.getParameter(AddressingConstants.WS_ADDRESSING_VERSION); Parameter disabledParam = axisService.getParameter(AddressingConstants.DISABLE_ADDRESSING_FOR_IN_MESSAGES); Parameter requiredParam = axisService.getParameter(AddressingConstants.ADDRESSING_REQUIREMENT_PARAMETER); String version = Utils.getParameterValue(versionParam); String disabled = Utils.getParameterValue(disabledParam); String required = Utils.getParameterValue(requiredParam); assertEquals(AddressingConstants.Final.WSA_NAMESPACE, version); assertEquals("false", disabled); assertEquals(AddressingConstants.ADDRESSING_UNSPECIFIED, required); } public void testDisabled() { ServiceDescription sd = DescriptionFactory.createServiceDescription(DisabledService.class); EndpointDescription ed = sd.getEndpointDescription(new QName(ns, disabledServicePortName)); assertNotNull(ed); AxisService axisService = ed.getAxisService(); Parameter versionParam = axisService.getParameter(AddressingConstants.WS_ADDRESSING_VERSION); Parameter disabledParam = axisService.getParameter(AddressingConstants.DISABLE_ADDRESSING_FOR_IN_MESSAGES); Parameter requiredParam = axisService.getParameter(AddressingConstants.ADDRESSING_REQUIREMENT_PARAMETER); String version = Utils.getParameterValue(versionParam); String disabled = Utils.getParameterValue(disabledParam); String required = Utils.getParameterValue(requiredParam); assertEquals(AddressingConstants.Submission.WSA_NAMESPACE, version); assertEquals("false", disabled); assertEquals(AddressingConstants.ADDRESSING_UNSPECIFIED, required); } public void testRequired() { ServiceDescription sd = DescriptionFactory.createServiceDescription(RequiredService.class); EndpointDescription ed = sd.getEndpointDescription(new QName(ns, requiredServicePortName)); assertNotNull(ed); AxisService axisService = ed.getAxisService(); Parameter versionParam = axisService.getParameter(AddressingConstants.WS_ADDRESSING_VERSION); Parameter disabledParam = axisService.getParameter(AddressingConstants.DISABLE_ADDRESSING_FOR_IN_MESSAGES); Parameter requiredParam = axisService.getParameter(AddressingConstants.ADDRESSING_REQUIREMENT_PARAMETER); String version = Utils.getParameterValue(versionParam); String disabled = Utils.getParameterValue(disabledParam); String required = Utils.getParameterValue(requiredParam); assertEquals(AddressingConstants.Final.WSA_NAMESPACE, version); assertEquals("false", disabled); assertEquals(AddressingConstants.ADDRESSING_REQUIRED, required); } /** * Validate that annotation value Addressing.responses=ALL is set correctly on the AxisService */ public void testResponsesALL() { ServiceDescription sd = DescriptionFactory.createServiceDescription(ResponsesALLService.class); EndpointDescription ed = sd.getEndpointDescription(new QName(ns, responsesALLServicePortName)); assertNotNull(ed); AxisService axisService = ed.getAxisService(); Parameter responsesParam = axisService.getParameter(AddressingConstants.WSAM_INVOCATION_PATTERN_PARAMETER_NAME); assertNotNull("Responses parameter not set", responsesParam); String responsesType = Utils.getParameterValue(responsesParam); assertEquals("Wrong type of responses returned", AddressingConstants.WSAM_INVOCATION_PATTERN_BOTH, responsesType); } /** * Validate that annotation value Addressing.responses=ANONYMOUS is set correctly on the AxisService */ public void testResponsesANON() { ServiceDescription sd = DescriptionFactory.createServiceDescription(ResponsesANONService.class); EndpointDescription ed = sd.getEndpointDescription(new QName(ns, responsesANONServicePortName)); assertNotNull(ed); AxisService axisService = ed.getAxisService(); Parameter responsesParam = axisService.getParameter(AddressingConstants.WSAM_INVOCATION_PATTERN_PARAMETER_NAME); assertNotNull("Responses parameter not set", responsesParam); String responsesType = Utils.getParameterValue(responsesParam); assertEquals("Wrong type of responses returned", AddressingConstants.WSAM_INVOCATION_PATTERN_SYNCHRONOUS, responsesType); } /** * Validate that annotation value Addressing.responses=NON_ANONYMOUS is set correctly on the AxisService */ public void testResponsesNONANON() { ServiceDescription sd = DescriptionFactory.createServiceDescription(ResponsesNONANONService.class); EndpointDescription ed = sd.getEndpointDescription(new QName(ns, responsesNONANONServicePortName)); assertNotNull(ed); AxisService axisService = ed.getAxisService(); Parameter responsesParam = axisService.getParameter(AddressingConstants.WSAM_INVOCATION_PATTERN_PARAMETER_NAME); assertNotNull("Responses parameter not set", responsesParam); String responsesType = Utils.getParameterValue(responsesParam); assertEquals("Wrong type of responses returned", AddressingConstants.WSAM_INVOCATION_PATTERN_ASYNCHRONOUS, responsesType); } /** * Validate that no annotation for Addressing does not set the associated addressing parameter on the AxisService */ public void testResponsesNoAddressing() { ServiceDescription sd = DescriptionFactory.createServiceDescription(ResponsesNoAddressingService.class); EndpointDescription ed = sd.getEndpointDescription(new QName(ns, responsesNoAddressingServicePortName)); assertNotNull(ed); AxisService axisService = ed.getAxisService(); Parameter responsesParam = axisService.getParameter(AddressingConstants.WSAM_INVOCATION_PATTERN_PARAMETER_NAME); assertNull("Responses parameter was set", responsesParam); } /** * Validate that annotation Addressing with no responses attribute explicitly set gets the correct default on the AxisService */ public void testResponsesDefault() { ServiceDescription sd = DescriptionFactory.createServiceDescription(PlainService.class); EndpointDescription ed = sd.getEndpointDescription(new QName(ns, plainServicePortName)); assertNotNull(ed); AxisService axisService = ed.getAxisService(); Parameter responsesParam = axisService.getParameter(AddressingConstants.WSAM_INVOCATION_PATTERN_PARAMETER_NAME); assertNotNull("Responses parameter not set", responsesParam); String responsesType = Utils.getParameterValue(responsesParam); assertEquals("Wrong type of responses returned", AddressingConstants.WSAM_INVOCATION_PATTERN_BOTH, responsesType); } @WebService(targetNamespace=ns, portName=defaultServicePortName) class DefaultService { public double getQuote(String symbol) { return 101.01; } } @WebService(targetNamespace=ns, portName=plainServicePortName) @Addressing class PlainService { public double getQuote(String symbol) { return 101.01; } } @WebService(targetNamespace=ns, portName=disabledServicePortName) @Addressing(enabled=false) class DisabledService { public double getQuote(String symbol) { return 101.01; } } @WebService(targetNamespace=ns, portName=requiredServicePortName) @Addressing(required=true) class RequiredService { public double getQuote(String symbol) { return 101.01; } } @WebService(targetNamespace=ns, portName=responsesALLServicePortName) @Addressing(required=true, responses=Responses.ALL) class ResponsesALLService { public double getQuote(String symbol) { return 101.01; } } @WebService(targetNamespace=ns, portName=responsesANONServicePortName) @Addressing(required=true, responses=Responses.ANONYMOUS) class ResponsesANONService { public double getQuote(String symbol) { return 101.01; } } @WebService(targetNamespace=ns, portName=responsesNONANONServicePortName) @Addressing(required=true, responses=Responses.NON_ANONYMOUS) class ResponsesNONANONService { public double getQuote(String symbol) { return 101.01; } } @WebService(targetNamespace=ns, portName=responsesNoAddressingServicePortName) @SubmissionAddressing(required=true) class ResponsesNoAddressingService { public double getQuote(String symbol) { return 101.01; } } }