Author: antelder
Date: Tue Sep 2 08:51:40 2008
New Revision: 691284
URL: http://svn.apache.org/viewvc?rev=691284&view=rev
Log:
Start of itests for the JMS based binding.sca
Added:
tuscany/java/sca/itest/binding-sca-jms/
tuscany/java/sca/itest/binding-sca-jms/client/
tuscany/java/sca/itest/binding-sca-jms/client/pom.xml
tuscany/java/sca/itest/binding-sca-jms/client/src/
tuscany/java/sca/itest/binding-sca-jms/client/src/main/
tuscany/java/sca/itest/binding-sca-jms/client/src/main/java/
tuscany/java/sca/itest/binding-sca-jms/client/src/main/java/itest/
tuscany/java/sca/itest/binding-sca-jms/client/src/main/java/itest/MyClientImpl.java
tuscany/java/sca/itest/binding-sca-jms/client/src/main/java/itest/MyService.java
tuscany/java/sca/itest/binding-sca-jms/client/src/main/resources/
tuscany/java/sca/itest/binding-sca-jms/client/src/main/resources/META-INF/
tuscany/java/sca/itest/binding-sca-jms/client/src/main/resources/META-INF/sca-contribution.xml
tuscany/java/sca/itest/binding-sca-jms/client/src/main/resources/MyClient.composite
tuscany/java/sca/itest/binding-sca-jms/client/src/test/
tuscany/java/sca/itest/binding-sca-jms/client/src/test/java/
tuscany/java/sca/itest/binding-sca-jms/client/src/test/java/itest/
tuscany/java/sca/itest/binding-sca-jms/client/src/test/java/itest/MyClientTestCase.java
tuscany/java/sca/itest/binding-sca-jms/pom.xml
tuscany/java/sca/itest/binding-sca-jms/service/
tuscany/java/sca/itest/binding-sca-jms/service/pom.xml
tuscany/java/sca/itest/binding-sca-jms/service/src/
tuscany/java/sca/itest/binding-sca-jms/service/src/main/
tuscany/java/sca/itest/binding-sca-jms/service/src/main/java/
tuscany/java/sca/itest/binding-sca-jms/service/src/main/java/itest/
tuscany/java/sca/itest/binding-sca-jms/service/src/main/java/itest/MyService.java
tuscany/java/sca/itest/binding-sca-jms/service/src/main/java/itest/MyServiceImpl.java
tuscany/java/sca/itest/binding-sca-jms/service/src/main/resources/
tuscany/java/sca/itest/binding-sca-jms/service/src/main/resources/META-INF/
tuscany/java/sca/itest/binding-sca-jms/service/src/main/resources/META-INF/sca-contribution.xml
tuscany/java/sca/itest/binding-sca-jms/service/src/main/resources/MyService.composite
tuscany/java/sca/itest/binding-sca-jms/service/src/test/
tuscany/java/sca/itest/binding-sca-jms/service/src/test/java/
tuscany/java/sca/itest/binding-sca-jms/service/src/test/java/itest/
tuscany/java/sca/itest/binding-sca-jms/service/src/test/java/itest/MyServiceTestCase.java
Added: tuscany/java/sca/itest/binding-sca-jms/client/pom.xml
URL:
http://svn.apache.org/viewvc/tuscany/java/sca/itest/binding-sca-jms/client/pom.xml?rev=691284&view=auto
==============================================================================
--- tuscany/java/sca/itest/binding-sca-jms/client/pom.xml (added)
+++ tuscany/java/sca/itest/binding-sca-jms/client/pom.xml Tue Sep 2 08:51:40
2008
@@ -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>itest-binidng-sca-jms</artifactId>
+ <version>1.4-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+ <artifactId>itest-binding-sca-jms-client</artifactId>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-node-impl</artifactId>
+ <version>1.4-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-implementation-java-runtime</artifactId>
+ <version>1.4-SNAPSHOT</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-binding-sca-jms</artifactId>
+ <version>1.4-SNAPSHOT</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.2</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <finalName>${artifactId}</finalName>
+ </build>
+
+</project>
Added:
tuscany/java/sca/itest/binding-sca-jms/client/src/main/java/itest/MyClientImpl.java
URL:
http://svn.apache.org/viewvc/tuscany/java/sca/itest/binding-sca-jms/client/src/main/java/itest/MyClientImpl.java?rev=691284&view=auto
==============================================================================
---
tuscany/java/sca/itest/binding-sca-jms/client/src/main/java/itest/MyClientImpl.java
(added)
+++
tuscany/java/sca/itest/binding-sca-jms/client/src/main/java/itest/MyClientImpl.java
Tue Sep 2 08:51:40 2008
@@ -0,0 +1,32 @@
+/*
+ * 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.osoa.sca.annotations.Reference;
+
+public class MyClientImpl implements MyService {
+
+ @Reference public MyService delegate;
+
+ public String sayHello(String s) {
+ return "Hi " + delegate.sayHello(s);
+ }
+
+}
Added:
tuscany/java/sca/itest/binding-sca-jms/client/src/main/java/itest/MyService.java
URL:
http://svn.apache.org/viewvc/tuscany/java/sca/itest/binding-sca-jms/client/src/main/java/itest/MyService.java?rev=691284&view=auto
==============================================================================
---
tuscany/java/sca/itest/binding-sca-jms/client/src/main/java/itest/MyService.java
(added)
+++
tuscany/java/sca/itest/binding-sca-jms/client/src/main/java/itest/MyService.java
Tue Sep 2 08:51:40 2008
@@ -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.osoa.sca.annotations.Remotable;
+
[EMAIL PROTECTED]
+public interface MyService {
+
+ String sayHello(String s);
+}
Added:
tuscany/java/sca/itest/binding-sca-jms/client/src/main/resources/META-INF/sca-contribution.xml
URL:
http://svn.apache.org/viewvc/tuscany/java/sca/itest/binding-sca-jms/client/src/main/resources/META-INF/sca-contribution.xml?rev=691284&view=auto
==============================================================================
---
tuscany/java/sca/itest/binding-sca-jms/client/src/main/resources/META-INF/sca-contribution.xml
(added)
+++
tuscany/java/sca/itest/binding-sca-jms/client/src/main/resources/META-INF/sca-contribution.xml
Tue Sep 2 08:51:40 2008
@@ -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://www.osoa.org/xmlns/sca/1.0"
+ targetNamespace="http://sample"
+ xmlns:sample="http://sample">
+ <deployable composite="sample:CalculatorC"/>
+</contribution>
\ No newline at end of file
Added:
tuscany/java/sca/itest/binding-sca-jms/client/src/main/resources/MyClient.composite
URL:
http://svn.apache.org/viewvc/tuscany/java/sca/itest/binding-sca-jms/client/src/main/resources/MyClient.composite?rev=691284&view=auto
==============================================================================
---
tuscany/java/sca/itest/binding-sca-jms/client/src/main/resources/MyClient.composite
(added)
+++
tuscany/java/sca/itest/binding-sca-jms/client/src/main/resources/MyClient.composite
Tue Sep 2 08:51:40 2008
@@ -0,0 +1,29 @@
+<?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://www.osoa.org/xmlns/sca/1.0"
+ targetNamespace="http://itest"
+ name="MyService">
+
+ <component name="MyClientComponent">
+ <implementation.java class="itest.MyClientImpl" />
+ <reference name="delegate" target="MyServiceComponent" />
+ </component>
+
+</composite>
Added:
tuscany/java/sca/itest/binding-sca-jms/client/src/test/java/itest/MyClientTestCase.java
URL:
http://svn.apache.org/viewvc/tuscany/java/sca/itest/binding-sca-jms/client/src/test/java/itest/MyClientTestCase.java?rev=691284&view=auto
==============================================================================
---
tuscany/java/sca/itest/binding-sca-jms/client/src/test/java/itest/MyClientTestCase.java
(added)
+++
tuscany/java/sca/itest/binding-sca-jms/client/src/test/java/itest/MyClientTestCase.java
Tue Sep 2 08:51:40 2008
@@ -0,0 +1,38 @@
+package itest;
+
+
+
+import junit.framework.Assert;
+
+import org.apache.tuscany.sca.node.SCAClient;
+import org.apache.tuscany.sca.node.SCAContribution;
+import org.apache.tuscany.sca.node.SCANode;
+import org.apache.tuscany.sca.node.SCANodeFactory;
+import org.junit.Test;
+
+/**
+ * Runs a distributed domain in a single VM by using and in memory
+ * implementation of the distributed domain
+ */
+public class MyClientTestCase {
+
+ @Test
+ public void testCalculator() throws Exception {
+
+ SCANode serviceNode =
SCANodeFactory.newInstance().createSCANode("MyService.composite", new
SCAContribution("bla2", "../service/target/itest-binding-sca-jms-service.jar"));
+
+ SCANode clientNode =
SCANodeFactory.newInstance().createSCANodeFromClassLoader("MyClient.composite",
null);
+ try {
+
+ serviceNode.start();
+ clientNode.start();
+
+ MyService service =
((SCAClient)clientNode).getService(MyService.class, "MyClientComponent");
+
+ Assert.assertEquals("Hi Hello petra", service.sayHello("petra"));
+
+ } finally {
+ serviceNode.stop();
+ }
+ }
+}
Added: tuscany/java/sca/itest/binding-sca-jms/pom.xml
URL:
http://svn.apache.org/viewvc/tuscany/java/sca/itest/binding-sca-jms/pom.xml?rev=691284&view=auto
==============================================================================
--- tuscany/java/sca/itest/binding-sca-jms/pom.xml (added)
+++ tuscany/java/sca/itest/binding-sca-jms/pom.xml Tue Sep 2 08:51:40 2008
@@ -0,0 +1,36 @@
+<?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>1.4-SNAPSHOT</version>
+ <relativePath>../pom.xml</relativePath>
+ </parent>
+ <artifactId>itest-binidng-sca-jms</artifactId>
+ <packaging>pom</packaging>
+ <name>Apache Tuscany SCA JMS SCA Binding Integration Tests</name>
+
+ <modules>
+ <module>service</module>
+ <module>client</module>
+ </modules>
+</project>
Added: tuscany/java/sca/itest/binding-sca-jms/service/pom.xml
URL:
http://svn.apache.org/viewvc/tuscany/java/sca/itest/binding-sca-jms/service/pom.xml?rev=691284&view=auto
==============================================================================
--- tuscany/java/sca/itest/binding-sca-jms/service/pom.xml (added)
+++ tuscany/java/sca/itest/binding-sca-jms/service/pom.xml Tue Sep 2 08:51:40
2008
@@ -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>itest-binidng-sca-jms</artifactId>
+ <version>1.4-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+ <artifactId>itest-binding-sca-jms-service</artifactId>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-node-impl</artifactId>
+ <version>1.4-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-implementation-java-runtime</artifactId>
+ <version>1.4-SNAPSHOT</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-binding-sca-jms</artifactId>
+ <version>1.4-SNAPSHOT</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.2</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <finalName>${artifactId}</finalName>
+ </build>
+
+</project>
Added:
tuscany/java/sca/itest/binding-sca-jms/service/src/main/java/itest/MyService.java
URL:
http://svn.apache.org/viewvc/tuscany/java/sca/itest/binding-sca-jms/service/src/main/java/itest/MyService.java?rev=691284&view=auto
==============================================================================
---
tuscany/java/sca/itest/binding-sca-jms/service/src/main/java/itest/MyService.java
(added)
+++
tuscany/java/sca/itest/binding-sca-jms/service/src/main/java/itest/MyService.java
Tue Sep 2 08:51:40 2008
@@ -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.osoa.sca.annotations.Remotable;
+
[EMAIL PROTECTED]
+public interface MyService {
+
+ String sayHello(String s);
+}
Added:
tuscany/java/sca/itest/binding-sca-jms/service/src/main/java/itest/MyServiceImpl.java
URL:
http://svn.apache.org/viewvc/tuscany/java/sca/itest/binding-sca-jms/service/src/main/java/itest/MyServiceImpl.java?rev=691284&view=auto
==============================================================================
---
tuscany/java/sca/itest/binding-sca-jms/service/src/main/java/itest/MyServiceImpl.java
(added)
+++
tuscany/java/sca/itest/binding-sca-jms/service/src/main/java/itest/MyServiceImpl.java
Tue Sep 2 08:51:40 2008
@@ -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;
+
+public class MyServiceImpl implements MyService {
+
+ public String sayHello(String s) {
+ return "Hello " + s;
+ }
+
+}
Added:
tuscany/java/sca/itest/binding-sca-jms/service/src/main/resources/META-INF/sca-contribution.xml
URL:
http://svn.apache.org/viewvc/tuscany/java/sca/itest/binding-sca-jms/service/src/main/resources/META-INF/sca-contribution.xml?rev=691284&view=auto
==============================================================================
---
tuscany/java/sca/itest/binding-sca-jms/service/src/main/resources/META-INF/sca-contribution.xml
(added)
+++
tuscany/java/sca/itest/binding-sca-jms/service/src/main/resources/META-INF/sca-contribution.xml
Tue Sep 2 08:51:40 2008
@@ -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://www.osoa.org/xmlns/sca/1.0"
+ targetNamespace="http://sample"
+ xmlns:sample="http://sample">
+ <deployable composite="sample:CalculatorC"/>
+</contribution>
\ No newline at end of file
Added:
tuscany/java/sca/itest/binding-sca-jms/service/src/main/resources/MyService.composite
URL:
http://svn.apache.org/viewvc/tuscany/java/sca/itest/binding-sca-jms/service/src/main/resources/MyService.composite?rev=691284&view=auto
==============================================================================
---
tuscany/java/sca/itest/binding-sca-jms/service/src/main/resources/MyService.composite
(added)
+++
tuscany/java/sca/itest/binding-sca-jms/service/src/main/resources/MyService.composite
Tue Sep 2 08:51:40 2008
@@ -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://www.osoa.org/xmlns/sca/1.0"
+ targetNamespace="http://itest"
+ name="MyService">
+
+ <component name="MyServiceComponent">
+ <implementation.java class="itest.MyServiceImpl" />
+ </component>
+
+</composite>
Added:
tuscany/java/sca/itest/binding-sca-jms/service/src/test/java/itest/MyServiceTestCase.java
URL:
http://svn.apache.org/viewvc/tuscany/java/sca/itest/binding-sca-jms/service/src/test/java/itest/MyServiceTestCase.java?rev=691284&view=auto
==============================================================================
---
tuscany/java/sca/itest/binding-sca-jms/service/src/test/java/itest/MyServiceTestCase.java
(added)
+++
tuscany/java/sca/itest/binding-sca-jms/service/src/test/java/itest/MyServiceTestCase.java
Tue Sep 2 08:51:40 2008
@@ -0,0 +1,34 @@
+package itest;
+
+
+
+import junit.framework.Assert;
+
+import org.apache.tuscany.sca.node.SCAClient;
+import org.apache.tuscany.sca.node.SCANode;
+import org.apache.tuscany.sca.node.SCANodeFactory;
+import org.junit.Test;
+
+/**
+ * Runs a distributed domain in a single VM by using and in memory
+ * implementation of the distributed domain
+ */
+public class MyServiceTestCase {
+
+ @Test
+ public void testCalculator() throws Exception {
+
+ SCANode node =
SCANodeFactory.newInstance().createSCANodeFromClassLoader("MyService.composite",
null);
+ try {
+
+ node.start();
+
+ MyService service = ((SCAClient)node).getService(MyService.class,
"MyServiceComponent");
+
+ Assert.assertEquals("Hello petra", service.sayHello("petra"));
+
+ } finally {
+ node.stop();
+ }
+ }
+}