blob: 99b4fc1dd0671d81d471120669ac30526e9be376 [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 java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import org.apache.tiles.Attribute;
import org.apache.tiles.AttributeContext;
import org.apache.tiles.TilesContainer;
import org.apache.tiles.access.TilesAccess;
import org.apache.tiles.autotag.core.runtime.ModelBody;
import org.apache.tiles.request.ApplicationContext;
import org.apache.tiles.request.Request;
import org.junit.Before;
import org.junit.Test;
/**
* Tests {@link InsertTemplateModel}.
*
* @version $Rev$ $Date$
*/
public class InsertTemplateModelTest {
/**
* The model to test.
*/
private InsertTemplateModel model;
/**
* Sets up the test.
*/
@Before
public void setUp() {
model = new InsertTemplateModel();
}
/**
* Test method for {@link org.apache.tiles.template.InsertTemplateModel
* #execute(String, String, String, String, String, boolean, Request, ModelBody)}.
* @throws IOException If something goes wrong.
*/
@Test
public void testExecute() throws IOException {
TilesContainer container = createMock(TilesContainer.class);
Request request = createMock(Request.class);
AttributeContext attributeContext = createMock(AttributeContext.class);
Map<String, Object> requestScope = new HashMap<String, Object>();
requestScope.put(TilesAccess.CURRENT_CONTAINER_ATTRIBUTE_NAME, container);
ApplicationContext applicationContext = createMock(ApplicationContext.class);
ModelBody modelBody = createMock(ModelBody.class);
modelBody.evaluateWithoutWriting();
expect(request.getApplicationContext()).andReturn(applicationContext).times(2);
expect(request.getContext("request")).andReturn(requestScope).anyTimes();
expect(container.startContext(request)).andReturn(attributeContext);
expect(container.getAttributeContext(request)).andReturn(attributeContext);
container.endContext(request);
attributeContext.setPreparer("myPreparer");
attributeContext.setTemplateAttribute((Attribute) notNull());
container.renderContext(request);
replay(container, attributeContext, request, applicationContext, modelBody);
model.execute("myTemplate", "myTemplateType", "myTemplateExpression",
"myRole", "myPreparer", false, request, modelBody);
verify(container, attributeContext, request, applicationContext, modelBody);
}
}