summaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authoredwardsmj <edwardsmj@13f79535-47bb-0310-9956-ffa450edef68>2009-01-20 13:17:30 +0000
committeredwardsmj <edwardsmj@13f79535-47bb-0310-9956-ffa450edef68>2009-01-20 13:17:30 +0000
commit5dc7b69f079dd60e4cad95cac9d784003eee94b8 (patch)
tree4ac25507570aa2aa4e9eebb980dad20e90c685c5 /java
parent8af241223bda75b33ebfc4a57d533eea71570ecb (diff)
Added Test_ASM_0026
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@736013 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r--java/sca/stest/sampleTest/src/main/resources/TestComposite13.composite46
-rw-r--r--java/sca/stest/sampleTest/src/main/resources/Test_ASM_0026.composite57
-rw-r--r--java/sca/stest/sampleTest/src/main/resources/Test_Types.xsd5
-rw-r--r--java/sca/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java47
4 files changed, 155 insertions, 0 deletions
diff --git a/java/sca/stest/sampleTest/src/main/resources/TestComposite13.composite b/java/sca/stest/sampleTest/src/main/resources/TestComposite13.composite
new file mode 100644
index 0000000000..f75d90e9db
--- /dev/null
+++ b/java/sca/stest/sampleTest/src/main/resources/TestComposite13.composite
@@ -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>
diff --git a/java/sca/stest/sampleTest/src/main/resources/Test_ASM_0026.composite b/java/sca/stest/sampleTest/src/main/resources/Test_ASM_0026.composite
new file mode 100644
index 0000000000..3c5a441899
--- /dev/null
+++ b/java/sca/stest/sampleTest/src/main/resources/Test_ASM_0026.composite
@@ -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>
diff --git a/java/sca/stest/sampleTest/src/main/resources/Test_Types.xsd b/java/sca/stest/sampleTest/src/main/resources/Test_Types.xsd
index b5de3a4c38..ab473cdb92 100644
--- a/java/sca/stest/sampleTest/src/main/resources/Test_Types.xsd
+++ b/java/sca/stest/sampleTest/src/main/resources/Test_Types.xsd
@@ -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
diff --git a/java/sca/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java b/java/sca/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java
new file mode 100644
index 0000000000..2a56abcd7e
--- /dev/null
+++ b/java/sca/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java
@@ -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