Search in sources :

Example 1 with RequestMap

use of org.apache.struts2.dispatcher.RequestMap in project struts by apache.

the class TagUtils method getStack.

public static ValueStack getStack(PageContext pageContext) {
    HttpServletRequest req = (HttpServletRequest) pageContext.getRequest();
    ValueStack stack = ServletActionContext.getValueStack(req);
    if (stack == null) {
        HttpServletResponse res = (HttpServletResponse) pageContext.getResponse();
        Dispatcher du = Dispatcher.getInstance();
        if (du == null) {
            throw new ConfigurationException("The Struts dispatcher cannot be found.  This is usually caused by " + "using Struts tags without the associated filter. Struts tags are only usable when the request " + "has passed through its servlet filter, which initializes the Struts dispatcher needed for this tag.");
        }
        stack = du.getContainer().getInstance(ValueStackFactory.class).createValueStack();
        HttpParameters params = HttpParameters.create(req.getParameterMap()).build();
        Map<String, Object> extraContext = du.createContextMap(new RequestMap(req), params, new SessionMap<>(req), new ApplicationMap(pageContext.getServletContext()), req, res);
        extraContext.put(ServletActionContext.PAGE_CONTEXT, pageContext);
        stack.getContext().putAll(extraContext);
        req.setAttribute(ServletActionContext.STRUTS_VALUESTACK_KEY, stack);
        // also tie this stack/context to the ThreadLocal
        ActionContext.of(stack.getContext()).bind();
    } else {
        // let's make sure that the current page context is in the action context
        // TODO: refactor this to stop using put()
        Map<String, Object> context = stack.getContext();
        context.put(ServletActionContext.PAGE_CONTEXT, pageContext);
        AttributeMap attrMap = new AttributeMap(context);
        context.put("attr", attrMap);
    }
    return stack;
}
Also used : ApplicationMap(org.apache.struts2.dispatcher.ApplicationMap) ValueStack(com.opensymphony.xwork2.util.ValueStack) HttpParameters(org.apache.struts2.dispatcher.HttpParameters) HttpServletResponse(javax.servlet.http.HttpServletResponse) RequestMap(org.apache.struts2.dispatcher.RequestMap) Dispatcher(org.apache.struts2.dispatcher.Dispatcher) HttpServletRequest(javax.servlet.http.HttpServletRequest) AttributeMap(org.apache.struts2.util.AttributeMap) ConfigurationException(com.opensymphony.xwork2.config.ConfigurationException)

Example 2 with RequestMap

use of org.apache.struts2.dispatcher.RequestMap 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 3 with RequestMap

use of org.apache.struts2.dispatcher.RequestMap 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 4 with RequestMap

use of org.apache.struts2.dispatcher.RequestMap 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 RequestMap

use of org.apache.struts2.dispatcher.RequestMap in project struts by apache.

the class ActionComponent method createExtraContext.

protected Map<String, Object> createExtraContext() {
    HttpParameters newParams = createParametersForContext();
    ActionContext ctx = stack.getActionContext();
    PageContext pageContext = ctx.getPageContext();
    Map<String, Object> session = ctx.getSession();
    Map<String, Object> application = ctx.getApplication();
    Dispatcher du = Dispatcher.getInstance();
    Map<String, Object> extraContext = du.createContextMap(new RequestMap(req), newParams, session, application, req, res);
    ValueStack newStack = valueStackFactory.createValueStack(stack);
    return ActionContext.of(extraContext).withValueStack(newStack).withPageContext(pageContext).getContextMap();
}
Also used : HttpParameters(org.apache.struts2.dispatcher.HttpParameters) ValueStack(com.opensymphony.xwork2.util.ValueStack) PageContext(javax.servlet.jsp.PageContext) RequestMap(org.apache.struts2.dispatcher.RequestMap) ActionContext(com.opensymphony.xwork2.ActionContext) ServletActionContext(org.apache.struts2.ServletActionContext) Dispatcher(org.apache.struts2.dispatcher.Dispatcher)

Aggregations

RequestMap (org.apache.struts2.dispatcher.RequestMap)6 ApplicationMap (org.apache.struts2.dispatcher.ApplicationMap)5 Dispatcher (org.apache.struts2.dispatcher.Dispatcher)5 ActionContext (com.opensymphony.xwork2.ActionContext)4 ActionProxy (com.opensymphony.xwork2.ActionProxy)4 HashMap (java.util.HashMap)4 ServletActionContext (org.apache.struts2.ServletActionContext)4 AttributeMap (org.apache.struts2.util.AttributeMap)4 Mock (com.mockobjects.dynamic.Mock)3 Container (com.opensymphony.xwork2.inject.Container)3 ValueStack (com.opensymphony.xwork2.util.ValueStack)3 File (java.io.File)3 StringWriter (java.io.StringWriter)3 HttpServletRequest (javax.servlet.http.HttpServletRequest)3 HttpServletResponse (javax.servlet.http.HttpServletResponse)3 JspWriter (javax.servlet.jsp.JspWriter)3 HttpParameters (org.apache.struts2.dispatcher.HttpParameters)3 DefaultActionInvocation (com.opensymphony.xwork2.DefaultActionInvocation)2 DefaultActionProxyFactory (com.opensymphony.xwork2.DefaultActionProxyFactory)2 ConfigurationException (com.opensymphony.xwork2.config.ConfigurationException)2