/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2004-2013 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * http://glassfish.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package fromjava.nosei_apt.client; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; import testutil.ClientServerTestUtil; import javax.xml.namespace.QName; import javax.xml.ws.Service; import javax.xml.ws.Holder; import java.util.ArrayList; import java.util.List; /** * @author JAX-RPC Development Team */ public class EchoClient extends TestCase { private Service service; private static Echo staticStub; private static Echo stub; ClientServerTestUtil util = new ClientServerTestUtil(); public EchoClient(String name) throws Exception{ super(name); EchoService service = new EchoService(); stub = service.getEchoPort(); ClientServerTestUtil.setTransport(stub); } public void testSimple() throws Exception { Bar bar = new Bar(); bar.setAge(33); Holder<String> strHolder = new Holder<String>(); strHolder.value = "fred"; assertTrue(stub.echoString("test").equals("test")); assertTrue(stub.echoString("Mary & Paul").equals("Mary & Paul")); assertTrue(stub.echoBar(bar).getAge() == bar.getAge()); assertTrue(stub.echoLong(33L) == 33L); InnerBar innerBar = new InnerBar(); innerBar.setName("doug"); assertTrue(stub.echoInnerBar(innerBar).getName().equals("dougdoug")); } public void testExceptions() throws Exception { try { stub.echoString("Exception1"); assertTrue(false); } catch (Exception1_Exception e){ Exception1 ex = e.getFaultInfo(); assertTrue(ex.getFaultString().equals("my exception1")); assertTrue(ex.isValid()); assertTrue(ex.getMessage().equals("my exception1 Message")); } try { stub.echoString("Fault1"); assertTrue(false); } catch (Fault1 e){ FooException ex = e.getFaultInfo(); assertTrue(e.getMessage().equals("fault1")); assertTrue(ex.getVarFloat() == 44F); assertTrue(ex.getVarInt() == 33); assertTrue(ex.getVarString().equals("foo")); } try { stub.echoString("WSDLBarException"); assertTrue(false); } catch (WSDLBarException e){ Bar ex = e.getFaultInfo(); assertTrue(e.getMessage().equals("my barException")); assertTrue(ex.getAge() == 33); } try { stub.echoString("Fault2"); assertTrue(false); } catch (Fault2_Exception e){ assertTrue(e.getMessage().equals("my fault2")); Fault2 fault2 = e.getFaultInfo(); assertTrue(fault2.getAge() == 33); } try { stub.echoString("Interrupted"); assertTrue(false); } catch (InterruptedException_Exception e){ assertTrue(e.getMessage().equals("bummer")); InterruptedException ie = e.getFaultInfo(); assertTrue(ie.getMessage().equals("bummer")); } } public void testHolders() throws Exception { Holder<String> strHolder = new Holder<String>(); strHolder.value = "fred"; assertTrue(stub.outString("tmp", 44, strHolder).equals("tmp")); assertTrue(strHolder.value.equals("tmp44")); strHolder.value = "fred"; assertTrue(stub.inOutString("tmp", strHolder, 44).equals("tmp")); assertTrue(strHolder.value.equals("fredfred")); Holder<Long> longHolder = new Holder<Long>(); assertTrue(stub.outLong(33, "tmp", longHolder) == 33); assertTrue(longHolder.value == 345L); assertTrue(stub.inOutLong(44, longHolder, "tmp") == 44); assertTrue(longHolder.value == 690L); } public void testHeaders() throws Exception { EchoInHeader echoInHeader = new EchoInHeader(); echoInHeader.setArg0(33); echoInHeader.setArg2("fred"); EchoInHeaderResponse echoInHeaderResp = stub.echoInHeader(echoInHeader, 34L); assertTrue(echoInHeaderResp.getReturn() == 34L); EchoInOutHeader echoInOutHeader = new EchoInOutHeader(); echoInOutHeader.setArg0(33); Holder<Long> longHolder = new Holder<Long>(new Long(44)); echoInOutHeader.setArg2("fred"); EchoInOutHeaderResponse echoInOutHeaderResp = stub.echoInOutHeader(echoInOutHeader, longHolder); assertTrue(echoInOutHeaderResp.getReturn().equals("fred88")); assertTrue(longHolder.value == 88L); EchoOutHeader echoOutHeader = new EchoOutHeader(); echoOutHeader.setArg0(33); longHolder = new Holder<Long>(); echoOutHeader.setArg2("fred"); // Holder<EchoOutHeaderResponse> echoOutHeaderResp = new Holder<EchoOutHeaderResponse>(); // stub.echoOutHeader(echoOutHeader, echoOutHeaderResp, longHolder); // assertTrue(echoOutHeaderResp.value.getReturn().equals("fred33")); EchoOutHeaderResponse response = stub.echoOutHeader(echoOutHeader, longHolder); assertTrue(response.getReturn().equals("fred33")); assertTrue(longHolder.value == 33L); } public void testArray1() throws Exception { List<String> strArray = new ArrayList<String>(); strArray.add("Mary"); strArray.add("Paul"); List<String> returnArray = stub.echoStringArray(strArray); assertTrue(returnArray.size() == strArray.size()); assertTrue(returnArray.get(0).equals(strArray.get(0))); assertTrue(returnArray.get(1).equals(strArray.get(1))); } public void testArray2() throws Exception { Bar bar = new Bar(); bar.setAge(33); Bar bar2 = new Bar(); bar2.setAge(44); List<Bar> barArray = new ArrayList<Bar>(); barArray.add(bar); barArray.add(bar2); List<Bar> resultArray = stub.echoBarArray(barArray); assertTrue(resultArray.size() == 2); assertTrue(resultArray.get(0).getAge() == bar.getAge()); assertTrue(resultArray.get(1).getAge() == bar2.getAge()); } public void testOneway() throws Exception { stub.oneway(); assertTrue(stub.verifyOneway()); } public void testVoid() throws Exception { stub.voidTest(); assertTrue(true); } public void testOverloaded() throws Exception { assertTrue(stub.overloadedOperation("fred").equals("fred")); Req req = new Req(); req.setArg0("earnie"); req.setArg1(" & bert"); assertTrue(stub.overloadedOperation2(req).getReturn().equals("earnie & bert")); assertTrue(stub.overloadedOperation3("huey", ", duey", " and luey").equals("huey, duey and luey")); assertTrue(stub.overloadedOperation4("1", "2", "3", "4").equals("1 2 3 4")); } public void testResultHeaders() throws Exception { Holder<Integer> intHolder = new Holder<Integer>(); EchoIntHeaderResult result = new EchoIntHeaderResult(); result.setArg0(33); Holder<EchoIntHeaderResultResponse> respHolder = new Holder<EchoIntHeaderResultResponse>(); stub.echoIntHeaderResult(result, respHolder, intHolder); assertTrue(intHolder.value == 66); } public static Test suite() { TestSuite suite = new TestSuite(); suite.addTestSuite(EchoClient.class); return suite; } /* * for debugging */ public static void main(String [] args) { try { System.setProperty("uselocal", "true"); EchoClient testor = new EchoClient("TestClient"); testor.testExceptions(); } catch (Exception e) { e.printStackTrace(); } } }