Author: antelder
Date: Sun Jun 19 06:16:44 2011
New Revision: 1137297

URL: http://svn.apache.org/viewvc?rev=1137297&view=rev
Log:
add testcase missed off on the composite update commit

Added:
    
tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/java/org/apache/tuscany/sca/impl/UsedCompositesTestCase.java
    
tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/resources/compositeImpl.composite
    
tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/resources/include.composite

Added: 
tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/java/org/apache/tuscany/sca/impl/UsedCompositesTestCase.java
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/java/org/apache/tuscany/sca/impl/UsedCompositesTestCase.java?rev=1137297&view=auto
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/java/org/apache/tuscany/sca/impl/UsedCompositesTestCase.java
 (added)
+++ 
tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/java/org/apache/tuscany/sca/impl/UsedCompositesTestCase.java
 Sun Jun 19 06:16:44 2011
@@ -0,0 +1,62 @@
+/*
+ * 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.impl;
+
+import java.io.FileNotFoundException;
+import java.io.FileReader;
+import java.util.List;
+
+import javax.xml.stream.XMLStreamException;
+
+import org.apache.tuscany.sca.Node;
+import org.apache.tuscany.sca.TuscanyRuntime;
+import org.apache.tuscany.sca.contribution.processor.ContributionReadException;
+import org.apache.tuscany.sca.monitor.ValidationException;
+import org.apache.tuscany.sca.runtime.ActivationException;
+import org.junit.Test;
+import org.oasisopen.sca.NoSuchDomainException;
+import org.oasisopen.sca.NoSuchServiceException;
+
+public class UsedCompositesTestCase {
+
+    @Test
+    public void UsedTest1() throws NoSuchServiceException, 
NoSuchDomainException, ContributionReadException, ActivationException, 
ValidationException, XMLStreamException, FileNotFoundException {
+        Node node = TuscanyRuntime.newInstance().createNode("localTest");
+        String curi = 
node.installContribution("src/test/resources/sample-helloworld.jar");
+        String compositeURI = node.addDeploymentComposite(curi, new 
FileReader("src/test/resources/include.composite"));
+
+        node.startComposite(curi, compositeURI);
+        
+        List<String> xs = ((NodeImpl)node).updateUsingComposites(curi, 
"helloworld.composite");
+        System.out.println(xs);
+//        Assert.assertEquals(",mn,mn", s.doit("xyz"));
+    }
+    @Test
+    public void UsedTest2() throws NoSuchServiceException, 
NoSuchDomainException, ContributionReadException, ActivationException, 
ValidationException, XMLStreamException, FileNotFoundException {
+        Node node = TuscanyRuntime.newInstance().createNode("localTest");
+        String curi = 
node.installContribution("src/test/resources/sample-helloworld.jar");
+        String compositeURI = node.addDeploymentComposite(curi, new 
FileReader("src/test/resources/compositeImpl.composite"));
+
+        node.startComposite(curi, compositeURI);
+        
+        List<String> xs = ((NodeImpl)node).updateUsingComposites(curi, 
"helloworld.composite");
+        System.out.println(xs);
+//        Assert.assertEquals(",mn,mn", s.doit("xyz"));
+    }
+}

Added: 
tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/resources/compositeImpl.composite
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/resources/compositeImpl.composite?rev=1137297&view=auto
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/resources/compositeImpl.composite
 (added)
+++ 
tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/resources/compositeImpl.composite
 Sun Jun 19 06:16:44 2011
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.    
+-->
+<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912";
+           xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.1";
+           xmlns:sample="http://sample";
+           targetNamespace="http://sample";
+           name="compositeImpl">
+
+    <component name="Helloworld2Component">
+        <implementation.composite name="sample:helloworld"/>
+    </component>
+
+</composite>

Added: 
tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/resources/include.composite
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/resources/include.composite?rev=1137297&view=auto
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/resources/include.composite
 (added)
+++ 
tuscany/sca-java-2.x/trunk/modules/domain-node/src/test/resources/include.composite
 Sun Jun 19 06:16:44 2011
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * 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.    
+-->
+<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912";
+           xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.1";
+           xmlns:sample="http://sample";
+           targetNamespace="http://sample";
+           name="include">
+
+    <include name="sample:helloworld" />
+
+</composite>


Reply via email to