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:30:48 UTC

svn commit: r908837 - in /tuscany/sca-java-2.x/trunk/itest/nodes/test-service: ./ src/ src/main/ src/main/java/ src/main/java/itest/ src/main/java/itest/test/ src/main/resources/ src/main/resources/META-INF/

Author: antelder
Date: Thu Feb 11 04:30:47 2010
New Revision: 908837

URL: http://svn.apache.org/viewvc?rev=908837&view=rev
Log:
Start of tests for import/export across nodes - a service using an import

Added:
    tuscany/sca-java-2.x/trunk/itest/nodes/test-service/   (with props)
    tuscany/sca-java-2.x/trunk/itest/nodes/test-service/pom.xml
    tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/
    tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/
    tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/java/
    tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/java/itest/
    tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/java/itest/test/
    tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/java/itest/test/TestServiceImpl.java
    tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/resources/
    tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/resources/META-INF/
    tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/resources/META-INF/sca-contribution.xml
    tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/resources/test-service.composite

Propchange: tuscany/sca-java-2.x/trunk/itest/nodes/test-service/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Feb 11 04:30:47 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/test-service/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/nodes/test-service/pom.xml?rev=908837&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/nodes/test-service/pom.xml (added)
+++ tuscany/sca-java-2.x/trunk/itest/nodes/test-service/pom.xml Thu Feb 11 04:30:47 2010
@@ -0,0 +1,45 @@
+<?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-test-service</artifactId>
+    <name>Apache Tuscany SCA iTest Nodes Test Service</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-sca-api</artifactId>
+            <version>2.0-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>itest-nodes-test-iface-export</artifactId>
+            <version>2.0-SNAPSHOT</version>
+            <scope>provided</scope>
+        </dependency>
+    </dependencies>
+</project>

Added: tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/java/itest/test/TestServiceImpl.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/java/itest/test/TestServiceImpl.java?rev=908837&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/java/itest/test/TestServiceImpl.java (added)
+++ tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/java/itest/test/TestServiceImpl.java Thu Feb 11 04:30:47 2010
@@ -0,0 +1,42 @@
+/*
+ * 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.test;
+
+import itest.iface.NonSimpleType;
+import itest.iface.SomeException;
+import itest.iface.TestService;
+
+public class TestServiceImpl implements TestService {
+
+    public TestServiceImpl() {
+    }
+    
+    public String sayHello(String name) {
+        return "Hello " + name;
+    }
+
+    public NonSimpleType testCT(NonSimpleType name) throws SomeException {
+        if ("bang".equals(name.getName())) {
+           throw new SomeException("bang");
+        }
+
+        return new NonSimpleType("Hello " + name.getName());
+    }
+}

Added: tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/resources/META-INF/sca-contribution.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/resources/META-INF/sca-contribution.xml?rev=908837&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/resources/META-INF/sca-contribution.xml (added)
+++ tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/resources/META-INF/sca-contribution.xml Thu Feb 11 04:30:47 2010
@@ -0,0 +1,24 @@
+<?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.    
+-->
+<contribution xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
+              xmlns:itest="http://itest">
+   <deployable composite="itest:TestService"/>
+   <import.java package="itest.iface"/>
+</contribution>

Added: tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/resources/test-service.composite
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/resources/test-service.composite?rev=908837&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/resources/test-service.composite (added)
+++ tuscany/sca-java-2.x/trunk/itest/nodes/test-service/src/main/resources/test-service.composite Thu Feb 11 04:30:47 2010
@@ -0,0 +1,28 @@
+<?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://itest"
+	name="TestService">
+ 	      
+    <component name="TestService">
+       <implementation.java class="itest.test.TestServiceImpl"/>
+    </component>   
+    
+</composite>