summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI
diff options
context:
space:
mode:
Diffstat (limited to 'sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI')
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/pom.xml56
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/java/org/apache/tuscany/sca/itest/Helloworld.java28
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/java/org/apache/tuscany/sca/itest/HelloworldClient.java43
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/java/org/apache/tuscany/sca/itest/HelloworldImpl.java27
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/resources/client.composite31
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/resources/service.composite31
-rw-r--r--sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/test/java/org/apache/tuscany/sca/itest/Test1TestCase.java54
7 files changed, 270 insertions, 0 deletions
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/pom.xml b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/pom.xml
new file mode 100644
index 0000000000..4509b3ccc9
--- /dev/null
+++ b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/pom.xml
@@ -0,0 +1,56 @@
+<?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.
+-->
+<!--
+ A set of tests dealing with Asynchronous services
+-->
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-itest</artifactId>
+ <version>2.0.1</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <artifactId>itest-dynamicrefuri</artifactId>
+ <name>Apache Tuscany SCA iTest Dynamic reference URI</name>
+
+ <dependencies>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-base-runtime-pom</artifactId>
+ <type>pom</type>
+ <version>2.0.1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-binding-ws-runtime-axis2</artifactId>
+ <version>2.0.1</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.mortbay.jetty</groupId>
+ <artifactId>jetty</artifactId>
+ <version>6.1.19</version>
+ </dependency>
+
+ </dependencies>
+</project>
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/java/org/apache/tuscany/sca/itest/Helloworld.java b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/java/org/apache/tuscany/sca/itest/Helloworld.java
new file mode 100644
index 0000000000..5945f773b1
--- /dev/null
+++ b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/java/org/apache/tuscany/sca/itest/Helloworld.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 org.apache.tuscany.sca.itest;
+
+import org.oasisopen.sca.annotation.Remotable;
+
+@Remotable
+public interface Helloworld {
+
+ String sayHello(String name);
+
+}
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/java/org/apache/tuscany/sca/itest/HelloworldClient.java b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/java/org/apache/tuscany/sca/itest/HelloworldClient.java
new file mode 100644
index 0000000000..a687f44dae
--- /dev/null
+++ b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/java/org/apache/tuscany/sca/itest/HelloworldClient.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 org.apache.tuscany.sca.itest;
+
+import org.apache.tuscany.sca.runtime.TuscanyComponentContext;
+import org.apache.tuscany.sca.runtime.TuscanyServiceReference;
+import org.oasisopen.sca.annotation.Context;
+import org.oasisopen.sca.annotation.Reference;
+
+public class HelloworldClient implements Helloworld {
+
+ @Reference
+ public Helloworld helloworldService;
+
+ @Context
+ public TuscanyComponentContext tuscanyComponentContext;
+
+ @Override
+ public String sayHello(String name) {
+
+ TuscanyServiceReference<Helloworld> tsr = tuscanyComponentContext.getServiceReference(Helloworld.class, "helloworldService");
+ tsr.setBindingURI("http://localhost:8080/HelloworldService/Helloworld");
+
+ return "client: " + tsr.getService().sayHello(name);
+ }
+}
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/java/org/apache/tuscany/sca/itest/HelloworldImpl.java b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/java/org/apache/tuscany/sca/itest/HelloworldImpl.java
new file mode 100644
index 0000000000..d32c1fba63
--- /dev/null
+++ b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/java/org/apache/tuscany/sca/itest/HelloworldImpl.java
@@ -0,0 +1,27 @@
+/*
+ * 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 org.apache.tuscany.sca.itest;
+
+public class HelloworldImpl implements Helloworld {
+
+ public String sayHello(String name) {
+ return "Hello " + name;
+ }
+
+}
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/resources/client.composite b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/resources/client.composite
new file mode 100644
index 0000000000..243b538ea0
--- /dev/null
+++ b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/resources/client.composite
@@ -0,0 +1,31 @@
+<?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://docs.oasis-open.org/ns/opencsa/scatests/200903"
+ name="ClientComposite">
+
+ <component name="HelloworldClient">
+ <implementation.java class="org.apache.tuscany.sca.itest.HelloworldClient"/>
+ <reference name="helloworldService">
+ <binding.ws uri="http://localhost:8080/client/will/correct/this"/>
+ </reference>
+ </component>
+
+</composite> \ No newline at end of file
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/resources/service.composite b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/resources/service.composite
new file mode 100644
index 0000000000..218b086696
--- /dev/null
+++ b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/main/resources/service.composite
@@ -0,0 +1,31 @@
+<?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://docs.oasis-open.org/ns/opencsa/scatests/200903"
+ name="ServiceComposite">
+
+ <component name="HelloworldService">
+ <implementation.java class="org.apache.tuscany.sca.itest.HelloworldImpl"/>
+ <service name="Helloworld">
+ <binding.ws/>
+ </service>
+ </component>
+
+</composite> \ No newline at end of file
diff --git a/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/test/java/org/apache/tuscany/sca/itest/Test1TestCase.java b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/test/java/org/apache/tuscany/sca/itest/Test1TestCase.java
new file mode 100644
index 0000000000..2ce9697901
--- /dev/null
+++ b/sca-java-2.x/tags/2.0.1-RC1/testing/itest/dynamicRefURI/src/test/java/org/apache/tuscany/sca/itest/Test1TestCase.java
@@ -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 org.apache.tuscany.sca.itest;
+
+import static org.junit.Assert.assertEquals;
+
+import org.apache.tuscany.sca.Node;
+import org.apache.tuscany.sca.TuscanyRuntime;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+import org.oasisopen.sca.NoSuchServiceException;
+
+public class Test1TestCase {
+
+ protected TuscanyRuntime runtime;
+ protected Node serviceNode;
+ protected Node clientNode;
+
+ @Before
+ public void setUp() throws Exception {
+ serviceNode = TuscanyRuntime.runComposite("service.composite", "target/classes");
+ clientNode = TuscanyRuntime.runComposite("client.composite", "target/classes");
+ }
+
+ @After
+ public void tearDown() throws Exception {
+ serviceNode.stop();
+ clientNode.stop();
+ }
+
+ @Test
+ public void testReference() throws NoSuchServiceException {
+ Helloworld client = clientNode.getService(Helloworld.class, "HelloworldClient");
+ assertEquals("client: Hello Ariana", client.sayHello("Ariana"));
+ }
+
+}