Package org.apache.tapestry.error

Source Code of org.apache.tapestry.error.BaseErrorTestCase

// Copyright 2005 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.tapestry.error;

import org.apache.hivemind.test.HiveMindTestCase;
import org.apache.tapestry.IPage;
import org.apache.tapestry.IRequestCycle;
import org.apache.tapestry.error.TestExceptionPresenter.ExceptionFixture;
import org.apache.tapestry.services.ResponseRenderer;
import org.apache.tapestry.test.Creator;
import org.easymock.MockControl;

/**
* Base class for tests of the various error reporting service implementations.
*
* @author Howard M. Lewis Ship
* @since 4.0
*/
public abstract class BaseErrorTestCase extends HiveMindTestCase
{

    protected IPage newPage()
    {
        Creator c = new Creator();
   
        return (IPage) c.newInstance(ExceptionFixture.class);
    }

    protected IRequestCycle newCycle(String pageName, IPage page)
    {
        MockControl control = newControl(IRequestCycle.class);
        IRequestCycle cycle = (IRequestCycle) control.getMock();
   
        cycle.getPage(pageName);
        control.setReturnValue(page);
   
        return cycle;
    }

    protected ResponseRenderer newRenderer(IRequestCycle cycle, Throwable throwable) throws Exception
    {
        MockControl control = newControl(ResponseRenderer.class);
        ResponseRenderer renderer = (ResponseRenderer) control.getMock();
   
        renderer.renderResponse(cycle);
   
        if (throwable != null)
            control.setThrowable(throwable);
   
        return renderer;
    }

    protected RequestExceptionReporter newReporter()
    {
        return (RequestExceptionReporter) newMock(RequestExceptionReporter.class);
    }

}
TOP

Related Classes of org.apache.tapestry.error.BaseErrorTestCase

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.