blob: efacd43292fc4e2389e713022234b125d086c73f [file] [log] [blame]
/*
* $Id$
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.tiles.template;
import static org.easymock.EasyMock.*;
import static org.junit.Assert.*;
import java.util.HashMap;
import java.util.Map;
import org.apache.tiles.NoSuchContainerException;
import org.apache.tiles.TilesContainer;
import org.apache.tiles.access.TilesAccess;
import org.apache.tiles.request.ApplicationContext;
import org.apache.tiles.request.Request;
import org.junit.Test;
/**
* Tests {@link SetCurrentContainerModel}.
*
* @version $Rev$ $Date$
*/
public class SetCurrentContainerModelTest {
/**
* Test method for {@link SetCurrentContainerModel#execute(String, Request)}.
*/
@Test
public void testSetCurrentContainer() {
Request request = createMock(Request.class);
ApplicationContext context = createMock(ApplicationContext.class);
TilesContainer container = createMock(TilesContainer.class);
Map<String, Object> attribs = new HashMap<String, Object>();
attribs.put("myKey", container);
Map<String, Object> requestScope = new HashMap<String, Object>();
expect(context.getApplicationScope()).andReturn(attribs).anyTimes();
expect(request.getContext("request")).andReturn(requestScope);
expect(request.getApplicationContext()).andReturn(context);
replay(request, context, container);
SetCurrentContainerModel model = new SetCurrentContainerModel();
model.execute("myKey", request);
assertEquals(container, requestScope.get(TilesAccess.CURRENT_CONTAINER_ATTRIBUTE_NAME));
verify(request, context, container);
}
/**
* Test method for {@link SetCurrentContainerModel#execute(String, Request)}.
*/
@Test(expected = NoSuchContainerException.class)
public void testSetCurrentContainerException() {
Request request = createMock(Request.class);
ApplicationContext context = createMock(ApplicationContext.class);
Map<String, Object> attribs = new HashMap<String, Object>();
expect(request.getApplicationContext()).andReturn(context);
expect(context.getApplicationScope()).andReturn(attribs).anyTimes();
replay(request, context);
try {
SetCurrentContainerModel model = new SetCurrentContainerModel();
model.execute("myKey", request);
} finally {
verify(request, context);
}
}
}