Author: antelder
Date: Tue Aug 23 10:34:44 2011
New Revision: 1160608

URL: http://svn.apache.org/viewvc?rev=1160608&view=rev
Log:
Add itests for jms wireformats textXml, bytes, and bytesXml. These don't work 
presently due to some databinding issue so taken out of the build with @Ignore

Added:
    
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsbytes.composite
    
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsbytesxml.composite
    
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmstextxml.composite
    
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsBytesTestCase.java
    
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsBytesXmlTestCase.java
    
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsTextXmlTestCase.java

Added: 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsbytes.composite
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsbytes.composite?rev=1160608&view=auto
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsbytes.composite
 (added)
+++ 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsbytes.composite
 Tue Aug 23 10:34:44 2011
@@ -0,0 +1,40 @@
+<?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";
+              xmlns:t="http://tuscany.apache.org/xmlns/sca/1.1";
+           name="Test1JmsBytesComposite">
+           
+    <component name="Client">
+               <implementation.java 
class="org.apache.tuscany.sca.itest.Service1ClientImpl"/>
+        <reference name="service1" target="AsyncServiceComponent"/>
+    </component>
+    
+    <component name="AsyncServiceComponent">
+        <implementation.java 
class="org.apache.tuscany.sca.itest.Service1AsyncServerImpl2"/>
+        <service name="Service1AsyncServer">
+            <interface.java 
interface="org.apache.tuscany.sca.itest.Service1AsyncServer"/>
+            <binding.jms>            
+               <t:wireFormat.jmsBytes />
+            </binding.jms>
+        </service>
+    </component>
+
+</composite>
\ No newline at end of file

Added: 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsbytesxml.composite
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsbytesxml.composite?rev=1160608&view=auto
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsbytesxml.composite
 (added)
+++ 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsbytesxml.composite
 Tue Aug 23 10:34:44 2011
@@ -0,0 +1,40 @@
+<?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";
+              xmlns:t="http://tuscany.apache.org/xmlns/sca/1.1";
+           name="Test1JmsBytesXmlComposite">
+           
+    <component name="Client">
+               <implementation.java 
class="org.apache.tuscany.sca.itest.Service1ClientImpl"/>
+        <reference name="service1" target="AsyncServiceComponent"/>
+    </component>
+    
+    <component name="AsyncServiceComponent">
+        <implementation.java 
class="org.apache.tuscany.sca.itest.Service1AsyncServerImpl2"/>
+        <service name="Service1AsyncServer">
+            <interface.java 
interface="org.apache.tuscany.sca.itest.Service1AsyncServer"/>
+            <binding.jms>            
+               <t:wireFormat.jmsBytesXML />
+            </binding.jms>
+        </service>
+    </component>
+
+</composite>
\ No newline at end of file

Added: 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmstextxml.composite
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmstextxml.composite?rev=1160608&view=auto
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmstextxml.composite
 (added)
+++ 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmstextxml.composite
 Tue Aug 23 10:34:44 2011
@@ -0,0 +1,40 @@
+<?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";
+              xmlns:t="http://tuscany.apache.org/xmlns/sca/1.1";
+           name="Test1JmsTextXmlComposite">
+           
+    <component name="Client">
+               <implementation.java 
class="org.apache.tuscany.sca.itest.Service1ClientImpl"/>
+        <reference name="service1" target="AsyncServiceComponent"/>
+    </component>
+    
+    <component name="AsyncServiceComponent">
+        <implementation.java 
class="org.apache.tuscany.sca.itest.Service1AsyncServerImpl2"/>
+        <service name="Service1AsyncServer">
+            <interface.java 
interface="org.apache.tuscany.sca.itest.Service1AsyncServer"/>
+            <binding.jms>            
+               <t:wireFormat.jmsTextXML />
+            </binding.jms>
+        </service>
+    </component>
+
+</composite>
\ No newline at end of file

Added: 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsBytesTestCase.java
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsBytesTestCase.java?rev=1160608&view=auto
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsBytesTestCase.java
 (added)
+++ 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsBytesTestCase.java
 Tue Aug 23 10:34:44 2011
@@ -0,0 +1,56 @@
+/*
+ * 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.Ignore;
+import org.junit.Test;
+import org.oasisopen.sca.NoSuchServiceException;
+
+@Ignore
+public class Test1JmsBytesTestCase {
+
+    protected TuscanyRuntime runtime;
+    protected Node node;
+
+    @Before
+    public void setUp() throws Exception {
+        node = TuscanyRuntime.runComposite("test1jmsbytes.composite", 
"target/classes");
+    }
+
+    @After
+    public void tearDown() throws Exception {
+        node.stop();
+    }
+
+    @Test
+    public void testReference() throws NoSuchServiceException {
+        Service1 test = node.getService(Service1.class, "Client");
+        assertEquals("Service1AsyncServerImpl2.operation1Async foo" + 
+                     "Service1AsyncServerImpl2.operation1Async fooTypeOne" + 
+                     "Service1AsyncServerImpl2.operation1Async fooTypeTwo", 
+                     test.operation1("foo"));
+    }
+
+}

Added: 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsBytesXmlTestCase.java
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsBytesXmlTestCase.java?rev=1160608&view=auto
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsBytesXmlTestCase.java
 (added)
+++ 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsBytesXmlTestCase.java
 Tue Aug 23 10:34:44 2011
@@ -0,0 +1,56 @@
+/*
+ * 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.Ignore;
+import org.junit.Test;
+import org.oasisopen.sca.NoSuchServiceException;
+
+@Ignore
+public class Test1JmsBytesXmlTestCase {
+
+    protected TuscanyRuntime runtime;
+    protected Node node;
+
+    @Before
+    public void setUp() throws Exception {
+        node = TuscanyRuntime.runComposite("test1jmsbytesxml.composite", 
"target/classes");
+    }
+
+    @After
+    public void tearDown() throws Exception {
+        node.stop();
+    }
+
+    @Test
+    public void testReference() throws NoSuchServiceException {
+        Service1 test = node.getService(Service1.class, "Client");
+        assertEquals("Service1AsyncServerImpl2.operation1Async foo" + 
+                     "Service1AsyncServerImpl2.operation1Async fooTypeOne" + 
+                     "Service1AsyncServerImpl2.operation1Async fooTypeTwo", 
+                     test.operation1("foo"));
+    }
+
+}

Added: 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsTextXmlTestCase.java
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsTextXmlTestCase.java?rev=1160608&view=auto
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsTextXmlTestCase.java
 (added)
+++ 
tuscany/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsTextXmlTestCase.java
 Tue Aug 23 10:34:44 2011
@@ -0,0 +1,56 @@
+/*
+ * 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.Ignore;
+import org.junit.Test;
+import org.oasisopen.sca.NoSuchServiceException;
+
+@Ignore
+public class Test1JmsTextXmlTestCase {
+
+    protected TuscanyRuntime runtime;
+    protected Node node;
+
+    @Before
+    public void setUp() throws Exception {
+        node = TuscanyRuntime.runComposite("test1jmstextxml.composite", 
"target/classes");
+    }
+
+    @After
+    public void tearDown() throws Exception {
+        node.stop();
+    }
+
+    @Test
+    public void testReference() throws NoSuchServiceException {
+        Service1 test = node.getService(Service1.class, "Client");
+        assertEquals("Service1AsyncServerImpl2.operation1Async foo" + 
+                     "Service1AsyncServerImpl2.operation1Async fooTypeOne" + 
+                     "Service1AsyncServerImpl2.operation1Async fooTypeTwo", 
+                     test.operation1("foo"));
+    }
+
+}


Reply via email to