You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2011/08/17 12:29:14 UTC

svn commit: r1158614 - in /tuscany/sca-java-2.x/trunk/testing/itest/async-services/src: main/java/org/apache/tuscany/sca/itest/ main/resources/ test/java/org/apache/tuscany/sca/itest/

Author: antelder
Date: Wed Aug 17 10:29:14 2011
New Revision: 1158614

URL: http://svn.apache.org/viewvc?rev=1158614&view=rev
Log:
Extend the async services test with a new client and service that work in as simple a way as possible

Added:
    tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncClient.java
    tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncServerImpl2.java
    tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1ClientImpl.java
    tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1.composite
    tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1TestCase.java

Added: tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncClient.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncClient.java?rev=1158614&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncClient.java (added)
+++ tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncClient.java Wed Aug 17 10:29:14 2011
@@ -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<String> operation1Async(String input);
+    Future<?> operation1Async(String input, AsyncHandler<String> handler);
+}

Added: tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncServerImpl2.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncServerImpl2.java?rev=1158614&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncServerImpl2.java (added)
+++ tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1AsyncServerImpl2.java Wed Aug 17 10:29:14 2011
@@ -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<String> handler) {
+        handler.sendResponse("Service1AsyncServerImpl2.operation1Async " + input);
+    }
+
+}

Added: tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1ClientImpl.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1ClientImpl.java?rev=1158614&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1ClientImpl.java (added)
+++ tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/java/org/apache/tuscany/sca/itest/Service1ClientImpl.java Wed Aug 17 10:29:14 2011
@@ -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<String> h = service1.operation1Async(input+"TypeOne");
+        try {
+            return h.get();
+        } catch (Exception e) {
+            throw new RuntimeException(e);
+        }
+    }
+    
+    private String invokeAsyncType2(String input) {
+        // three
+        AsyncHandler<String> ah = new AsyncHandler<String>() {
+            @Override
+            public void handleResponse(Response<String> 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;
+    }
+}

Added: tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1.composite
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1.composite?rev=1158614&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1.composite (added)
+++ tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1.composite Wed Aug 17 10:29:14 2011
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.
+-->
+<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
+           targetNamespace="http://docs.oasis-open.org/ns/opencsa/scatests/200903"
+           name="Test1Composite">
+           
+    <component name="Client">
+		<implementation.java class="org.apache.tuscany.sca.itest.Service1ClientImpl"/>
+        <reference name="service1" target="AsyncServiceComponent" />
+    </component>
+    
+    <component name="AsyncServiceComponent">
+        <implementation.java class="org.apache.tuscany.sca.itest.Service1AsyncServerImpl2"/>
+    </component>
+
+</composite>
\ No newline at end of file

Added: tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1TestCase.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1TestCase.java?rev=1158614&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1TestCase.java (added)
+++ tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1TestCase.java Wed Aug 17 10:29:14 2011
@@ -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"));
+    }
+
+}