我只是升级到Struts 2.3.1.2,并且在JUnit测试中遇到了一些问题.
我的旧测试代码是这样的….
public class HomeActionTest {
@Test
public void testUserNameErrorMessage() throws Exception {
HomeAction action = new HomeAction();
setupMocks(action);
action.execute();
}
}
action类的execute方法有代码
String text = getText(GLOBAL_SELECT);
这会在LocalizedTextUtil中导致NullPointerExeception,因为它调用了…
ActionContext.getContext()
现在我可以尝试这样做……
ActionContext.setContext(new ActionContext(new HashMap()));
但是我会得到一个NullPointerException,因为来自上下文的Valuestack为null.
我可以继续尝试解决这些问题,但这似乎是徒劳的任务.
一定会有更好的办法?!?
好….
我按照新的Struts 2.3.x.x testing doc
我的struts.xml是用spring连接的.
<action name="secure/home" class="homeAction" method="execute">
<result>home.jsp</result>
<result name="input">home.jsp</result>
<result name="error">error.jsp</result>
</action>
我的测试课
public class HomeActionTest extends StrutsSpringTestCase {
@Test
public void testUserNameErrorMessage() throws Exception {
ActionProxy proxy = getActionProxy("/secure/home");
// setup the session
Map<String, Object> session = new HashMap<String, Object>();
ActionContext actionContext = proxy.getInvocation().getInvocationContext();
actionContext.setSession(session);
HomeAction homeAction = (HomeAction) proxy.getAction();
proxy.execute();
}
}
但这现在意味着我得到了一个完全填充的Spring注入的Action类!
大多数人会说“YEA !!!”这一点.
我的问题是,这不是一个UNIT测试类,它现在一直调用到数据库层,因为它是连接到运行时的.
所以这是我的问题,我知道我已经花了一段时间来实现它,是否有可能获得一个Action类,它可以访问它需要的资源(对于方法调用,如getText()),但不是所有的Spring有线吗?
目前我很想去反射路线去除所有与我的动作匹配的setServicexxxx的方法,至少然后我会在运行测试时得到一个NullPointerException,我可以模拟出那个服务,但那是错的.我希望我的测试快速,而不是花2秒钟启动Spring上下文.
Struts2.3是如何最终得到一个基础测试类,它不遵循单元测试的口号?
这在Struts 2.0.9(xwork-2.0.3.jar)中都很好.
我错过了什么?
解决方法:
你应该尽可能快地保持你的单元测试(否则,没有TDD).所以你应该做最小的struts设置:(我正在使用mockito,我在静态块中有这个代码,这个gist中的完整代码)
ActionContext actionContext = mock(ActionContext.class);
ServletContext servletContext = mock(ServletContext.class);
when(actionContext.getLocale()).thenReturn(Locale.FRENCH);
ValueStack valueStack = mock(ValueStack.class);
Map<String, Object> context = new HashMap<String,Object>();
Container container = mock(Container.class);
XWorkConverter conv = mock(XWorkConverter.class);
when(container.getInstance(XWorkConverter.class)).thenReturn(conv);
when(conv.convertValue(any(Map.class), any(Object.class), any(Class.class))).thenAnswer(new Answer<Object>() {
public Object answer(InvocationOnMock invocation) throws Throwable {
log.info(invocation.getArguments()[1].toString());
return "VALUE";
}
});
context.put(ActionContext.CONTAINER, container);
when(valueStack.getContext()).thenReturn(context);
when(actionContext.getValueStack()).thenReturn(valueStack);
ServletActionContext.setContext(actionContext);
ServletActionContext.setServletContext(servletContext);