summaryrefslogtreecommitdiffstats
path: root/sandbox/old/contrib/implementation-javascript/container/src/test/java/org/apache/tuscany/container/javascript/rhino/RhinoSCAConfigTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/old/contrib/implementation-javascript/container/src/test/java/org/apache/tuscany/container/javascript/rhino/RhinoSCAConfigTestCase.java')
-rw-r--r--sandbox/old/contrib/implementation-javascript/container/src/test/java/org/apache/tuscany/container/javascript/rhino/RhinoSCAConfigTestCase.java116
1 files changed, 116 insertions, 0 deletions
diff --git a/sandbox/old/contrib/implementation-javascript/container/src/test/java/org/apache/tuscany/container/javascript/rhino/RhinoSCAConfigTestCase.java b/sandbox/old/contrib/implementation-javascript/container/src/test/java/org/apache/tuscany/container/javascript/rhino/RhinoSCAConfigTestCase.java
new file mode 100644
index 0000000000..8975dbaeac
--- /dev/null
+++ b/sandbox/old/contrib/implementation-javascript/container/src/test/java/org/apache/tuscany/container/javascript/rhino/RhinoSCAConfigTestCase.java
@@ -0,0 +1,116 @@
+/*
+ * 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.container.javascript.rhino;
+
+import junit.framework.TestCase;
+
+import org.apache.tuscany.spi.model.Scope;
+
+public class RhinoSCAConfigTestCase extends TestCase {
+
+ public void testJavaInteface() {
+ RhinoScript rs = new RhinoScript("javaInterface", "SCA = { javaInterface : 'Test' }");
+ RhinoSCAConfig scaConfig = rs.getSCAConfig();
+ assertTrue(scaConfig.hasSCAConfig());
+ assertEquals("Test", scaConfig.getJavaInterface());
+ }
+
+ public void testWSDLLocation() {
+ RhinoScript rs = new RhinoScript("wsdlLocation", "SCA = { wsdlLocation : 'Test' }");
+ RhinoSCAConfig scaConfig = rs.getSCAConfig();
+ assertTrue(scaConfig.hasSCAConfig());
+ assertEquals("Test", scaConfig.getWSDLLocation());
+ }
+
+ public void testWSDLNamespace() {
+ RhinoScript rs = new RhinoScript("wsdlNamespace", "SCA = { wsdlNamespace : 'Test' }");
+ RhinoSCAConfig scaConfig = rs.getSCAConfig();
+ assertTrue(scaConfig.hasSCAConfig());
+ assertEquals("Test", scaConfig.getWSDLNamespace());
+ }
+
+ public void testWSDLPortType() {
+ RhinoScript rs = new RhinoScript("wsdlPortType", "SCA = { wsdlPortType : 'Test' }");
+ RhinoSCAConfig scaConfig = rs.getSCAConfig();
+ assertTrue(scaConfig.hasSCAConfig());
+ assertEquals("Test", scaConfig.getWSDLPortType());
+ }
+
+ public void testScopeStateless() {
+ RhinoScript rs = new RhinoScript("testScopeStateless", "SCA = { scope : 'stateless', javaInterface : 'helloworld.HelloWorldService'}");
+ RhinoSCAConfig scaConfig = rs.getSCAConfig();
+ assertTrue(scaConfig.hasSCAConfig());
+ assertEquals(Scope.STATELESS, scaConfig.getScope());
+ }
+
+ public void testScopeComposite() {
+ RhinoScript rs = new RhinoScript("testScopeComposite", "SCA = { scope : 'composite', javaInterface : 'helloworld.HelloWorldService'}");
+ RhinoSCAConfig scaConfig = rs.getSCAConfig();
+ assertTrue(scaConfig.hasSCAConfig());
+ assertEquals(Scope.COMPOSITE, scaConfig.getScope()); // TODO
+ }
+
+ public void testScopeConversational() {
+ RhinoScript rs = new RhinoScript("testScopeConversational", "SCA = { scope : 'conversational', javaInterface : 'helloworld.HelloWorldService'}");
+ RhinoSCAConfig scaConfig = rs.getSCAConfig();
+ assertTrue(scaConfig.hasSCAConfig());
+ assertEquals(Scope.SESSION, scaConfig.getScope());
+ }
+
+ public void testScopeRequest() {
+ RhinoScript rs = new RhinoScript("testScopeRequest", "SCA = { scope : 'request', javaInterface : 'helloworld.HelloWorldService'}");
+ RhinoSCAConfig scaConfig = rs.getSCAConfig();
+ assertTrue(scaConfig.hasSCAConfig());
+ assertEquals(Scope.REQUEST, scaConfig.getScope());
+ }
+
+ public void testBadScope() {
+ RhinoScript rs = new RhinoScript("testScopeStateless", "SCA = { scope : 'rubbish', javaInterface : 'helloworld.HelloWorldService'}");
+ try {
+ RhinoSCAConfig scaConfig = rs.getSCAConfig();
+ fail("expecting bad scope exception: " + scaConfig);
+ } catch (IllegalArgumentException e) {
+ }
+ }
+
+ public void testNoConfig() {
+ RhinoScript rs = new RhinoScript("javaInterface", "");
+ RhinoSCAConfig scaConfig = rs.getSCAConfig();
+ assertTrue(!scaConfig.hasSCAConfig());
+ }
+
+ public void testNoService() {
+ RhinoScript rs = new RhinoScript("javaInterface", "SCA = {}");
+ try {
+ RhinoSCAConfig scaConfig = rs.getSCAConfig();
+ fail("expecting no service exception: " + scaConfig);
+ } catch (IllegalArgumentException e) {
+ }
+ }
+
+ public void testDupicateInteface() {
+ RhinoScript rs = new RhinoScript("javaInterface", "SCA = { javaInterface : 'Test', wsdlLocation : 'Test' }");
+ try {
+ RhinoSCAConfig scaConfig = rs.getSCAConfig();
+ fail("expecting multiple service exception: " + scaConfig);
+ } catch (IllegalArgumentException e) {
+ }
+ }
+
+}