Author: edwardsmj
Date: Tue Jan 20 05:17:30 2009
New Revision: 736013

URL: http://svn.apache.org/viewvc?rev=736013&view=rev
Log:
Added Test_ASM_0026

Added:
    
tuscany/java/sca/stest/sampleTest/src/main/resources/TestComposite13.composite
    tuscany/java/sca/stest/sampleTest/src/main/resources/Test_ASM_0026.composite
    
tuscany/java/sca/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java
Modified:
    tuscany/java/sca/stest/sampleTest/src/main/resources/Test_Types.xsd

Added: 
tuscany/java/sca/stest/sampleTest/src/main/resources/TestComposite13.composite
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/stest/sampleTest/src/main/resources/TestComposite13.composite?rev=736013&view=auto
==============================================================================
--- 
tuscany/java/sca/stest/sampleTest/src/main/resources/TestComposite13.composite 
(added)
+++ 
tuscany/java/sca/stest/sampleTest/src/main/resources/TestComposite13.composite 
Tue Jan 20 05:17:30 2009
@@ -0,0 +1,46 @@
+<?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.    
+-->
+<!-- A simple composite which provides a single service and no references
+     plus a property with a complex type with a type which is an XSD global
+     element -->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0";
+           targetNamespace="http://oasis/tests";
+           xmlns:test="http://oasis/tests";
+           name="TestComposite13">
+           
+       <service name="Service1" promote="TestComponent1/Service1">
+               <interface.java interface="test.Service1"></interface.java>
+       </service>
+
+    <property name="serviceName" type="string"/>
+    
+    <property name="complexType" element="test:globalElement1"/>
+ 
+    <component name="TestComponent1">
+               <implementation.java class="test.service1Impl5"/>
+        <service name="Service1">
+               <interface.java interface="test.Service1"/>
+        </service>
+        <property name="serviceName" source="$serviceName"/>
+        <property name="serviceData1" source="$complexType/firstData"/>
+        <property name="serviceData2" source="$complexType/secondData"/>
+    </component>
+
+</composite>

Added: 
tuscany/java/sca/stest/sampleTest/src/main/resources/Test_ASM_0026.composite
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/stest/sampleTest/src/main/resources/Test_ASM_0026.composite?rev=736013&view=auto
==============================================================================
--- 
tuscany/java/sca/stest/sampleTest/src/main/resources/Test_ASM_0026.composite 
(added)
+++ 
tuscany/java/sca/stest/sampleTest/src/main/resources/Test_ASM_0026.composite 
Tue Jan 20 05:17:30 2009
@@ -0,0 +1,57 @@
+<?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.    
+-->
+<!-- Tests that where a <component/> <property/> has its value set by means 
+     of a child element that is NOT a <value/> element, that a) the type of 
+     the <property/> element is declared as an XML Schema global element by 
+     its @element attribute and that the child element is an instance of that 
+     global element   -->
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0";
+           targetNamespace="http://oasis/tests";
+           xmlns:tns="http://oasis/tests";
+           xmlns:test="http://oasis/tests";
+           name="TEST_ASM_0026">
+           
+    <component name="TestClient">
+               <implementation.composite name="tns:TestClient_0002"/>
+               <service name="TestInvocation">
+                       <interface.java interface="test.TestInvocation"/>
+            <binding.ws/>
+               </service>
+        <reference name="reference1" target="TestComponent1/Service1" />
+        <property name="testName">ASM_0026</property>
+    </component>
+    
+    <component name="TestComponent1">
+               <implementation.composite name="tns:TestComposite13"/>
+        <service name="Service1">
+               <interface.java interface="test.Service1"/>
+        </service>
+        <property name="serviceName">service1</property>
+        <!-- Property with complex type with a value declared using a 
subelement 
+             with the correct XSD global element type -->
+        <property name="complexType" element="test:globalElement1">
+            <test:globalElement1>
+               <firstData>complex1</firstData>
+               <secondData>complex2</secondData>
+            </test:globalElement1>
+        </property>
+    </component> 
+    
+</composite>

Modified: tuscany/java/sca/stest/sampleTest/src/main/resources/Test_Types.xsd
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/stest/sampleTest/src/main/resources/Test_Types.xsd?rev=736013&r1=736012&r2=736013&view=diff
==============================================================================
--- tuscany/java/sca/stest/sampleTest/src/main/resources/Test_Types.xsd 
(original)
+++ tuscany/java/sca/stest/sampleTest/src/main/resources/Test_Types.xsd Tue Jan 
20 05:17:30 2009
@@ -24,9 +24,14 @@
     xmlns:sca="http://www.osoa.org/xmlns/sca/1.0";
     elementFormDefault="qualified">
 
+
+    <!-- A complex type -->
     <complexType name="ComplexType1">
            <element name="firstData" type="string" />
         <element name="secondData" type="string" />
     </complexType>
+    
+    <!-- A global element with a complex type -->
+    <element name="globalElement1" type="test:ComplexType1"/>
        
 </schema>
\ No newline at end of file

Added: 
tuscany/java/sca/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java
URL: 
http://svn.apache.org/viewvc/tuscany/java/sca/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java?rev=736013&view=auto
==============================================================================
--- 
tuscany/java/sca/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java 
(added)
+++ 
tuscany/java/sca/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java 
Tue Jan 20 05:17:30 2009
@@ -0,0 +1,47 @@
+/*
+ * 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 client;
+
+
+import test.ASM_0002_Client;
+import testClient.TestInvocation;
+
+/**
+ * Client for ASM_0026_TestCase, which tests that where a <component/> 
<property/> 
+ * has its value set by means of a child element that is NOT a <value/> 
element, 
+ * that a) the type of the <property/> element is declared as an XML Schema 
global 
+ * element by its @element attribute and b) that the child element is an 
instance 
+ * of that global element 
+ */
+public class ASM_0026_TestCase extends BaseJAXWSTestCase {
+
+ 
+    protected TestConfiguration getTestConfiguration() {
+       TestConfiguration config = new TestConfiguration();
+       config.testName                 = "ASM_0026";
+       config.input                    = "request";
+       config.output                   = "ASM_0026 request service1 operation1 
invokedcomplex1complex2";
+       config.composite                = "Test_ASM_0026.composite";
+       config.testServiceName  = "TestClient";
+       config.testClass                = ASM_0002_Client.class;
+       config.serviceInterface = TestInvocation.class;
+       return config;
+    }
+    
+} // end class Test_ASM_0003


Reply via email to