From b2a97423304c9b5ef3c0a042ae134e857c2d25a5 Mon Sep 17 00:00:00 2001 From: antelder Date: Fri, 19 Aug 2011 14:46:59 +0000 Subject: Add an async test using jms wireformats. taken out with @Ignore for now as it doesn't work git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1159653 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/main/resources/test1jmsobject.composite | 40 ++++++++++++++++ .../tuscany/sca/itest/Test1JmsObjectTestCase.java | 56 ++++++++++++++++++++++ 2 files changed, 96 insertions(+) create mode 100644 sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsobject.composite create mode 100644 sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsObjectTestCase.java (limited to 'sca-java-2.x/trunk/testing/itest/async-services') diff --git a/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsobject.composite b/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsobject.composite new file mode 100644 index 0000000000..9d20b1bf1f --- /dev/null +++ b/sca-java-2.x/trunk/testing/itest/async-services/src/main/resources/test1jmsobject.composite @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsObjectTestCase.java b/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsObjectTestCase.java new file mode 100644 index 0000000000..9756be9318 --- /dev/null +++ b/sca-java-2.x/trunk/testing/itest/async-services/src/test/java/org/apache/tuscany/sca/itest/Test1JmsObjectTestCase.java @@ -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 Test1JmsObjectTestCase { + + protected TuscanyRuntime runtime; + protected Node node; + + @Before + public void setUp() throws Exception { + node = TuscanyRuntime.runComposite("test1jmsobject.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")); + } + +} -- cgit v1.2.3