From 3a569a2f00bf172cddfd567149774ee808a2a242 Mon Sep 17 00:00:00 2001 From: nash Date: Wed, 30 Mar 2011 19:50:51 +0000 Subject: Create branch for 1.6.2 git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1087059 13f79535-47bb-0310-9956-ffa450edef68 --- .../assembly/component/ComponentBasicTestCase.java | 363 +++++++++++++++++++++ .../component/ComponentPropertyTestCase.java | 166 ++++++++++ .../component/ComponentReferenceTestCase.java | 259 +++++++++++++++ .../assembly/component/ComponentTestCase.java | 230 +++++++++++++ 4 files changed, 1018 insertions(+) create mode 100644 sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentBasicTestCase.java create mode 100644 sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentPropertyTestCase.java create mode 100644 sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentReferenceTestCase.java create mode 100644 sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentTestCase.java (limited to 'sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache') diff --git a/sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentBasicTestCase.java b/sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentBasicTestCase.java new file mode 100644 index 0000000000..69b7377986 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentBasicTestCase.java @@ -0,0 +1,363 @@ +/* + * 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.assembly.component; + +import java.io.BufferedReader; +import java.io.InputStreamReader; +import java.net.URL; +import java.net.URLConnection; + +import junit.framework.Assert; + +import org.apache.tuscany.sca.vtest.assembly.component.callback.MyClient; +import org.apache.tuscany.sca.vtest.utilities.ServiceFinder; +import org.junit.Test; +import org.junit.Ignore; +import org.osoa.sca.ServiceRuntimeException; + +/** + * Test the basic functionalities of the component + * + */ +public class ComponentBasicTestCase { + + + private void initDomain(String compositePath) { + System.out.println("Setting up"); + ServiceFinder.init(compositePath); + } + + private void cleanupDomain() { + System.out.println("Cleaning up"); + ServiceFinder.cleanup(); + } + + /** + * Lines 92-96: + *

+ * Components are configured instances of implementations. Components + * provide and consume services. More than one component can use and + * configure the same implementation, where each component configures the + * implementation differently. + */ + @Test + public void components1() throws Exception { + initDomain("component.composite"); + AService service = ServiceFinder.getService(AService.class, "AComponent/AService"); + Assert.assertEquals("some b component value", service.getBProperty()); + Assert.assertEquals("some b2 component value", service.getB2Property()); + cleanupDomain(); + } + + /** + * Lines 96-97: + *

+ * There can be zero or more component elements within a composite. + */ + @Test + public void components2() throws Exception { + initDomain("zerocomponents.composite"); + cleanupDomain(); + } + + /** + * Lines 142-143: + *

+ * name (required) ?the name of the component. The name must be unique + * across all the components in the composite. + */ + @Test(expected = ServiceRuntimeException.class) + //@Ignore("TUSCANY-2455") + public void components3() throws Exception { + initDomain("nonuniquename.composite"); + cleanupDomain(); + } + + /** + * Lines 154-158: + *

+ * A component element has zero or one implementation element as its child, + * which points to the implementation used by the component. A component + * with no implementation element is not runnable, but components of this + * kind may be useful during a "top-down" development process as a means of + * defining the characteristics required of the implementation before the + * implementation is written. + */ + @Test + public void components4() throws Exception { + initDomain("zeroimplelements.composite"); + cleanupDomain(); + } + + /** + * Lines 159-160: + *

+ * The component element can have zero or more service elements as children + * which are used to configure the services of the component. + */ + @Test + public void components5() throws Exception { + initDomain("serviceelement.composite"); + cleanupDomain(); + } + + /** + * Lines 174-179: + *

+ * A service has zero or one interface, which describes the operations + * provided by the service. The interface is described by an interface + * element which is a child element of the service element. If no interface + * is specified, then the interface specified for the service by the + * implementation is in effect. If an interface is specified it must provide + * a compatible subset of the interface provided by the implementation, i.e. + * provide a subset of the operations defined by the implementation for the + * service. + */ + @Test + public void components6() throws Exception { + initDomain("servicewithinterface.composite"); + CService service = ServiceFinder.getService(CService.class, "CComponent"); + Assert.assertEquals("Some State", service.getState()); + cleanupDomain(); + } + + /** + * Lines 180-182: + *

+ * A service element has one or more binding elements as children. If no + * bindings are specified, then the bindings specified for the service by + * the implementation are in effect. If bindings are specified, then those + * bindings override the bindings specified by the implementation. + */ + @Test + public void components7() throws Exception { + initDomain("servicewithbinding.composite"); + CService service = ServiceFinder.getService(CService.class, "CComponent"); + Assert.assertEquals("Some State", service.getState()); + cleanupDomain(); + } + + /** + * Lines 142-143: + *

+ * OSOA: + * the name of the component. The name must be unique across all the + * components in the composite. + *

+ * ASM50001 + *

+ * OASIS: + * the name of the component. The name must be unique across all + * the components in the composite. + * + */ + @Test(expected=ServiceRuntimeException.class) + public void testComponentnameUnique() throws Exception { + initDomain("nonuniquename.composite"); + cleanupDomain(); + + } + + /** + * Lines 1498-1499: + *

+ * OSOA: + * the name of the service, the name MUST BE unique across all the + * composite services in the composite + *

+ * ASM50002 + *

+ * OASIS: + * The @name attribute of a service element of a MUST be unique amongst + * the service elements of that + * + */ + @Test(expected=ServiceRuntimeException.class) + public void testServicenameUnique() throws Exception { + initDomain("nonuniqueservicenameincomposite.composite"); + DService service = ServiceFinder.getService(DService.class, "CDComponent/CServiceImpl"); + Assert.assertEquals("hello", service.sayHello()); + cleanupDomain(); + } + + /** + *

+ * Not mentioned in OSOA + *

+ * ASM50003 + *

+ * OASIS + * The @name attribute of a service element of a MUST match the + * @name attribute of a service element of the componentType of the + * child element of the component. + *

+ * For the service name, OSOA says(1598-1500): + * name (required) - the name of the service, the name MUST BE unique across all the + * composite services in the composite. The name of the composite service can be different + * from the name of the promoted component service. + */ + @Test(expected=ServiceRuntimeException.class) + public void testServicenameNotmatch() throws Exception { + initDomain("notmatchofservicename.composite"); + DService service = ServiceFinder.getService(DService.class, "DComponent1/DService1"); + Assert.assertEquals("hello", service.sayHello()); + cleanupDomain(); + } + + /** + *

+ * Not mentioned in OSOA + *

+ * ASM50003 + *

+ * OASIS + * The @name attribute of a service element of a MUST match the + * @name attribute of a service element of the componentType of the + * child element of the component. + * + */ + public void testServicenameMatch() throws Exception { + initDomain("notmatchofservicename.composite"); + DService service = ServiceFinder.getService(DService.class, "DComponent1/DService"); + Assert.assertEquals("hello", service.sayHello()); + cleanupDomain(); + } + + + /** + * Lines 177-178: + *

+ * OSOA: + * If an interface is specified it must provide a compatible subset of the + * interface provided by the implementation + *

+ * ASM50004 + *

+ * OASIS: + * If a element has an interface subelement specified, the interface MUST + * provide a compatible subset of the interface declared on the componentType of the + * implementation. + */ + @Test(expected=ServiceRuntimeException.class) + public void testInterfaceCompatible() throws Exception { + //for this case, if you remove the method3() in the EEService + //the EEService will be a compatible subset of EService. + initDomain("notcompatibleinterface.composite"); + EEService service = ServiceFinder.getService(EEService.class, "EEComponent/EEService"); + Assert.assertEquals("method1", service.method1()); + cleanupDomain(); + } + + /** + * This method helps to check if the binding.ws is working. + * if the http response contains the "wsdl:definitions", + * we can regard it as a wsdl message, then the wsdlURL is valid. + * @param wsdlURL + * @return + */ + private boolean isValidWebService(String wsdlURL) { + + try { + URL url = new URL(wsdlURL) ; + URLConnection conn = url.openConnection() ; + BufferedReader reader = new BufferedReader(new InputStreamReader(conn.getInputStream())) ; + String lineStr ; + while ((lineStr = reader.readLine()) != null) { + if (lineStr.indexOf("wsdl:definitions") != -1 ) { + return true ; + } + } + + } catch (Exception e) { + e.printStackTrace() ; + } + + return false ; + } + + /** + *

+ * No matched OSOA statements found + *

+ * ASM50005 + *

+ * OASIS: + * If no binding elements are specified for the service, then the bindings specified for + * the equivalent service in the componentType of the implementation MUST be used, + * but if the componentType also has no bindings specified, then + * MUST be used as the binding. If binding elements are specified for the service, then + * those bindings MUST be used and they override any bindings specified for the + * equivalent service in the componentType of the implementation. + */ + @Test + // @Ignore("broken, see TUSCANY-2946") + public void testServiceBinding() throws Exception { + + initDomain("binding_resolution.composite"); + + FService service ; + //test no binding in component + service = ServiceFinder.getService(FService.class, "FComponent/FService1"); + Assert.assertEquals("hello", service.sayHello()); + Assert.assertEquals(true , isValidWebService("http://localhost:8085/FService1?wsdl")) ; + //test no binding in componentType + service = ServiceFinder.getService(FService.class, "FComponent/FService2"); + Assert.assertEquals("hello", service.sayHello()); + //test binding overriding + service = ServiceFinder.getService(FService.class, "FComponent/FService3"); + Assert.assertEquals("hello", service.sayHello()); + Assert.assertEquals(true , isValidWebService("http://localhost:8085/FService3?wsdl")) ; + + cleanupDomain(); + } + + /** + * Line 1526-1529: + *

+ * OSOA: + * A service element has an optional callback element used if the interface + * has a callback defined, which has one or more binding elements as children. + * The callback and its binding child elements are specified if there is a need + * to have binding details used to handle callbacks. If the callback element is not present, + * the behaviour is runtime implementation dependent. + *

+ * ASM50006 + *

+ * If the callback element is present and contains one or more binding + * child elements,then those bindings MUST be used for the callback. + * + */ + @Test + public void testCallbackBindings() throws Exception{ + + initDomain("callback_bindings.composite"); + MyClient client = ServiceFinder.getService(MyClient.class, "MyServiceClientComponent/MyClient"); + client.callService() ; + + cleanupDomain(); + } + + + + + + + + +} diff --git a/sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentPropertyTestCase.java b/sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentPropertyTestCase.java new file mode 100644 index 0000000000..6cf8b49e4f --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentPropertyTestCase.java @@ -0,0 +1,166 @@ +/* + * 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.assembly.component; + +import junit.framework.Assert; + +import org.apache.tuscany.sca.vtest.assembly.component.property.ServiceA; +import org.apache.tuscany.sca.vtest.assembly.component.property.ServiceB; +import org.apache.tuscany.sca.vtest.assembly.component.property.ServiceC; +import org.apache.tuscany.sca.vtest.utilities.ServiceFinder; +import org.junit.Ignore; +import org.junit.Test; + +/** + * This test case covers the main functionalities of component property. + * + */ +public class ComponentPropertyTestCase { + + private void initDomain(String compositePath) { + System.out.println("Setting up"); + ServiceFinder.init(compositePath); + } + + private void cleanupDomain() { + System.out.println("Cleaning up"); + ServiceFinder.cleanup(); + } + + /** + * + *

+ * OSOA + * The property has no @value attribute now. + *

+ * ASM50027 + *

+ * OASIS: + * If the @value attribute of a component property element is declared, the type of the + * property MUST be an XML Schema simple type and the @value attribute MUST + * contain a single value of that type + */ + @Test + @Ignore("It will be implemented in SCA 2.x codebase") + public void testValueAttibuteValid_1() { + + initDomain("component_property_1.composite"); + ServiceA service = ServiceFinder.getService(ServiceA.class , "AComponent/ServiceA") ; + Assert.assertEquals("I am a string" ,service.getStrProperty()) ; + Assert.assertEquals("I am a object" ,service.getObjProperty()) ; + cleanupDomain(); + + } + + /** + *

+ * OSOA + * The property has no @value attribute now. + *

+ * ASM50027 + *

+ * OASIS: + * If the @value attribute of a component property element is declared, the type of the + * property MUST be an XML Schema simple type and the @value attribute MUST + * contain a single value of that type + */ + @Test + @Ignore("It will be implemented in SCA 2.x codebase") + public void testValueAttibuteValid_2() { + + initDomain("component_property_1.composite"); + ServiceB service = ServiceFinder.getService(ServiceB.class , "BComponent/ServiceB") ; +// Assert.assertEquals("I am a object" ,service.getObjProperty()) ; + //It will fail to get the value from composite file, so it will be an empty string + System.out.println("::::" + service.getStrProperty()); +// System.out.println("::::" + service.getIntProperty()); +// Assert.assertEquals("I am a string" ,service.getStrProperty()) ; + + Assert.assertEquals("" ,service.getObjProperty()) ; + cleanupDomain(); + + } + + /** + *

+ * OSOA + * Not mentioned in OSOA + *

+ * ASM50030 + *

+ * OASIS: + * A element MUST NOT contain two subelements with the + * same value of the @name attribute + */ + @Test + @Ignore("TUSCANY-2863") + public void testDuplicateProperty() { + + initDomain("component_duplicate_property.composite"); + ServiceA service = ServiceFinder.getService(ServiceA.class , "AComponent/ServiceA") ; +// System.out.println(service.getStrProperty()) ; + Assert.assertEquals("value1", service.getStrProperty()) ; + cleanupDomain(); + + } + + /** + *

+ * OSOA + * No corresponding statements in OSOA. + *

+ * ASM50031 + *

+ * OASIS: + * The name attribute of a component property MUST match the name of a property + * element in the component type of the component implementation. + */ + @Test + public void testPropertyNameMatched() { + + initDomain("component_property_3.composite"); + ServiceC service = ServiceFinder.getService(ServiceC.class , "CComponent/ServiceC") ; + Assert.assertEquals("I am a string" , service.getStrProperty()) ; + cleanupDomain(); + + } + + /** + *

+ * OSOA + * No corresponding statements in OSOA. + *

+ * ASM50031 + *

+ * OASIS: + * The name attribute of a component property MUST match the name of a property + * element in the component type of the component implementation. + */ + @Test + public void testPropertyNameNotMatched() { + + initDomain("component_property_3.composite"); + ServiceC service = ServiceFinder.getService(ServiceC.class , "CComponent/ServiceC") ; + Assert.assertNull(service.getObjProperty()) ; + cleanupDomain(); + + } + + +} diff --git a/sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentReferenceTestCase.java b/sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentReferenceTestCase.java new file mode 100644 index 0000000000..5dd1969016 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentReferenceTestCase.java @@ -0,0 +1,259 @@ +/* + * 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.assembly.component; + +import junit.framework.Assert; + +import org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientA; +import org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientB; +import org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientC; +import org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientD; +import org.apache.tuscany.sca.vtest.assembly.component.reference.MyClientE; +import org.apache.tuscany.sca.vtest.utilities.ServiceFinder; +import org.junit.Ignore; +import org.junit.Test; +import org.osoa.sca.ServiceRuntimeException; + +/** + * Test the reference name, wire, wireByImpl, autowire and so on. + * + */ +public class ComponentReferenceTestCase { + + private void initDomain(String compositePath) { + System.out.println("Setting up"); + ServiceFinder.init(compositePath); + } + + private void cleanupDomain() { + System.out.println("Cleaning up"); + ServiceFinder.cleanup(); + } + + /** + * Line 1325-1326: + *

+ * OSOA: + * the name of the reference. The name must be unique across all the + * composite references in the composite. + *

+ * ASM50007 + *

+ * OASIS: + * the name of the reference. Has to match a name of a reference defined by the implementation. + * The @name attribute of a reference element of a MUST be unique amongst the + * reference elements of that + */ + @Test + public void testReferenceNameUnique() { + + initDomain("referencename_1.composite"); + + MyClientA service = ServiceFinder.getService(MyClientA.class, "ClientComponent1/MyClientA"); + Assert.assertEquals("MyService:::MyService" , service.callOtherServices()) ; + + cleanupDomain(); + } + + /** + * Line 1325-1326: + *

+ * OSOA: + * the name of the reference. The name must be unique across all the + * composite references in the composite. + *

+ * ASM50007 + *

+ * OASIS: + * the name of the reference. Has to match a name of a reference defined by the implementation. + * The @name attribute of a reference element of a MUST be unique amongst the + * reference elements of that + */ + @Test + public void testReferenceNameDuplicated() { + //for this case, the reference of "b" in MyClientImpl is null. + try { + initDomain("referencename_2.composite"); + } catch (ServiceRuntimeException ex){ + Assert.assertEquals("org.apache.tuscany.sca.monitor.MonitorRuntimeException: Duplicate component reference name: Component = ClientComponent2 Reference = b", ex.getMessage()); + return; + } + Assert.fail(); + cleanupDomain(); + } + + /** + * Line 192-193: + *

+ * OSOA: + * the name of the reference. Has to match a name of a reference + * defined by the implementation. + *

+ * ASM50008 + *

+ * OASIS: + * the name of the reference. Has to match a name of a reference defined by the implementation. + * + */ + @Test + public void testComponentReferenceNameMatched() { + initDomain("referencename_3.composite"); + MyClientA service = ServiceFinder.getService(MyClientA.class, "ClientComponent1/MyClientA"); + Assert.assertEquals("MyService:::MyService" , service.callOtherServices()) ; + cleanupDomain(); + } + + /** + * Line 192-193: + *

+ * OSOA: + * the name of the reference. Has to match a name of a reference + * defined by the implementation. + *

+ * ASM50008 + *

+ * OASIS: + * the name of the reference. Has to match a name of a reference defined by the implementation. + * + */ + @Test + public void testComponentReferenceNameValid() { + + try { + initDomain("referencename_4.composite"); + } catch (ServiceRuntimeException ex){ + Assert.assertEquals("org.apache.tuscany.sca.monitor.MonitorRuntimeException: Reference not found for component reference: Component = ClientComponent1 Reference = bb", ex.getMessage()); + return; + } + + Assert.fail(); + cleanupDomain(); + + } + + /** + * + *

+ * ASM50010 + *

+ * OASIS: + * If @wiredByImpl="true" is set for a reference, then the reference MUST NOT be + * wired statically within a composite, but left unwired + */ + @Test + @Ignore("Not implemented in SCA 1.x codebase.") + public void testWiredByImpl() { + initDomain("reference_wiredbyimpl.composite"); + MyClientA service = ServiceFinder.getService(MyClientA.class, "ClientComponent/MyClientA"); + Assert.assertEquals("MyService:::MyService" , service.callOtherServices()) ; + cleanupDomain(); + } + + + /** + * Line 208: + *

+ * OSOA: + * zero or one wire can have the reference as a source + *

+ * ASM50018 + *

+ * OASIS + * A reference with multiplicity 0..1 or 0..n MAY have no target + * service defined. + * + */ + @Test + public void testMultiplicity_1() { + + initDomain("reference_multiplicity_zerotarget.composite"); + MyClientC service = ServiceFinder.getService(MyClientC.class, "ClientComponent/MyClientC"); + Assert.assertEquals("MyService_MyService" , service.callOtherService()) ; + cleanupDomain(); + } + + /** + * Line 208: + * OSOA: + * zero or one wire can have the reference as a source + *

+ * ASM50019 + *

+ * OASIS: + * A reference with multiplicity 0..1 or 1..1 MUST NOT have more than one target service + * defined. + */ + @Test + @Ignore("TUSCANY-2720") + public void testMultiplicity_2() { + + initDomain("reference_multiplicity_moretargets.composite"); + MyClientB service = ServiceFinder.getService(MyClientB.class, "ClientComponent/MyClientB"); + Assert.assertEquals("MyService_MyService2_MyService_MyService2" , service.callOtherServices()) ; + cleanupDomain(); + } + + /** + * Line 207,209 + *

+ * OSOA: + * 1..1 – one wire can have the reference as a source + * 1..n – one or more wires can have the reference as a source + *

+ * ASM50020 + *

+ * OASIS: + * A reference with multiplicity 1..1 or 1..n MUST have at least one target + * service defined. + */ + @Test + public void testMultiplicity_3() { + + initDomain("reference_multiplicity_ntargets.composite"); + MyClientD service = ServiceFinder.getService(MyClientD.class, "ClientComponent/MyClientD"); + Assert.assertEquals("MyService_MyService" , service.callOtherService_1()) ; + Assert.assertEquals("MyService_MyService" , service.callOtherService_2()) ; + + cleanupDomain(); + } + + /** + * Line 209-210 + *

+ * OSOA + * 1..n – one or more wires can have the reference as a source + * 0..n - zero or more wires can have the reference as a source + *

+ * ASM50020 + *

+ * OASIS: + * A reference with multiplicity 0..n or 1..n MAY have one or more + * target services defined. + */ + @Test + public void testMultiplicity_4() { + + initDomain("reference_multiplicity_multitargets.composite"); + MyClientE service = ServiceFinder.getService(MyClientE.class, "ClientComponent/MyClientE"); + Assert.assertEquals("MyService_MyService2_MyService" , service.callOtherServices()) ; + + cleanupDomain(); + } + +} diff --git a/sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentTestCase.java b/sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentTestCase.java new file mode 100644 index 0000000000..2d245d10a8 --- /dev/null +++ b/sca-java-1.x/branches/sca-java-1.6.2/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentTestCase.java @@ -0,0 +1,230 @@ +/* + * 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.assembly.component; + +import junit.framework.Assert; + +import org.apache.tuscany.sca.vtest.utilities.ServiceFinder; +import org.junit.Ignore; +import org.junit.Test; +import org.osoa.sca.ServiceRuntimeException; + +/** + * + */ +public class ComponentTestCase { + + private void initDomain(String compositePath) { + System.out.println("Setting up"); + + ServiceFinder.init(compositePath); + } + + private void cleanupDomain() { + System.out.println("Cleaning up"); + ServiceFinder.cleanup(); + } + + + + /** + * Lines 92-96: + *

+ * Components are configured instances of implementations. Components + * provide and consume services. More than one component can use and + * configure the same implementation, where each component configures the + * implementation differently. + */ + @Test + public void components1() throws Exception { + initDomain("component.composite"); + AService service = ServiceFinder.getService(AService.class, "AComponent/AService"); + Assert.assertEquals("some b component value", service.getBProperty()); + Assert.assertEquals("some b2 component value", service.getB2Property()); + cleanupDomain(); + } + + /** + * Lines 96-97: + *

+ * There can be zero or more component elements within a composite. + */ + @Test + public void components2() throws Exception { + initDomain("zerocomponents.composite"); + cleanupDomain(); + } + + /** + * Lines 142-143: + *

+ * name (required) ?the name of the component. The name must be unique + * across all the components in the composite. + */ + @Test(expected = ServiceRuntimeException.class) + //@Ignore("TUSCANY-2455") + public void components3() throws Exception { + initDomain("nonuniquename.composite"); + cleanupDomain(); + } + + /** + * Lines 154-158: + *

+ * A component element has zero or one implementation element as its child, + * which points to the implementation used by the component. A component + * with no implementation element is not runnable, but components of this + * kind may be useful during a "top-down" development process as a means of + * defining the characteristics required of the implementation before the + * implementation is written. + */ + @Test + public void components4() throws Exception { + initDomain("zeroimplelements.composite"); + cleanupDomain(); + } + + /** + * Lines 159-160: + *

+ * The component element can have zero or more service elements as children + * which are used to configure the services of the component. + */ + @Test + public void components5() throws Exception { + initDomain("serviceelement.composite"); + cleanupDomain(); + } + + /** + * Lines 174-179: + *

+ * A service has zero or one interface, which describes the operations + * provided by the service. The interface is described by an interface + * element which is a child element of the service element. If no interface + * is specified, then the interface specified for the service by the + * implementation is in effect. If an interface is specified it must provide + * a compatible subset of the interface provided by the implementation, i.e. + * provide a subset of the operations defined by the implementation for the + * service. + */ + @Test + public void components6() throws Exception { + initDomain("servicewithinterface.composite"); + CService service = ServiceFinder.getService(CService.class, "CComponent"); + Assert.assertEquals("Some State", service.getState()); + cleanupDomain(); + } + + /** + * Lines 180-182: + *

+ * A service element has one or more binding elements as children. If no + * bindings are specified, then the bindings specified for the service by + * the implementation are in effect. If bindings are specified, then those + * bindings override the bindings specified by the implementation. + */ + @Test + public void components7() throws Exception { + initDomain("servicewithbinding.composite"); + CService service = ServiceFinder.getService(CService.class, "CComponent"); + Assert.assertEquals("Some State", service.getState()); + cleanupDomain(); + } + + /** + * Lines 599-601: + *

+ * ASM50001 + *

+ * The @name attribute of a child element of a MUST + * be unique amongst the service elements of that + * + */ + @Test(expected=ServiceRuntimeException.class) + @Ignore("TUSCANY-2675") + public void ASM50001() throws Exception { + initDomain("nonuniqueservicenameincomponenttype.composite"); + AService service = ServiceFinder.getService(AService.class, "ABComponent/AService"); + Assert.assertEquals("OK", service.getState()); + cleanupDomain(); + } + + /** + * Lines 695-697: + *

+ * ASM50002 + *

+ * The @name attribute of a service element of a MUST be unique amongst + * the service elements of that + * + */ + @Test(expected=ServiceRuntimeException.class) + public void ASM50002() throws Exception { + initDomain("nonuniqueservicenameincomposite.composite"); + DService service = ServiceFinder.getService(DService.class, "CDComponent/CServiceImpl"); + Assert.assertEquals("hello", service.sayHello()); + cleanupDomain(); + } + + /** + * Lines 697-699: + *

+ * ASM50003 + *

+ * OSOA + * The @name attribute of a service element of a MUST match the + * @name attribute of a service element of the componentType of the child element of the component. + *

+ * OASIS + * the name of the service has to match a name of a service defined by the implementation + * + */ + @Test(expected=ServiceRuntimeException.class) + public void ASM50003() throws Exception { + initDomain("notmatchofservicename.composite"); + DService service = ServiceFinder.getService(DService.class, "DComponent1/DService1"); + Assert.assertEquals("hello", service.sayHello()); + cleanupDomain(); + } + + /** + * Lines 709-715: + *

+ * ASM50004 + *

+ * If a element has an interface subelement specified, the interface MUST + * provide a compatible subset of the interface declared on the componentType of the + * implementation. + */ + @Test(expected=ServiceRuntimeException.class) + public void ASM50004() throws Exception { + //for this case, if you remove the method3() in the EEService + //the EEService will be a compatible subset of EService. + initDomain("notcompatibleinterface.composite"); + EEService service = ServiceFinder.getService(EEService.class, "EEComponent/EEService"); + Assert.assertEquals("method1", service.method1()); + cleanupDomain(); + } + + + + +} -- cgit v1.2.3