Package org.apache.axis2.groovy

Source Code of org.apache.axis2.groovy.GroovyServiceTest

/*
* Copyright 2004,2005 The Apache Software Foundation.
*
* Licensed 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.groovy;

import junit.framework.TestCase;
import org.apache.axis2.Constants;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.axis2.client.Call;
import org.apache.axis2.client.Options;
import org.apache.axis2.description.AxisService;
import org.apache.axis2.engine.EchoRawXMLTest;
import org.apache.axis2.integration.UtilServer;
import org.apache.axis2.om.OMAbstractFactory;
import org.apache.axis2.om.OMElement;
import org.apache.axis2.om.OMFactory;
import org.apache.axis2.om.impl.llom.builder.StAXOMBuilder;
import org.apache.axis2.soap.SOAPFactory;

import javax.xml.namespace.QName;
import javax.xml.stream.XMLInputFactory;
import javax.xml.stream.XMLStreamException;
import javax.xml.stream.XMLStreamReader;
import java.io.ByteArrayInputStream;
import java.io.StringWriter;

public class GroovyServiceTest extends TestCase {


    private EndpointReference targetEPR =
            new EndpointReference("http://127.0.0.1:"
                    + (UtilServer.TESTING_PORT)
                    + "/axis/services/groovyService/echo");
    private QName serviceName = new QName("groovyService");
    private QName operationName = new QName("echo");


    public GroovyServiceTest() {
        super(EchoRawXMLTest.class.getName());
    }

    public GroovyServiceTest(String testName) {
        super(testName);
    }

    protected void setUp() throws Exception {
        String repository = "target/groovyRepo";
        UtilServer.start(repository);
        UtilServer.getConfigurationContext().getAxisConfiguration()
                .engageModule(new QName("addressing"));
    }

    protected void tearDown() throws Exception {
        UtilServer.unDeployService(serviceName);
        UtilServer.stop();
    }


    public void testServiceExists() throws Exception {
        AxisService desc = UtilServer.getConfigurationContext().
                getAxisConfiguration().getService(serviceName.getLocalPart());
        assertNotNull(desc);
    }


    public void testEchoXMLSync() throws Exception {
        SOAPFactory fac = OMAbstractFactory.getSOAP11Factory();
        //OMElement payload = createPayLoad();
        OMElement payload = getpayLoad();

        Call call =
                new Call("target/test-resources/intregrationRepo");

        Options options = new Options();
        options.setTo(targetEPR);
        options.setTransportInfo(Constants.TRANSPORT_HTTP,
                Constants.TRANSPORT_HTTP,
                false);
        options.setAction(operationName.getLocalPart());

        call.setClientOptions(options);

        OMElement result = call.invokeBlocking(operationName.getLocalPart(),
                payload);
        assertNotNull(result);
        OMElement person = (OMElement) result.getFirstOMChild();
        assertEquals(person.getLocalName(), "person");

        StringWriter writer = new StringWriter();
        result.build();
        result.serialize(writer);
        writer.flush();
        call.close();
    }


    private OMElement getpayLoad() throws XMLStreamException {
        String str = "<ADDRESS><DET><NAME>Ponnampalam Thayaparan</NAME> <OCC>Student</OCC>" +
                "<ADD>3-2/1,Hudson Road,Colombo-03</ADD><GENDER>Male</GENDER>" +
                "</DET><DET><NAME>Eranka Samaraweera</NAME><OCC>Student</OCC><ADD>Martara</ADD>" +
                "<GENDER>Male</GENDER></DET><DET><NAME>Sriskantharaja Ahilan</NAME>" +
                "<OCC>Student</OCC><ADD>Trincomalee</ADD><GENDER>Male</GENDER>" +
                "</DET></ADDRESS>";
        XMLStreamReader xmlReader = XMLInputFactory.newInstance().createXMLStreamReader(new
                ByteArrayInputStream(str.getBytes()));
        OMFactory fac = OMAbstractFactory.getOMFactory();

        StAXOMBuilder staxOMBuilder = new
                StAXOMBuilder(fac, xmlReader);
        return staxOMBuilder.getDocumentElement();
    }


}
TOP

Related Classes of org.apache.axis2.groovy.GroovyServiceTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.