我在Spring Web模型 - 视图 - 控制器(MVC)框架应用程序中使用Mockito(在MIT许可下发布的Java的开源测试框架)进行了这个junit测试 我在控制器中有这些方法:
@RequestMapping(value = { "/devices" } , method = { RequestMethod.GET, RequestMethod.POST} )
public void initGetForm(@ModelAttribute("searchForm") final SearchForm searchForm,
HttpServletRequest request,
HttpServletResponse response,
Locale locale) throws Exception {
String newUrl = request.getContextPath() + "/devices/" + locale;
if (locale !=null && isValid(locale)) {
newUrl = request.getContextPath() + "/devices/" + DEFAULT_LOCALE;
}
redirectPermanently (response, newUrl);
}
protected void redirectPermanently (HttpServletResponse response, String to) {
response.setStatus(HttpServletResponse.SC_MOVED_PERMANENTLY);
response.setHeader("Location", to);
response.setHeader("Connection", "close");
}
这是我的Test类:
@Test
public void testInitGetForm() throws Exception {
controller.initGetForm(emptySearchForm(), request, response, null);
}
@Before
public void setUpTest() {
request = new MockHttpServletRequest();
response = new MockHttpServletResponse();
}
是否可以检查响应的标题和状态?????
答案 0 :(得分:1)
您可以使用spring-test模块中的MockHttpServletResponse和MockHttpServletRequest实例。 将它们传递给您的控制器,然后使用MockHttpServletResponse.getStatus()检查结果MockHttpServletResponse.containsHeader() 方法