/* * Copyright 2004-2012 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.springframework.webflow.action; import junit.framework.TestCase; import org.easymock.EasyMock; import org.springframework.webflow.core.collection.LocalAttributeMap; import org.springframework.webflow.execution.Action; import org.springframework.webflow.execution.Event; import org.springframework.webflow.execution.RequestContext; import org.springframework.webflow.test.MockRequestContext; /** * Unit tests for the {@link CompositeAction} class. * * @author Ulrik Sandberg */ public class CompositeActionTests extends TestCase { private CompositeAction tested; private Action actionMock; protected void setUp() throws Exception { super.setUp(); actionMock = EasyMock.createMock(Action.class); Action[] actions = new Action[] { actionMock }; tested = new CompositeAction(actions); } public void testDoExecute() throws Exception { MockRequestContext mockRequestContext = new MockRequestContext(); LocalAttributeMap<Object> attributes = new LocalAttributeMap<Object>(); attributes.put("some key", "some value"); EasyMock.expect(actionMock.execute(mockRequestContext)).andReturn(new Event(this, "some event", attributes)); EasyMock.replay(new Object[] { actionMock }); Event result = tested.doExecute(mockRequestContext); EasyMock.verify(new Object[] { actionMock }); assertEquals("some event", result.getId()); assertEquals(1, result.getAttributes().size()); } public void testDoExecuteWithError() throws Exception { tested.setStopOnError(true); MockRequestContext mockRequestContext = new MockRequestContext(); EasyMock.expect(actionMock.execute(mockRequestContext)).andReturn(new Event(this, "error")); EasyMock.replay(new Object[] { actionMock }); Event result = tested.doExecute(mockRequestContext); EasyMock.verify(new Object[] { actionMock }); assertEquals("error", result.getId()); } public void testDoExecuteWithNullResult() throws Exception { tested.setStopOnError(true); MockRequestContext mockRequestContext = new MockRequestContext(); EasyMock.expect(actionMock.execute(mockRequestContext)).andReturn(null); EasyMock.replay(new Object[] { actionMock }); Event result = tested.doExecute(mockRequestContext); EasyMock.verify(new Object[] { actionMock }); assertEquals("Expecting success since no check is performed if null result,", "success", result.getId()); } public void testMultipleActions() throws Exception { CompositeAction ca = new CompositeAction(new Action[] { new Action() { public Event execute(RequestContext context) throws Exception { return new Event(this, "foo"); } }, new Action() { public Event execute(RequestContext context) throws Exception { return new Event(this, "bar"); } } }); assertEquals("Result of last executed action should be returned", "bar", ca.execute(new MockRequestContext()) .getId()); } }