Mockito:检查响应标题和状态

时间:2016-11-09 10:58:09

标签: java spring-mvc junit

我在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();
}

是否可以检查响应的标题和状态?????

1 个答案:

答案 0 :(得分:1)

您可以使用spring-test模块中的MockHttpServletResponseMockHttpServletRequest实例。 将它们传递给您的控制器,然后使用MockHttpServletResponse.getStatus()检查结果MockHttpServletResponse.containsHeader()  方法