blob: a53229f052f8118f6b1ba3c8858575758077ca5a [file] [log] [blame]
// 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.vlib.services;
import static org.easymock.EasyMock.*;
import org.apache.hivemind.test.HiveMindTestCase;
import org.apache.tapestry.IPage;
import org.apache.tapestry.IRequestCycle;
import org.apache.tapestry.engine.state.ApplicationStateManager;
import org.apache.tapestry.vlib.IErrorProperty;
import org.apache.tapestry.vlib.Visit;
/**
* Tests for {@link org.apache.tapestry.vlib.services.ErrorPresenterImpl}.
*
* @author Howard M. Lewis Ship
* @since 4.0
*/
public class ErrorPresenterTest extends HiveMindTestCase
{
protected ErrorPresenter newErrorPresenter(ApplicationStateManager manager)
{
ErrorPresenterImpl result = new ErrorPresenterImpl();
result.setStateManager(manager);
return result;
}
protected void trainGetPage(IRequestCycle cycle, String pageName, IPage page)
{
expect(cycle.getPage(pageName)).andReturn(page);
}
protected Visit newVisit()
{
return (Visit) newMock(Visit.class);
}
public void testNoVisit()
{
IRequestCycle cycle = newCycle();
IErrorProperty page = newPage();
ApplicationStateManager manager = newApplicationStateManager();
expect(manager.exists("visit")).andReturn(false);
trainGetPage(cycle, "Home", page);
page.setError("An error.");
cycle.activate(page);
replayControls();
newErrorPresenter(manager).presentError("An error.", cycle);
verifyControls();
}
public void testLoggedOff()
{
IRequestCycle cycle = newCycle();
IErrorProperty page = newPage();
ApplicationStateManager manager = newApplicationStateManager();
Visit visit = newVisit();
expect(manager.exists("visit")).andReturn(true);
expect(manager.get("visit")).andReturn(visit);
expect(visit.isUserLoggedIn()).andReturn(false);
trainGetPage(cycle, "Home", page);
page.setError("An error.");
cycle.activate(page);
replayControls();
newErrorPresenter(manager).presentError("An error.", cycle);
verifyControls();
}
private ApplicationStateManager newApplicationStateManager()
{
return (ApplicationStateManager) newMock(ApplicationStateManager.class);
}
private IErrorProperty newPage()
{
return (IErrorProperty) newMock(IErrorProperty.class);
}
private IRequestCycle newCycle()
{
return (IRequestCycle) newMock(IRequestCycle.class);
}
public void testLoggedIn()
{
IRequestCycle cycle = newCycle();
IErrorProperty page = newPage();
ApplicationStateManager manager = newApplicationStateManager();
Visit visit = newVisit();
expect(manager.exists("visit")).andReturn(true);
expect(manager.get("visit")).andReturn(visit);
expect(visit.isUserLoggedIn()).andReturn(true);
trainGetPage(cycle, "MyLibrary", page);
page.setError("An error.");
cycle.activate(page);
replayControls();
newErrorPresenter(manager).presentError("An error.", cycle);
verifyControls();
}
}