summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/tags/2.0.1-RC1/testing/itest/ws/wsdlgen/src/test/java/datatypes/DataTypesTestCase.java
blob: 1e83fe3435a70a170817e2068b2fd90510d1b661 (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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
/*
 * 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 datatypes;

import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;
import org.w3c.dom.Element;
import static org.junit.Assert.assertEquals;

/**
 * Test ?wsdl works and that the returned WSDL is correct
 *
 * @version $Rev: 814373 $ $Date: 2009-09-13 19:06:29 +0100 (Sun, 13 Sep 2009) $
 */
public class DataTypesTestCase extends BaseFramework {

    @Test
    public void testSimpleInt() throws Exception {
        assertEquals("xs:int", parameterType("testSimpleInt"));
    }

    @Test
    public void testSimpleArrayInt() throws Exception {
        Element paramElement = parameterElement("testSimpleArrayInt");
        assertEquals("xs:int", paramElement.getAttribute("type"));
        assertEquals("unbounded", paramElement.getAttribute("maxOccurs"));
    }

    @Test
    public void testSimpleMultiArrayInt() throws Exception {
        Element paramElement = parameterElement("testSimpleMultiArrayInt");
        // prefix name can vary, so compare only the fixed parts
        assertEquals("ns", paramElement.getAttribute("type").substring(0, 2));
        assertEquals(":intArray", paramElement.getAttribute("type").substring(3));
        assertEquals("unbounded", paramElement.getAttribute("maxOccurs"));
    }

    @Test
    public void testSimpleMulti3ArrayInt() throws Exception {
        Element paramElement = parameterElement("testSimpleMulti3ArrayInt");
        // prefix name can vary, so compare only the fixed parts
        assertEquals("ns", paramElement.getAttribute("type").substring(0, 2));
        assertEquals(":intArrayArray", paramElement.getAttribute("type").substring(3));
        assertEquals("unbounded", paramElement.getAttribute("maxOccurs"));
    }

    @Test
    public void testList() throws Exception {
        Element paramElement = parameterElement("testList");
        assertEquals("xs:anyType", paramElement.getAttribute("type"));
        assertEquals("unbounded", paramElement.getAttribute("maxOccurs"));
    }

    @Test
    public void testSimpleListString() throws Exception {
        Element paramElement = parameterElement("testSimpleListString");
        assertEquals("xs:string", paramElement.getAttribute("type"));
        assertEquals("unbounded", paramElement.getAttribute("maxOccurs"));
    }

    @Test
    public void testReturnSimpleListString() throws Exception {
        Element retElement = returnElement("testReturnSimpleListString");
        assertEquals("xs:string", retElement.getAttribute("type"));
        assertEquals("unbounded", retElement.getAttribute("maxOccurs"));
    }

    @Test
    public void testListByteArray() throws Exception {
        Element paramElement = parameterElement("testListByteArray");
        assertEquals("xs:base64Binary", paramElement.getAttribute("type"));
        assertEquals("unbounded", paramElement.getAttribute("maxOccurs"));
    }

    @Test
    public void testListWildcard() throws Exception {
        Element paramElement = parameterElement("testListWildcard");
        assertEquals("xs:anyType", paramElement.getAttribute("type"));
        assertEquals("unbounded", paramElement.getAttribute("maxOccurs"));
    }

    @Test
    public void testComplex() throws Exception {
        String paramType = parameterType("testComplex");
        assertEquals("tns:complexNumber", paramType);
        assertEquals("xs:double", firstChild(typeDefinition(paramType)).getAttribute("type"));
    }

    @Test
    public void testOtherPackage() throws Exception {
        String paramType = parameterType("testOtherPackage");
        // prefix name can vary, so compare only the fixed parts
        assertEquals("ns", paramType.substring(0, 2));
        assertEquals(":otherPojo", paramType.substring(3));
        assertEquals("xs:double", firstChild(typeDefinition(paramType)).getAttribute("type"));
    }

    @Test
    public void testByteArray() throws Exception {
        assertEquals("xs:base64Binary", parameterType("testByteArray"));
    }

    @Test
    public void testBaseExtension() throws Exception {
        String paramType = parameterType("testBaseExtension");
        assertEquals("tns:extClass", paramType);
        assertEquals("tns:baseClass", extensionElement(typeDefinition(paramType)).getAttribute("base"));
    }

    @Test
    public void testServiceReference() throws Exception {
        assertEquals("xs:anyType", parameterType("testServiceReference"));
    }

    @Test
    public void testException() throws Exception {
        assertEquals("xs:string", faultType("testException", "Exception"));
    }

    @Test
    public void testDynamicSDO() throws Exception {
        assertEquals("xs:anyType", returnType("testDynamicSDO"));
    }

    @Test
    public void testWebParamSDO() throws Exception {
        Element paramElement = parameterElement("testWebParamSDO");
        assertEquals("foo", paramElement.getAttribute("name"));
        assertEquals("xs:anyType", paramElement.getAttribute("type"));
    }

    @Test
    public void testWebParamSDOArray() throws Exception {
        Element paramElement = parameterElement("testWebParamSDOArray");
        assertEquals("foo", paramElement.getAttribute("name"));
        assertEquals("xs:anyType", paramElement.getAttribute("type"));
        assertEquals("unbounded", paramElement.getAttribute("maxOccurs"));
    }
/*

    @Test
    public void testWebParamBare() throws Exception {
        Element paramElement = parameterElement("testWebParamBare");
        assertEquals("simpleInt", paramElement.getAttribute("name"));
        assertEquals("xs:int", paramElement.getAttribute("type"));
    }

    @Test
    @Ignore
    public void testWebParamBareArray() throws Exception {
        Element paramElement = parameterElement("testWebParamBareArray");
        assertEquals("arrayInt", paramElement.getAttribute("name"));
        assertEquals("xs:int", paramElement.getAttribute("type"));
        assertEquals("unbounded", paramElement.getAttribute("maxOccurs"));
    }
*/

    @BeforeClass
    public static void setUpBeforeClass() throws Exception {
        BaseFramework.start("DataTypes", "DataTypes");
    }

    @AfterClass
    public static void tearDownAfterClass() throws Exception {
        BaseFramework.stop();
    }
}