From 650058d314d4de25e9cd193b1e58f0f2e20f698c Mon Sep 17 00:00:00 2001 From: antelder Date: Wed, 17 Aug 2011 10:29:14 +0000 Subject: Extend the async services test with a new client and service that work in as simple a way as possible git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1158614 13f79535-47bb-0310-9956-ffa450edef68 --- .../tuscany/sca/itest/Service1AsyncClient.java | 33 ++++++++ .../sca/itest/Service1AsyncServerImpl2.java | 31 ++++++++ .../tuscany/sca/itest/Service1ClientImpl.java | 91 ++++++++++++++++++++++ .../src/main/resources/test1.composite | 33 ++++++++ .../apache/tuscany/sca/itest/Test1TestCase.java | 54 +++++++++++++ 5 files changed, 242 insertions(+) create mode 100644 sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncClient.java create mode 100644 sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncServerImpl2.java create mode 100644 sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1ClientImpl.java create mode 100644 sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1.composite create mode 100644 sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1TestCase.java (limited to 'sca-java-2.x/trunk/testing') diff --git a/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncClient.java b/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncClient.java new file mode 100644 index 0000000000..5b76af2e8f --- /dev/null +++ b/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncClient.java @@ -0,0 +1,33 @@ +/* + * 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.tuscany.sca.itest; + +import java.util.concurrent.Future; + +import javax.xml.ws.AsyncHandler; +import javax.xml.ws.Response; + +import org.oasisopen.sca.annotation.Remotable; + +@Remotable +public interface Service1AsyncClient extends Service1 { + Response operation1Async(String input); + Future operation1Async(String input, AsyncHandler handler); +} diff --git a/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncServerImpl2.java b/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncServerImpl2.java new file mode 100644 index 0000000000..1f653ed8a8 --- /dev/null +++ b/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncServerImpl2.java @@ -0,0 +1,31 @@ +/* + * 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.tuscany.sca.itest; + +import org.oasisopen.sca.ResponseDispatch; + +public class Service1AsyncServerImpl2 implements Service1AsyncServer { + + @Override + public void operation1Async(String input, ResponseDispatch handler) { + handler.sendResponse("Service1AsyncServerImpl2.operation1Async " + input); + } + +} diff --git a/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1ClientImpl.java b/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1ClientImpl.java new file mode 100644 index 0000000000..a500b904eb --- /dev/null +++ b/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1ClientImpl.java @@ -0,0 +1,91 @@ +/* + * 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.tuscany.sca.itest; + +import javax.xml.ws.AsyncHandler; +import javax.xml.ws.Response; + +import org.oasisopen.sca.annotation.Reference; + +public class Service1ClientImpl implements Service1 { + + @Reference + Service1AsyncClient service1; + + static Object threeMutex = new Object(); + static String threeResp; + static Throwable threeEx; + + @Override + public String operation1(String input) { + + String resp = service1.operation1(input); + resp += invokeAsyncType1(input); + resp += invokeAsyncType2(input); + + return resp; + } + + private String invokeAsyncType1(String input) { + // two + Response h = service1.operation1Async(input+"TypeOne"); + try { + return h.get(); + } catch (Exception e) { + throw new RuntimeException(e); + } + } + + private String invokeAsyncType2(String input) { + // three + AsyncHandler ah = new AsyncHandler() { + @Override + public void handleResponse(Response res) { + try { + threeResp = res.get(); + } catch (Throwable e) { + threeEx = e; + } + synchronized (threeMutex) { + threeMutex.notifyAll(); + } + } + }; + service1.operation1Async(input+"TypeTwo",ah); + if (threeResp == null && threeEx == null) { + synchronized (threeMutex) { + if (threeResp == null && threeEx == null) { + try { + threeMutex.wait(3000); + } catch (InterruptedException e) { + } + } + } + } + + if (threeResp == null && threeEx == null) { + throw new RuntimeException("no response recieved"); + } + if (threeEx != null) { + throw new RuntimeException("got exception", threeEx); + } + return threeResp; + } +} diff --git a/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1.composite b/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1.composite new file mode 100644 index 0000000000..6a2b2c2409 --- /dev/null +++ b/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1.composite @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1TestCase.java b/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1TestCase.java new file mode 100644 index 0000000000..3c293b2dc8 --- /dev/null +++ b/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1TestCase.java @@ -0,0 +1,54 @@ +/* + * 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.tuscany.sca.itest; + +import static org.junit.Assert.assertEquals; + +import org.apache.tuscany.sca.Node; +import org.apache.tuscany.sca.TuscanyRuntime; +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import org.oasisopen.sca.NoSuchServiceException; + +public class Test1TestCase { + + protected TuscanyRuntime runtime; + protected Node node; + + @Before + public void setUp() throws Exception { + node = TuscanyRuntime.runComposite("test1.composite", "target/classes"); + } + + @After + public void tearDown() throws Exception { + node.stop(); + } + + @Test + public void testReference() throws NoSuchServiceException { + Service1 test = node.getService(Service1.class, "Client"); + assertEquals("Service1AsyncServerImpl2.operation1Async foo" + + "Service1AsyncServerImpl2.operation1Async fooTypeOne" + + "Service1AsyncServerImpl2.operation1Async fooTypeTwo", + test.operation1("foo")); + } + +} -- cgit v1.2.3