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/01/13 16:53:29 UTC

svn commit: r898811 - in /tuscany/sca-java-2.x/trunk/itest/domains: ./ distributed/ distributed/src/ distributed/src/test/ distributed/src/test/java/ distributed/src/test/java/itest/

Author: antelder
Date: Wed Jan 13 15:53:29 2010
New Revision: 898811

URL: http://svn.apache.org/viewvc?rev=898811&view=rev
Log:
Start of a multiple nodes test

Added:
    tuscany/sca-java-2.x/trunk/itest/domains/distributed/   (with props)
    tuscany/sca-java-2.x/trunk/itest/domains/distributed/pom.xml
    tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/
    tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/test/
    tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/test/java/
    tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/test/java/itest/
    tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/test/java/itest/Helloworld.java
    tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/test/java/itest/StandaloneTestCase.java
Modified:
    tuscany/sca-java-2.x/trunk/itest/domains/pom.xml

Propchange: tuscany/sca-java-2.x/trunk/itest/domains/distributed/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Jan 13 15:53:29 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/domains/distributed/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/domains/distributed/pom.xml?rev=898811&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/domains/distributed/pom.xml (added)
+++ tuscany/sca-java-2.x/trunk/itest/domains/distributed/pom.xml Wed Jan 13 15:53:29 2010
@@ -0,0 +1,51 @@
+<?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-sca</artifactId>
+        <version>2.0-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+    <artifactId>itest-domains-distributed</artifactId>
+    <name>Apache Tuscany SCA itest domain distributed</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca.shades</groupId>
+            <artifactId>tuscany-base-nodep</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.5</version>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+
+    <build>
+       <finalName>${artifactId}</finalName>
+   </build>
+
+</project>

Added: tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/test/java/itest/Helloworld.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/test/java/itest/Helloworld.java?rev=898811&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/test/java/itest/Helloworld.java (added)
+++ tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/test/java/itest/Helloworld.java Wed Jan 13 15:53:29 2010
@@ -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;
+
+import org.oasisopen.sca.annotation.Remotable;
+
+@Remotable
+public interface Helloworld {
+
+    String sayHello(String name);
+
+}

Added: tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/test/java/itest/StandaloneTestCase.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/test/java/itest/StandaloneTestCase.java?rev=898811&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/test/java/itest/StandaloneTestCase.java (added)
+++ tuscany/sca-java-2.x/trunk/itest/domains/distributed/src/test/java/itest/StandaloneTestCase.java Wed Jan 13 15:53:29 2010
@@ -0,0 +1,46 @@
+/*
+ * 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 java.net.URI;
+
+import org.apache.tuscany.sca.node.Node;
+import org.apache.tuscany.sca.node.NodeFactory;
+import org.junit.Test;
+import org.oasisopen.sca.client.SCAClientFactory;
+
+/**
+ * This shows how to test the Calculator service component.
+ */
+public class StandaloneTestCase{
+
+    @Test
+    public void test1() throws Exception {
+        Node node = NodeFactory.newInstance().createNode(URI.create("tuscany:foo"),"../helloworld/target/itest-domains-helloworld.zip");
+        node.start();
+        assertEquals(1, node.getServiceNames().size());
+        assertEquals("HelloworldComponent/Helloworld", node.getServiceNames().get(0));
+        Helloworld helloworld = SCAClientFactory.newInstance(URI.create("tuscany:foo")).getService(Helloworld.class, "HelloworldComponent");
+        assertEquals("Hello petra", helloworld.sayHello("petra"));
+    }
+
+}
+

Modified: tuscany/sca-java-2.x/trunk/itest/domains/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/domains/pom.xml?rev=898811&r1=898810&r2=898811&view=diff
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/domains/pom.xml (original)
+++ tuscany/sca-java-2.x/trunk/itest/domains/pom.xml Wed Jan 13 15:53:29 2010
@@ -33,5 +33,6 @@
        <module>interfaces</module>
        <module>helloworld</module>
        <module>standalone</module>
+       <module>distributed</module>
     </modules>
 </project>