Skip to content
Advertisement

Why does MockMvc always return empty content()?

I’m trying to test my rest api with mockMvc.

JavaScript

The test failed because of:

JavaScript

From the output of print(), I can know the API actually returned the expected string “iPhone”.

JavaScript

And I guess the empty “Actual” above is caused by empty “Body” below

JavaScript

My questions are:

  1. Why MockHttpServletResponse's Body is empty;
  2. How can I correctly test the response of API.

Advertisement

Answer

If your action methods (methods with @RequestMapping annotation) return instances of ModelAndView or you work with Model, you have to test it using MockMvcResultMatchers#model function:

JavaScript

MockMvcResultMatchers#content is appropriate for REST action methods (methods with @RequestBody annotation).


To have a better understanding about testing Spring MVC and Spring REST controllers check these links:

Advertisement