From e08f249452d9f509b82a18f6de07cd1b3df9ca8b Mon Sep 17 00:00:00 2001 From: slaws Date: Tue, 23 Nov 2010 10:07:17 +0000 Subject: Copy RC3 tag as final release tag git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1038034 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/test/java/helloworld/HelloWorldClient.java | 33 ++++++++++++++ .../src/test/java/helloworld/HelloWorldImpl.java | 28 ++++++++++++ .../test/java/helloworld/HelloWorldService.java | 28 ++++++++++++ .../src/test/java/test/SampleBindingTestCase.java | 52 ++++++++++++++++++++++ 4 files changed, 141 insertions(+) create mode 100644 sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldClient.java create mode 100644 sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldImpl.java create mode 100644 sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldService.java create mode 100644 sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/test/SampleBindingTestCase.java (limited to 'sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java') diff --git a/sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldClient.java b/sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldClient.java new file mode 100644 index 0000000000..bafb453a30 --- /dev/null +++ b/sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldClient.java @@ -0,0 +1,33 @@ +/* + * 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 helloworld; + +import org.oasisopen.sca.annotation.Reference; + +public class HelloWorldClient implements HelloWorldService { + + @Reference + public HelloWorldService ref; + + public String sayHello(String name) { + return ref.sayHello(name); + } + +} diff --git a/sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldImpl.java b/sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldImpl.java new file mode 100644 index 0000000000..98989e6e49 --- /dev/null +++ b/sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldImpl.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 helloworld; + + +public class HelloWorldImpl implements HelloWorldService { + + public String sayHello(String name) { + return "Hello " + name; + } + +} diff --git a/sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldService.java b/sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldService.java new file mode 100644 index 0000000000..59b4bd0d57 --- /dev/null +++ b/sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/helloworld/HelloWorldService.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 helloworld; + +import org.oasisopen.sca.annotation.Remotable; + +@Remotable +public interface HelloWorldService { + + String sayHello(String name); + +} diff --git a/sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/test/SampleBindingTestCase.java b/sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/test/SampleBindingTestCase.java new file mode 100644 index 0000000000..f3274a7fcb --- /dev/null +++ b/sca-java-2.x/tags/2.0-Beta1/samples/extending-tuscany/binding-sample/src/test/java/test/SampleBindingTestCase.java @@ -0,0 +1,52 @@ +/* + * 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 test; + +import helloworld.HelloWorldService; +import junit.framework.Assert; + +import org.apache.tuscany.sca.node.Node; +import org.apache.tuscany.sca.node.NodeFactory; +import org.junit.AfterClass; +import org.junit.BeforeClass; +import org.junit.Test; + +public class SampleBindingTestCase { + + private static Node node; + + @Test + public void testSayHello() { + HelloWorldService service = node.getService(HelloWorldService.class, "HelloWorldClient/HelloWorldService"); + Assert.assertEquals("Hello boo", service.sayHello("boo")); + } + + @BeforeClass + public static void init() throws Exception { + node = NodeFactory.newInstance().createNode("helloworld.composite").start(); + } + + @AfterClass + public static void destroy() throws Exception { + if (node != null) { + node.stop(); + } + } + +} -- cgit v1.2.3