Author: antelder
Date: Tue Oct  6 10:21:13 2009
New Revision: 822194

URL: http://svn.apache.org/viewvc?rev=822194&view=rev
Log:
Separate out the oneway test from the jms general itests

Added:
    tuscany/java/sca/itest/jms/oneway/   (with props)
    tuscany/java/sca/itest/jms/oneway/pom.xml
    tuscany/java/sca/itest/jms/oneway/src/
    tuscany/java/sca/itest/jms/oneway/src/main/
    tuscany/java/sca/itest/jms/oneway/src/main/java/
    tuscany/java/sca/itest/jms/oneway/src/main/java/org/
    tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/
    tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/
    tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/
    
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/
    
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/
    
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayClientImpl.java
    
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayObjectService.java
    
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayObjectServiceImpl.java
    
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayService.java
    
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayServiceImpl.java
    tuscany/java/sca/itest/jms/oneway/src/main/resources/
    tuscany/java/sca/itest/jms/oneway/src/main/resources/META-INF/
    
tuscany/java/sca/itest/jms/oneway/src/main/resources/META-INF/sca-contribution.xml
    tuscany/java/sca/itest/jms/oneway/src/main/resources/jndi.properties
    tuscany/java/sca/itest/jms/oneway/src/main/resources/oneway/
    
tuscany/java/sca/itest/jms/oneway/src/main/resources/oneway/OneWayClient.composite
    
tuscany/java/sca/itest/jms/oneway/src/main/resources/oneway/OneWayService.composite
    tuscany/java/sca/itest/jms/oneway/src/test/
    tuscany/java/sca/itest/jms/oneway/src/test/java/
    tuscany/java/sca/itest/jms/oneway/src/test/java/org/
    tuscany/java/sca/itest/jms/oneway/src/test/java/org/apache/
    tuscany/java/sca/itest/jms/oneway/src/test/java/org/apache/tuscany/
    tuscany/java/sca/itest/jms/oneway/src/test/java/org/apache/tuscany/sca/
    
tuscany/java/sca/itest/jms/oneway/src/test/java/org/apache/tuscany/sca/binding/
    
tuscany/java/sca/itest/jms/oneway/src/test/java/org/apache/tuscany/sca/binding/jms/
    
tuscany/java/sca/itest/jms/oneway/src/test/java/org/apache/tuscany/sca/binding/jms/OneWayTestCase.java

Propchange: tuscany/java/sca/itest/jms/oneway/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue Oct  6 10:21:13 2009
@@ -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/java/sca/itest/jms/oneway/pom.xml
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/oneway/pom.xml?rev=822194&view=auto
==============================================================================
--- tuscany/java/sca/itest/jms/oneway/pom.xml (added)
+++ tuscany/java/sca/itest/jms/oneway/pom.xml Tue Oct  6 10:21:13 2009
@@ -0,0 +1,83 @@
+<?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-jms-oneway</artifactId>
+    <name>Apache Tuscany SCA iTest JMS with Oneway</name>
+
+    <dependencies>
+        
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-sca-api</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>        
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-node-impl</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>        
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-java-runtime</artifactId>
+            <version>2.0-SNAPSHOT</version>
+            <scope>runtime</scope>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-binding-jms-runtime</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.activemq</groupId>
+            <artifactId>activemq-core</artifactId>
+            <version>5.2.0</version>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+           <groupId>org.apache.geronimo.specs</groupId>
+           <artifactId>geronimo-jms_1.1_spec</artifactId>
+           <version>1.1</version>
+           <scope>provided</scope>
+           <exclusions>
+               <exclusion>
+                   <groupId>org.apache.geronimo.specs</groupId>
+                   <artifactId>geronimo-jms_1.1_spec</artifactId>
+               </exclusion>
+           </exclusions>
+        </dependency>         
+                
+    </dependencies>
+
+    <build>
+       <finalName>${artifactId}</finalName>
+    </build>
+</project>

Added: 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayClientImpl.java
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayClientImpl.java?rev=822194&view=auto
==============================================================================
--- 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayClientImpl.java
 (added)
+++ 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayClientImpl.java
 Tue Oct  6 10:21:13 2009
@@ -0,0 +1,41 @@
+/*
+ * 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.binding.jms;
+
+import org.oasisopen.sca.annotation.Reference;
+import org.oasisopen.sca.annotation.Service;
+
+/**
+ * This class implements the OneWay service.
+ */
+...@service(OneWayService.class)
+public class OneWayClientImpl implements OneWayService {
+
+    private OneWayService serviceA;
+
+    @Reference
+    public void setServiceA(OneWayService service) {
+        this.serviceA = service;
+    }
+
+    public void sayHello(String name) {
+        serviceA.sayHello(name);
+    }
+
+}

Added: 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayObjectService.java
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayObjectService.java?rev=822194&view=auto
==============================================================================
--- 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayObjectService.java
 (added)
+++ 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayObjectService.java
 Tue Oct  6 10:21:13 2009
@@ -0,0 +1,29 @@
+/*
+ * 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.binding.jms;
+
+import org.oasisopen.sca.annotation.OneWay;
+import org.oasisopen.sca.annotation.Remotable;
+
+...@remotable
+public interface OneWayObjectService {
+
+    @OneWay
+    void sayHello(Object name);
+}

Added: 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayObjectServiceImpl.java
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayObjectServiceImpl.java?rev=822194&view=auto
==============================================================================
--- 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayObjectServiceImpl.java
 (added)
+++ 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayObjectServiceImpl.java
 Tue Oct  6 10:21:13 2009
@@ -0,0 +1,34 @@
+/*
+ * 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.binding.jms;
+
+public class OneWayObjectServiceImpl implements OneWayObjectService {
+
+    public static Object mutex = new Object();
+    public static Object name;
+
+    public void sayHello(Object name) {
+        OneWayObjectServiceImpl.name = name;
+        synchronized (OneWayObjectServiceImpl.mutex) {
+            OneWayObjectServiceImpl.mutex.notify();
+        }
+    }
+
+}

Added: 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayService.java
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayService.java?rev=822194&view=auto
==============================================================================
--- 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayService.java
 (added)
+++ 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayService.java
 Tue Oct  6 10:21:13 2009
@@ -0,0 +1,29 @@
+/*
+ * 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.binding.jms;
+
+import org.oasisopen.sca.annotation.OneWay;
+import org.oasisopen.sca.annotation.Remotable;
+
+...@remotable
+public interface OneWayService {
+    
+    @OneWay
+    void sayHello(String name);
+}

Added: 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayServiceImpl.java
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayServiceImpl.java?rev=822194&view=auto
==============================================================================
--- 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayServiceImpl.java
 (added)
+++ 
tuscany/java/sca/itest/jms/oneway/src/main/java/org/apache/tuscany/sca/binding/jms/OneWayServiceImpl.java
 Tue Oct  6 10:21:13 2009
@@ -0,0 +1,34 @@
+/*
+ * 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.binding.jms;
+
+public class OneWayServiceImpl implements OneWayService {
+
+    public static Object mutex = new Object();
+    public static String name;
+    
+    public void sayHello(String name) {
+        OneWayServiceImpl.name = name;
+        synchronized (OneWayServiceImpl.mutex) {
+            OneWayServiceImpl.mutex.notify();
+        }
+    }
+
+}

Added: 
tuscany/java/sca/itest/jms/oneway/src/main/resources/META-INF/sca-contribution.xml
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/oneway/src/main/resources/META-INF/sca-contribution.xml?rev=822194&view=auto
==============================================================================
--- 
tuscany/java/sca/itest/jms/oneway/src/main/resources/META-INF/sca-contribution.xml
 (added)
+++ 
tuscany/java/sca/itest/jms/oneway/src/main/resources/META-INF/sca-contribution.xml
 Tue Oct  6 10:21:13 2009
@@ -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/200903";
+              xmlns:itest="http://itest";>
+   <deployable composite="itest:OneWayServiceComposite"/>
+   <deployable composite="itest:OneWayClientComposite"/>
+</contribution>
\ No newline at end of file

Added: tuscany/java/sca/itest/jms/oneway/src/main/resources/jndi.properties
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/oneway/src/main/resources/jndi.properties?rev=822194&view=auto
==============================================================================
--- tuscany/java/sca/itest/jms/oneway/src/main/resources/jndi.properties (added)
+++ tuscany/java/sca/itest/jms/oneway/src/main/resources/jndi.properties Tue 
Oct  6 10:21:13 2009
@@ -0,0 +1,39 @@
+## ---------------------------------------------------------------------------
+## 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.
+## ---------------------------------------------------------------------------
+
+# START SNIPPET: jndi
+
+java.naming.factory.initial = 
org.apache.activemq.jndi.ActiveMQInitialContextFactory
+
+# use the following property to configure the default connector
+java.naming.provider.url = vm://localhost?broker.persistent=false
+
+# use the following property to specify the JNDI name the connection factory
+# should appear as. 
+#connectionFactoryNames = connectionFactory, queueConnectionFactory, 
topicConnectionFactry
+connectionFactoryNames = ConnectionFactory
+
+# register some queues in JNDI using the form
+# queue.[jndiName] = [physicalName]
+queue.RequestQueue = RequestQueue
+queue.ResponseQueue = ResponseQueue
+
+# register some topics in JNDI using the form
+# topic.[jndiName] = [physicalName]
+#topic.MyTopic = example.MyTopic
+
+# END SNIPPET: jndi

Added: 
tuscany/java/sca/itest/jms/oneway/src/main/resources/oneway/OneWayClient.composite
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/oneway/src/main/resources/oneway/OneWayClient.composite?rev=822194&view=auto
==============================================================================
--- 
tuscany/java/sca/itest/jms/oneway/src/main/resources/oneway/OneWayClient.composite
 (added)
+++ 
tuscany/java/sca/itest/jms/oneway/src/main/resources/oneway/OneWayClient.composite
 Tue Oct  6 10:21:13 2009
@@ -0,0 +1,33 @@
+<?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/200903";
+           targetNamespace="http://itest";
+           name="OneWayClientComposite">
+
+    <component name="OneWayClient">
+        <implementation.java 
class="org.apache.tuscany.sca.binding.jms.OneWayClientImpl"/>
+        <reference name="serviceA">
+            <binding.jms>
+                <destination jndiName="DestQueueA"/>
+            </binding.jms>  
+        </reference>
+    </component>
+
+</composite>

Added: 
tuscany/java/sca/itest/jms/oneway/src/main/resources/oneway/OneWayService.composite
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/oneway/src/main/resources/oneway/OneWayService.composite?rev=822194&view=auto
==============================================================================
--- 
tuscany/java/sca/itest/jms/oneway/src/main/resources/oneway/OneWayService.composite
 (added)
+++ 
tuscany/java/sca/itest/jms/oneway/src/main/resources/oneway/OneWayService.composite
 Tue Oct  6 10:21:13 2009
@@ -0,0 +1,33 @@
+<?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/200903";
+           targetNamespace="http://itest";
+           name="OneWayServiceComposite">
+
+    <component name="OneWayService">
+        <implementation.java 
class="org.apache.tuscany.sca.binding.jms.OneWayServiceImpl"/>
+        <service name="OneWayService">
+            <binding.jms>
+               <destination jndiName="DestQueueA" create="always"/>
+            </binding.jms>  
+        </service> 
+    </component>       
+
+</composite>

Added: 
tuscany/java/sca/itest/jms/oneway/src/test/java/org/apache/tuscany/sca/binding/jms/OneWayTestCase.java
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/itest/jms/oneway/src/test/java/org/apache/tuscany/sca/binding/jms/OneWayTestCase.java?rev=822194&view=auto
==============================================================================
--- 
tuscany/java/sca/itest/jms/oneway/src/test/java/org/apache/tuscany/sca/binding/jms/OneWayTestCase.java
 (added)
+++ 
tuscany/java/sca/itest/jms/oneway/src/test/java/org/apache/tuscany/sca/binding/jms/OneWayTestCase.java
 Tue Oct  6 10:21:13 2009
@@ -0,0 +1,60 @@
+/*
+ * 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.binding.jms;
+
+import static org.junit.Assert.assertEquals;
+
+import org.apache.tuscany.sca.node.Node;
+import org.apache.tuscany.sca.node.NodeFactory;
+
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+/**
+ * This shows how to test the JMS binding using a simple HelloWorld 
application.
+ */
+public class OneWayTestCase {
+
+    private Node node;
+
+    @Before
+    public void init() {
+        node = NodeFactory.newInstance().createNode().start();
+    }
+
+    @Test
+    public void testOneWayInvoked() throws Exception {
+        OneWayService oneWayService = node.getService(OneWayService.class, 
"OneWayClient");
+        oneWayService.sayHello("Petra");
+        synchronized (OneWayServiceImpl.mutex) {
+            // wait up to 10 seconds but it will likely be a lot less 
+            // as the service invocation will wake this up earlier 
+            OneWayServiceImpl.mutex.wait(10000);
+        }
+        assertEquals("Petra", OneWayServiceImpl.name);
+    }
+
+    @After
+    public void end() {
+        if (node != null) {
+            node.stop();
+        }
+    }
+}


Reply via email to