File: TestEncodingStyle.java

package info (click to toggle)
axis 1.4-29
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 52,100 kB
  • sloc: java: 129,124; xml: 10,602; jsp: 983; sh: 84; cs: 36; makefile: 18
file content (193 lines) | stat: -rw-r--r-- 6,986 bytes parent folder | download | duplicates (10)
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
187
188
189
190
191
192
193
/*
 * Copyright 2002-2004 The Apache Software Foundation.
 * 
 * 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.
 */

/**
 * @author Andras Avar (andras.avar@nokia.com)
 */

package test.soap12;

import junit.framework.TestCase;
import org.apache.axis.AxisFault;
import org.apache.axis.Constants;
import org.apache.axis.Message;
import org.apache.axis.MessageContext;
import org.apache.axis.encoding.TypeMapping;
import org.apache.axis.encoding.TypeMappingRegistry;
import org.apache.axis.message.SOAPEnvelope;
import org.apache.axis.server.AxisServer;
import org.apache.axis.soap.SOAPConstants;
import org.apache.axis.utils.Messages;

import javax.xml.namespace.QName;

/**
 * Test encodingstyle attribute appearance
 */
public class TestEncodingStyle extends TestCase {
    private AxisServer server = null;

    public TestEncodingStyle(String name) {
        super(name);
        server = new AxisServer();
    }


    private final String ENVELOPE =
        "<?xml version=\"1.0\"?>\n" +
        "<soap:Envelope " +
          "xmlns:soap=\"" + Constants.URI_SOAP12_ENV + "\" " +
          "xmlns:xsi=\"" + Constants.URI_DEFAULT_SCHEMA_XSI + "\" " +
          "xmlns:xsd=\"" + Constants.URI_DEFAULT_SCHEMA_XSD + "\" ";

    private final String HEADER =
          ">\n" +
          "<soap:Header ";

    private final String BODY =
          "/>\n" +
          "<soap:Body ";

    private final String FAULT_HEAD =
            ">\n" +
            "<soap:Fault ";

    private final String FAULT_DETAIL =
            ">\n" +
            "<soap:Code>" +
                "<soap:Value>soap:Sender</soap:Value>" +
              "</soap:Code>" +
              "<soap:Detail ";

    private final String FAULT_TAIL =
              ">\n" +
                "<hello/>" +
             "</soap:Detail>" +
            "</soap:Fault>";

    private final String TAIL =
          "</soap:Body>\n" +
        "</soap:Envelope>\n";

    private final String ENCSTYLE_DEF =
          "soap:encodingStyle=\"" + Constants.URI_SOAP12_ENC + "\"";


    private final String MESSAGE_HEAD =
            ">\n" +
             "<methodResult xmlns=\"http://tempuri.org/\" ";

    private final String MESSAGE =
            ">\n";

    private final String MESSAGE_TAIL =
            "</methodResult>\n";

    private final String ITEM =
           "<item xsi:type=\"xsd:string\">abc</item>\n";

    private final String INVALID_ENCSTYLE = "http://invalidencodingstyle.org";
    private final String NO_ENCSTYLE = Constants.URI_SOAP12_NOENC;

    private final String INVALID_ENCSTYLE_DEF =
          "soap:encodingStyle=\"" + INVALID_ENCSTYLE + "\"";

    private final String NO_ENCSTYLE_DEF =
          "soap:encodingStyle=\"" + NO_ENCSTYLE + "\"";


    public boolean deserialize(String req, QName expected_code, String expected_str) throws Exception {
        Message message = new Message(req);
        MessageContext context = new MessageContext(server);
        context.setSOAPConstants(SOAPConstants.SOAP12_CONSTANTS);
        context.setProperty(Constants.MC_NO_OPERATION_OK, Boolean.TRUE);

        message.setMessageContext(context);

        boolean expectedFault = false;
        try {
            SOAPEnvelope envelope = message.getSOAPEnvelope();
        } catch (AxisFault af) {
            return af.getFaultString().indexOf(expected_str) != -1 &&
                   expected_code.equals(af.getFaultCode());
        }

        return expectedFault;
    }

    public void testEncStyleInEnvelope() throws Exception {
        String req = ENVELOPE + ENCSTYLE_DEF + HEADER + BODY + FAULT_HEAD + FAULT_DETAIL + FAULT_TAIL + TAIL;
        assertTrue(deserialize(req, Constants.FAULT_SOAP12_SENDER,
            Messages.getMessage("noEncodingStyleAttrAppear", "Envelope")));
    }

    public void testEncStyleInHeader() throws Exception {
        String req = ENVELOPE + HEADER + ENCSTYLE_DEF + BODY + FAULT_HEAD + FAULT_DETAIL + FAULT_TAIL + TAIL;
        assertTrue(deserialize(req, Constants.FAULT_SOAP12_SENDER,
            Messages.getMessage("noEncodingStyleAttrAppear", "Header")));
    }

    public void testEncStyleInBody() throws Exception {
        String req = ENVELOPE +  HEADER + BODY + ENCSTYLE_DEF + FAULT_HEAD + FAULT_DETAIL + FAULT_TAIL + TAIL;
        assertTrue(deserialize(req, Constants.FAULT_SOAP12_SENDER,
            Messages.getMessage("noEncodingStyleAttrAppear", "Body")));
    }

    public void testEncStyleInFault() throws Exception {
        String req = ENVELOPE +  HEADER + BODY + FAULT_HEAD + ENCSTYLE_DEF + FAULT_DETAIL + FAULT_TAIL + TAIL;
        assertTrue(deserialize(req, Constants.FAULT_SOAP12_SENDER,
            Messages.getMessage("noEncodingStyleAttrAppear", "Fault")));
    }

    public void testEncStyleInDetail() throws Exception {
        String req = ENVELOPE +  HEADER + BODY + FAULT_HEAD + FAULT_DETAIL + ENCSTYLE_DEF + FAULT_TAIL + TAIL;
        assertTrue(deserialize(req, Constants.FAULT_SOAP12_SENDER,

          Messages.getMessage("noEncodingStyleAttrAppear", "Detail")));
    }

    public void testInvalidEncodingStyle() throws Exception {
        String req = ENVELOPE + HEADER + BODY + MESSAGE_HEAD + INVALID_ENCSTYLE_DEF + MESSAGE + ITEM + MESSAGE_TAIL + TAIL;
        assertTrue(deserialize(req, Constants.FAULT_SOAP12_DATAENCODINGUNKNOWN,
            Messages.getMessage("invalidEncodingStyle")));
    }

    public void testAcceptUserEncodingStyle() throws Exception {
        String req = ENVELOPE + HEADER + BODY + MESSAGE_HEAD + INVALID_ENCSTYLE_DEF + MESSAGE + ITEM + MESSAGE_TAIL + TAIL;

        Message message = new Message(req);
        MessageContext context = new MessageContext(server);
        context.setProperty(Constants.MC_NO_OPERATION_OK, Boolean.TRUE);

        // Set the "invalid" encoding style
        TypeMappingRegistry reg = context.getTypeMappingRegistry();
        TypeMapping tm = (TypeMapping) reg.createTypeMapping();
        tm.setSupportedEncodings(new String[] { INVALID_ENCSTYLE });
        reg.register(INVALID_ENCSTYLE, tm);
        context.setSOAPConstants(SOAPConstants.SOAP12_CONSTANTS);

        message.setMessageContext(context);

        SOAPEnvelope envelope = message.getSOAPEnvelope();
        assertTrue(envelope != null);
   }

    public void testNoEncodingStyle() throws Exception {
        String req = ENVELOPE + HEADER + BODY + MESSAGE_HEAD + NO_ENCSTYLE_DEF + MESSAGE + ITEM + MESSAGE_TAIL + TAIL;
        assertTrue(deserialize(req, null, null) == false);
    }

}