From a40e527938d76ba71f211da7e327adb50384ba69 Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 11 Nov 2009 23:26:33 +0000 Subject: Moving 1.x tags git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835157 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/test/java/ContributionFolderTestCase.java | 53 --------------------- .../src/test/java/ContributionZIPTestCase.java | 53 --------------------- .../test/java/calculator/CalculatorService.java | 31 ------------ .../folderWithJars/Calculator.composite | 49 ------------------- .../folderWithJars/META-INF/sca-contribution.xml | 23 --------- .../repository2/folderWithJars/service.jar | Bin 2131 -> 0 bytes .../repository2/folderWithJars/serviceImpl.jar | Bin 3641 -> 0 bytes .../test/resources/repository3/contribution.zip | Bin 5478 -> 0 bytes 8 files changed, 209 deletions(-) delete mode 100644 tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/java/ContributionFolderTestCase.java delete mode 100644 tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/java/ContributionZIPTestCase.java delete mode 100644 tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/java/calculator/CalculatorService.java delete mode 100644 tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/Calculator.composite delete mode 100644 tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/META-INF/sca-contribution.xml delete mode 100644 tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/service.jar delete mode 100644 tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/serviceImpl.jar delete mode 100644 tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository3/contribution.zip (limited to 'tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test') diff --git a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/java/ContributionFolderTestCase.java b/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/java/ContributionFolderTestCase.java deleted file mode 100644 index 9f9c15c14d..0000000000 --- a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/java/ContributionFolderTestCase.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * 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. - */ - - -import junit.framework.TestCase; - -import org.apache.tuscany.sca.host.embedded.SCADomain; - -import calculator.CalculatorService; - - - -/** - * Test SCADomain.newInstance and invocation of a service. - * - * @version $Rev: 608205 $ $Date: 2008-01-02 20:29:05 +0000 (Wed, 02 Jan 2008) $ - */ -public class ContributionFolderTestCase extends TestCase { - - private SCADomain domain; - - @Override - protected void setUp() throws Exception { - domain = SCADomain.newInstance("myDomain", "src/test/resources/repository2/folderWithJars", null ); - } - - public void testInvoke() throws Exception { - CalculatorService service = domain.getService(CalculatorService.class, "CalculatorServiceComponent"); - assertEquals(3.0, service.add(1, 2)); - } - - @Override - protected void tearDown() throws Exception { - domain.close(); - } - -} diff --git a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/java/ContributionZIPTestCase.java b/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/java/ContributionZIPTestCase.java deleted file mode 100644 index 98bbe3935a..0000000000 --- a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/java/ContributionZIPTestCase.java +++ /dev/null @@ -1,53 +0,0 @@ -/* - * 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. - */ - - -import junit.framework.TestCase; - -import org.apache.tuscany.sca.host.embedded.SCADomain; - -import calculator.CalculatorService; - - - -/** - * Test SCADomain.newInstance and invocation of a service. - * - * @version $Rev: 608205 $ $Date: 2008-01-02 20:29:05 +0000 (Wed, 02 Jan 2008) $ - */ -public class ContributionZIPTestCase extends TestCase { - - private SCADomain domain; - - @Override - protected void setUp() throws Exception { - domain = SCADomain.newInstance("myDomain", "src/test/resources/repository3/contribution.zip", null ); - } - - public void testInvoke() throws Exception { - CalculatorService service = domain.getService(CalculatorService.class, "CalculatorServiceComponent"); - assertEquals(3.0, service.add(1, 2)); - } - - @Override - protected void tearDown() throws Exception { - domain.close(); - } - -} diff --git a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/java/calculator/CalculatorService.java b/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/java/calculator/CalculatorService.java deleted file mode 100644 index a318cf50d9..0000000000 --- a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/java/calculator/CalculatorService.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * 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 calculator; - -public interface CalculatorService { - double add(double n1, double n2); - - double subtract(double n1, double n2); - - double multiply(double n1, double n2); - - double divide(double n1, double n2); - -} diff --git a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/Calculator.composite b/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/Calculator.composite deleted file mode 100644 index ac88b2ac48..0000000000 --- a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/Calculator.composite +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/META-INF/sca-contribution.xml b/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/META-INF/sca-contribution.xml deleted file mode 100644 index 8b60ae590c..0000000000 --- a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/META-INF/sca-contribution.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - \ No newline at end of file diff --git a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/service.jar b/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/service.jar deleted file mode 100644 index 7e4a7132a3..0000000000 Binary files a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/service.jar and /dev/null differ diff --git a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/serviceImpl.jar b/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/serviceImpl.jar deleted file mode 100644 index 0e16e11b0b..0000000000 Binary files a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository2/folderWithJars/serviceImpl.jar and /dev/null differ diff --git a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository3/contribution.zip b/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository3/contribution.zip deleted file mode 100644 index b293aa4bcc..0000000000 Binary files a/tags/java/sca/1.5.1-RC1/itest/contribution-folder/src/test/resources/repository3/contribution.zip and /dev/null differ -- cgit v1.2.3