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 2010/02/11 05:34:22 UTC

svn commit: r908840 - in /tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local: ./ src/ src/main/ src/main/java/ src/test/ src/test/java/ src/test/java/itest/

Author: antelder
Date: Thu Feb 11 04:34:22 2010
New Revision: 908840

URL: http://svn.apache.org/viewvc?rev=908840&view=rev
Log:
Test for multiple local nodes using imports and exports

Added:
    tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/   (with props)
    tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/pom.xml
    tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/
    tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/main/
    tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/main/java/
    tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/
    tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/
    tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/
    tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/MultipleLocalNodes2TestCase.java
    tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/MultipleLocalNodesTestCase.java
    tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/OneNodeTestCase.java

Propchange: tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Feb 11 04:34:22 2010
@@ -0,0 +1,20 @@
+target
+work
+dojo
+*.iws
+*.ipr
+*.iml
+derby.log
+maven.log
+maven-eclipse.xml
+build.xml
+build-dependency.xml
+velocity.log*
+junit*.properties
+surefire*.properties
+.project
+.classpath
+.settings
+.deployables
+.wtpmodules
+.externalToolBuilders

Added: tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/pom.xml?rev=908840&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/pom.xml (added)
+++ tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/pom.xml Thu Feb 11 04:34:22 2010
@@ -0,0 +1,77 @@
+<?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.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-itest</artifactId>
+        <version>2.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <artifactId>itest-nodes-export</artifactId>
+    <name>Apache Tuscany SCA iTest Nodes Export Local</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-sca-client-impl</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-endpoint-hazelcast</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-sca-runtime-rmi</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-node-impl</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+    <build>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-surefire-plugin</artifactId>
+                    <version>2.5</version>
+                    <configuration>
+                        <includes>
+                            <include>**/*TestCase.java</include>
+                        </includes>
+                        <reportFormat>brief</reportFormat>
+                        <useFile>false</useFile>
+                        <forkMode>once</forkMode>
+                        <argLine>-ea -Xmx256m</argLine>
+                        <parallel>off</parallel>
+                    </configuration>
+                </plugin>
+            </plugins>
+    </build>
+</project>

Added: tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/MultipleLocalNodes2TestCase.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/MultipleLocalNodes2TestCase.java?rev=908840&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/MultipleLocalNodes2TestCase.java (added)
+++ tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/MultipleLocalNodes2TestCase.java Thu Feb 11 04:34:22 2010
@@ -0,0 +1,83 @@
+/*
+ * 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 static org.junit.Assert.assertEquals;
+//import static org.junit.Assert.assertNotNull;
+import java.net.URI;
+
+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;
+
+/**
+ * This shows how to test the Calculator service component.
+ */
+public class MultipleLocalNodes2TestCase{
+
+    private static final URI DOMAIN_URI = URI.create("OneNodeTestCase");
+    private static Node ifaceNode, serviceNode, clientNode;
+
+    @BeforeClass
+    public static void setUpBeforeClass() throws Exception {
+        ifaceNode = NodeFactory.getInstance().createNode(DOMAIN_URI, "../test-iface-export/target/classes");
+        ifaceNode.start();
+        serviceNode = NodeFactory.getInstance().createNode(DOMAIN_URI, "../test-service/target/classes");
+        serviceNode.start();
+        clientNode = NodeFactory.getInstance().createNode(DOMAIN_URI, "../test-client/target/classes");
+        clientNode.start();
+    }
+
+    @Test
+    public void testNode() throws Exception {
+
+//        Helloworld service = node.getService(Helloworld.class, "HelloworldService");
+//        assertNotNull(service);
+//        assertEquals("Hello Petra", service.sayHello("Petra"));
+//
+//        Helloworld client = node.getService(Helloworld.class, "HelloworldClient");
+//        assertNotNull(client);
+//        assertEquals("Hi Hello Petra", client.sayHello("Petra"));
+//
+//        Helloworld scaClientService = SCAClientFactory.newInstance(domainURI).getService(Helloworld.class, "HelloworldService");
+//        assertNotNull(scaClientService);
+//        assertEquals("Hello Petra", scaClientService.sayHello("Petra"));
+//
+//        Helloworld scaClientClient = SCAClientFactory.newInstance(domainURI).getService(Helloworld.class, "HelloworldClient");
+//        assertNotNull(scaClientClient);
+//        assertEquals("Hi Hello Petra", scaClientClient.sayHello("Petra"));
+    
+    }
+
+    @AfterClass
+    public static void tearDownAfterClass() throws Exception {
+        if (serviceNode != null) {
+            serviceNode.stop();
+        }
+        if (clientNode != null) {
+            clientNode.stop();
+        }
+        if (ifaceNode != null) {
+            ifaceNode.stop();
+        }
+    }
+}

Added: tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/MultipleLocalNodesTestCase.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/MultipleLocalNodesTestCase.java?rev=908840&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/MultipleLocalNodesTestCase.java (added)
+++ tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/MultipleLocalNodesTestCase.java Thu Feb 11 04:34:22 2010
@@ -0,0 +1,78 @@
+/*
+ * 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 static org.junit.Assert.assertEquals;
+//import static org.junit.Assert.assertNotNull;
+import java.net.URI;
+
+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;
+
+/**
+ * This shows how to test the Calculator service component.
+ */
+public class MultipleLocalNodesTestCase{
+
+    private static final URI DOMAIN_URI = URI.create("OneNodeTestCase");
+    private static Node ifaceNode, serviceNode, clientNode;
+
+    @BeforeClass
+    public static void setUpBeforeClass() throws Exception {
+        serviceNode = NodeFactory.getInstance().createNode(DOMAIN_URI, "../test-iface-export/target/classes", "../test-service/target/classes");
+        serviceNode.start();
+        clientNode = NodeFactory.getInstance().createNode(DOMAIN_URI, "../test-iface-export/target/classes", "../test-client/target/classes");
+        clientNode.start();
+    }
+
+    @Test
+    public void testNode() throws Exception {
+
+//        Helloworld service = node.getService(Helloworld.class, "HelloworldService");
+//        assertNotNull(service);
+//        assertEquals("Hello Petra", service.sayHello("Petra"));
+//
+//        Helloworld client = node.getService(Helloworld.class, "HelloworldClient");
+//        assertNotNull(client);
+//        assertEquals("Hi Hello Petra", client.sayHello("Petra"));
+//
+//        Helloworld scaClientService = SCAClientFactory.newInstance(domainURI).getService(Helloworld.class, "HelloworldService");
+//        assertNotNull(scaClientService);
+//        assertEquals("Hello Petra", scaClientService.sayHello("Petra"));
+//
+//        Helloworld scaClientClient = SCAClientFactory.newInstance(domainURI).getService(Helloworld.class, "HelloworldClient");
+//        assertNotNull(scaClientClient);
+//        assertEquals("Hi Hello Petra", scaClientClient.sayHello("Petra"));
+    
+    }
+
+    @AfterClass
+    public static void tearDownAfterClass() throws Exception {
+        if (serviceNode != null) {
+            serviceNode.stop();
+        }
+        if (clientNode != null) {
+            clientNode.stop();
+        }
+    }
+}

Added: tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/OneNodeTestCase.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/OneNodeTestCase.java?rev=908840&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/OneNodeTestCase.java (added)
+++ tuscany/sca-java-2.x/trunk/itest/nodes/nodes-export-local/src/test/java/itest/OneNodeTestCase.java Thu Feb 11 04:34:22 2010
@@ -0,0 +1,73 @@
+/*
+ * 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 static org.junit.Assert.assertEquals;
+//import static org.junit.Assert.assertNotNull;
+import java.net.URI;
+
+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;
+
+/**
+ * This shows how to test the Calculator service component.
+ */
+public class OneNodeTestCase{
+
+    private static final URI DOMAIN_URI = URI.create("OneNodeTestCase");
+    private static Node node;
+
+    @BeforeClass
+    public static void setUpBeforeClass() throws Exception {
+        node = NodeFactory.getInstance().createNode(DOMAIN_URI, "../test-iface-export/target/classes", "../test-service/target/classes", "../test-client/target/classes");
+        node.start();
+    }
+
+    @Test
+    public void testNode() throws Exception {
+
+//        Helloworld service = node.getService(Helloworld.class, "HelloworldService");
+//        assertNotNull(service);
+//        assertEquals("Hello Petra", service.sayHello("Petra"));
+//
+//        Helloworld client = node.getService(Helloworld.class, "HelloworldClient");
+//        assertNotNull(client);
+//        assertEquals("Hi Hello Petra", client.sayHello("Petra"));
+//
+//        Helloworld scaClientService = SCAClientFactory.newInstance(domainURI).getService(Helloworld.class, "HelloworldService");
+//        assertNotNull(scaClientService);
+//        assertEquals("Hello Petra", scaClientService.sayHello("Petra"));
+//
+//        Helloworld scaClientClient = SCAClientFactory.newInstance(domainURI).getService(Helloworld.class, "HelloworldClient");
+//        assertNotNull(scaClientClient);
+//        assertEquals("Hi Hello Petra", scaClientClient.sayHello("Petra"));
+    
+    }
+
+    @AfterClass
+    public static void tearDownAfterClass() throws Exception {
+        if (node != null) {
+            node.stop();
+        }
+    }
+}