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
|
/*
* 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.
*/
package test.httpunit;
import com.meterware.httpunit.WebRequest;
import com.meterware.httpunit.GetMethodWebRequest;
import com.meterware.httpunit.WebResponse;
/**
* test for JWS pages being processed
* @author Steve Loughran
* @created Jul 10, 2002 12:09:20 AM
*/
public class JwsTest extends HttpUnitTestBase {
public JwsTest(String name) {
super(name);
}
public void testStockQuote() throws Exception {
WebRequest request = new GetMethodWebRequest(url+"/StockQuoteService.jws?wsdl");
assertStringInBody(request,"<wsdl:definitions");
}
public void testEchoHeadersWsdl() throws Exception {
WebRequest request = new GetMethodWebRequest(url + "/EchoHeaders.jws?wsdl");
assertStringInBody(request, "<wsdl:definitions");
}
public void testEchoHeaders() throws Exception {
WebRequest request = new GetMethodWebRequest(url + "/EchoHeaders.jws");
assertStringInBody(request, "Web Service");
}
/**
* see that we get a hello back
* @throws Exception
*/
public void testEchoHeadersWhoami() throws Exception {
WebRequest request = new GetMethodWebRequest(url
+ "/EchoHeaders.jws");
request.setParameter("method", "whoami");
assertStringInBody(request, "Hello");
}
/**
* do we get a list of headers back?
* @throws Exception
*/
public void testEchoHeadersList() throws Exception {
WebRequest request = new GetMethodWebRequest(url
+ "/EchoHeaders.jws");
request.setHeaderField("x-header","echo-header-test");
request.setParameter("method", "list");
assertStringInBody(request, "echo-header-test");
}
/**
* send an echo with a space down
* @throws Exception
*/
public void testEchoHeadersEcho() throws Exception {
WebRequest request = new GetMethodWebRequest(url
+ "/EchoHeaders.jws");
request.setParameter("method","echo");
request.setParameter("param", "foo bar");
assertStringInBody(request, "foo bar");
}
/**
* we throw an error on missing JWS pages
* @throws Exception
*/
public void testMissingJWSRaisesException() throws Exception {
WebRequest request = new GetMethodWebRequest(url
+ "/EchoHeaders-not-really-there.jws");
expectErrorCode(request,404, "No service");
}
/**
* axis faults.
* @throws Exception
*/
public void testAxisFaultIsXML() throws Exception {
WebRequest request = new GetMethodWebRequest(url
+ "/EchoHeaders.jws");
request.setParameter("method", "throwAxisFault");
request.setParameter("param", "oops!");
expectErrorCode(request, 500,
"<faultcode>soapenv:Server.generalException</faultcode>");
}
/**
* exceptions are user faults
* @throws Exception
*/
public void testExceptionIsXML() throws Exception {
WebRequest request = new GetMethodWebRequest(url
+ "/EchoHeaders.jws");
request.setParameter("method", "throwAxisFault");
request.setParameter("param", "oops!");
expectErrorCode(request, 500,
"<faultcode>soapenv:Server.userException</faultcode>");
}
/**
*
*/
/**
* send a complex unicode round the loop and see what happens
* @throws Exception
*/
/* this is failing but it may be in the test code
public void testEchoHeadersEchoUnicode() throws Exception {
WebRequest request = new GetMethodWebRequest(url
+ "/EchoHeaders.jws");
request.setParameter("method", "echo");
request.setParameter("param", "\u221a");
assertStringInBody(request, "\u221a");
}
*/
}
|