You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by rf...@apache.org on 2007/03/02 20:02:51 UTC

svn commit: r513887 [2/2] - in /incubator/tuscany/branches/sca-java-integration/testing/sca/itest/databindings: ./ jaxb/ jaxb/src/ jaxb/src/main/ jaxb/src/main/java/ jaxb/src/main/java/org/ jaxb/src/main/java/org/apache/ jaxb/src/main/java/org/apache/t...

Added: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/databindings/sdo/src/test/java/org/apache/tuscany/sca/itest/SdoDatabindingTestCase.java
URL: http://svn.apache.org/viewvc/incubator/tuscany/branches/sca-java-integration/testing/sca/itest/databindings/sdo/src/test/java/org/apache/tuscany/sca/itest/SdoDatabindingTestCase.java?view=auto&rev=513887
==============================================================================
--- incubator/tuscany/branches/sca-java-integration/testing/sca/itest/databindings/sdo/src/test/java/org/apache/tuscany/sca/itest/SdoDatabindingTestCase.java (added)
+++ incubator/tuscany/branches/sca-java-integration/testing/sca/itest/databindings/sdo/src/test/java/org/apache/tuscany/sca/itest/SdoDatabindingTestCase.java Fri Mar  2 11:02:48 2007
@@ -0,0 +1,87 @@
+/*
+ * 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.itest;
+
+import org.apache.tuscany.sca.itest.sdodatabinding.GreeterServiceClient;
+import org.apache.tuscany.sca.itest.sdodatabinding.generated.GeneratedFactory;
+import org.apache.tuscany.sca.itest.sdodatabinding.generated.PersonType;
+import org.apache.tuscany.test.SCATestCase;
+import org.osoa.sca.CompositeContext;
+import org.osoa.sca.CurrentCompositeContext;
+
+/**
+ * 
+ */
+public class SdoDatabindingTestCase extends SCATestCase {
+
+    GreeterServiceClient greeterClient;
+    private static boolean initalised = false;
+
+    protected void setUp() throws Exception {
+        if (!initalised) {
+            setApplicationSCDL("greetersdo.composite");
+            super.setUp();
+            initalised = true;
+        }
+    }
+
+    protected void tearDown() {
+
+    }
+
+    private void setUpClient(String ext) throws Exception {
+        CompositeContext ctx = CurrentCompositeContext.getContext();
+        greeterClient = ctx.locateService(GreeterServiceClient.class, ext + "SDOGreeterServiceClient");
+    }
+
+    /**
+     * Invokes the SDO Greet service using web service bindings with SDO payload
+     * 
+     * @throws Exception
+     */
+    public void testWSGreet() throws Exception {
+        setUpClient("WS");
+        greet();
+    }
+
+    /**
+     * Invokes the SDO Greet service using default bindings with SDO payload
+     * 
+     * @throws Exception
+     */
+    public void testDefaultGreet() throws Exception {
+        setUpClient("Default");
+        greet();
+    }
+
+    public void greet() {
+        GeneratedFactory factory = GeneratedFactory.INSTANCE;
+        PersonType person = factory.createPersonType();
+        person.setFirstName("George");
+        person.setLastName("Doors");
+        // System.out.println("Client side: " + person.getFirstName() + " " +
+        // person.getLastName() + " " + person.getGreeting());
+        PersonType greetedPerson = greeterClient.greet(person);
+        // System.out.println("Client side: " + greetedPerson.getFirstName() + "
+        // " + greetedPerson.getLastName() + " " + greetedPerson.getGreeting());
+        assertNotSame("greetedPerson.getGreeting() not set", "", greetedPerson.getGreeting());
+    }
+
+}

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/databindings/sdo/src/test/java/org/apache/tuscany/sca/itest/SdoDatabindingTestCase.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/tuscany/branches/sca-java-integration/testing/sca/itest/databindings/sdo/src/test/java/org/apache/tuscany/sca/itest/SdoDatabindingTestCase.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org