Package org.apache.struts2.portlet.servlet

Examples of org.apache.struts2.portlet.servlet.PortletServletResponse


 
  public void testShouldPassThroughRenderUrlToServletUrlRendererIfNotPortletRequest() throws Exception {
    UrlRenderer mockRenderer = EasyMock.createMock(UrlRenderer.class);
    ActionContext.getContext().put(StrutsStatics.STRUTS_PORTLET_CONTEXT, null);
    renderer.setServletRenderer(mockRenderer);
    URL url = new URL(stack, new PortletServletRequest(request, null), new PortletServletResponse(response));
    StringWriter renderOutput = new StringWriter();
    mockRenderer.renderUrl(renderOutput, url);
    EasyMock.replay(mockRenderer);
    renderer.renderUrl(renderOutput, url);
    EasyMock.verify(mockRenderer);
View Full Code Here


 
  public void testShouldPassThroughRenderFormUrlToServletUrlRendererIfNotPortletRequest() throws Exception {
    UrlRenderer mockRenderer = EasyMock.createMock(UrlRenderer.class);
    ActionContext.getContext().put(StrutsStatics.STRUTS_PORTLET_CONTEXT, null);
    renderer.setServletRenderer(mockRenderer);
    Form form = new Form(stack, new PortletServletRequest(request, null), new PortletServletResponse(response));
    mockRenderer.renderFormUrl(form);
    EasyMock.replay(mockRenderer);
    renderer.renderFormUrl(form);
    EasyMock.verify(mockRenderer);
  }
View Full Code Here

  }
 
  public void testShouldPassThroughRenderUrlToServletUrlRendererWhenPortletUrlTypeIsNone() throws Exception {
    UrlRenderer mockRenderer = EasyMock.createMock(UrlRenderer.class);
    renderer.setServletRenderer(mockRenderer);
    URL url = new URL(stack, new PortletServletRequest(request, null), new PortletServletResponse(response));
    url.setPortletUrlType("none");
    StringWriter renderOutput = new StringWriter();
    mockRenderer.renderUrl(renderOutput, url);
    EasyMock.replay(mockRenderer);
    renderer.renderUrl(renderOutput, url);
View Full Code Here

    public HashMap<String, Object> createContextMap(Map<String, Object> requestMap, Map<String, String[]> parameterMap,
            Map<String, Object> sessionMap, Map<String, Object> applicationMap, PortletRequest request,
            PortletResponse response, PortletConfig portletConfig, Integer phase) throws IOException {

        // TODO Must put http request/response objects into map for use with
      HttpServletResponse dummyResponse = new PortletServletResponse(response);
      HttpServletRequest dummyRequest = new PortletServletRequest(request, getPortletContext());
      container.inject(dummyRequest);
      ServletContext dummyServletContext = new PortletServletContext(getPortletContext());
      if(EVENT_PHASE.equals(phase)) {
        dummyRequest = dispatcherUtils.wrapRequest(dummyRequest, dummyServletContext);
View Full Code Here

        String actionName = null;
        String namespace = null;
        try {
            ServletContext servletContext = new PortletServletContext(getPortletContext());
            HttpServletRequest servletRequest = new PortletServletRequest(request, getPortletContext());
            HttpServletResponse servletResponse = new PortletServletResponse(response);
            if(EVENT_PHASE.equals(phase)) {
              servletRequest = dispatcherUtils.wrapRequest(servletRequest, servletContext);
            if(servletRequest instanceof MultiPartRequestWrapper) {
              // Multipart request. Request parameters are encoded in the multipart data,
              // so we need to manually add them to the parameter map.
View Full Code Here

            Map sessionMap, Map applicationMap, PortletRequest request,
            PortletResponse response, PortletConfig portletConfig, Integer phase) throws IOException {

        // TODO Must put http request/response objects into map for use with
        // ServletActionContext
        HttpServletResponse dummyResponse = new PortletServletResponse(response);
        HttpServletRequest dummyRequest = new PortletServletRequest(request, getPortletContext());
        ServletContext dummyServletContext = new PortletServletContext(getPortletContext());
        if(EVENT_PHASE.equals(phase)) {
            dummyRequest = dispatcherUtils.wrapRequest(dummyRequest, dummyServletContext);
        }
View Full Code Here

   */
  public void testShouldIncludeCurrentNamespaceIfNoNamespaceSpecifiedForRenderUrl()
      throws Exception {
   
    URL url = new URL(stack, new PortletServletRequest(request, null),
        new PortletServletResponse(response));

    MockActionInvocation ai = new MockActionInvocation();
    MockActionProxy ap = new MockActionProxy();
    ap.setActionName("testAction");
    ap.setNamespace("/current_namespace");
View Full Code Here

   */
  public void testShouldIncludeCurrentNamespaceIfNoNamespaceSpecifiedForRenderFormUrl()
      throws Exception {

    Form form = new Form(stack, new PortletServletRequest(request, null),
        new PortletServletResponse(response));

    MockActionInvocation ai = new MockActionInvocation();
    MockActionProxy ap = new MockActionProxy();
    ap.setActionName("testAction");
    ap.setNamespace("/current_namespace");
View Full Code Here

    ai.setProxy(ap);
    ai.setStack(stack);
    ctx.setActionInvocation(ai);
   
    URL url = new URL(stack, new PortletServletRequest(request, null),
        new PortletServletResponse(response));
    url.setAction("%{someProperty}");
   
    StringWriter renderOutput = new StringWriter();
    renderer.renderUrl(renderOutput, url.getUrlProvider());
View Full Code Here

    ai.setProxy(ap);
    ai.setStack(stack);
    ctx.setActionInvocation(ai);
   
    URL url = new URL(stack, new PortletServletRequest(request, null),
        new PortletServletResponse(response));
    url.setAnchor("%{someProperty}");
   
    StringWriter renderOutput = new StringWriter();
    renderer.renderUrl(renderOutput, url.getUrlProvider());
    assertTrue(renderOutput.toString().indexOf("#EvaluatedProperty") != -1);
View Full Code Here

TOP

Related Classes of org.apache.struts2.portlet.servlet.PortletServletResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.