org.jboss.as.test.integration.web.customerrors.CustomErrorsUnitTestCase.java Source code

Java tutorial

Introduction

Here is the source code for org.jboss.as.test.integration.web.customerrors.CustomErrorsUnitTestCase.java

Source

/*
 * JBoss, Home of Professional Open Source.
 * Copyright 2008, Red Hat Middleware LLC, and individual contributors
 * as indicated by the @author tags. See the copyright.txt file in the
 * distribution for a full listing of individual contributors.
 *
 * This is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this software; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
 */
package org.jboss.as.test.integration.web.customerrors;

import static org.junit.Assert.assertTrue;

import java.net.HttpURLConnection;
import java.net.URL;

import org.apache.http.Header;
import org.apache.http.HttpResponse;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.container.test.api.OperateOnDeployment;
import org.jboss.arquillian.container.test.api.RunAsClient;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.arquillian.test.api.ArquillianResource;
import org.jboss.logging.Logger;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.Test;
import org.junit.runner.RunWith;

/**
 * Tests of custom error forwarding
 *
 * @author Scott.Stark@jboss.org
 * @author lbarreiro@redhat.com
 */
@RunWith(Arquillian.class)
@RunAsClient
public class CustomErrorsUnitTestCase {

    private static Logger log = Logger.getLogger(CustomErrorsUnitTestCase.class);

    @Deployment(name = "custom-errors.war", testable = false)
    public static WebArchive errorDeployment() {
        ClassLoader tccl = Thread.currentThread().getContextClassLoader();
        String resourcesLocation = "org/jboss/as/test/integration/web/customerrors/resources/";

        WebArchive war = ShrinkWrap.create(WebArchive.class, "custom-errors.war");
        war.setWebXML(tccl.getResource(resourcesLocation + "custom-errors-web.xml"));
        war.addAsWebResource(tccl.getResource(resourcesLocation + "403.jsp"), "403.jsp");
        war.addAsWebResource(tccl.getResource(resourcesLocation + "404.jsp"), "404.jsp");
        war.addAsWebResource(tccl.getResource(resourcesLocation + "500.jsp"), "500.jsp");
        war.addClass(ErrorGeneratorServlet.class);

        System.out.println(war.toString(true));
        return war;
    }

    @Deployment(name = "error-producer.war", testable = false)
    public static WebArchive producerDeployment() {
        ClassLoader tccl = Thread.currentThread().getContextClassLoader();
        String resourcesLocation = "org/jboss/as/test/integration/web/customerrors/resources/";

        WebArchive war = ShrinkWrap.create(WebArchive.class, "error-producer.war");
        war.setWebXML(tccl.getResource(resourcesLocation + "error-producer-web.xml"));
        war.addClass(ErrorGeneratorServlet.class);
        war.addClass(ContextForwardServlet.class);

        System.out.println(war.toString(true));
        return war;
    }

    /**
     * Test that the custom 404 error page is seen
     *
     * @throws Exception
     */
    @Test
    @OperateOnDeployment("error-producer.war")
    public void test404Error(@ArquillianResource(ErrorGeneratorServlet.class) URL baseURL) throws Exception {
        int errorCode = HttpURLConnection.HTTP_NOT_FOUND;
        URL url = new URL(baseURL + "/ErrorGeneratorServlet?errorCode=" + errorCode);
        testURL(url, errorCode, "404.jsp", null);
    }

    /**
     * Test that the custom 500 error page is seen
     *
     * @throws Exception
     */
    @Test
    @OperateOnDeployment("error-producer.war")
    public void test500Error(@ArquillianResource(ErrorGeneratorServlet.class) URL baseURL) throws Exception {
        int errorCode = HttpURLConnection.HTTP_INTERNAL_ERROR;
        URL url = new URL(baseURL + "/ErrorGeneratorServlet?errorCode=" + errorCode);
        testURL(url, errorCode, "500.jsp", null);
    }

    /**
     * Test that the custom 500 error page is seen for an exception
     *
     * @throws Exception
     */
    @Test
    @OperateOnDeployment("error-producer.war")
    public void testExceptionError(@ArquillianResource(ErrorGeneratorServlet.class) URL baseURL) throws Exception {
        URL url = new URL(baseURL + "/ErrorGeneratorServlet");
        testURL(url, HttpURLConnection.HTTP_INTERNAL_ERROR, "500.jsp", "java.lang.IllegalStateException");
    }

    private void testURL(URL url, int expectedCode, String expectedPage, String expectedError) throws Exception {
        HttpGet httpget = new HttpGet(url.toURI());
        DefaultHttpClient httpclient = new DefaultHttpClient();

        log.info("executing request" + httpget.getRequestLine());
        HttpResponse response = httpclient.execute(httpget);

        int statusCode = response.getStatusLine().getStatusCode();
        Header page = response.getFirstHeader("X-CustomErrorPage");
        Header error = response.getFirstHeader("X-ExceptionType");

        assertTrue("Wrong response code: " + statusCode, statusCode == expectedCode);
        if (expectedPage != null) {
            assertTrue("X-CustomErrorPage(" + page + ") is " + expectedPage, page.getValue().equals(expectedPage));
        }
        if (expectedError != null) {
            assertTrue("X-ExceptionType(" + error + ") is " + expectedError,
                    error.getValue().equals(expectedError));
        }
    }
}