/* * 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.engine; import java.io.File; import java.io.StringReader; import java.util.List; import javax.xml.stream.XMLStreamException; import junit.framework.Test; import junit.framework.TestSuite; import org.apache.axiom.om.OMAbstractFactory; import org.apache.axiom.om.OMElement; import org.apache.axiom.om.OMXMLBuilderFactory; import org.apache.axiom.soap.SOAP11Constants; import org.apache.axiom.soap.SOAP12Constants; import org.apache.axiom.soap.SOAPEnvelope; import org.apache.axis2.AxisFault; import org.apache.axis2.Constants; import org.apache.axis2.client.OperationClient; import org.apache.axis2.client.Options; import org.apache.axis2.client.ServiceClient; import org.apache.axis2.context.ConfigurationContext; import org.apache.axis2.context.ConfigurationContextFactory; import org.apache.axis2.context.MessageContext; import org.apache.axis2.engine.util.FaultHandler; import org.apache.axis2.engine.util.TestConstants; import org.apache.axis2.integration.TestingUtils; import org.apache.axis2.integration.UtilServer; import org.apache.axis2.integration.UtilServerBasedTestCase; import org.apache.axis2.wsdl.WSDLConstants; public class FaultHandlingTest extends UtilServerBasedTestCase implements TestConstants { protected String testResourceDir = "test-resources"; public static Test suite() { return getTestSetup(new TestSuite(FaultHandlingTest.class)); } protected void setUp() throws Exception { ConfigurationContext configurationContext = UtilServer.getConfigurationContext(); List inPhasesUptoAndIncludingPostDispatch = configurationContext.getAxisConfiguration().getInFlowPhases(); Phase phaseOne = (Phase)inPhasesUptoAndIncludingPostDispatch.get(0); phaseOne.addHandler(new FaultHandler()); } public void testFaultHandlingWithParamsSetToMsgCtxt() throws AxisFault { OMElement payload = getOMElement(FaultHandler.ERR_HANDLING_WITH_MSG_CTXT); testFaultHandling(payload); } public void testFaultHandlingWithParamsSetToAxisFault() throws AxisFault { OMElement payload = getOMElement(FaultHandler.ERR_HANDLING_WITH_AXIS_FAULT); testFaultHandling(payload); } private void testFaultHandling(OMElement payload) throws AxisFault { ConfigurationContext configContext = ConfigurationContextFactory.createConfigurationContextFromFileSystem( "target/test-resources/integrationRepo", null); ServiceClient sender = new ServiceClient(configContext, null); // test with SOAP 1.2 Options options = new Options(); options.setTo(targetEPR); options.setTransportInProtocol(Constants.TRANSPORT_HTTP); options.setExceptionToBeThrownOnSOAPFault(false); options.setSoapVersionURI(SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI); sender.setOptions(options); String result = sender.sendReceive(payload).toString(); assertTrue(result.indexOf(FaultHandler.M_FAULT_EXCEPTION) > -1); assertTrue(result.indexOf(FaultHandler.DETAIL_MORE_INFO) > -1); assertTrue(result.indexOf(FaultHandler.FAULT_REASON) > -1); // test with SOAP 1.1 options = new Options(); options.setTo(targetEPR); options.setTransportInProtocol(Constants.TRANSPORT_HTTP); options.setExceptionToBeThrownOnSOAPFault(false); options.setSoapVersionURI(SOAP11Constants.SOAP_ENVELOPE_NAMESPACE_URI); sender.setOptions(options); result = sender.sendReceive(payload).toString(); assertTrue(result.indexOf(FaultHandler.M_FAULT_EXCEPTION) > -1); assertTrue(result.indexOf(FaultHandler.DETAIL_MORE_INFO) > -1); assertTrue(result.indexOf(FaultHandler.FAULT_REASON) > -1); } private OMElement getOMElement(String elementLocalName) { return OMAbstractFactory.getOMFactory().createOMElement(elementLocalName, null); } public void testRefParamsWithFaultTo() throws AxisFault, XMLStreamException { SOAPEnvelope soapEnvelope = getSOAPEnvelopeWithRefParamsInFaultTo(); SOAPEnvelope resposeEnvelope = getResponse(soapEnvelope); System.out.println("resposeEnvelope = " + resposeEnvelope); } private SOAPEnvelope getSOAPEnvelopeWithRefParamsInFaultTo() throws XMLStreamException { String soap = "<env:Envelope xmlns:env=\"http://www.w3.org/2003/05/soap-envelope\" xmlns:wsa=\"http://www.w3.org/2005/08/addressing\"> \n" + " <env:Header> \n" + " <wsa:Action>http://example.org/action/echoIn</wsa:Action> \n" + " <wsa:To>http://www-lk.wso2.com:9762/axis2/services/wsaTestService/</wsa:To> \n" + " <wsa:MessageID>urn:uuid:BAB79B77-E9AE-4B9F-A8B4-624BB9E7E919</wsa:MessageID> \n" + " <wsa:ReplyTo> \n" + " <wsa:Address>http://www.w3.org/2005/08/addressing/anonymous</wsa:Address> \n" + " <wsa:ReferenceParameters xmlns:customer=\"http://example.org/customer\"> \n" + " <customer:CustomerKey>Key#123456789</customer:CustomerKey> \n" + " </wsa:ReferenceParameters> \n" + " </wsa:ReplyTo> \n" + " <wsa:FaultTo> \n" + " <wsa:Address>http://www.w3.org/2005/08/addressing/anonymous</wsa:Address> \n" + " <wsa:ReferenceParameters xmlns:customer=\"http://example.org/customer\"> \n" + " <customer:CustomerKey>Fault#123456789</customer:CustomerKey> \n" + " </wsa:ReferenceParameters> \n" + " </wsa:FaultTo> \n" + " </env:Header> \n" + " <env:Body> \n" + " <m:echoIn xmlns:m=\"http://example.org/echo\" /> \n" + " </env:Body>\n" + " </env:Envelope>"; return OMXMLBuilderFactory.createSOAPModelBuilder(new StringReader(soap)).getSOAPEnvelope(); } private SOAPEnvelope getResponse(SOAPEnvelope inEnvelope) throws AxisFault { ConfigurationContext confctx = ConfigurationContextFactory. createConfigurationContextFromFileSystem(TestingUtils.prefixBaseDirectory("target/test-resources/integrationRepo"), null); ServiceClient client = new ServiceClient(confctx, null); Options options = new Options(); client.setOptions(options); options.setSoapVersionURI(SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI); options.setTo(targetEPR); options.setTransportInProtocol(Constants.TRANSPORT_HTTP); options.setExceptionToBeThrownOnSOAPFault(false); MessageContext msgctx = new MessageContext(); msgctx.setEnvelope(inEnvelope); OperationClient opClient = client.createClient(ServiceClient.ANON_OUT_IN_OP); opClient.addMessageContext(msgctx); opClient.execute(true); return opClient.getMessageContext(WSDLConstants.MESSAGE_LABEL_IN_VALUE).getEnvelope(); } public File getTestResourceFile(String relativePath) { return new File(TestingUtils.prefixBaseDirectory(testResourceDir), relativePath); } protected void tearDown() throws Exception { } public void testExceptionInformationExtractionFromAxisFault() { try { ConfigurationContext configContext = ConfigurationContextFactory.createConfigurationContextFromFileSystem( TestingUtils.prefixBaseDirectory("target/test-resources/integrationRepo"), null); ServiceClient sender = new ServiceClient(configContext, null); OMElement payload = getOMElement(FaultHandler.ERR_HANDLING_WITH_AXIS_FAULT); // test with SOAP 1.2 Options options = new Options(); options.setTo(targetEPR); options.setTransportInProtocol(Constants.TRANSPORT_HTTP); options.setExceptionToBeThrownOnSOAPFault(true); options.setSoapVersionURI(SOAP12Constants.SOAP_ENVELOPE_NAMESPACE_URI); sender.setOptions(options); sender.sendReceive(payload).toString(); } catch (AxisFault axisFault) { assertEquals(FaultHandler.FAULT_EXCEPTION, axisFault.getFaultCode()); assertEquals(FaultHandler.FAULT_EXCEPTION, axisFault.getFaultCodeElement().getValueAsQName()); assertTrue(axisFault.getFaultDetailElement().toString() .indexOf(FaultHandler.DETAIL_MORE_INFO) > -1); assertTrue(axisFault.getFaultReasonElement().toString() .indexOf(FaultHandler.FAULT_REASON) > -1); } } }