alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Struts example source code file (Jsr168DispatcherTest.java)

This example Struts source code file (Jsr168DispatcherTest.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Struts tags/keywords

actionmapping, content-disposition, exception, hashmap, hashmap, map, map, mock, mockportletcontext, object, object, portletmode, string, string, util

The Struts Jsr168DispatcherTest.java source code

/*
 * $Id: Jsr168DispatcherTest.java 833239 2009-11-05 23:46:50Z rgielen $
 *
 * 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.struts2.portlet.dispatcher;

import com.opensymphony.xwork2.Action;
import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.ActionProxy;
import com.opensymphony.xwork2.ActionProxyFactory;
import com.opensymphony.xwork2.util.ValueStack;
import org.apache.struts2.StrutsConstants;
import org.apache.struts2.dispatcher.mapper.ActionMapping;
import org.apache.struts2.portlet.PortletActionConstants;
import org.easymock.EasyMock;
import org.jmock.Mock;
import org.jmock.cglib.MockObjectTestCase;
import org.jmock.core.Constraint;
import org.springframework.mock.web.portlet.MockPortletConfig;
import org.springframework.mock.web.portlet.MockPortletContext;

import javax.portlet.*;
import java.util.*;

/**
 * Jsr168DispatcherTest. Insert description.
 * 
 */
public class Jsr168DispatcherTest extends MockObjectTestCase implements PortletActionConstants {

	private final String MULTIPART_REQUEST = "-----------------------------4827543632391\r\n"
			+ "Content-Disposition: form-data; name=\"upload\"; filename=\"test.txt\"\r\n"
			+ "Content-Type: text/plain\r\n" 
			+ "\r\n" 
			+ "This is a test file\r\n"
			+ "-----------------------------4827543632391\r\n" 
			+ "Content-Disposition: form-data; name=\"caption\"\r\n"
			+ "\r\n" 
			+ "TestCaption\r\n" + "-----------------------------4827543632391--";

	Jsr168Dispatcher dispatcher = null;

	Mock mockConfig = null;

	Mock mockCtx = null;

	Mock mockRequest = null;

	Mock mockSession = null;

	Mock mockActionFactory = null;

	Mock mockActionProxy = null;

	Mock mockAction = null;

	Mock mockInvocation = null;

	public void setUp() throws Exception {
		super.setUp();
		dispatcher = new Jsr168Dispatcher();
	}

	private void initPortletConfig(final Map<String, String> initParams, final Map attributes) {
		mockConfig = mock(PortletConfig.class);
		mockCtx = mock(PortletContext.class);
		mockConfig.stubs().method(ANYTHING);
		mockCtx.stubs().method(ANYTHING);
		setupStub(initParams, mockConfig, "getInitParameter");
		mockCtx.stubs().method("getAttributeNames").will(returnValue(Collections.enumeration(attributes.keySet())));
		setupStub(attributes, mockCtx, "getAttribute");
		mockConfig.stubs().method("getPortletContext").will(returnValue(mockCtx.proxy()));
		mockCtx.stubs().method("getInitParameterNames").will(returnValue(Collections.enumeration(initParams.keySet())));
		setupStub(initParams, mockCtx, "getInitParameter");
		mockConfig.stubs().method("getInitParameterNames").will(
				returnValue(Collections.enumeration(initParams.keySet())));
		setupStub(initParams, mockConfig, "getInitParameter");
		mockConfig.stubs().method("getResourceBundle").will(returnValue(new ListResourceBundle() {
			protected Object[][] getContents() {
				return new String[][] { { "javax.portlet.title", "MyTitle" } };
			}
		}));
	}

	private void setupActionFactory(String namespace, String actionName, String result, ValueStack stack) {
		if (mockActionFactory == null) {
			mockActionFactory = mock(ActionProxyFactory.class);
		}
		mockAction = mock(Action.class);
		mockActionProxy = mock(ActionProxy.class);
		mockInvocation = mock(ActionInvocation.class);

		mockActionFactory.expects(once()).method("createActionProxy").with(
				new Constraint[] { eq(namespace), eq(actionName), NULL, isA(Map.class) }).will(
				returnValue(mockActionProxy.proxy()));
		mockActionProxy.stubs().method("getAction").will(returnValue(mockAction.proxy()));
		mockActionProxy.expects(once()).method("execute").will(returnValue(result));
		mockActionProxy.expects(once()).method("getInvocation").will(returnValue(mockInvocation.proxy()));
		mockInvocation.stubs().method("getStack").will(returnValue(stack));

	}

	public void testParseConfigWithBang() {
		MockPortletContext portletContext = new MockPortletContext();
		MockPortletConfig portletConfig = new MockPortletConfig(portletContext);

		portletConfig.addInitParameter("viewNamespace", "/view");
		portletConfig.addInitParameter("defaultViewAction", "index!input");

		Map<PortletMode, ActionMapping> actionMap = new HashMap();

		dispatcher.parseModeConfig(actionMap, portletConfig, PortletMode.VIEW, "viewNamespace", "defaultViewAction");

		ActionMapping mapping = actionMap.get(PortletMode.VIEW);
		assertEquals("index", mapping.getName());
		assertEquals("/view", mapping.getNamespace());
		assertEquals("input", mapping.getMethod());
	}

	public void testRender_ok() throws Exception {
		final Mock mockResponse = mock(RenderResponse.class);
		mockResponse.stubs().method(ANYTHING);

		PortletMode mode = PortletMode.VIEW;

		Map<String, String[]> requestParams = new HashMap();
		requestParams.put(PortletActionConstants.ACTION_PARAM, new String[] { "/view/testAction" });
		requestParams.put(EVENT_ACTION, new String[] { "true" });
		requestParams.put(PortletActionConstants.MODE_PARAM, new String[] { mode.toString() });

		Map<String, Object> sessionMap = new HashMap();

		Map<String, String> initParams = new HashMap();
		initParams.put("viewNamespace", "/view");
		initParams.put(StrutsConstants.STRUTS_ALWAYS_SELECT_FULL_NAMESPACE, "true");

		initPortletConfig(initParams, new HashMap<String, Object>());
		initRequest(requestParams, new HashMap<String, Object>(), sessionMap, new HashMap(), PortletMode.VIEW, WindowState.NORMAL,
				false, null);
		setupActionFactory("/view", "testAction", "success", EasyMock.createNiceMock(ValueStack.class));

		mockInvocation.expects(once()).method("getStack").will(returnValue(null));
		// mockSession.expects(once()).method("setAttribute").with(new
		// Constraint[]{eq(PortletActionConstants.LAST_MODE),
		// eq(PortletMode.VIEW)});
		dispatcher.setActionProxyFactory((ActionProxyFactory) mockActionFactory.proxy());
		dispatcher.init((PortletConfig) mockConfig.proxy());
		dispatcher.render((RenderRequest) mockRequest.proxy(), (RenderResponse) mockResponse.proxy());
	}

	public void testProcessAction_ok() throws Exception {
		final Mock mockResponse = mock(ActionResponse.class);

		PortletMode mode = PortletMode.VIEW;
		Map<String, String> initParams = new HashMap();
		initParams.put("viewNamespace", "/view");

		Map<String, String[]> requestParams = new HashMap();
		requestParams.put(PortletActionConstants.ACTION_PARAM, new String[] { "/view/testAction" });
		requestParams.put(PortletActionConstants.MODE_PARAM, new String[] { mode.toString() });

		initParams.put(StrutsConstants.STRUTS_ALWAYS_SELECT_FULL_NAMESPACE, "true");
		initPortletConfig(initParams, new HashMap<String, Object>());
		initRequest(requestParams, new HashMap<String, Object>(), new HashMap(), new HashMap(), PortletMode.VIEW, WindowState.NORMAL,
				true, null);
		setupActionFactory("/view", "testAction", "success", EasyMock.createNiceMock(ValueStack.class));
		// mockSession.expects(once()).method("setAttribute").with(new
		// Constraint[]{eq(PortletActionConstants.LAST_MODE),
		// eq(PortletMode.VIEW)});
		dispatcher.setActionProxyFactory((ActionProxyFactory) mockActionFactory.proxy());
		dispatcher.init((PortletConfig) mockConfig.proxy());
		dispatcher.processAction((ActionRequest) mockRequest.proxy(), (ActionResponse) mockResponse.proxy());
	}

	/**
	 * Initialize the mock request (and as a result, the mock session)
	 * 
	 * @param requestParams
	 *            The request parameters
	 * @param requestAttributes
	 *            The request attributes
	 * @param sessionParams
	 *            The session attributes
	 * @param renderParams
	 *            The render parameters. Will only be set if
	 *            <code>isEvent is true
	 * @param mode
	 *            The portlet mode
	 * @param state
	 *            The portlet window state
	 * @param isEvent
	 *            <code>true when the request is an ActionRequest.
	 * @param locale
	 *            The locale. If <code>null, the request will return
	 *            <code>Locale.getDefault()
	 */
	private void initRequest(Map<String, String[]> requestParams, Map requestAttributes, Map sessionParams, Map renderParams,
			PortletMode mode, WindowState state, boolean isEvent, Locale locale) {
		mockRequest = isEvent ? mock(ActionRequest.class) : mock(RenderRequest.class);
		mockSession = mock(PortletSession.class);
		mockSession.stubs().method(ANYTHING);
		mockRequest.stubs().method(ANYTHING);
		setupStub(sessionParams, mockSession, "getAttribute");
		mockSession.stubs().method("getAttributeNames").will(
				returnValue(Collections.enumeration(sessionParams.keySet())));
		setupParamStub(requestParams, mockRequest, "getParameter");
		setupStub(requestAttributes, mockRequest, "getAttribute");
		mockRequest.stubs().method("getAttributeNames").will(
				returnValue(Collections.enumeration(requestAttributes.keySet())));
		mockRequest.stubs().method("getParameterMap").will(returnValue(requestParams));
		mockRequest.stubs().method("getParameterNames").will(
				returnValue(Collections.enumeration(requestParams.keySet())));
		mockRequest.stubs().method("getPortletSession").will(returnValue(mockSession.proxy()));
		if (locale != null) {
			mockRequest.stubs().method("getLocale").will(returnValue(locale));
		} else {
			mockRequest.stubs().method("getLocale").will(returnValue(Locale.getDefault()));
		}
		mockRequest.stubs().method("getPortletMode").will(returnValue(mode));
		mockRequest.stubs().method("getWindowState").will(returnValue(state));
	}

	private void setupParamStub(Map<String, String[]> requestParams, Mock mockRequest, String method) {
		Map<String, String> newMap = new HashMap();
        for ( String key : requestParams.keySet() ) {
            String[] val = requestParams.get(key);
            newMap.put(key, val[0]);
        }
		setupStub(newMap, mockRequest, method);

	}

	/**
	 * Set up stubs for the mock.
	 * 
	 * @param map
	 *            The map containing the <code>key and
	 *            <code>values. The key is the expected parameter to
	 *            <code>method, and value is the value that should be
	 *            returned from the stub.
	 * @param mock
	 *            The mock to initialize.
	 * @param method
	 *            The name of the method to stub.
	 */
	private void setupStub(Map map, Mock mock, String method) {
        for ( Object key : map.keySet() ) {
            Object val = map.get(key);
            mock.stubs().method(method).with(eq(key)).will(returnValue(val));
        }
	}

	public void testModeChangeUsingPortletWidgets() throws Exception {
		final Mock mockResponse = mock(RenderResponse.class);
		mockResponse.stubs().method(ANYTHING);
		PortletMode mode = PortletMode.EDIT;

		Map<String, String[]> requestParams = new HashMap();
		requestParams.put(PortletActionConstants.ACTION_PARAM, new String[] { "/view/testAction" });
		requestParams.put(EVENT_ACTION, new String[] { "false" });
		requestParams.put(PortletActionConstants.MODE_PARAM, new String[] { PortletMode.VIEW.toString() });

		Map<String, Object> sessionMap = new HashMap();

		Map<String, String> initParams = new HashMap();
		initParams.put("viewNamespace", "/view");
		initParams.put("editNamespace", "/edit");

		initPortletConfig(initParams, new HashMap<String, Object>());
		initRequest(requestParams, new HashMap<String, Object>(), sessionMap, new HashMap(), mode, WindowState.NORMAL, false, null);
		setupActionFactory("/edit", "default", "success", EasyMock.createNiceMock(ValueStack.class));

		mockInvocation.expects(once()).method("getStack").will(returnValue(null));
		// mockSession.expects(once()).method("setAttribute").with(new
		// Constraint[]{eq(PortletActionConstants.LAST_MODE),
		// eq(PortletMode.VIEW)});
		dispatcher.setActionProxyFactory((ActionProxyFactory) mockActionFactory.proxy());
		dispatcher.init((PortletConfig) mockConfig.proxy());
		dispatcher.render((RenderRequest) mockRequest.proxy(), (RenderResponse) mockResponse.proxy());
	}

}

Other Struts examples (source code examples)

Here is a short list of links related to this Struts Jsr168DispatcherTest.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.