From e4effbc680d0d430530eb5f3318fc6a6a8ab742f Mon Sep 17 00:00:00 2001 From: kwilliams Date: Fri, 11 Jul 2008 20:29:48 +0000 Subject: More assembly model tests git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@676074 13f79535-47bb-0310-9956-ffa450edef68 --- .../sca/vtest/assembly/component/CService.java | 28 ++++++++++ .../assembly/component/impl/CServiceImpl.java | 31 +++++++++++ .../src/main/resources/serviceelement.composite | 42 ++++++++++++++ .../main/resources/servicewithbinding.composite | 33 +++++++++++ .../main/resources/servicewithinterface.composite | 32 +++++++++++ .../src/main/resources/zeroimplelements.composite | 40 +++++++++++++ .../assembly/component/ComponentTestCase.java | 65 ++++++++++++++++++++++ 7 files changed, 271 insertions(+) create mode 100644 java/sca/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/CService.java create mode 100644 java/sca/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/CServiceImpl.java create mode 100644 java/sca/vtest/assembly/component/src/main/resources/serviceelement.composite create mode 100644 java/sca/vtest/assembly/component/src/main/resources/servicewithbinding.composite create mode 100644 java/sca/vtest/assembly/component/src/main/resources/servicewithinterface.composite create mode 100644 java/sca/vtest/assembly/component/src/main/resources/zeroimplelements.composite (limited to 'java') diff --git a/java/sca/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/CService.java b/java/sca/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/CService.java new file mode 100644 index 0000000000..c979c57f31 --- /dev/null +++ b/java/sca/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/CService.java @@ -0,0 +1,28 @@ +/* + * 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; + +/** + * + */ +public interface CService { + + public String getState(); + +} diff --git a/java/sca/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/CServiceImpl.java b/java/sca/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/CServiceImpl.java new file mode 100644 index 0000000000..b2b420ed6a --- /dev/null +++ b/java/sca/vtest/assembly/component/src/main/java/org/apache/tuscany/sca/vtest/assembly/component/impl/CServiceImpl.java @@ -0,0 +1,31 @@ +/* + * 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.impl; + +public class CServiceImpl { + + private String state = "Some State"; + + public String getState() { + return state; + } + +} + diff --git a/java/sca/vtest/assembly/component/src/main/resources/serviceelement.composite b/java/sca/vtest/assembly/component/src/main/resources/serviceelement.composite new file mode 100644 index 0000000000..9460f5a2e1 --- /dev/null +++ b/java/sca/vtest/assembly/component/src/main/resources/serviceelement.composite @@ -0,0 +1,42 @@ + + + + + + + + + + + + + some b component value + + + + + + some b2 component value + + + diff --git a/java/sca/vtest/assembly/component/src/main/resources/servicewithbinding.composite b/java/sca/vtest/assembly/component/src/main/resources/servicewithbinding.composite new file mode 100644 index 0000000000..085d84f40e --- /dev/null +++ b/java/sca/vtest/assembly/component/src/main/resources/servicewithbinding.composite @@ -0,0 +1,33 @@ + + + + + + + + + + + + + diff --git a/java/sca/vtest/assembly/component/src/main/resources/servicewithinterface.composite b/java/sca/vtest/assembly/component/src/main/resources/servicewithinterface.composite new file mode 100644 index 0000000000..cc915fbde5 --- /dev/null +++ b/java/sca/vtest/assembly/component/src/main/resources/servicewithinterface.composite @@ -0,0 +1,32 @@ + + + + + + + + + + + + diff --git a/java/sca/vtest/assembly/component/src/main/resources/zeroimplelements.composite b/java/sca/vtest/assembly/component/src/main/resources/zeroimplelements.composite new file mode 100644 index 0000000000..864ad44b6c --- /dev/null +++ b/java/sca/vtest/assembly/component/src/main/resources/zeroimplelements.composite @@ -0,0 +1,40 @@ + + + + + + + + + + + + some b component value + + + + + some b2 component value + + + diff --git a/java/sca/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentTestCase.java b/java/sca/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentTestCase.java index 2b100a0461..a167bb9969 100644 --- a/java/sca/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentTestCase.java +++ b/java/sca/vtest/assembly/component/src/test/java/org/apache/tuscany/sca/vtest/assembly/component/ComponentTestCase.java @@ -82,4 +82,69 @@ public class ComponentTestCase { 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(); + } + + } -- cgit v1.2.3