Search in sources :

Example 1 with StrutsMockHttpServletResponse

use of org.apache.struts2.views.jsp.StrutsMockHttpServletResponse in project struts by apache.

the class URLTagTest method testEmptyActionCustomMapper.

public void testEmptyActionCustomMapper() throws Exception {
    Map<String, String> props = new HashMap<>();
    props.put("config", "struts-default.xml,struts-plugin.xml,struts.xml,org/apache/struts2/views/jsp/WW3090-struts.xml");
    this.tearDown();
    Dispatcher du = this.initDispatcher(props);
    /**
     * create our standard mock objects
     */
    action = this.getAction();
    stack = ActionContext.getContext().getValueStack();
    context = stack.getContext();
    stack.push(action);
    request = new StrutsMockHttpServletRequest();
    request.setAttribute(ServletActionContext.STRUTS_VALUESTACK_KEY, stack);
    response = new StrutsMockHttpServletResponse();
    request.setSession(new StrutsMockHttpSession());
    request.setupGetServletPath("/");
    writer = new StringWriter();
    servletContext = new StrutsMockServletContext();
    servletContext.setRealPath(new File("nosuchfile.properties").getAbsolutePath());
    servletContext.setServletInfo("Resin");
    pageContext = new StrutsMockPageContext();
    pageContext.setRequest(request);
    pageContext.setResponse(response);
    pageContext.setServletContext(servletContext);
    mockContainer = new Mock(Container.class);
    session = new SessionMap(request);
    Map<String, Object> extraContext = du.createContextMap(new RequestMap(request), HttpParameters.create(request.getParameterMap()).build(), session, new ApplicationMap(pageContext.getServletContext()), request, response);
    // let's not set the locale -- there is a test that checks if Dispatcher actually picks this up...
    // ... but generally we want to just use no locale (let it stay system default)
    extraContext.remove(ActionContext.LOCALE);
    stack.getContext().putAll(extraContext);
    context.put(ServletActionContext.HTTP_REQUEST, request);
    context.put(ServletActionContext.HTTP_RESPONSE, response);
    context.put(ServletActionContext.SERVLET_CONTEXT, servletContext);
    ActionContext actionContext = ActionContext.of(context).withServletRequest(request).withServletResponse(response).withServletContext(servletContext).bind();
    // Make sure we have an action invocation available
    ActionContext.getContext().withActionInvocation(new DefaultActionInvocation(null, true));
    DefaultActionProxyFactory apFactory = new DefaultActionProxyFactory();
    apFactory.setContainer(container);
    ActionProxy ap = apFactory.createActionProxy("/", "hello", null, null);
    ActionContext.getContext().getActionInvocation().init(ap);
    request.setScheme("http");
    request.setServerName("localhost");
    request.setServerPort(80);
    tag = new URLTag();
    tag.setPageContext(pageContext);
    JspWriter jspWriter = new StrutsMockJspWriter(writer);
    pageContext.setJspWriter(jspWriter);
    request.setRequestURI("/context/someAction.action");
    tag.setAction(null);
    tag.setValue(null);
    tag.doStartTag();
    tag.doEndTag();
    assertEquals("/hello.action-red", writer.toString());
    // Basic sanity check of clearTagStateForTagPoolingServers() behaviour for Struts Tags after doEndTag().
    URLTag freshTag = new URLTag();
    freshTag.setPageContext(pageContext);
    // URLTag clears component in doEndTag and has no additional state set here, so it compares as equal with the default tag clear state as well.
    assertTrue("Tag state after doEndTag() under default tag clear state is inequal to new Tag with pageContext/parent set.  " + "May indicate that clearTagStateForTagPoolingServers() calls are not working properly.", strutsBodyTagsAreReflectionEqual(tag, freshTag));
    writer = new StringWriter();
    jspWriter = new StrutsMockJspWriter(writer);
    pageContext.setJspWriter(jspWriter);
    tag.doStartTag();
    tag.doEndTag();
    assertEquals("/hello.action-blue", writer.toString());
    // Basic sanity check of clearTagStateForTagPoolingServers() behaviour for Struts Tags after doEndTag().
    // URLTag clears component in doEndTag and has no additional state set here, so it compares as equal with the default tag clear state as well.
    assertTrue("Tag state after doEndTag() under default tag clear state is inequal to new Tag with pageContext/parent set.  " + "May indicate that clearTagStateForTagPoolingServers() calls are not working properly.", strutsBodyTagsAreReflectionEqual(tag, freshTag));
    writer = new StringWriter();
    jspWriter = new StrutsMockJspWriter(writer);
    pageContext.setJspWriter(jspWriter);
    tag.doStartTag();
    tag.doEndTag();
    assertEquals("/hello.action-red", writer.toString());
    // Basic sanity check of clearTagStateForTagPoolingServers() behaviour for Struts Tags after doEndTag().
    // URLTag clears component in doEndTag and has no additional state set here, so it compares as equal with the default tag clear state as well.
    assertTrue("Tag state after doEndTag() under default tag clear state is inequal to new Tag with pageContext/parent set.  " + "May indicate that clearTagStateForTagPoolingServers() calls are not working properly.", strutsBodyTagsAreReflectionEqual(tag, freshTag));
}
Also used : ApplicationMap(org.apache.struts2.dispatcher.ApplicationMap) ActionProxy(com.opensymphony.xwork2.ActionProxy) HashMap(java.util.HashMap) LinkedHashMap(java.util.LinkedHashMap) Dispatcher(org.apache.struts2.dispatcher.Dispatcher) Mock(com.mockobjects.dynamic.Mock) DefaultActionInvocation(com.opensymphony.xwork2.DefaultActionInvocation) Container(com.opensymphony.xwork2.inject.Container) StringWriter(java.io.StringWriter) SessionMap(org.apache.struts2.dispatcher.SessionMap) RequestMap(org.apache.struts2.dispatcher.RequestMap) ActionContext(com.opensymphony.xwork2.ActionContext) ServletActionContext(org.apache.struts2.ServletActionContext) JspWriter(javax.servlet.jsp.JspWriter) DefaultActionProxyFactory(com.opensymphony.xwork2.DefaultActionProxyFactory) File(java.io.File)

Example 2 with StrutsMockHttpServletResponse

use of org.apache.struts2.views.jsp.StrutsMockHttpServletResponse in project struts by apache.

the class URLTagTest method testEmptyActionCustomMapper_clearTagStateSet.

public void testEmptyActionCustomMapper_clearTagStateSet() throws Exception {
    Map<String, String> props = new HashMap<String, String>();
    props.put("config", "struts-default.xml,struts-plugin.xml,struts.xml,org/apache/struts2/views/jsp/WW3090-struts.xml");
    this.tearDown();
    Dispatcher du = this.initDispatcher(props);
    action = this.getAction();
    stack = ActionContext.getContext().getValueStack();
    context = stack.getContext();
    stack.push(action);
    request = new StrutsMockHttpServletRequest();
    request.setAttribute(ServletActionContext.STRUTS_VALUESTACK_KEY, stack);
    response = new StrutsMockHttpServletResponse();
    request.setSession(new StrutsMockHttpSession());
    request.setupGetServletPath("/");
    writer = new StringWriter();
    servletContext = new StrutsMockServletContext();
    servletContext.setRealPath(new File("nosuchfile.properties").getAbsolutePath());
    servletContext.setServletInfo("Resin");
    pageContext = new StrutsMockPageContext();
    pageContext.setRequest(request);
    pageContext.setResponse(response);
    pageContext.setServletContext(servletContext);
    mockContainer = new Mock(Container.class);
    session = new SessionMap<>(request);
    Map<String, Object> extraContext = du.createContextMap(new RequestMap(request), HttpParameters.create(request.getParameterMap()).build(), session, new ApplicationMap(pageContext.getServletContext()), request, response);
    // let's not set the locale -- there is a test that checks if Dispatcher actually picks this up...
    // ... but generally we want to just use no locale (let it stay system default)
    extraContext = ActionContext.of(extraContext).withLocale(null).getContextMap();
    stack.getContext().putAll(extraContext);
    ActionContext actionContext = ActionContext.of(context).withServletRequest(request).withServletResponse(response).withServletContext(servletContext).bind();
    // Make sure we have an action invocation available
    ActionContext.getContext().withActionInvocation(new DefaultActionInvocation(null, true));
    DefaultActionProxyFactory apFactory = new DefaultActionProxyFactory();
    apFactory.setContainer(container);
    ActionProxy ap = apFactory.createActionProxy("/", "hello", null, null);
    ActionContext.getContext().getActionInvocation().init(ap);
    request.setScheme("http");
    request.setServerName("localhost");
    request.setServerPort(80);
    tag = new URLTag();
    // Explicitly request tag state clearing.
    tag.setPerformClearTagStateForTagPoolingServers(true);
    tag.setPageContext(pageContext);
    JspWriter jspWriter = new StrutsMockJspWriter(writer);
    pageContext.setJspWriter(jspWriter);
    request.setRequestURI("/context/someAction.action");
    tag.setAction(null);
    tag.setValue(null);
    tag.doStartTag();
    // Ensure component tag state clearing is set true (to match tag).
    setComponentTagClearTagState(tag, true);
    tag.doEndTag();
    assertEquals("/hello.action-red", writer.toString());
    // Basic sanity check of clearTagStateForTagPoolingServers() behaviour for Struts Tags after doEndTag().
    URLTag freshTag = new URLTag();
    freshTag.setPerformClearTagStateForTagPoolingServers(true);
    freshTag.setPageContext(pageContext);
    assertTrue("Tag state after doEndTag() and explicit tag state clearing is inequal to new Tag with pageContext/parent set.  " + "May indicate that clearTagStateForTagPoolingServers() calls are not working properly.", strutsBodyTagsAreReflectionEqual(tag, freshTag));
    writer = new StringWriter();
    jspWriter = new StrutsMockJspWriter(writer);
    pageContext.setJspWriter(jspWriter);
    tag.doStartTag();
    // Ensure component tag state clearing is set true (to match tag).
    setComponentTagClearTagState(tag, true);
    tag.doEndTag();
    assertEquals("/hello.action-blue", writer.toString());
    // Basic sanity check of clearTagStateForTagPoolingServers() behaviour for Struts Tags after doEndTag().
    assertTrue("Tag state after doEndTag() and explicit tag state clearing is inequal to new Tag with pageContext/parent set.  " + "May indicate that clearTagStateForTagPoolingServers() calls are not working properly.", strutsBodyTagsAreReflectionEqual(tag, freshTag));
    writer = new StringWriter();
    jspWriter = new StrutsMockJspWriter(writer);
    pageContext.setJspWriter(jspWriter);
    tag.doStartTag();
    // Ensure component tag state clearing is set true (to match tag).
    setComponentTagClearTagState(tag, true);
    tag.doEndTag();
    assertEquals("/hello.action-red", writer.toString());
    // Basic sanity check of clearTagStateForTagPoolingServers() behaviour for Struts Tags after doEndTag().
    assertTrue("Tag state after doEndTag() and explicit tag state clearing is inequal to new Tag with pageContext/parent set.  " + "May indicate that clearTagStateForTagPoolingServers() calls are not working properly.", strutsBodyTagsAreReflectionEqual(tag, freshTag));
}
Also used : ApplicationMap(org.apache.struts2.dispatcher.ApplicationMap) ActionProxy(com.opensymphony.xwork2.ActionProxy) HashMap(java.util.HashMap) LinkedHashMap(java.util.LinkedHashMap) Dispatcher(org.apache.struts2.dispatcher.Dispatcher) Mock(com.mockobjects.dynamic.Mock) DefaultActionInvocation(com.opensymphony.xwork2.DefaultActionInvocation) Container(com.opensymphony.xwork2.inject.Container) StringWriter(java.io.StringWriter) RequestMap(org.apache.struts2.dispatcher.RequestMap) ActionContext(com.opensymphony.xwork2.ActionContext) ServletActionContext(org.apache.struts2.ServletActionContext) JspWriter(javax.servlet.jsp.JspWriter) DefaultActionProxyFactory(com.opensymphony.xwork2.DefaultActionProxyFactory) File(java.io.File)

Example 3 with StrutsMockHttpServletResponse

use of org.apache.struts2.views.jsp.StrutsMockHttpServletResponse in project struts by apache.

the class FreemarkerResultMockedTest method init.

private void init() {
    stringWriter = new StringWriter();
    writer = new PrintWriter(stringWriter);
    response = new StrutsMockHttpServletResponse();
    response.setWriter(writer);
    request = new MockHttpServletRequest();
    stack = ActionContext.getContext().getValueStack();
    context = ActionContext.of(stack.getContext()).withServletResponse(response).withServletRequest(request).withServletContext(servletContext).bind();
    servletContext.setAttribute(FreemarkerManager.CONFIG_SERVLET_CONTEXT_KEY, null);
    invocation = new MockActionInvocation();
    invocation.setStack(stack);
    invocation.setInvocationContext(context);
    // get fm config to use it in mock servlet context
    FreemarkerManager freemarkerManager = container.getInstance(FreemarkerManager.class);
    freemarkerConfig = freemarkerManager.getConfiguration(ServletActionContext.getServletContext());
    freemarkerConfig.setTemplateExceptionHandler(TemplateExceptionHandler.RETHROW_HANDLER);
    freemarkerConfig.setServletContextForTemplateLoading(servletContext, null);
}
Also used : StringWriter(java.io.StringWriter) MockHttpServletRequest(org.springframework.mock.web.MockHttpServletRequest) MockActionInvocation(com.opensymphony.xwork2.mock.MockActionInvocation) StrutsMockHttpServletResponse(org.apache.struts2.views.jsp.StrutsMockHttpServletResponse) PrintWriter(java.io.PrintWriter)

Example 4 with StrutsMockHttpServletResponse

use of org.apache.struts2.views.jsp.StrutsMockHttpServletResponse in project struts by apache.

the class AbstractTagTest method createMocks.

protected void createMocks() {
    action = this.getAction();
    container.inject(action);
    stack = ActionContext.getContext().getValueStack();
    context = stack.getContext();
    stack.push(action);
    request = new StrutsMockHttpServletRequest();
    request.setAttribute(ServletActionContext.STRUTS_VALUESTACK_KEY, stack);
    response = new StrutsMockHttpServletResponse();
    request.setSession(new StrutsMockHttpSession());
    request.setupGetServletPath("/");
    writer = new StringWriter();
    JspWriter jspWriter = new StrutsMockJspWriter(writer);
    servletContext.setRealPath(new File("nosuchfile.properties").getAbsolutePath());
    servletContext.setServletInfo("Resin");
    pageContext = new StrutsMockPageContext();
    pageContext.setRequest(request);
    pageContext.setResponse(response);
    pageContext.setJspWriter(jspWriter);
    pageContext.setServletContext(servletContext);
    mockContainer = new Mock(Container.class);
    MockDispatcher du = new MockDispatcher(pageContext.getServletContext(), new HashMap<>(), configurationManager);
    du.init();
    Dispatcher.setInstance(du);
    session = new SessionMap<>(request);
    Map<String, Object> extraContext = du.createContextMap(new RequestMap(request), HttpParameters.create(request.getParameterMap()).build(), session, new ApplicationMap(pageContext.getServletContext()), request, response);
    // let's not set the locale -- there is a test that checks if Dispatcher actually picks this up...
    // ... but generally we want to just use no locale (let it stay system default)
    extraContext = ActionContext.of(extraContext).withLocale(null).getContextMap();
    stack.getContext().putAll(extraContext);
    ActionContext.of(context).withServletRequest(request).withServletResponse(response).withServletContext(servletContext).bind();
}
Also used : ApplicationMap(org.apache.struts2.dispatcher.ApplicationMap) MockDispatcher(org.apache.struts2.dispatcher.MockDispatcher) RequestMap(org.apache.struts2.dispatcher.RequestMap) JspWriter(javax.servlet.jsp.JspWriter) Mock(com.mockobjects.dynamic.Mock) Container(com.opensymphony.xwork2.inject.Container) StringWriter(java.io.StringWriter) File(java.io.File)

Example 5 with StrutsMockHttpServletResponse

use of org.apache.struts2.views.jsp.StrutsMockHttpServletResponse in project struts by apache.

the class PlainTextResultTest method setUp.

protected void setUp() throws Exception {
    super.setUp();
    stringWriter = new StringWriter();
    writer = new PrintWriter(stringWriter);
    response = new StrutsMockHttpServletResponse();
    response.setWriter(writer);
    servletContext = new StrutsMockServletContext();
    stack = ActionContext.getContext().getValueStack();
    context = ActionContext.of(stack.getContext()).bind();
    context.put(StrutsStatics.HTTP_RESPONSE, response);
    context.put(StrutsStatics.SERVLET_CONTEXT, servletContext);
    invocation = new MockActionInvocation();
    invocation.setStack(stack);
    invocation.setInvocationContext(context);
}
Also used : StringWriter(java.io.StringWriter) MockActionInvocation(com.opensymphony.xwork2.mock.MockActionInvocation) StrutsMockHttpServletResponse(org.apache.struts2.views.jsp.StrutsMockHttpServletResponse) StrutsMockServletContext(org.apache.struts2.views.jsp.StrutsMockServletContext) PrintWriter(java.io.PrintWriter)

Aggregations

StringWriter (java.io.StringWriter)7 MockActionInvocation (com.opensymphony.xwork2.mock.MockActionInvocation)4 File (java.io.File)4 PrintWriter (java.io.PrintWriter)4 Mock (com.mockobjects.dynamic.Mock)3 ActionContext (com.opensymphony.xwork2.ActionContext)3 Container (com.opensymphony.xwork2.inject.Container)3 JspWriter (javax.servlet.jsp.JspWriter)3 ApplicationMap (org.apache.struts2.dispatcher.ApplicationMap)3 RequestMap (org.apache.struts2.dispatcher.RequestMap)3 StrutsMockHttpServletResponse (org.apache.struts2.views.jsp.StrutsMockHttpServletResponse)3 ActionProxy (com.opensymphony.xwork2.ActionProxy)2 DefaultActionInvocation (com.opensymphony.xwork2.DefaultActionInvocation)2 DefaultActionProxyFactory (com.opensymphony.xwork2.DefaultActionProxyFactory)2 MockActionProxy (com.opensymphony.xwork2.mock.MockActionProxy)2 HashMap (java.util.HashMap)2 LinkedHashMap (java.util.LinkedHashMap)2 ServletActionContext (org.apache.struts2.ServletActionContext)2 Dispatcher (org.apache.struts2.dispatcher.Dispatcher)2 StrutsMockServletContext (org.apache.struts2.views.jsp.StrutsMockServletContext)2