From 11dcc5a7f0badd6db1d21e71886e3c75c242d918 Mon Sep 17 00:00:00 2001 From: slaws Date: Fri, 11 Dec 2009 09:46:45 +0000 Subject: Start of a three node test to stress the operation of a distributed registry. Not in build. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@889548 13f79535-47bb-0310-9956-ffa450edef68 --- .../trunk/itest/nodes/helloworld-service-a/pom.xml | 44 +++++++++ .../src/main/java/itest/nodes/HelloworldImpl.java | 43 +++++++++ .../main/resources/META-INF/sca-contribution.xml | 23 +++++ .../src/main/resources/service-a.composite | 29 ++++++ .../trunk/itest/nodes/helloworld-service-b/pom.xml | 49 ++++++++++ .../src/main/java/itest/nodes/HelloworldImpl.java | 33 +++++++ .../main/resources/META-INF/sca-contribution.xml | 23 +++++ .../src/main/resources/service-b.composite | 29 ++++++ .../trunk/itest/nodes/helloworld-service-c/pom.xml | 49 ++++++++++ .../src/main/java/itest/nodes/HelloworldImpl.java | 28 ++++++ .../main/resources/META-INF/sca-contribution.xml | 23 +++++ .../src/main/resources/service-c.composite | 28 ++++++ sca-java-2.x/trunk/itest/nodes/pom.xml | 4 + .../nodes/three-nodes-three-vms-test/build.xml | 38 ++++++++ .../nodes/three-nodes-three-vms-test/client.xml | 31 ++++++ .../itest/nodes/three-nodes-three-vms-test/pom.xml | 104 +++++++++++++++++++++ .../nodes/three-nodes-three-vms-test/server.xml | 30 ++++++ .../service-a-config.xml | 39 ++++++++ .../service-b-config.xml | 39 ++++++++ .../service-c-config.xml | 39 ++++++++ .../src/test/java/itest/ServiceA.java | 65 +++++++++++++ .../src/test/java/itest/ServiceB.java | 55 +++++++++++ .../src/test/java/itest/ServiceC.java | 55 +++++++++++ .../src/test/java/itest/Client.java | 3 - .../src/test/java/itest/Service.java | 8 -- 25 files changed, 900 insertions(+), 11 deletions(-) create mode 100644 sca-java-2.x/trunk/itest/nodes/helloworld-service-a/pom.xml create mode 100644 sca-java-2.x/trunk/itest/nodes/helloworld-service-a/src/main/java/itest/nodes/HelloworldImpl.java create mode 100644 sca-java-2.x/trunk/itest/nodes/helloworld-service-a/src/main/resources/META-INF/sca-contribution.xml create mode 100644 sca-java-2.x/trunk/itest/nodes/helloworld-service-a/src/main/resources/service-a.composite create mode 100644 sca-java-2.x/trunk/itest/nodes/helloworld-service-b/pom.xml create mode 100644 sca-java-2.x/trunk/itest/nodes/helloworld-service-b/src/main/java/itest/nodes/HelloworldImpl.java create mode 100644 sca-java-2.x/trunk/itest/nodes/helloworld-service-b/src/main/resources/META-INF/sca-contribution.xml create mode 100644 sca-java-2.x/trunk/itest/nodes/helloworld-service-b/src/main/resources/service-b.composite create mode 100644 sca-java-2.x/trunk/itest/nodes/helloworld-service-c/pom.xml create mode 100644 sca-java-2.x/trunk/itest/nodes/helloworld-service-c/src/main/java/itest/nodes/HelloworldImpl.java create mode 100644 sca-java-2.x/trunk/itest/nodes/helloworld-service-c/src/main/resources/META-INF/sca-contribution.xml create mode 100644 sca-java-2.x/trunk/itest/nodes/helloworld-service-c/src/main/resources/service-c.composite create mode 100644 sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/build.xml create mode 100644 sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/client.xml create mode 100644 sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/pom.xml create mode 100644 sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/server.xml create mode 100644 sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/service-a-config.xml create mode 100644 sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/service-b-config.xml create mode 100644 sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/service-c-config.xml create mode 100644 sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/src/test/java/itest/ServiceA.java create mode 100644 sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/src/test/java/itest/ServiceB.java create mode 100644 sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/src/test/java/itest/ServiceC.java (limited to 'sca-java-2.x/trunk') diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service-a/pom.xml b/sca-java-2.x/trunk/itest/nodes/helloworld-service-a/pom.xml new file mode 100644 index 0000000000..e981d2dc4d --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service-a/pom.xml @@ -0,0 +1,44 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-itest + 2.0-SNAPSHOT + ../pom.xml + + itest-nodes-helloworld-service-a + Apache Tuscany SCA iTest Nodes Helloworld Service A + + + + org.apache.tuscany.sca + itest-nodes-helloworld-iface + 2.0-SNAPSHOT + + + org.apache.tuscany.sca + tuscany-sca-api + 2.0-SNAPSHOT + provided + + + diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service-a/src/main/java/itest/nodes/HelloworldImpl.java b/sca-java-2.x/trunk/itest/nodes/helloworld-service-a/src/main/java/itest/nodes/HelloworldImpl.java new file mode 100644 index 0000000000..2619dc269b --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service-a/src/main/java/itest/nodes/HelloworldImpl.java @@ -0,0 +1,43 @@ +/* + * 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 itest.nodes; + +import org.oasisopen.sca.annotation.EagerInit; +import org.oasisopen.sca.annotation.Init; +import org.oasisopen.sca.annotation.Reference; +import org.oasisopen.sca.annotation.Scope; + +@EagerInit +@Scope("COMPOSITE") +public class HelloworldImpl implements Helloworld { + + @Reference + public Helloworld service; + + @Init + public void initialize() throws Exception{ + System.out.println(">>>>>> " + sayHello("init")); + } + + public String sayHello(String name) throws Exception { + return "Hi " + service.sayHello(name); + } + +} diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service-a/src/main/resources/META-INF/sca-contribution.xml b/sca-java-2.x/trunk/itest/nodes/helloworld-service-a/src/main/resources/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..bba92e6ca3 --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service-a/src/main/resources/META-INF/sca-contribution.xml @@ -0,0 +1,23 @@ + + + + + \ No newline at end of file diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service-a/src/main/resources/service-a.composite b/sca-java-2.x/trunk/itest/nodes/helloworld-service-a/src/main/resources/service-a.composite new file mode 100644 index 0000000000..55122d2d6c --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service-a/src/main/resources/service-a.composite @@ -0,0 +1,29 @@ + + + + + + + + + + diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service-b/pom.xml b/sca-java-2.x/trunk/itest/nodes/helloworld-service-b/pom.xml new file mode 100644 index 0000000000..49fdb9b562 --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service-b/pom.xml @@ -0,0 +1,49 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-itest + 2.0-SNAPSHOT + ../pom.xml + + itest-nodes-helloworld-service-b + Apache Tuscany SCA iTest Nodes Helloworld Service B + + + + org.apache.tuscany.sca + itest-nodes-helloworld-iface + 2.0-SNAPSHOT + + + org.apache.tuscany.sca + tuscany-sca-api + 2.0-SNAPSHOT + provided + + + org.apache.tuscany.sca + tuscany-sca-api + 2.0-SNAPSHOT + + + diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service-b/src/main/java/itest/nodes/HelloworldImpl.java b/sca-java-2.x/trunk/itest/nodes/helloworld-service-b/src/main/java/itest/nodes/HelloworldImpl.java new file mode 100644 index 0000000000..b1d5a8235a --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service-b/src/main/java/itest/nodes/HelloworldImpl.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 itest.nodes; + +import org.oasisopen.sca.annotation.Reference; + +public class HelloworldImpl implements Helloworld { + + @Reference + protected Helloworld service; + + public String sayHello(String name) throws Exception { + return service.sayHello(name); + } + +} diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service-b/src/main/resources/META-INF/sca-contribution.xml b/sca-java-2.x/trunk/itest/nodes/helloworld-service-b/src/main/resources/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..4405cca18e --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service-b/src/main/resources/META-INF/sca-contribution.xml @@ -0,0 +1,23 @@ + + + + + \ No newline at end of file diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service-b/src/main/resources/service-b.composite b/sca-java-2.x/trunk/itest/nodes/helloworld-service-b/src/main/resources/service-b.composite new file mode 100644 index 0000000000..02cff882a7 --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service-b/src/main/resources/service-b.composite @@ -0,0 +1,29 @@ + + + + + + + + + + diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service-c/pom.xml b/sca-java-2.x/trunk/itest/nodes/helloworld-service-c/pom.xml new file mode 100644 index 0000000000..ef7068e0e8 --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service-c/pom.xml @@ -0,0 +1,49 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-itest + 2.0-SNAPSHOT + ../pom.xml + + itest-nodes-helloworld-Serivce-c + Apache Tuscany SCA iTest Nodes Helloworld Service C + + + + org.apache.tuscany.sca + itest-nodes-helloworld-iface + 2.0-SNAPSHOT + + + org.apache.tuscany.sca + tuscany-sca-api + 2.0-SNAPSHOT + provided + + + org.apache.tuscany.sca + tuscany-sca-api + 2.0-SNAPSHOT + + + diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service-c/src/main/java/itest/nodes/HelloworldImpl.java b/sca-java-2.x/trunk/itest/nodes/helloworld-service-c/src/main/java/itest/nodes/HelloworldImpl.java new file mode 100644 index 0000000000..81f7e1747d --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service-c/src/main/java/itest/nodes/HelloworldImpl.java @@ -0,0 +1,28 @@ +/* + * 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 itest.nodes; + +public class HelloworldImpl implements Helloworld { + + public String sayHello(String name) { + return "Hello " + name; + } + +} diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service-c/src/main/resources/META-INF/sca-contribution.xml b/sca-java-2.x/trunk/itest/nodes/helloworld-service-c/src/main/resources/META-INF/sca-contribution.xml new file mode 100644 index 0000000000..3ff86f946b --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service-c/src/main/resources/META-INF/sca-contribution.xml @@ -0,0 +1,23 @@ + + + + + \ No newline at end of file diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service-c/src/main/resources/service-c.composite b/sca-java-2.x/trunk/itest/nodes/helloworld-service-c/src/main/resources/service-c.composite new file mode 100644 index 0000000000..d88db09b43 --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service-c/src/main/resources/service-c.composite @@ -0,0 +1,28 @@ + + + + + + + + + diff --git a/sca-java-2.x/trunk/itest/nodes/pom.xml b/sca-java-2.x/trunk/itest/nodes/pom.xml index 5a3e4fe7e3..8371207e61 100644 --- a/sca-java-2.x/trunk/itest/nodes/pom.xml +++ b/sca-java-2.x/trunk/itest/nodes/pom.xml @@ -37,9 +37,13 @@ helloworld-iface helloworld-service helloworld-client + helloworld-service-a + helloworld-service-b + helloworld-service-c one-node-test two-nodes-test two-nodes-two-vms-test + three-nodes-three-vms-test diff --git a/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/build.xml b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/build.xml new file mode 100644 index 0000000000..3d77230541 --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/build.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/client.xml b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/client.xml new file mode 100644 index 0000000000..8e7c744940 --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/client.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/pom.xml b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/pom.xml new file mode 100644 index 0000000000..337a4ba5c1 --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/pom.xml @@ -0,0 +1,104 @@ + + + + 4.0.0 + + org.apache.tuscany.sca + tuscany-itest + 2.0-SNAPSHOT + ../pom.xml + + itest-nodes-three-nodes-three-vms-test + Apache Tuscany SCA iTest Nodes Three Nodes Three VMs Test + + + + org.apache.tuscany.sca + tuscany-domain-node + 2.0-SNAPSHOT + + + org.apache.tuscany.sca + tuscany-endpoint-tribes + 2.0-SNAPSHOT + + + org.apache.tuscany.sca + itest-nodes-helloworld-iface + 2.0-SNAPSHOT + + + org.apache.tuscany.sca + tuscany-node-impl + 2.0-SNAPSHOT + + + org.apache.tuscany.sca + tuscany-node-launcher + 2.0-SNAPSHOT + + + org.apache.tuscany.sca + tuscany-sca-client-impl + 2.0-SNAPSHOT + + + org.apache.tuscany.sca + tuscany-implementation-java-runtime + 2.0-SNAPSHOT + + + org.apache.tuscany.sca + tuscany-binding-sca-runtime-rmi + 2.0-SNAPSHOT + + + org.apache.tuscany.sca + tuscany-host-jetty + 2.0-SNAPSHOT + + + + + + + + org.apache.maven.plugins + maven-antrun-plugin + + + run-samples + test + + run + + + + + + + + + + + + + + diff --git a/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/server.xml b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/server.xml new file mode 100644 index 0000000000..dc18cc8ce0 --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/server.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/service-a-config.xml b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/service-a-config.xml new file mode 100644 index 0000000000..1f87322e80 --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/service-a-config.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/service-b-config.xml b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/service-b-config.xml new file mode 100644 index 0000000000..d557a31b64 --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/service-b-config.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/service-c-config.xml b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/service-c-config.xml new file mode 100644 index 0000000000..ba642c5ed0 --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/service-c-config.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/src/test/java/itest/ServiceA.java b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/src/test/java/itest/ServiceA.java new file mode 100644 index 0000000000..6ef30fe43f --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/src/test/java/itest/ServiceA.java @@ -0,0 +1,65 @@ +/* + * 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 itest; + +import java.io.File; + +import org.apache.tuscany.sca.node.Node; +import org.apache.tuscany.sca.node.NodeFactory; +import org.junit.AfterClass; +import org.junit.BeforeClass; +import org.junit.Test; + + +public class ServiceA { + + private static Node sericeNode; + + @BeforeClass + public static void setUpBeforeClass() throws Exception { + NodeFactory factory = NodeFactory.newInstance(); + + sericeNode = factory.createNode(new File("service-a-config.xml").toURI().toURL()); + + try { + sericeNode.start(); + } catch (Exception ex){ + ex.printStackTrace(); + throw ex; + } + } + + @Test + public void testNothing() throws Exception { + + } + + @AfterClass + public static void tearDownAfterClass() throws Exception { + if (sericeNode != null) { + sericeNode.stop(); + } + } + + public static void main(String[] args) throws Exception { + ServiceA.setUpBeforeClass(); + ServiceA.tearDownAfterClass(); + } +} diff --git a/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/src/test/java/itest/ServiceB.java b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/src/test/java/itest/ServiceB.java new file mode 100644 index 0000000000..67a8e5d92e --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/src/test/java/itest/ServiceB.java @@ -0,0 +1,55 @@ +/* + * 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 itest; + +import java.io.File; + +import org.apache.tuscany.sca.node.Node; +import org.apache.tuscany.sca.node.NodeFactory; +import org.junit.AfterClass; +import org.junit.BeforeClass; +import org.junit.Test; + +public class ServiceB { + + private static Node serviceNode; + + @BeforeClass + public static void setUpBeforeClass() throws Exception { + NodeFactory factory = NodeFactory.newInstance(); + + serviceNode = factory.createNode(new File("service-b-config.xml").toURI().toURL()); + serviceNode.start(); + } + + @Test + public void testNothing() throws Exception { + synchronized (this) { + this.wait(); + } + } + + @AfterClass + public static void tearDownAfterClass() throws Exception { + if (serviceNode != null) { + serviceNode.stop(); + } + } +} diff --git a/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/src/test/java/itest/ServiceC.java b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/src/test/java/itest/ServiceC.java new file mode 100644 index 0000000000..d716b5cd98 --- /dev/null +++ b/sca-java-2.x/trunk/itest/nodes/three-nodes-three-vms-test/src/test/java/itest/ServiceC.java @@ -0,0 +1,55 @@ +/* + * 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 itest; + +import java.io.File; + +import org.apache.tuscany.sca.node.Node; +import org.apache.tuscany.sca.node.NodeFactory; +import org.junit.AfterClass; +import org.junit.BeforeClass; +import org.junit.Test; + +public class ServiceC { + + private static Node serviceNode; + + @BeforeClass + public static void setUpBeforeClass() throws Exception { + NodeFactory factory = NodeFactory.newInstance(); + + serviceNode = factory.createNode(new File("service-c-config.xml").toURI().toURL()); + serviceNode.start(); + } + + @Test + public void testNothing() throws Exception { + synchronized (this) { + this.wait(); + } + } + + @AfterClass + public static void tearDownAfterClass() throws Exception { + if (serviceNode != null) { + serviceNode.stop(); + } + } +} diff --git a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Client.java b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Client.java index 15126b9c5d..4e7b099ad4 100644 --- a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Client.java +++ b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Client.java @@ -28,9 +28,6 @@ import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; -/** - * This shows how to test the Calculator service component. - */ public class Client { private static Node clientNode; diff --git a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Service.java b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Service.java index 0acb42334f..cd020b5c33 100644 --- a/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Service.java +++ b/sca-java-2.x/trunk/itest/nodes/two-nodes-two-vms-test/src/test/java/itest/Service.java @@ -28,9 +28,6 @@ import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; -/** - * This shows how to test the Calculator service component. - */ public class Service { private static Node serviceNode; @@ -59,10 +56,5 @@ public class Service { if (serviceNode != null) { serviceNode.stop(); } - } - - public static void main(String[] args) throws Exception { - Service.setUpBeforeClass(); - Service.tearDownAfterClass(); } } -- cgit v1.2.3