summaryrefslogtreecommitdiffstats
path: root/tags/java-M1-20060522/java/testing/interop/clients/webserviceInteropDoc/src/test/java/org/apache/tuscany/test/interop/client/InteropDocClientTestCase.java
blob: a23979f39d3e0020e14748fa9cc7723428ae5d77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/**
 *
 *  Copyright 2005 The Apache Software Foundation or its licensors, as applicable.
 *
 *  Licensed 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.test.interop.client;

import java.rmi.RemoteException;

import junit.framework.TestCase;

import org.apache.tuscany.core.client.TuscanyRuntime;
import org.osoa.sca.CurrentModuleContext;
import org.soapinterop.ArrayOfSimpleDocument;
import org.soapinterop.ChildDocument;
import org.soapinterop.ComplexDocument;
import org.soapinterop.DocTestPortType;
import org.soapinterop.SimpleDocument;
import org.soapinterop.SimpleDocument1;
import org.soapinterop.SingleTag;

import commonj.sdo.helper.DataFactory;

public class InteropDocClientTestCase extends TestCase {

    private TuscanyRuntime tuscany;
    private DataFactory dataFactory;
    private DocTestPortType interopDoc;
    private ClassLoader oldCL; 
    
    public void testSingleTag() throws RemoteException {

        // Create the input
        SingleTag input=(SingleTag)dataFactory.create(SingleTag.class);
        
        // Invoke the service
        SingleTag output=interopDoc.SingleTag(input);
        
        // Test the results
        assertNotNull(output);
        
    }
    
    public void testSimpleDocument() throws RemoteException {

        // Create the input
        SimpleDocument1 input=(SimpleDocument1)dataFactory.create(SimpleDocument1.class);
        input.setValue("123");
        
        // Invoke the service
        SimpleDocument1 output=interopDoc.SimpleDocument(input);
        
        // Test the results
        assertNotNull(output);
        assertEquals("123", output.getValue());
        
    }
    
    public void testComplexDocument() throws RemoteException {

        // Create the input
        ComplexDocument input = (ComplexDocument)dataFactory.create(ComplexDocument.class);
        input.setAnAttribute("789");
        ChildDocument childDocument = (ChildDocument)dataFactory.create(ChildDocument.class);
        SimpleDocument simpleDocument = (SimpleDocument)dataFactory.create(SimpleDocument.class);;
        SimpleDocument1 simpleDocument1 = (SimpleDocument1)dataFactory.create(SimpleDocument1.class);;
        simpleDocument.setSimpleDocument(simpleDocument1);
        simpleDocument1.setValue("456");
        ArrayOfSimpleDocument arrayOfSimpleDocument = (ArrayOfSimpleDocument)dataFactory.create(ArrayOfSimpleDocument.class);;
        arrayOfSimpleDocument.getSimpleDocument().add(simpleDocument1);
        childDocument.setChildSimpleDoc(arrayOfSimpleDocument);
        input.setChild(childDocument);
        
        // Invoke the service
        ComplexDocument output=interopDoc.ComplexDocument(input);
        
        // Test the results
        assertNotNull(output);
        assertEquals("789", output.getAnAttribute());
        assertNotNull(output.getChild());
        assertNotNull(output.getChild().getChildSimpleDoc());
        
        //FIXME Add more tests of the output document 
        
    }
    
    protected void setUp() throws Exception {
        super.setUp();
        
        // Required to allow the SDO runtime to use the correct classloader
        oldCL=Thread.currentThread().getContextClassLoader();
        Thread.currentThread().setContextClassLoader(getClass().getClassLoader());
        
        // Obtain Tuscany runtime
        tuscany = new TuscanyRuntime("interopclient", null);
        
        // Start the runtime
        tuscany.start();

        // Get the SDO DataFactory
        dataFactory=DataFactory.INSTANCE;
        
        // Locate the service to test
        interopDoc=locateInteropDocService();
        
    }
    
    /**
     * Locate the interop service to test
     * @return
     */
    protected DocTestPortType locateInteropDocService() {
        String interopLocation = System.getProperty("interopLocation");
        
        // Valid service names are:
        // RemoteInteropDocService: the live interop Web Service 
        // LocalHostInteropDocService: the interop Web Service hosted by Tuscany on localhost
        // LoopbackInteropDocServiceComponent: a dummy loopback service component
        
        // To specify the service name run mvn -DinteropDocServiceName="RemoteInteropDocService"
        
        if (interopLocation == null)
        	interopLocation = "Remote";
        
        return (DocTestPortType)CurrentModuleContext.getContext().locateService(interopLocation + "InteropDocService");
    }
    
    protected void tearDown() throws Exception {
        
        // Stop the runtime
        tuscany.stop();

        Thread.currentThread().setContextClassLoader(oldCL);
        
        super.tearDown();
    }

}