blob: d7eedd1210025c1b69c2b3b2343b48cf7c9f5200 [file] [log] [blame]
package org.apache.tiles.autotag.jsp.runtime;
import static org.easymock.EasyMock.*;
import static org.junit.Assert.*;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.jsp.JspContext;
import javax.servlet.jsp.JspWriter;
import javax.servlet.jsp.PageContext;
import javax.servlet.jsp.tagext.JspFragment;
import javax.servlet.jsp.tagext.JspTag;
import org.apache.tiles.autotag.core.runtime.ModelBody;
import org.apache.tiles.request.ApplicationContext;
import org.apache.tiles.request.Request;
import org.apache.tiles.request.jsp.JspRequest;
import org.apache.tiles.request.util.ApplicationAccess;
import org.junit.Test;
public class JspAutotagRuntimeTest {
@Test
public void testCreateRequest() {
JspFragment jspBody = createMock(JspFragment.class);
PageContext pageContext = createMock(PageContext.class);
JspTag parent = createMock(JspTag.class);
ApplicationContext applicationContext = createMock(ApplicationContext.class);
HttpServletRequest httpServletRequest = createMock(HttpServletRequest.class);
HttpServletResponse httpServletResponse = createMock(HttpServletResponse.class);
expect(pageContext.getAttribute(
ApplicationAccess.APPLICATION_CONTEXT_ATTRIBUTE,
PageContext.APPLICATION_SCOPE)).andReturn(applicationContext);
expect(pageContext.getRequest()).andReturn(httpServletRequest);
expect(pageContext.getResponse()).andReturn(httpServletResponse);
replay(jspBody, pageContext, parent, applicationContext, httpServletRequest, httpServletResponse);
JspAutotagRuntime runtime = new JspAutotagRuntime();
runtime.setJspBody(jspBody);
runtime.setJspContext(pageContext);
runtime.setParent(parent);
runtime.doTag();
Request jspRequest = runtime.createRequest();
assertTrue(jspRequest instanceof JspRequest);
verify(jspBody, pageContext, parent, applicationContext, httpServletRequest, httpServletResponse);
}
@Test
public void testCreateModelBody() {
JspFragment jspBody = createMock(JspFragment.class);
JspContext jspContext = createMock(JspContext.class);
JspTag parent = createMock(JspTag.class);
JspWriter writer = createMock(JspWriter.class);
expect(jspContext.getOut()).andReturn(writer);
replay(jspBody, jspContext, parent, writer);
JspAutotagRuntime runtime = new JspAutotagRuntime();
runtime.setJspBody(jspBody);
runtime.setJspContext(jspContext);
runtime.setParent(parent);
runtime.doTag();
ModelBody jspModelBody = runtime.createModelBody();
assertTrue(jspModelBody instanceof JspModelBody);
verify(jspBody, jspContext, parent, writer);
}
@Test(expected = UnsupportedOperationException.class)
public void testGetParameter() {
JspFragment jspBody = createMock(JspFragment.class);
JspContext jspContext = createMock(JspContext.class);
JspTag parent = createMock(JspTag.class);
replay(jspBody, jspContext, parent);
JspAutotagRuntime runtime = new JspAutotagRuntime();
runtime.setJspBody(jspBody);
runtime.setJspContext(jspContext);
runtime.setParent(parent);
runtime.doTag();
runtime.getParameter("test", null);
verify(jspBody, jspContext, parent);
}
}