Author: slaws
Date: Wed Mar 10 11:45:19 2010
New Revision: 921315
URL: http://svn.apache.org/viewvc?rev=921315&view=rev
Log:
Example with nested jar for ML discussion
Added:
tuscany/sandbox/slaws/calculator-with-nested-jar/
tuscany/sandbox/slaws/calculator-with-nested-jar/pom.xml (with props)
tuscany/sandbox/slaws/calculator-with-nested-jar/src/
tuscany/sandbox/slaws/calculator-with-nested-jar/src/main/
tuscany/sandbox/slaws/calculator-with-nested-jar/src/main/java/
tuscany/sandbox/slaws/calculator-with-nested-jar/src/main/resources/
tuscany/sandbox/slaws/calculator-with-nested-jar/src/main/resources/Calculator.composite
(with props)
tuscany/sandbox/slaws/calculator-with-nested-jar/src/test/
tuscany/sandbox/slaws/calculator-with-nested-jar/src/test/java/
tuscany/sandbox/slaws/calculator-with-nested-jar/src/test/java/calculator/
tuscany/sandbox/slaws/calculator-with-nested-jar/src/test/java/calculator/CalculatorTestCase.java
(with props)
tuscany/sandbox/slaws/calculator-with-nested-jar/target/
tuscany/sandbox/slaws/calculator-with-nested-jar/target/classes/
tuscany/sandbox/slaws/calculator-with-nested-jar/target/classes/Calculator.composite
(with props)
tuscany/sandbox/slaws/calculator-with-nested-jar/target/classes/calculator.jar
(with props)
tuscany/sandbox/slaws/calculator-with-nested-jar/target/sample-calculator.jar
(with props)
tuscany/sandbox/slaws/calculator-with-nested-jar/target/test-classes/
tuscany/sandbox/slaws/calculator-with-nested-jar/target/test-classes/calculator/
tuscany/sandbox/slaws/calculator-with-nested-jar/target/test-classes/calculator/CalculatorTestCase.class
(with props)
Added: tuscany/sandbox/slaws/calculator-with-nested-jar/pom.xml
URL:
http://svn.apache.org/viewvc/tuscany/sandbox/slaws/calculator-with-nested-jar/pom.xml?rev=921315&view=auto
==============================================================================
--- tuscany/sandbox/slaws/calculator-with-nested-jar/pom.xml (added)
+++ tuscany/sandbox/slaws/calculator-with-nested-jar/pom.xml Wed Mar 10
11:45:19 2010
@@ -0,0 +1,71 @@
+<?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-sca</artifactId>
+ <version>1.7-SNAPSHOT</version>
+ <relativePath>../../pom.xml</relativePath>
+ </parent>
+ <artifactId>sample-calculator</artifactId>
+ <name>Apache Tuscany SCA Sample Calculator</name>
+
+ <repositories>
+ <repository>
+ <id>apache.incubator</id>
+ <url>http://people.apache.org/repo/m2-incubating-repository</url>
+ </repository>
+ </repositories>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-node-api</artifactId>
+ <version>1.7-SNAPSHOT</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-node-impl</artifactId>
+ <version>1.7-SNAPSHOT</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-implementation-java-runtime</artifactId>
+ <version>1.7-SNAPSHOT</version>
+ <scope>runtime</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.5</version>
+ <scope>test</scope>
+ </dependency>
+
+ </dependencies>
+
+ <build>
+ <finalName>${artifactId}</finalName>
+ </build>
+</project>
Propchange: tuscany/sandbox/slaws/calculator-with-nested-jar/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: tuscany/sandbox/slaws/calculator-with-nested-jar/pom.xml
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange: tuscany/sandbox/slaws/calculator-with-nested-jar/pom.xml
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
tuscany/sandbox/slaws/calculator-with-nested-jar/src/main/resources/Calculator.composite
URL:
http://svn.apache.org/viewvc/tuscany/sandbox/slaws/calculator-with-nested-jar/src/main/resources/Calculator.composite?rev=921315&view=auto
==============================================================================
---
tuscany/sandbox/slaws/calculator-with-nested-jar/src/main/resources/Calculator.composite
(added)
+++
tuscany/sandbox/slaws/calculator-with-nested-jar/src/main/resources/Calculator.composite
Wed Mar 10 11:45:19 2010
@@ -0,0 +1,49 @@
+<?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://www.osoa.org/xmlns/sca/1.0"
+ targetNamespace="http://sample"
+ xmlns:sample="http://sample"
+ name="Calculator">
+
+ <component name="CalculatorServiceComponent">
+ <implementation.java class="calculator.CalculatorServiceImpl"/>
+ <reference name="addService" target="AddServiceComponent" />
+ <reference name="subtractService" target="SubtractServiceComponent" />
+ <reference name="multiplyService" target="MultiplyServiceComponent" />
+ <reference name="divideService" target="DivideServiceComponent" />
+ </component>
+
+ <component name="AddServiceComponent">
+ <implementation.java class="calculator.AddServiceImpl"/>
+ </component>
+
+ <component name="SubtractServiceComponent">
+ <implementation.java class="calculator.SubtractServiceImpl"/>
+ </component>
+
+ <component name="MultiplyServiceComponent">
+ <implementation.java class="calculator.MultiplyServiceImpl"/>
+ </component>
+
+ <component name="DivideServiceComponent">
+ <implementation.java class="calculator.DivideServiceImpl"/>
+ </component>
+
+</composite>
Propchange:
tuscany/sandbox/slaws/calculator-with-nested-jar/src/main/resources/Calculator.composite
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
tuscany/sandbox/slaws/calculator-with-nested-jar/src/main/resources/Calculator.composite
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
tuscany/sandbox/slaws/calculator-with-nested-jar/src/main/resources/Calculator.composite
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
tuscany/sandbox/slaws/calculator-with-nested-jar/src/test/java/calculator/CalculatorTestCase.java
URL:
http://svn.apache.org/viewvc/tuscany/sandbox/slaws/calculator-with-nested-jar/src/test/java/calculator/CalculatorTestCase.java?rev=921315&view=auto
==============================================================================
---
tuscany/sandbox/slaws/calculator-with-nested-jar/src/test/java/calculator/CalculatorTestCase.java
(added)
+++
tuscany/sandbox/slaws/calculator-with-nested-jar/src/test/java/calculator/CalculatorTestCase.java
Wed Mar 10 11:45:19 2010
@@ -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 calculator;
+
+import junit.framework.TestCase;
+
+import org.apache.tuscany.sca.node.SCAClient;
+import org.apache.tuscany.sca.node.SCANode;
+import org.apache.tuscany.sca.node.SCANodeFactory;
+
+/**
+ * This shows how to test the Calculator service component.
+ */
+public class CalculatorTestCase extends TestCase {
+
+ private CalculatorService calculatorService;
+ private SCANode node;
+
+ @Override
+ protected void setUp() throws Exception {
+ SCANodeFactory factory = SCANodeFactory.newInstance();
+ node = factory.createSCANodeFromClassLoader("Calculator.composite",
getClass().getClassLoader());
+ node.start();
+
+ calculatorService =
((SCAClient)node).getService(CalculatorService.class,
"CalculatorServiceComponent");
+ }
+
+ @Override
+ protected void tearDown() throws Exception {
+ node.stop();
+ }
+
+ public void testCalculator() throws Exception {
+ // Calculate
+ assertEquals(calculatorService.add(3, 2), 5.0);
+ assertEquals(calculatorService.subtract(3, 2), 1.0);
+ assertEquals(calculatorService.multiply(3, 2), 6.0);
+ assertEquals(calculatorService.divide(3, 2), 1.5);
+ }
+}
Propchange:
tuscany/sandbox/slaws/calculator-with-nested-jar/src/test/java/calculator/CalculatorTestCase.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
tuscany/sandbox/slaws/calculator-with-nested-jar/src/test/java/calculator/CalculatorTestCase.java
------------------------------------------------------------------------------
svn:keywords = Rev Date
Added:
tuscany/sandbox/slaws/calculator-with-nested-jar/target/classes/Calculator.composite
URL:
http://svn.apache.org/viewvc/tuscany/sandbox/slaws/calculator-with-nested-jar/target/classes/Calculator.composite?rev=921315&view=auto
==============================================================================
---
tuscany/sandbox/slaws/calculator-with-nested-jar/target/classes/Calculator.composite
(added)
+++
tuscany/sandbox/slaws/calculator-with-nested-jar/target/classes/Calculator.composite
Wed Mar 10 11:45:19 2010
@@ -0,0 +1,49 @@
+<?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://www.osoa.org/xmlns/sca/1.0"
+ targetNamespace="http://sample"
+ xmlns:sample="http://sample"
+ name="Calculator">
+
+ <component name="CalculatorServiceComponent">
+ <implementation.java class="calculator.CalculatorServiceImpl"/>
+ <reference name="addService" target="AddServiceComponent" />
+ <reference name="subtractService" target="SubtractServiceComponent" />
+ <reference name="multiplyService" target="MultiplyServiceComponent" />
+ <reference name="divideService" target="DivideServiceComponent" />
+ </component>
+
+ <component name="AddServiceComponent">
+ <implementation.java class="calculator.AddServiceImpl"/>
+ </component>
+
+ <component name="SubtractServiceComponent">
+ <implementation.java class="calculator.SubtractServiceImpl"/>
+ </component>
+
+ <component name="MultiplyServiceComponent">
+ <implementation.java class="calculator.MultiplyServiceImpl"/>
+ </component>
+
+ <component name="DivideServiceComponent">
+ <implementation.java class="calculator.DivideServiceImpl"/>
+ </component>
+
+</composite>
Propchange:
tuscany/sandbox/slaws/calculator-with-nested-jar/target/classes/Calculator.composite
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
tuscany/sandbox/slaws/calculator-with-nested-jar/target/classes/Calculator.composite
------------------------------------------------------------------------------
svn:keywords = Rev Date
Propchange:
tuscany/sandbox/slaws/calculator-with-nested-jar/target/classes/Calculator.composite
------------------------------------------------------------------------------
svn:mime-type = text/xml
Added:
tuscany/sandbox/slaws/calculator-with-nested-jar/target/classes/calculator.jar
URL:
http://svn.apache.org/viewvc/tuscany/sandbox/slaws/calculator-with-nested-jar/target/classes/calculator.jar?rev=921315&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
tuscany/sandbox/slaws/calculator-with-nested-jar/target/classes/calculator.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
tuscany/sandbox/slaws/calculator-with-nested-jar/target/sample-calculator.jar
URL:
http://svn.apache.org/viewvc/tuscany/sandbox/slaws/calculator-with-nested-jar/target/sample-calculator.jar?rev=921315&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
tuscany/sandbox/slaws/calculator-with-nested-jar/target/sample-calculator.jar
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Added:
tuscany/sandbox/slaws/calculator-with-nested-jar/target/test-classes/calculator/CalculatorTestCase.class
URL:
http://svn.apache.org/viewvc/tuscany/sandbox/slaws/calculator-with-nested-jar/target/test-classes/calculator/CalculatorTestCase.class?rev=921315&view=auto
==============================================================================
Binary file - no diff available.
Propchange:
tuscany/sandbox/slaws/calculator-with-nested-jar/target/test-classes/calculator/CalculatorTestCase.class
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream