Package org.apache.cactus.sample.servlet.unit

Source Code of org.apache.cactus.sample.servlet.unit.TestJspPageContext

/*
* ========================================================================
*
* Copyright 2001-2003 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.cactus.sample.servlet.unit;

import java.io.IOException;

import org.apache.cactus.JspTestCase;
import org.apache.cactus.server.HttpServletRequestWrapper;
import org.apache.cactus.server.ServletConfigWrapper;

/**
* Test the usage of the <code>pageContext</code> implicit object when using
* <code>JspTestCase</code>.
*
* @version $Id: TestJspPageContext.java,v 1.3 2004/02/29 16:36:44 vmassol Exp $
*/
public class TestJspPageContext extends JspTestCase
{
    /**
     * Verify that the page context is not null and that we can use it.
     *
     * @exception IOException on test failure
     */
    public void testPageContext() throws IOException
    {       
        assertNotNull("Page context should not be null", pageContext);

        HttpServletRequestWrapper wrappedRequest =
            (HttpServletRequestWrapper) pageContext.getRequest();          
        assertSame(request.getOriginalRequest(),
            wrappedRequest.getOriginalRequest());

        assertSame(response, pageContext.getResponse());

        ServletConfigWrapper wrappedConfig =
            (ServletConfigWrapper) pageContext.getServletConfig();          
        assertSame(config.getOriginalConfig(),
            wrappedConfig.getOriginalConfig());       
    }
}
TOP

Related Classes of org.apache.cactus.sample.servlet.unit.TestJspPageContext

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.