/* * $Id$ * * 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.interceptor; import java.util.HashMap; import java.util.Map; import javax.servlet.ServletContext; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.struts2.StrutsInternalTestCase; import org.apache.struts2.StrutsStatics; import org.apache.struts2.interceptor.servlet.ServletPrincipalProxy; import org.apache.struts2.dispatcher.HttpParameters; import org.apache.struts2.util.ServletContextAware; import static org.easymock.EasyMock.*; import org.springframework.mock.web.MockHttpServletRequest; import org.springframework.mock.web.MockHttpServletResponse; import org.springframework.mock.web.MockServletContext; import com.opensymphony.xwork2.Action; import com.opensymphony.xwork2.ActionContext; import com.opensymphony.xwork2.mock.MockActionInvocation; /** * Unit test for {@link ServletConfigInterceptor}. * */ public class ServletConfigInterceptorTest extends StrutsInternalTestCase { private ServletConfigInterceptor interceptor; public void testServletRequestAware() throws Exception { ServletRequestAware mock = (ServletRequestAware) createMock(ServletRequestAware.class); MockHttpServletRequest req = new MockHttpServletRequest(); MockActionInvocation mai = createActionInvocation(mock); mai.getInvocationContext().put(StrutsStatics.HTTP_REQUEST, req); mock.setServletRequest((HttpServletRequest) req); expectLastCall(); replay(mock); interceptor.intercept(mai); verify(mock); } public void testServletResponseAware() throws Exception { ServletResponseAware mock = (ServletResponseAware) createMock(ServletResponseAware.class); MockHttpServletResponse res = new MockHttpServletResponse(); MockActionInvocation mai = createActionInvocation(mock); mai.getInvocationContext().put(StrutsStatics.HTTP_RESPONSE, res); mock.setServletResponse((HttpServletResponse) res); expectLastCall().times(1); replay(mock); interceptor.intercept(mai); verify(mock); } public void testParameterAware() throws Exception { ParameterAware mock = createMock(ParameterAware.class); MockActionInvocation mai = createActionInvocation(mock); HttpParameters param = HttpParameters.create().build(); mai.getInvocationContext().setParameters(param); param.applyParameters(mock); expectLastCall().times(1); replay(mock); interceptor.intercept(mai); verify(mock); } public void testHttpParametersAware() throws Exception { HttpParametersAware mock = createMock(HttpParametersAware.class); MockActionInvocation mai = createActionInvocation(mock); HttpParameters param = HttpParameters.create().build(); mai.getInvocationContext().setParameters(param); mock.setParameters(param); expectLastCall().times(1); replay(mock); interceptor.intercept(mai); verify(mock); } public void testSessionAware() throws Exception { SessionAware mock = (SessionAware) createMock(SessionAware.class); MockActionInvocation mai = createActionInvocation(mock); Map<String, Object> session = new HashMap<String, Object>(); mai.getInvocationContext().setSession(session); mock.setSession(session); expectLastCall().times(1); replay(mock); interceptor.intercept(mai); verify(mock); } public void testApplicationAware() throws Exception { ApplicationAware mock = (ApplicationAware) createMock(ApplicationAware.class); MockActionInvocation mai = createActionInvocation(mock); Map<String, Object> app = new HashMap<String, Object>(); mai.getInvocationContext().setApplication(app); mock.setApplication(app); expectLastCall().times(1); replay(mock); interceptor.intercept(mai); verify(mock); } public void testPrincipalAware() throws Exception { MockHttpServletRequest req = new MockHttpServletRequest(); req.setUserPrincipal(null); req.setRemoteUser("Santa"); PrincipalAware mock = (PrincipalAware) createMock(PrincipalAware.class); MockActionInvocation mai = createActionInvocation(mock); mai.getInvocationContext().put(StrutsStatics.HTTP_REQUEST, req); MockServletContext ctx = new MockServletContext(); mai.getInvocationContext().put(StrutsStatics.SERVLET_CONTEXT, ctx); mock.setPrincipalProxy(anyObject(ServletPrincipalProxy.class)); // less strick match is needed for this unit test to be conducted using mocks expectLastCall().times(1); replay(mock); interceptor.intercept(mai); verify(mock); } public void testPrincipalProxy() throws Exception { // uni test that does not use mock, but an Action so we also get code coverage for the PrincipalProxy class MockHttpServletRequest req = new MockHttpServletRequest(); req.setUserPrincipal(null); req.setRemoteUser("Santa"); MyPrincipalAction action = new MyPrincipalAction(); MockActionInvocation mai = createActionInvocation(action); mai.getInvocationContext().put(StrutsStatics.HTTP_REQUEST, req); assertNull(action.getProxy()); interceptor.intercept(mai); assertNotNull(action.getProxy()); PrincipalProxy proxy = action.getProxy(); assertNull(proxy.getUserPrincipal()); assertTrue(! proxy.isRequestSecure()); assertTrue(! proxy.isUserInRole("no.role")); assertEquals("Santa", proxy.getRemoteUser()); } public void testServletContextAware() throws Exception { ServletContextAware mock = (ServletContextAware) createMock(ServletContextAware.class); MockActionInvocation mai = createActionInvocation(mock); MockServletContext ctx = new MockServletContext(); mai.getInvocationContext().put(StrutsStatics.SERVLET_CONTEXT, ctx); mock.setServletContext((ServletContext) ctx); expectLastCall().times(1); replay(mock); interceptor.intercept(mai); verify(mock); } private MockActionInvocation createActionInvocation(Object mock) { MockActionInvocation mai = new MockActionInvocation(); mai.setResultCode("success"); mai.setInvocationContext(ActionContext.getContext()); mai.setAction(mock); return mai; } protected void setUp() throws Exception { super.setUp(); interceptor = new ServletConfigInterceptor(); interceptor.init(); } protected void tearDown() throws Exception { super.tearDown(); interceptor.destroy(); interceptor = null; } private class MyPrincipalAction implements Action, PrincipalAware { private PrincipalProxy proxy; public String execute() throws Exception { return SUCCESS; } public void setPrincipalProxy(PrincipalProxy proxy) { this.proxy = proxy; } public PrincipalProxy getProxy() { return proxy; } } }