From 0daa6e66908eb59332ee38b5bd2193ba40a7eb55 Mon Sep 17 00:00:00 2001 From: antelder Date: Mon, 23 Mar 2009 08:34:33 +0000 Subject: Delete test trunk in sandbox git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@757347 13f79535-47bb-0310-9956-ffa450edef68 --- .../vtest/javaapi/conversation/id/AService.java | 39 ------- .../vtest/javaapi/conversation/id/BService.java | 41 ------- .../vtest/javaapi/conversation/id/CService.java | 37 ------- .../conversation/id/CustomConversationId.java | 54 ---------- .../javaapi/conversation/id/impl/AServiceImpl.java | 69 ------------ .../javaapi/conversation/id/impl/BServiceImpl.java | 65 ------------ .../javaapi/conversation/id/impl/CServiceImpl.java | 56 ---------- .../src/main/resources/conversation-id.composite | 40 ------- .../conversation/id/ConversationIDTestCase.java | 118 --------------------- 9 files changed, 519 deletions(-) delete mode 100644 sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/AService.java delete mode 100644 sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/BService.java delete mode 100644 sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/CService.java delete mode 100644 sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/CustomConversationId.java delete mode 100644 sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/impl/AServiceImpl.java delete mode 100644 sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/impl/BServiceImpl.java delete mode 100644 sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/impl/CServiceImpl.java delete mode 100644 sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/resources/conversation-id.composite delete mode 100644 sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/test/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/ConversationIDTestCase.java (limited to 'sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src') diff --git a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/AService.java b/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/AService.java deleted file mode 100644 index 39719539ba..0000000000 --- a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/AService.java +++ /dev/null @@ -1,39 +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.vtest.javaapi.conversation.id; - -import org.oasisopen.sca.annotation.Remotable; - -/** - * Simple Remotable Service - */ -@Remotable -public interface AService { - - public void testAnnotation(); - - public void testAnnotation2(); - - public void testAnnotation3(); - - public void testAnnotation4(); - - public void testAnnotation5(); - -} diff --git a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/BService.java b/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/BService.java deleted file mode 100644 index b5911101b8..0000000000 --- a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/BService.java +++ /dev/null @@ -1,41 +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.vtest.javaapi.conversation.id; - -import org.oasisopen.sca.annotation.Conversational; -import org.oasisopen.sca.annotation.Remotable; - -/** - * Simple Local Service - */ -@Remotable -@Conversational -public interface BService { - - public void setState(String someState); - - public String getState(); - - public void testAnnotation(); - - public void testAnnotation2(); - - public void testAnnotation3(); - -} diff --git a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/CService.java b/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/CService.java deleted file mode 100644 index 1730f863b5..0000000000 --- a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/CService.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.vtest.javaapi.conversation.id; - -import org.oasisopen.sca.annotation.Conversational; -import org.oasisopen.sca.annotation.Remotable; - -/** - * Simple Local Service - */ -@Remotable -@Conversational -public interface CService { - - public void setState(String someState); - - public String getState(); - - public void testAnnotation(); - -} diff --git a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/CustomConversationId.java b/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/CustomConversationId.java deleted file mode 100644 index ac40c56ee6..0000000000 --- a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/CustomConversationId.java +++ /dev/null @@ -1,54 +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.vtest.javaapi.conversation.id; - - -public class CustomConversationId { - - int id; - String name; - - public CustomConversationId(int id, String name) { - super(); - this.id = id; - this.name = name; - } - - public String getName() { - return name; - } - - public int getNumber() { - return id; - } - - public void setName(String someName) { - name = someName; - } - - public void setNumber(int someInt) { - id = someInt; - } - - public String toString() { - return "id->" + id + " name->" + name; - } - -} diff --git a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/impl/AServiceImpl.java b/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/impl/AServiceImpl.java deleted file mode 100644 index bac842dfca..0000000000 --- a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/impl/AServiceImpl.java +++ /dev/null @@ -1,69 +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.vtest.javaapi.conversation.id.impl; - -import org.apache.tuscany.sca.vtest.javaapi.conversation.id.AService; -import org.apache.tuscany.sca.vtest.javaapi.conversation.id.BService; -import org.apache.tuscany.sca.vtest.javaapi.conversation.id.CService; -import org.apache.tuscany.sca.vtest.javaapi.conversation.id.CustomConversationId; -import org.junit.Assert; -import org.oasisopen.sca.ServiceReference; -import org.oasisopen.sca.annotation.Reference; -import org.oasisopen.sca.annotation.Scope; -import org.oasisopen.sca.annotation.Service; - -@Service(AService.class) -@Scope("CONVERSATION") -public class AServiceImpl implements AService { - - @Reference - protected ServiceReference b; - - @Reference - protected ServiceReference c; - - public void testAnnotation() { - b.getService().testAnnotation(); - } - - public void testAnnotation2() { - b.getService().testAnnotation2(); - } - - public void testAnnotation3() { - b.getService().testAnnotation3(); - } - - public void testAnnotation4() { - CustomConversationId id = new CustomConversationId (1, "One"); - c.setConversationID(id); - c.getService().testAnnotation(); - } - - public void testAnnotation5() { - b.getService().getState(); - Assert.assertNotNull(b.getConversation().getConversationID()); -// Assert.assertNotNull(b.getConversationID()); - - CustomConversationId id = new CustomConversationId (1, "One"); - c.setConversationID(id); - Assert.assertSame(id, c.getConversationID()); - } -} diff --git a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/impl/BServiceImpl.java b/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/impl/BServiceImpl.java deleted file mode 100644 index 3c4eea4bc9..0000000000 --- a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/impl/BServiceImpl.java +++ /dev/null @@ -1,65 +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.vtest.javaapi.conversation.id.impl; - -import org.apache.tuscany.sca.vtest.javaapi.conversation.id.BService; -import org.junit.Assert; -import org.oasisopen.sca.annotation.ConversationAttributes; -import org.oasisopen.sca.annotation.ConversationID; -import org.oasisopen.sca.annotation.Scope; -import org.oasisopen.sca.annotation.Service; - -@Service(BService.class) -@Scope("CONVERSATION") -@ConversationAttributes(maxAge = "1 seconds") -public class BServiceImpl implements BService { - - String someState; - - @ConversationID - protected String conversationID; - - @ConversationID - protected Object conversationID2; - - public void setState(String someState) { - this.someState = someState; - } - - public String getState() { - return someState; - } - - public void testAnnotation() { - Assert.assertNotNull(conversationID); - System.out.println(conversationID); - } - - public void testAnnotation2() { - Assert.assertNotNull(conversationID2); - System.out.println(conversationID); - } - - public void testAnnotation3() { - Assert.assertTrue(conversationID2 instanceof String); - System.out.println(conversationID); - } - -} diff --git a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/impl/CServiceImpl.java b/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/impl/CServiceImpl.java deleted file mode 100644 index 1e5a459954..0000000000 --- a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/impl/CServiceImpl.java +++ /dev/null @@ -1,56 +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.vtest.javaapi.conversation.id.impl; - -import org.apache.tuscany.sca.vtest.javaapi.conversation.id.CService; -import org.apache.tuscany.sca.vtest.javaapi.conversation.id.CustomConversationId; -import org.junit.Assert; -import org.oasisopen.sca.annotation.ConversationID; -import org.oasisopen.sca.annotation.Scope; -import org.oasisopen.sca.annotation.Service; - -@Service(CService.class) -@Scope("CONVERSATION") -public class CServiceImpl implements CService { - - String someState; - - @ConversationID - protected Object conversationID; - - - public void setState(String someState) { - this.someState = someState; - } - - public String getState() { - return someState; - } - - public void testAnnotation() { - Assert.assertNotNull(conversationID); - Assert.assertTrue(conversationID instanceof CustomConversationId); - - Assert.assertSame(1, ((CustomConversationId)conversationID).getNumber()); - Assert.assertSame("One", ((CustomConversationId)conversationID).getName()); - System.out.println(conversationID); - } - -} diff --git a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/resources/conversation-id.composite b/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/resources/conversation-id.composite deleted file mode 100644 index 25e7154fca..0000000000 --- a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/main/resources/conversation-id.composite +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/test/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/ConversationIDTestCase.java b/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/test/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/ConversationIDTestCase.java deleted file mode 100644 index d3cb107a61..0000000000 --- a/sandbox/ant/sca/trunk/vtest/java-api/conversation/id/src/test/java/org/apache/tuscany/sca/vtest/javaapi/conversation/id/ConversationIDTestCase.java +++ /dev/null @@ -1,118 +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.vtest.javaapi.conversation.id; - -import org.apache.tuscany.sca.vtest.utilities.ServiceFinder; -import org.junit.AfterClass; -import org.junit.BeforeClass; -import org.junit.Test; - -/** - * - */ -public class ConversationIDTestCase { - - protected static String compositeName = "conversation-id.composite"; - protected static AService aService = null; - - @BeforeClass - public static void init() throws Exception { - try { - System.out.println("Setting up"); - ServiceFinder.init(compositeName); - aService = ServiceFinder.getService(AService.class, "AComponent"); - } catch (Exception ex) { - ex.printStackTrace(); - } - } - - @AfterClass - public static void destroy() throws Exception { - - System.out.println("Cleaning up"); - ServiceFinder.cleanup(); - - } - - /** - * Lines 504, 505 - *

- * If a protected or public field or setter method is annotated with - * "@ConversationID", then the conversation ID for the conversation is - * injected onto the field - */ - @Test - public void idAnnotation() throws Exception { - aService.testAnnotation(); - } - - /** - * Lines 505 - *

- * The type of the field is not necessarily String - */ - @Test - public void idAnnotation2() throws Exception { - aService.testAnnotation2(); - } - - /** - * Lines 505, 506 - *

- * System generated conversation IDs are always strings - */ - @Test - public void idAnnotation3() throws Exception { - aService.testAnnotation3(); - } - - /** - * Lines 506, 507 - *

- * ... but application generated conversation IDs may be other complex - * types. - *

- * Lines 513, 514 - *

- * ... To do this, the client would not use reference injection, but would - * use the of ServiceReference.setConversationID() API. - */ - @Test - public void idAnnotation4() throws Exception { - aService.testAnnotation4(); - } - - /** - * Lines 522, 523 - *

- * Whether the conversation ID is chosen by the client or is generated by - * the system, the client may access the conversation ID by calling - * ServiceReference.getConversationID(). - *

- * This test is following updates to this section of the specification per - * the OASIS TC under issue JAVA-31. The updated text reads: "...by calling - * getConversationID() on the current conversation object". - */ - @Test - public void idAnnotation5() throws Exception { - aService.testAnnotation5(); - } - -} -- cgit v1.2.3