summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorramkumar <ramkumar@13f79535-47bb-0310-9956-ffa450edef68>2008-11-06 16:42:59 +0000
committerramkumar <ramkumar@13f79535-47bb-0310-9956-ffa450edef68>2008-11-06 16:42:59 +0000
commit78cb33c9bbcfd8a9994bf5c3b9ba134696259f54 (patch)
tree517361c9c1a1e3179ef8fbfdcbbe54d07fc0e2c4
parentce178b299f1098c72ef6c5ead574943ae28febf1 (diff)
Fixes for TUSCANY-2666
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@711901 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--java/sca/samples/simple-bigbank-spring/pom.xml25
-rw-r--r--java/sca/samples/spring-bigbank-calculator/src/main/java/bigbank/calculator/server/CalculatorServer.java14
-rw-r--r--java/sca/samples/spring-bigbank-calculator/src/test/java/bigbank/calculator/CalculatorServiceTestCase.java33
-rw-r--r--java/sca/samples/spring-bigbank-checkaccount/src/main/java/bigbank/account/checking/server/CheckingAccountServer.java13
-rw-r--r--java/sca/samples/spring-bigbank-checkaccount/src/main/resources/definitions.xml6
-rw-r--r--java/sca/samples/spring-bigbank-checkaccount/src/test/java/bigbank/checkaccount/CheckAccountServiceTestCase.java33
-rw-r--r--java/sca/samples/spring-bigbank-stockquote/src/main/java/bigbank/stockquote/server/StockQuoteServer.java14
-rw-r--r--java/sca/samples/spring-bigbank-stockquote/src/test/java/bigbank/stockquote/StockQuoteServiceTestCase.java33
8 files changed, 159 insertions, 12 deletions
diff --git a/java/sca/samples/simple-bigbank-spring/pom.xml b/java/sca/samples/simple-bigbank-spring/pom.xml
index 192a2bcc62..4a22fa0237 100644
--- a/java/sca/samples/simple-bigbank-spring/pom.xml
+++ b/java/sca/samples/simple-bigbank-spring/pom.xml
@@ -149,6 +149,13 @@
<dependency>
<groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>sample-spring-bigbank-checkaccount</artifactId>
+ <version>1.4-SNAPSHOT</version>
+ <scope>test</scope>
+ </dependency>
+
+ <dependency>
+ <groupId>org.apache.tuscany.sca</groupId>
<artifactId>tuscany-binding-jsonrpc-runtime</artifactId>
<version>1.4-SNAPSHOT</version>
<scope>runtime</scope>
@@ -174,6 +181,24 @@
<version>1.4-SNAPSHOT</version>
<scope>runtime</scope>
</dependency>
+
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-core</artifactId>
+ <version>2.5.5</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-beans</artifactId>
+ <version>2.5.5</version>
+ </dependency>
+
+ <dependency>
+ <groupId>org.springframework</groupId>
+ <artifactId>spring-context</artifactId>
+ <version>2.5.5</version>
+ </dependency>
<dependency>
<groupId>junit</groupId>
diff --git a/java/sca/samples/spring-bigbank-calculator/src/main/java/bigbank/calculator/server/CalculatorServer.java b/java/sca/samples/spring-bigbank-calculator/src/main/java/bigbank/calculator/server/CalculatorServer.java
index b0737899dc..c6a230fcb4 100644
--- a/java/sca/samples/spring-bigbank-calculator/src/main/java/bigbank/calculator/server/CalculatorServer.java
+++ b/java/sca/samples/spring-bigbank-calculator/src/main/java/bigbank/calculator/server/CalculatorServer.java
@@ -25,6 +25,10 @@ import org.apache.tuscany.sca.node.SCANodeFactory;
public class CalculatorServer {
public static void main(String[] args) throws Exception {
+ long timeout = -1L;
+ if (args.length > 0) {
+ timeout = Long.parseLong(args[0]);
+ }
System.out.println("Starting the Sample SCA Calculator...");
@@ -32,13 +36,15 @@ public class CalculatorServer {
SCANode node = factory.createSCANodeFromClassLoader("Calculator.composite", CalculatorServer.class.getClassLoader());
node.start();
- System.out.println("Press Enter to Exit...");
- System.in.read();
+ if (timeout < 0) {
+ System.out.println("Press Enter to Exit...");
+ System.in.read();
+ } else {
+ Thread.sleep(timeout);
+ }
node.stop();
-
System.out.println("Bye");
- System.exit(0);
}
}
diff --git a/java/sca/samples/spring-bigbank-calculator/src/test/java/bigbank/calculator/CalculatorServiceTestCase.java b/java/sca/samples/spring-bigbank-calculator/src/test/java/bigbank/calculator/CalculatorServiceTestCase.java
new file mode 100644
index 0000000000..02a11485cd
--- /dev/null
+++ b/java/sca/samples/spring-bigbank-calculator/src/test/java/bigbank/calculator/CalculatorServiceTestCase.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 bigbank.calculator;
+
+import junit.framework.TestCase;
+import bigbank.calculator.server.CalculatorServer;
+
+/**
+ * Tests out the big bank service
+ *
+ */
+public class CalculatorServiceTestCase extends TestCase {
+
+ public void testServer() throws Exception {
+ CalculatorServer.main(new String[] {"1000"});
+ }
+}
diff --git a/java/sca/samples/spring-bigbank-checkaccount/src/main/java/bigbank/account/checking/server/CheckingAccountServer.java b/java/sca/samples/spring-bigbank-checkaccount/src/main/java/bigbank/account/checking/server/CheckingAccountServer.java
index 2e367cf32b..562314230a 100644
--- a/java/sca/samples/spring-bigbank-checkaccount/src/main/java/bigbank/account/checking/server/CheckingAccountServer.java
+++ b/java/sca/samples/spring-bigbank-checkaccount/src/main/java/bigbank/account/checking/server/CheckingAccountServer.java
@@ -31,6 +31,11 @@ import org.apache.tuscany.sca.node.SCANodeFactory;
public class CheckingAccountServer {
public static void main(String[] args) {
+ long timeout = -1L;
+ if (args.length > 0) {
+ timeout = Long.parseLong(args[0]);
+ }
+
try {
BrokerService jmsBroker;
jmsBroker = new BrokerService();
@@ -43,8 +48,12 @@ public class CheckingAccountServer {
SCANode node = factory.createSCANodeFromClassLoader("CheckingsAccount.composite", CheckingAccountServer.class.getClassLoader());
node.start();
- System.out.println("CheckingsAccount server started (press enter to shutdown)");
- System.in.read();
+ if (timeout < 0) {
+ System.out.println("CheckingsAccount server started (press enter to shutdown)");
+ System.in.read();
+ } else {
+ Thread.sleep(timeout);
+ }
node.stop();
diff --git a/java/sca/samples/spring-bigbank-checkaccount/src/main/resources/definitions.xml b/java/sca/samples/spring-bigbank-checkaccount/src/main/resources/definitions.xml
index d57d02297c..0ce1440ddf 100644
--- a/java/sca/samples/spring-bigbank-checkaccount/src/main/resources/definitions.xml
+++ b/java/sca/samples/spring-bigbank-checkaccount/src/main/resources/definitions.xml
@@ -27,7 +27,7 @@
<sca:intent name="authorization"
- constrains="sca:implementation.java">
+ constrains="sca:implementation.spring">
<description>
Authorization Intent
</description>
@@ -36,7 +36,7 @@
<!-- WS Security POLICY SETS -->
<sca:policySet name="wsAuthenticationPolicy"
provides="authentication"
- appliesTo="sca:service/sca:binding.ws">
+ appliesTo="sca:service/sca:binding.jms">
<tuscany:wsConfigParam>
<parameter name="InflowSecurity">
<action>
@@ -49,7 +49,7 @@
<sca:policySet name="chkDeptAuthorizationPolicy"
provides="bba:authorization"
- appliesTo="sca:implementation.java">
+ appliesTo="sca:implementation.spring">
<chk:AuthPolicy>
<!-- need to evolve what should go in here -->
</chk:AuthPolicy>
diff --git a/java/sca/samples/spring-bigbank-checkaccount/src/test/java/bigbank/checkaccount/CheckAccountServiceTestCase.java b/java/sca/samples/spring-bigbank-checkaccount/src/test/java/bigbank/checkaccount/CheckAccountServiceTestCase.java
new file mode 100644
index 0000000000..a45630278b
--- /dev/null
+++ b/java/sca/samples/spring-bigbank-checkaccount/src/test/java/bigbank/checkaccount/CheckAccountServiceTestCase.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 bigbank.checkaccount;
+
+import junit.framework.TestCase;
+import bigbank.account.checking.server.CheckingAccountServer;
+
+/**
+ * Tests out the big bank service
+ *
+ */
+public class CheckAccountServiceTestCase extends TestCase {
+
+ public void testServer() throws Exception {
+ CheckingAccountServer.main(new String[] {"1000"});
+ }
+}
diff --git a/java/sca/samples/spring-bigbank-stockquote/src/main/java/bigbank/stockquote/server/StockQuoteServer.java b/java/sca/samples/spring-bigbank-stockquote/src/main/java/bigbank/stockquote/server/StockQuoteServer.java
index b9abb53eb4..da96f29b0c 100644
--- a/java/sca/samples/spring-bigbank-stockquote/src/main/java/bigbank/stockquote/server/StockQuoteServer.java
+++ b/java/sca/samples/spring-bigbank-stockquote/src/main/java/bigbank/stockquote/server/StockQuoteServer.java
@@ -29,7 +29,11 @@ import org.springframework.context.ApplicationContext;
public class StockQuoteServer {
public static void main(String[] args) throws Exception {
-
+ long timeout = -1L;
+ if (args.length > 0) {
+ timeout = Long.parseLong(args[0]);
+ }
+
System.out.println("Starting the Sample SCA StockQuote Service...");
SCANodeFactory factory = SCANodeFactory.newInstance();
@@ -41,8 +45,12 @@ public class StockQuoteServer {
if (ctx.containsBean("StockQuoteServiceBean"))
System.out.println("StockQuoteServiceBean is now available for use...");
- System.out.println("Press Enter to Exit...");
- System.in.read();
+ if (timeout < 0) {
+ System.out.println("Press Enter to Exit...");
+ System.in.read();
+ } else {
+ Thread.sleep(timeout);
+ }
node.stop();
System.out.println("Bye");
diff --git a/java/sca/samples/spring-bigbank-stockquote/src/test/java/bigbank/stockquote/StockQuoteServiceTestCase.java b/java/sca/samples/spring-bigbank-stockquote/src/test/java/bigbank/stockquote/StockQuoteServiceTestCase.java
new file mode 100644
index 0000000000..4b36d0694d
--- /dev/null
+++ b/java/sca/samples/spring-bigbank-stockquote/src/test/java/bigbank/stockquote/StockQuoteServiceTestCase.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 bigbank.stockquote;
+
+import junit.framework.TestCase;
+import bigbank.stockquote.server.StockQuoteServer;
+
+/**
+ * Tests out the big bank service
+ *
+ */
+public class StockQuoteServiceTestCase extends TestCase {
+
+ public void testServer() throws Exception {
+ StockQuoteServer.main(new String[] {"1000"});
+ }
+}