FileDocCategorySizeDatePackage
InteropTestDocLitServiceTestCase.javaAPI DocApache Axis 1.44973Sat Apr 22 18:57:28 BST 2006test.wsdl.interop3.groupE.client

InteropTestDocLitServiceTestCase.java

/*
 * Copyright 2002-2004 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.
 */

/**
 * This file was based on a testcase auto-generated from WSDL by the
 * Apache Axis Wsdl2java emitter.
 *
 * @author Glyn Normington <glyn@apache.org>
 */

package test.wsdl.interop3.groupE.client;

import junit.framework.AssertionFailedError;

public class InteropTestDocLitServiceTestCase extends junit.framework.TestCase {
    public static java.net.URL url;

    public InteropTestDocLitServiceTestCase(String name) {
        super(name);
    }
    public void testInteropTestDocLitEchoString() {
        InteropTestDocLit binding;
        try {
            if (url == null) {
                binding = new InteropTestDocLitServiceLocator().getInteropTestDocLit();
            } else {
                binding = new InteropTestDocLitServiceLocator().getInteropTestDocLit(url);
            }
        } catch (javax.xml.rpc.ServiceException jre) {
            throw new AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        try {
            String input = "a string";
            String value = binding.echoString(input);
            if (!value.equals(input)) {
                throw new AssertionFailedError("String echo failed");
            }
        }
        catch (java.rmi.RemoteException re) {
            throw new AssertionFailedError("Remote Exception caught: " + re);
        }
    }

    public void testInteropTestDocLitEchoStringArray() {
        InteropTestDocLit binding;
        try {
            if (url == null) {
                binding = new InteropTestDocLitServiceLocator().getInteropTestDocLit();
            } else {
                binding = new InteropTestDocLitServiceLocator().getInteropTestDocLit(url);
            }
        }
        catch (javax.xml.rpc.ServiceException jre) {
            throw new AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        try {
            String[] input = {"string 1", "string 2"};
            String[] value = binding.echoStringArray(input);

            boolean equal = true;
            if (input.length != value.length) {
                equal = false;
            } else {
                for (int i = 0; i < value.length; i++) {
                    if (!input[i].equals(value[i])) {
                        equal = false;
                    }
                }
            }
            if (!equal) {
                throw new AssertionFailedError("StringArray echo failed");
            }
        }
        catch (java.rmi.RemoteException re) {
            throw new AssertionFailedError("Remote Exception caught: " + re);
        }
    }

    public void testInteropTestDocLitEchoStruct() {
        InteropTestDocLit binding;
        try {
            binding = new InteropTestDocLitServiceLocator().getInteropTestDocLit();        }
        catch (javax.xml.rpc.ServiceException jre) {
            throw new AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        try {
            SOAPStruct input = new SOAPStruct();
            input.setVarFloat(3.142f);
            input.setVarInt(3);
            input.setVarString("Pi");
            SOAPStruct value = binding.echoStruct(input);
            if (value.getVarFloat() != input.getVarFloat() ||
                value.getVarInt() != input.getVarInt() ||
                !value.getVarString().equals(input.getVarString())) {
                throw new AssertionFailedError("Struct echo failed");
            }
        }
        catch (java.rmi.RemoteException re) {
            throw new AssertionFailedError("Remote Exception caught: " + re);
        }
    }

    public void testInteropTestDocLitEchoVoid() {
        InteropTestDocLit binding;
        try {
            binding = new InteropTestDocLitServiceLocator().getInteropTestDocLit();        }
        catch (javax.xml.rpc.ServiceException jre) {
            throw new AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        try {
            binding.echoVoid();
        }
        catch (java.rmi.RemoteException re) {
            throw new AssertionFailedError("Remote Exception caught: " + re);
        }
    }

}