From bfae31cd2d8c1f0917aac360ce5ae175a1878141 Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 28 Jan 2009 18:17:33 +0000 Subject: Investigating conversation/oneway issue reported by Douglas on the dev list git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@738573 13f79535-47bb-0310-9956-ffa450edef68 --- sandbox/lresende/sca/itest/callback/pom.xml | 50 ++++++++++++++++++++ .../java/org/apache/tuscany/sca/test/Client.java | 25 ++++++++++ .../apache/tuscany/sca/test/ClientCallback.java | 24 ++++++++++ .../org/apache/tuscany/sca/test/ClientImpl.java | 53 +++++++++++++++++++++ .../apache/tuscany/sca/test/ServiceProvider.java | 38 +++++++++++++++ .../tuscany/sca/test/ServiceProviderImpl.java | 51 ++++++++++++++++++++ .../apache/tuscany/sca/test/CallBackTestCase.java | 54 ++++++++++++++++++++++ .../org/apache/tuscany/sca/test/MainCallback.java | 35 ++++++++++++++ .../callback/src/test/resources/callback.composite | 33 +++++++++++++ 9 files changed, 363 insertions(+) create mode 100644 sandbox/lresende/sca/itest/callback/pom.xml create mode 100644 sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/Client.java create mode 100644 sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientCallback.java create mode 100644 sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientImpl.java create mode 100644 sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProvider.java create mode 100644 sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProviderImpl.java create mode 100644 sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/CallBackTestCase.java create mode 100644 sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/MainCallback.java create mode 100644 sandbox/lresende/sca/itest/callback/src/test/resources/callback.composite (limited to 'sandbox/lresende/sca') diff --git a/sandbox/lresende/sca/itest/callback/pom.xml b/sandbox/lresende/sca/itest/callback/pom.xml new file mode 100644 index 0000000000..8025e50960 --- /dev/null +++ b/sandbox/lresende/sca/itest/callback/pom.xml @@ -0,0 +1,50 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-itest + 1.5-SNAPSHOT + ../pom.xml + + itest-callback-douglas + Apache Tuscany SCA iTest Callback Scenario do Douglas + + + + org.apache.tuscany.sca + tuscany-host-embedded + 1.5-SNAPSHOT + + + + org.apache.tuscany.sca + tuscany-implementation-java-runtime + 1.5-SNAPSHOT + runtime + + + + + ${basedir}/../build-was-integration.xml + ${basedir}/../wasAdmin.py + + diff --git a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/Client.java b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/Client.java new file mode 100644 index 0000000000..1338cbd0ba --- /dev/null +++ b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/Client.java @@ -0,0 +1,25 @@ +/* + * 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.test; + + +public interface Client { + + public void someClientMethod(); +} diff --git a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientCallback.java b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientCallback.java new file mode 100644 index 0000000000..0d31c790f8 --- /dev/null +++ b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientCallback.java @@ -0,0 +1,24 @@ +/* + * 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.test; + +public interface ClientCallback { + + public void receiveResult(String s); +} diff --git a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientImpl.java b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientImpl.java new file mode 100644 index 0000000000..2fccc866ff --- /dev/null +++ b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ClientImpl.java @@ -0,0 +1,53 @@ +/* + * 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.test; + +import java.util.logging.Level; +import java.util.logging.Logger; + +import org.osoa.sca.annotations.Reference; +import org.osoa.sca.annotations.Scope; +import org.osoa.sca.annotations.Service; + + +@Service(interfaces={Client.class, ClientCallback.class}) +@Scope("COMPOSITE") +public class ClientImpl implements ClientCallback, Client { + + @Reference + public ServiceProvider service; + + public void receiveResult(String s) { + System.out.println("client receiving the result: "+ s); + } + + public void someClientMethod() { + service.someServiceMethod(); + + try { + System.out.println("Sleeping at client!"); + Thread.sleep(1000); + } catch (InterruptedException ex) { + Logger.getLogger(ClientImpl.class.getName()).log(Level.SEVERE, null, ex); + } + System.out.println("Waking up at client!"); + + service.close(); + } +} diff --git a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProvider.java b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProvider.java new file mode 100644 index 0000000000..1d62c4358f --- /dev/null +++ b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProvider.java @@ -0,0 +1,38 @@ +/* + * 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.test; + +import org.osoa.sca.annotations.Callback; +import org.osoa.sca.annotations.Conversational; +import org.osoa.sca.annotations.EndsConversation; +import org.osoa.sca.annotations.OneWay; + + + +@Conversational +@Callback(ClientCallback.class) +public interface ServiceProvider { + + @OneWay + public void someServiceMethod(); + + @EndsConversation + public void close(); + +} diff --git a/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProviderImpl.java b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProviderImpl.java new file mode 100644 index 0000000000..d1dddbbc8d --- /dev/null +++ b/sandbox/lresende/sca/itest/callback/src/main/java/org/apache/tuscany/sca/test/ServiceProviderImpl.java @@ -0,0 +1,51 @@ +/* + * 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.test; + +import java.util.logging.Level; +import java.util.logging.Logger; +import org.osoa.sca.annotations.Callback; +import org.osoa.sca.annotations.Scope; +import org.osoa.sca.annotations.Service; + + +@Service(ServiceProvider.class) +@Scope("COMPOSITE") +public class ServiceProviderImpl implements ServiceProvider { + + @Callback + public ClientCallback callback; + + public void someServiceMethod() { + + try { + System.out.println("Sleeping at server!"); + Thread.sleep(5000); + } catch (InterruptedException ex) { + Logger.getLogger(ServiceProviderImpl.class.getName()).log(Level.SEVERE, null, ex); + } + System.out.println("Waking up at server!"); + + callback.receiveResult("RESULT"); + } + + public void close() { + System.out.println("Closing the conversation on the server!"); + } +} diff --git a/sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/CallBackTestCase.java b/sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/CallBackTestCase.java new file mode 100644 index 0000000000..cd995952e3 --- /dev/null +++ b/sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/CallBackTestCase.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.test; + +import junit.framework.TestCase; + +import org.apache.tuscany.sca.host.embedded.SCADomain; + +public class CallBackTestCase extends TestCase { + + private static SCADomain domain; + private Client callbackClient; + + public void testCallBackBasic() { + callbackClient.someClientMethod(); + } + + /** + * This function creates the SCADomain instance and gets an Instance of CallBackApiClient.class + */ + @Override + protected void setUp() throws Exception { + if (domain == null) { + domain = SCADomain.newInstance("callback.composite"); + } + + callbackClient = domain.getService(Client.class, "Consumer/Client"); + } + + /** + * This function destroys the SCADomain instance that was created in setUp() + */ + @Override + protected void tearDown() throws Exception { + domain.close(); + } + +} diff --git a/sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/MainCallback.java b/sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/MainCallback.java new file mode 100644 index 0000000000..1754e6b3d5 --- /dev/null +++ b/sandbox/lresende/sca/itest/callback/src/test/java/org/apache/tuscany/sca/test/MainCallback.java @@ -0,0 +1,35 @@ +/* + * 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.test; + +import org.apache.tuscany.sca.host.embedded.SCADomain; + + +public class MainCallback { + + public static void main(String... args) { + SCADomain scaDomain = SCADomain.newInstance("callback.composite"); + + Client client = scaDomain.getService(Client.class, "Consumer"); + client.someClientMethod(); + + //scaDomain.close(); + } + +} diff --git a/sandbox/lresende/sca/itest/callback/src/test/resources/callback.composite b/sandbox/lresende/sca/itest/callback/src/test/resources/callback.composite new file mode 100644 index 0000000000..9b01a46904 --- /dev/null +++ b/sandbox/lresende/sca/itest/callback/src/test/resources/callback.composite @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + -- cgit v1.2.3