From 9f395ebf3ec27f89c8dc63137bc99c8d6b0cff6d Mon Sep 17 00:00:00 2001 From: lresende Date: Wed, 11 Nov 2009 23:07:37 +0000 Subject: Moving 1.x branches git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@835125 13f79535-47bb-0310-9956-ffa450edef68 --- branches/sca-java-1.2/itest/oneway/build.xml | 127 --------------------- branches/sca-java-1.2/itest/oneway/pom.xml | 64 ----------- .../tuscany/sca/itest/oneway/OneWayClient.java | 32 ------ .../tuscany/sca/itest/oneway/OneWayService.java | 37 ------ .../sca/itest/oneway/impl/OneWayClientImpl.java | 53 --------- .../sca/itest/oneway/impl/OneWayServer.java | 46 -------- .../sca/itest/oneway/impl/OneWayServiceImpl.java | 45 -------- .../META-INF/sca-deployables/oneWay.composite | 39 ------- .../sca/itest/oneway/OneWayTestCaseFIXME.java | 82 ------------- 9 files changed, 525 deletions(-) delete mode 100644 branches/sca-java-1.2/itest/oneway/build.xml delete mode 100644 branches/sca-java-1.2/itest/oneway/pom.xml delete mode 100644 branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/OneWayClient.java delete mode 100644 branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/OneWayService.java delete mode 100644 branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/impl/OneWayClientImpl.java delete mode 100644 branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/impl/OneWayServer.java delete mode 100644 branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/impl/OneWayServiceImpl.java delete mode 100644 branches/sca-java-1.2/itest/oneway/src/main/resources/OneWayContribution/META-INF/sca-deployables/oneWay.composite delete mode 100644 branches/sca-java-1.2/itest/oneway/src/test/java/org/apache/tuscany/sca/itest/oneway/OneWayTestCaseFIXME.java (limited to 'branches/sca-java-1.2/itest/oneway') diff --git a/branches/sca-java-1.2/itest/oneway/build.xml b/branches/sca-java-1.2/itest/oneway/build.xml deleted file mode 100644 index 980e019c62..0000000000 --- a/branches/sca-java-1.2/itest/oneway/build.xml +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/branches/sca-java-1.2/itest/oneway/pom.xml b/branches/sca-java-1.2/itest/oneway/pom.xml deleted file mode 100644 index 4f805ca7a5..0000000000 --- a/branches/sca-java-1.2/itest/oneway/pom.xml +++ /dev/null @@ -1,64 +0,0 @@ - - - - 4.0.0 - - org.apache.tuscany.sca - tuscany-itest - 1.2-incubating-SNAPSHOT - ../pom.xml - - itest-oneway - Apache Tuscany SCA OneWay Integration Tests - - - - org.apache.tuscany.sca - tuscany-node-api - 1.2-incubating-SNAPSHOT - - - - org.apache.tuscany.sca - tuscany-binding-ws-axis2 - 1.2-incubating-SNAPSHOT - - - - org.apache.tuscany.sca - tuscany-host-jetty - 1.2-incubating-SNAPSHOT - - - - org.apache.tuscany.sca - tuscany-node-impl - 1.2-incubating-SNAPSHOT - runtime - - - - org.apache.tuscany.sca - tuscany-implementation-java-runtime - 1.2-incubating-SNAPSHOT - runtime - - - diff --git a/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/OneWayClient.java b/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/OneWayClient.java deleted file mode 100644 index 0e8799ed28..0000000000 --- a/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/OneWayClient.java +++ /dev/null @@ -1,32 +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 org.apache.tuscany.sca.itest.oneway; - - -/** - * The client for the oneway itest - * - * @version $Rev: 537240 $ $Date: 2007-05-11 18:35:03 +0100 (Fri, 11 May 2007) $ - */ - - -public interface OneWayClient { - - public int doSomething(int count); -} diff --git a/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/OneWayService.java b/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/OneWayService.java deleted file mode 100644 index 35c608c62d..0000000000 --- a/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/OneWayService.java +++ /dev/null @@ -1,37 +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 org.apache.tuscany.sca.itest.oneway; - - -import org.osoa.sca.annotations.OneWay; -import org.osoa.sca.annotations.Remotable; - - -/** - * The service interface used when testing oneway interactions - * - * @version $Rev: 537240 $ $Date: 2007-05-11 18:35:03 +0100 (Fri, 11 May 2007) $ - */ -@Remotable -public interface OneWayService { - - @OneWay - public void doSomething(int count); - -} diff --git a/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/impl/OneWayClientImpl.java b/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/impl/OneWayClientImpl.java deleted file mode 100644 index 127f6ec59b..0000000000 --- a/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/impl/OneWayClientImpl.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. - */ -package org.apache.tuscany.sca.itest.oneway.impl; - -import org.apache.tuscany.sca.itest.oneway.OneWayClient; -import org.apache.tuscany.sca.itest.oneway.OneWayService; -import org.osoa.sca.annotations.Reference; - - -/** - * The client for the oneway itest - * - * @version $Rev: 537240 $ $Date: 2007-05-11 18:35:03 +0100 (Fri, 11 May 2007) $ - */ - - -public class OneWayClientImpl implements OneWayClient { - - @Reference - protected OneWayService oneWayService; - - public static int callCount = 0; - - - public int doSomething(int count){ - - callCount = callCount + count; - - for (int loopCount = 0; loopCount < count; loopCount++){ - //System.out.println("Client: doSomething " + loopCount); - //System.out.flush(); - oneWayService.doSomething(loopCount); - } - - return count; - } -} diff --git a/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/impl/OneWayServer.java b/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/impl/OneWayServer.java deleted file mode 100644 index 15b8bf278b..0000000000 --- a/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/impl/OneWayServer.java +++ /dev/null @@ -1,46 +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 org.apache.tuscany.sca.itest.oneway.impl; - -import java.io.IOException; - -import org.apache.tuscany.sca.host.embedded.SCADomain; - -/** - * This server program shows how to create an SCA runtime, and start it which - * activates the oneway Web service endpoint. - */ -public class OneWayServer { - - public static void main(String[] args) { - - SCADomain scaDomain = SCADomain.newInstance("oneWay.composite"); - - try { - System.out.println("OneWay server started (press enter to shutdown)"); - System.in.read(); - } catch (IOException e) { - e.printStackTrace(); - } - - scaDomain.close(); - System.out.println("OneWay server stopped"); - } - -} diff --git a/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/impl/OneWayServiceImpl.java b/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/impl/OneWayServiceImpl.java deleted file mode 100644 index 343e9d36ff..0000000000 --- a/branches/sca-java-1.2/itest/oneway/src/main/java/org/apache/tuscany/sca/itest/oneway/impl/OneWayServiceImpl.java +++ /dev/null @@ -1,45 +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 org.apache.tuscany.sca.itest.oneway.impl; - -import org.apache.tuscany.sca.itest.oneway.OneWayService; - -/** - * The service for the oneway itest - * - * @version $Rev: 537240 $ $Date: 2007-05-11 18:35:03 +0100 (Fri, 11 May 2007) $ - */ - - -public class OneWayServiceImpl implements OneWayService { - - public static int callCount = 0; - - public void doSomething(int count){ - - synchronized(this){ - callCount++; - } - - // System.out.println("Service: doSomething " + count + " callCount = " + callCount); - // System.out.flush(); - - - } -} diff --git a/branches/sca-java-1.2/itest/oneway/src/main/resources/OneWayContribution/META-INF/sca-deployables/oneWay.composite b/branches/sca-java-1.2/itest/oneway/src/main/resources/OneWayContribution/META-INF/sca-deployables/oneWay.composite deleted file mode 100644 index f827327301..0000000000 --- a/branches/sca-java-1.2/itest/oneway/src/main/resources/OneWayContribution/META-INF/sca-deployables/oneWay.composite +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/branches/sca-java-1.2/itest/oneway/src/test/java/org/apache/tuscany/sca/itest/oneway/OneWayTestCaseFIXME.java b/branches/sca-java-1.2/itest/oneway/src/test/java/org/apache/tuscany/sca/itest/oneway/OneWayTestCaseFIXME.java deleted file mode 100644 index 9dfe3a8e90..0000000000 --- a/branches/sca-java-1.2/itest/oneway/src/test/java/org/apache/tuscany/sca/itest/oneway/OneWayTestCaseFIXME.java +++ /dev/null @@ -1,82 +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 org.apache.tuscany.sca.itest.oneway; - -import javax.xml.namespace.QName; - -import junit.framework.Assert; - -import org.apache.tuscany.sca.domain.SCADomain; -import org.apache.tuscany.sca.itest.oneway.impl.OneWayClientImpl; -import org.apache.tuscany.sca.itest.oneway.impl.OneWayServiceImpl; -import org.apache.tuscany.sca.node.SCANode; -import org.apache.tuscany.sca.node.SCANodeFactory; -import org.junit.After; -import org.junit.Before; -import org.junit.Test; - -public class OneWayTestCaseFIXME { - - private SCADomain domain; - - @Before - public void setUp() throws Exception { - SCANode node = SCANodeFactory.newInstance().createSCANode(null, null); - node.addContribution("mycontribution", - OneWayTestCaseFIXME.class.getResource("/OneWayContribution/.")); - node.start(); - domain = node.getDomain(); - } - - @After - public void tearDown() throws Exception { - if (domain != null) { - domain.destroy(); - } - } - - @Test - public void testOneWay() { - OneWayClient client = - domain.getService(OneWayClient.class, "OneWayClientComponent"); - try { - - int count = 100; - - for (int i = 0; i < 10; i++){ - // System.out.println("Test: doSomething " + count); - // System.out.flush(); - client.doSomething(count); - - Thread.sleep(2000); - - System.out.println("Finished callCount = " + OneWayServiceImpl.callCount); - - Assert.assertEquals(OneWayClientImpl.callCount, OneWayServiceImpl.callCount); - } - } catch (Exception ex) { - System.err.println("Exception: " + ex.toString()); - } - - - - } - -} -- cgit v1.2.3