You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by sl...@apache.org on 2011/07/14 15:55:03 UTC

svn commit: r1146715 - in /tuscany/sca-java-2.x/trunk/testing/itest/context: ./ src/ src/main/ src/main/java/ src/main/java/itest/ src/main/java/itest/helloworld/ src/main/resources/ src/test/ src/test/java/ src/test/java/itest/ src/test/java/itest/hel...

Author: slaws
Date: Thu Jul 14 13:55:02 2011
New Revision: 1146715

URL: http://svn.apache.org/viewvc?rev=1146715&view=rev
Log:
TUSCANY-3855 - start of test for contexts. Not in build yet. 

Added:
    tuscany/sca-java-2.x/trunk/testing/itest/context/   (with props)
    tuscany/sca-java-2.x/trunk/testing/itest/context/pom.xml
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/   (with props)
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/   (with props)
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/   (with props)
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/   (with props)
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/   (with props)
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/ApplicationContext.java
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/Helloworld.java
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/HelloworldClientImpl.java
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/HelloworldServiceImpl.java
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/resources/   (with props)
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/resources/context.composite
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/   (with props)
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/java/   (with props)
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/java/itest/   (with props)
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/java/itest/helloworld/   (with props)
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/java/itest/helloworld/ContextTestCase.java
    tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/resources/   (with props)

Propchange: tuscany/sca-java-2.x/trunk/testing/itest/context/
------------------------------------------------------------------------------
    bugtraq:number = true

Propchange: tuscany/sca-java-2.x/trunk/testing/itest/context/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Jul 14 13:55:02 2011
@@ -0,0 +1,4 @@
+.classpath
+.project
+.settings
+target

Added: tuscany/sca-java-2.x/trunk/testing/itest/context/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/context/pom.xml?rev=1146715&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/context/pom.xml (added)
+++ tuscany/sca-java-2.x/trunk/testing/itest/context/pom.xml Thu Jul 14 13:55:02 2011
@@ -0,0 +1,63 @@
+<?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-context</artifactId>
+    <name>Apache Tuscany SCA iTest Context</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-base-runtime-pom</artifactId>
+            <version>2.0-SNAPSHOT</version>
+            <type>pom</type>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-ws-runtime-axis2</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-jsonp-runtime</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.mortbay.jetty</groupId>
+            <artifactId>jetty</artifactId>
+            <version>6.1.19</version>
+        </dependency>
+
+    </dependencies>
+    <build>
+        <plugins>
+        </plugins>
+    </build>
+</project>

Propchange: tuscany/sca-java-2.x/trunk/testing/itest/context/src/
------------------------------------------------------------------------------
    bugtraq:number = true

Propchange: tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/
------------------------------------------------------------------------------
    bugtraq:number = true

Propchange: tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/
------------------------------------------------------------------------------
    bugtraq:number = true

Propchange: tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/
------------------------------------------------------------------------------
    bugtraq:number = true

Propchange: tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/
------------------------------------------------------------------------------
    bugtraq:number = true

Added: tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/ApplicationContext.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/ApplicationContext.java?rev=1146715&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/ApplicationContext.java (added)
+++ tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/ApplicationContext.java Thu Jul 14 13:55:02 2011
@@ -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.helloworld;
+
+public class ApplicationContext {
+
+    private String someString;
+    
+    public void setSomeString(String someString) {
+        this.someString = someString;
+    }
+    
+    public String getSomeString() {
+        return someString;
+    }
+}

Added: tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/Helloworld.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/Helloworld.java?rev=1146715&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/Helloworld.java (added)
+++ tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/Helloworld.java Thu Jul 14 13:55:02 2011
@@ -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.helloworld;
+
+import org.oasisopen.sca.annotation.Remotable;
+
+@Remotable
+public interface Helloworld {
+
+    String sayHello(String name);
+}

Added: tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/HelloworldClientImpl.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/HelloworldClientImpl.java?rev=1146715&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/HelloworldClientImpl.java (added)
+++ tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/HelloworldClientImpl.java Thu Jul 14 13:55:02 2011
@@ -0,0 +1,45 @@
+/*
+ * 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.helloworld;
+
+import org.oasisopen.sca.ComponentContext;
+import org.oasisopen.sca.RequestContext;
+import org.oasisopen.sca.annotation.Context;
+import org.oasisopen.sca.annotation.Reference;
+
+public class HelloworldClientImpl implements Helloworld{
+    
+    @Context 
+    protected ComponentContext componentContext;
+
+    @Context 
+    protected RequestContext requestContext;
+    
+    @Context ApplicationContext applicationContext;
+
+    @Reference
+    public Helloworld ref;
+
+    @Override
+    public String sayHello(String name) {
+        return ref.sayHello(name);
+    }
+    
+}

Added: tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/HelloworldServiceImpl.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/HelloworldServiceImpl.java?rev=1146715&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/HelloworldServiceImpl.java (added)
+++ tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/java/itest/helloworld/HelloworldServiceImpl.java Thu Jul 14 13:55:02 2011
@@ -0,0 +1,30 @@
+/*
+ * 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.helloworld;
+
+public class HelloworldServiceImpl implements Helloworld {
+    
+    @Override
+    public String sayHello(String name) {
+        
+        return "Hello " + name;
+    }
+
+}

Propchange: tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/resources/
------------------------------------------------------------------------------
    bugtraq:number = true

Added: tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/resources/context.composite
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/resources/context.composite?rev=1146715&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/resources/context.composite (added)
+++ tuscany/sca-java-2.x/trunk/testing/itest/context/src/main/resources/context.composite Thu Jul 14 13:55:02 2011
@@ -0,0 +1,41 @@
+<?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://Scopes"
+           name="mappertest">
+
+ 	<component name="Client1">
+		<implementation.java class="itest.helloworld.HelloworldClientImpl"/>
+		<reference name="ref" target="Service1" />
+    </component>
+
+	<component name="Service1">
+		<implementation.java class="itest.helloworld.HelloworldServiceImpl"/>
+    </component>
+    
+ 	<component name="Client2">
+		<implementation.java class="itest.helloworld.HelloworldClientImpl"/>
+		<reference name="ref" target="Service2" />
+    </component>
+
+	<component name="Service2">
+		<implementation.java class="itest.helloworld.HelloworldServiceImpl"/>
+    </component>
+</composite>

Propchange: tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/
------------------------------------------------------------------------------
    bugtraq:number = true

Propchange: tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/java/
------------------------------------------------------------------------------
    bugtraq:number = true

Propchange: tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/java/itest/
------------------------------------------------------------------------------
    bugtraq:number = true

Propchange: tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/java/itest/helloworld/
------------------------------------------------------------------------------
    bugtraq:number = true

Added: tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/java/itest/helloworld/ContextTestCase.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/java/itest/helloworld/ContextTestCase.java?rev=1146715&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/java/itest/helloworld/ContextTestCase.java (added)
+++ tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/java/itest/helloworld/ContextTestCase.java Thu Jul 14 13:55:02 2011
@@ -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 itest.helloworld;
+
+import java.io.IOException;
+
+import org.apache.tuscany.sca.node.Node;
+import org.apache.tuscany.sca.node.NodeFactory;
+import org.junit.After;
+import org.junit.Assert;
+import org.junit.Test;
+
+public class ContextTestCase {
+
+    static {
+        org.apache.tuscany.sca.http.jetty.JettyServer.portDefault = 8085;
+    }
+
+    Node node;
+    
+    @Test
+    public void testContext() throws IOException, InterruptedException {
+        node = NodeFactory.getInstance().createNode("context.composite", new String[]{"target/classes"}) ;
+        node.start();
+        
+        // test the service invocations work
+        Helloworld helloworld = node.getService(Helloworld.class, "Client1");
+        Assert.assertEquals("Hello Petra", helloworld.sayHello("Petra"));
+
+       // helloworld = node.getService(Helloworld.class, "Client2");
+       // Assert.assertEquals("Hello Petra", helloworld.sayHello("Petra"));
+    }
+
+    @After
+    public void shutdown() throws InterruptedException {
+        node.stop();
+    }
+}

Propchange: tuscany/sca-java-2.x/trunk/testing/itest/context/src/test/resources/
------------------------------------------------------------------------------
    bugtraq:number = true