blob: 0f24f66b232ddd9254430c96f35cabe51accb767 [file] [log] [blame]
/*
* Copyright 1999, 2000, 2001 ,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 org.apache.tester;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
/**
* Part 2 of the ErrorPage Tests. Should be mapped by the container when
* the ErrorPage01 servlet returns the appropriate status code.
*
* @author Craig R. McClanahan
* @version $Revision$ $Date$
*/
public class ErrorPage02 extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
response.reset();
response.setContentType("text/plain");
PrintWriter writer = response.getWriter();
// Accumulate all the reasons this request might fail
StringBuffer sb = new StringBuffer();
Object value = null;
value = request.getAttribute("javax.servlet.error.status_code");
if (value == null)
sb.append(" status_code is missing/");
else if (!(value instanceof Integer)) {
sb.append(" status_code class is ");
sb.append(value.getClass().getName());
sb.append("/");
} else {
int intValue = ((Integer) value).intValue();
if (intValue != HttpServletResponse.SC_PRECONDITION_FAILED) {
sb.append(" status_code is ");
sb.append(value);
sb.append("/");
}
}
value = request.getAttribute("javax.servlet.error.message");
if (value == null)
sb.append(" message is missing/");
else if (!(value instanceof String)) {
sb.append(" message class is ");
sb.append(value.getClass().getName());
sb.append("/");
} else {
String message = (String) value;
if (!"ErrorPage01 Returned Status Code 412".equals(message)) {
sb.append(" message is ");
sb.append(message);
sb.append("/");
}
}
value = request.getAttribute("javax.servlet.error.request_uri");
if (value == null)
sb.append(" request_uri is missing/");
else if (!(value instanceof String)) {
sb.append(" request_uri class is ");
sb.append(value.getClass().getName());
sb.append("/");
} else {
String request_uri = (String) value;
String test1 = request.getContextPath() + "/ErrorPage01";
String test2 = request.getContextPath() + "/WrappedErrorPage01";
if (!request_uri.equals(test1) && !request_uri.equals(test2)) {
sb.append(" request_uri is ");
sb.append(request_uri);
sb.append("/");
}
}
value = request.getAttribute("javax.servlet.error.servlet_name");
if (value == null)
sb.append(" servlet_name is missing/");
else if (!(value instanceof String)) {
sb.append(" servlet_name class is ");
sb.append(value.getClass().getName());
sb.append("/");
} else {
String servlet_name = (String) value;
if (!"ErrorPage01".equals(servlet_name)) {
sb.append(" servlet_name is ");
sb.append(servlet_name);
sb.append("/");
}
}
// Report ultimate success or failure
if (sb.length() < 1)
writer.println("ErrorPage02 PASSED");
else
writer.println("ErrorPage02 FAILED -" + sb.toString());
while (true) {
String message = StaticLogger.read();
if (message == null)
break;
writer.println(message);
}
StaticLogger.reset();
}
}