/*
* Copyright 2005-2006 the original author or authors.
*
* 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.strecks.action.navigable;
import static org.easymock.EasyMock.expect;
import static org.easymock.classextension.EasyMock.createStrictMock;
import static org.easymock.classextension.EasyMock.replay;
import static org.easymock.classextension.EasyMock.verify;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.Globals;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionMessage;
import org.strecks.action.basic.impl.BasicActionForm;
import org.strecks.action.navigable.impl.NavigableFormRenderBean;
import org.strecks.context.impl.TestContextImpl;
import org.strecks.controller.ActionCreator;
import org.strecks.controller.ActionCreatorImpl;
import org.strecks.form.controller.DelegatingForm;
import org.strecks.navigate.internal.BeanNavigationReader;
import org.strecks.view.ActionForwardViewAdapter;
import org.strecks.view.ViewAdapter;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
/**
* @author Phil Zoio
*/
public class TestNavigableFormController
{
private NavigableFormController action;
@BeforeMethod
public void setUp()
{
action = new NavigableFormController();
BeanNavigationReader navigationReader = new BeanNavigationReader();
navigationReader.readAnnotations(NavigableFormRenderBean.class);
action.setNavigationHolder(navigationReader.getNavigationHolder());
}
@Test
public void testCreationAction() throws Exception
{
ActionCreator actionCreator = new ActionCreatorImpl();
Action action = actionCreator.createAction(NavigableFormRenderBean.class);
NavigableFormController controller = (NavigableFormController) action;
assert controller.getNavigationHolder() != null;
assert controller.getBeanSource() != null;
}
@Test
public void testWithValidBindingFormInputError()
{
ActionForward actionForward = new ActionForward();
HttpServletRequest request = createStrictMock(HttpServletRequest.class);
NavigableFormRenderBean actionBean = createStrictMock(NavigableFormRenderBean.class);
ActionMapping mapping = createStrictMock(ActionMapping.class);
DelegatingForm form = createStrictMock(DelegatingForm.class);
ActionErrors errors = new ActionErrors();
errors.add("prop", new ActionMessage("key"));
expect(request.getAttribute(Globals.ERROR_KEY)).andReturn(errors);
actionBean.setInputError(true);
actionBean.execute();
expect(form.getBindOutwards()).andReturn(false);
expect(actionBean.getSuccessResult()).andReturn("success");
expect(mapping.findForward("success")).andReturn(actionForward);
replay(actionBean);
replay(mapping);
replay(form);
replay(request);
ViewAdapter viewAdapter = action.executeAction(actionBean, new TestContextImpl(request, null, null, form, mapping));
ActionForwardViewAdapter va = (ActionForwardViewAdapter) viewAdapter;
assert (va.getActionForward() == actionForward);
verify(actionBean);
verify(mapping);
verify(form);
verify(request);
}
@Test
public void testWithValidBindingForm()
{
ActionForward actionForward = new ActionForward();
HttpServletRequest request = createStrictMock(HttpServletRequest.class);
NavigableFormRenderBean actionBean = createStrictMock(NavigableFormRenderBean.class);
ActionMapping mapping = createStrictMock(ActionMapping.class);
DelegatingForm form = createStrictMock(DelegatingForm.class);
expect(request.getAttribute(Globals.ERROR_KEY)).andReturn(null);
actionBean.setInputError(false);
form.setBindOutwards(true);
actionBean.execute();
expect(form.getBindOutwards()).andReturn(true);
form.bindOutwards(actionBean);
expect(actionBean.getSuccessResult()).andReturn("success");
expect(mapping.findForward("success")).andReturn(actionForward);
replay(actionBean);
replay(mapping);
replay(form);
replay(request);
ViewAdapter viewAdapter = action.executeAction(actionBean, new TestContextImpl(request, null, null, form, mapping));
ActionForwardViewAdapter va = (ActionForwardViewAdapter) viewAdapter;
assert (va.getActionForward() == actionForward);
verify(actionBean);
verify(mapping);
verify(form);
verify(request);
}
@Test
public void testWithRegularForm()
{
ActionForward actionForward = new ActionForward();
HttpServletRequest request = createStrictMock(HttpServletRequest.class);
NavigableFormRenderBean actionBean = createStrictMock(NavigableFormRenderBean.class);
ActionMapping mapping = createStrictMock(ActionMapping.class);
BasicActionForm form = createStrictMock(BasicActionForm.class);
expect(request.getAttribute(Globals.ERROR_KEY)).andReturn(null);
actionBean.setInputError(false);
actionBean.execute();
expect(actionBean.getSuccessResult()).andReturn("success");
expect(mapping.findForward("success")).andReturn(actionForward);
replay(actionBean);
replay(mapping);
replay(form);
replay(request);
ViewAdapter viewAdapter = action.executeAction(actionBean, new TestContextImpl(request, null, null, form, mapping));
ActionForwardViewAdapter va = (ActionForwardViewAdapter) viewAdapter;
assert (va.getActionForward() == actionForward);
verify(actionBean);
verify(mapping);
verify(form);
verify(request);
}
}