summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/stest/sampleTest/src/test/java
diff options
context:
space:
mode:
Diffstat (limited to 'branches/sca-java-1.x/stest/sampleTest/src/test/java')
-rw-r--r--branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0025_TestCase.java58
-rw-r--r--branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java64
-rw-r--r--branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0027_TestCase.java60
-rw-r--r--branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0028_TestCase.java59
-rw-r--r--branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0029_TestCase.java63
-rw-r--r--branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0030_TestCase.java57
-rw-r--r--branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0031_TestCase.java63
7 files changed, 424 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0025_TestCase.java b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0025_TestCase.java
new file mode 100644
index 0000000000..2a5e7afda6
--- /dev/null
+++ b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0025_TestCase.java
@@ -0,0 +1,58 @@
+/*
+ * 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_0025_TestCase, which tests that where a <component/>
+ * <property/> has its value set by means of a child <value/> element,
+ * that the type of the <value/> element matches the type declared for
+ * the <property/> element
+ */
+public class ASM_0025_TestCase extends BaseJAXWSTestCase {
+
+
+ /**
+ * <p>
+ * OSOA
+ * No @value subelement in OSOA specification
+ * <p>
+ * OASIS
+ * <p>
+ * ASM50028
+ * If the value subelement of a component property is specified,
+ * the type of the property MUST be an XML Schema simple type or an
+ * XML schema complex type
+ */
+ protected TestConfiguration getTestConfiguration() {
+ TestConfiguration config = new TestConfiguration();
+ config.testName = "ASM_0025";
+ config.input = "request";
+ config.output = "ASM_0025 request service1 operation1 invokedcomplex1complex2";
+ config.composite = "Test_ASM_0025.composite";
+ config.testServiceName = "TestClient";
+ config.testClass = ASM_0002_Client.class;
+ config.serviceInterface = TestInvocation.class;
+ return config;
+ }
+
+} // end class Test_ASM_0003
diff --git a/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java
new file mode 100644
index 0000000000..5cb2ed5241
--- /dev/null
+++ b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0026_TestCase.java
@@ -0,0 +1,64 @@
+/*
+ * 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 {
+
+
+ /**
+ * <p>
+ * OSOA Line 1113~1118
+ * The property element may contain an optional default-property-value, which provides default
+ * value for the property. The default value must match the type declared for the property
+ * 1) a string, if type is a simple type (must match the type declared)
+ * 2) a complex type value matching the type declared by type
+ * 3) an element matching the element named by element
+ * 4) multiple values are permitted if many="true" is specified
+ * <p>
+ * OASIS
+ * <p>
+ * ASM50029
+ * If a component property value is declared using a child element of the <property/>
+ * element, the type of the property MUST be an XML Schema global element and the
+ * declared child element MUST be an instance of that global element
+ */
+ 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
diff --git a/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0027_TestCase.java b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0027_TestCase.java
new file mode 100644
index 0000000000..86d8f51288
--- /dev/null
+++ b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0027_TestCase.java
@@ -0,0 +1,60 @@
+/*
+ * 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_0027_TestCase, which tests that where a <component/> has
+ * 2 or more <property/> child elements that each <property/> element has a
+ * unique @name attribute value
+ */
+public class ASM_0027_TestCase extends BaseJAXWSTestCase {
+
+
+ /**
+ * <p>
+ * OSOA
+ * No corresponding declaration for this feature.
+ * <p>
+ * OASIS
+ * <p>
+ * ASM50030
+ * A <component/> element MUST NOT contain two <property/> subelements with the
+ * same value of the @name attribute.
+ * <p>
+ * Jira issue:
+ * https://issues.apache.org/jira/browse/TUSCANY-2863
+ *
+ */
+ protected TestConfiguration getTestConfiguration() {
+ TestConfiguration config = new TestConfiguration();
+ config.testName = "ASM_0027";
+ config.input = "request";
+ config.output = "exception";
+ config.composite = "Test_ASM_0027.composite";
+ config.testServiceName = "TestClient";
+ config.testClass = ASM_0002_Client.class;
+ config.serviceInterface = TestInvocation.class;
+ return config;
+ }
+
+} // end class Test_ASM_0027
diff --git a/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0028_TestCase.java b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0028_TestCase.java
new file mode 100644
index 0000000000..e91ee2c7f3
--- /dev/null
+++ b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0028_TestCase.java
@@ -0,0 +1,59 @@
+/*
+ * 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_0028_TestCase, which tests a <component/> <property/> @name
+ * attribute matches the @name attribute of one of the <property/> elements of
+ * the <componentType/> of the <implementation/> of the <component/>
+ */
+public class ASM_0028_TestCase extends BaseJAXWSTestCase {
+
+
+ /**
+ * <p>
+ * OSOA
+ * No corresponding statements for this feature.
+ * <p>
+ * OASIS
+ * <p>
+ * ASM50031
+ * The name attribute of a component property MUST match the name of a property
+ * element in the component type of the component implementation.
+ * <p>
+ * Jira issue:
+ * https://issues.apache.org/jira/browse/TUSCANY-2901
+ */
+ protected TestConfiguration getTestConfiguration() {
+ TestConfiguration config = new TestConfiguration();
+ config.testName = "ASM_0028";
+ config.input = "request";
+ config.output = "exception";
+ config.composite = "Test_ASM_0028.composite";
+ config.testServiceName = "TestClient";
+ config.testClass = ASM_0002_Client.class;
+ config.serviceInterface = TestInvocation.class;
+ return config;
+ }
+
+} // end class Test_ASM_0028
diff --git a/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0029_TestCase.java b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0029_TestCase.java
new file mode 100644
index 0000000000..eae5a2f978
--- /dev/null
+++ b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0029_TestCase.java
@@ -0,0 +1,63 @@
+/*
+ * 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_0029_TestCase, which tests that where a <component/> <property/>
+ * has @many=false that there is only one <value/> child element of the <property/>
+ */
+public class ASM_0029_TestCase extends BaseJAXWSTestCase {
+
+
+ /**
+ * <p>
+ * OSOA Line 1104~1106
+ * <p>
+ * many (optional) - whether the property is single-valued (false) or multi-valued (true).
+ * The default is false. In the case of a multi-valued property, it is presented to the
+ * implementation as a Collection of property values.
+ * <p>
+ * OASIS
+ * <p>
+ * ASM50032
+ * If a property is single-valued, the <value/> subelement MUST NOT occur more than once.
+ * <p>
+ * OSOA didn't explicitly say "MUST NOT occur more than once".
+ * <p>
+ * Jira issue:
+ * https://issues.apache.org/jira/browse/TUSCANY-2902
+ *
+ */
+ protected TestConfiguration getTestConfiguration() {
+ TestConfiguration config = new TestConfiguration();
+ config.testName = "ASM_0029";
+ config.input = "request";
+ config.output = "exception";
+ config.composite = "Test_ASM_0029.composite";
+ config.testServiceName = "TestClient";
+ config.testClass = ASM_0002_Client.class;
+ config.serviceInterface = TestInvocation.class;
+ return config;
+ }
+
+} // end class Test_ASM_0029
diff --git a/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0030_TestCase.java b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0030_TestCase.java
new file mode 100644
index 0000000000..197f9acd72
--- /dev/null
+++ b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0030_TestCase.java
@@ -0,0 +1,57 @@
+/*
+ * 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_0030_TestCase, which tests that a <component/> <property/>
+ * with a @value attribute set does not have any <value/> child elements
+ */
+public class ASM_0030_TestCase extends BaseJAXWSTestCase {
+
+
+ /**
+ * <p>
+ * OSOA
+ * No @value attribute for the property in OSOA spec.
+ * So this TestCase is not valid.
+ * <p>
+ * OASIS
+ * <p>
+ * ASM50033
+ * A property <value/> subelement MUST NOT be used when the @value attribute
+ * is used to specify the value for that property.
+ *
+ */
+ protected TestConfiguration getTestConfiguration() {
+ TestConfiguration config = new TestConfiguration();
+ config.testName = "ASM_0030";
+ config.input = "request";
+ config.output = "exception";
+ config.composite = "Test_ASM_0030.composite";
+ config.testServiceName = "TestClient";
+ config.testClass = ASM_0002_Client.class;
+ config.serviceInterface = TestInvocation.class;
+ return config;
+ }
+
+} // end class Test_ASM_0030
diff --git a/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0031_TestCase.java b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0031_TestCase.java
new file mode 100644
index 0000000000..5f5d68fb81
--- /dev/null
+++ b/branches/sca-java-1.x/stest/sampleTest/src/test/java/client/ASM_0031_TestCase.java
@@ -0,0 +1,63 @@
+/*
+ * 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_0031_TestCase, which tests that where a <component/> <reference/>
+ * has its @target attribute set to a valid service and the <composite/> also
+ * contains a <wire/> element with @source set to the <component/> <reference/>
+ * and @target set to a second valid service and has @replace=true, the <reference/>
+ * is wired to the second service only
+ */
+public class ASM_0031_TestCase extends BaseJAXWSTestCase {
+
+
+ /**
+ * <p>
+ * OSOA
+ * No @replace in OSOA specification currently.
+ * <p>
+ * OASIS
+ * <p>
+ * ASM50034
+ * If any <wire/> element with its @replace attribute set to "true" has
+ * a particular reference specified in its @source attribute,
+ * the value of the @target attribute for that reference MUST be ignored
+ * and MUST NOT be used to define target services for that reference.
+ * <p>
+ * Jira issue:
+ * https://issues.apache.org/jira/browse/TUSCANY-2903
+ */
+ protected TestConfiguration getTestConfiguration() {
+ TestConfiguration config = new TestConfiguration();
+ config.testName = "ASM_0031";
+ config.input = "request";
+ config.output = "ASM_0031 request service1 operation1 invoked service3 operation1 invoked";
+ config.composite = "Test_ASM_0031.composite";
+ config.testServiceName = "TestClient";
+ config.testClass = ASM_0002_Client.class;
+ config.serviceInterface = TestInvocation.class;
+ return config;
+ }
+
+} // end class Test_ASM_0031