java.lang.AssertionError:未设置内容类型 - Spring Controller Junit Tests

时间:2014-06-11 14:55:35

标签: java spring spring-mvc junit mockmvc

我正在尝试对我的控制器进行一些单元测试。无论我做什么,所有控制器测试都会返回

java.lang.AssertionError: Content type not set

我正在测试方法返回json和xml数据。

以下是控制器的示例:

@Controller
@RequestMapping("/mypath")

public class MyController {

   @Autowired
   MyService myService;

   @RequestMapping(value="/schema", method = RequestMethod.GET)
   public ResponseEntity<MyObject> getSchema(HttpServletRequest request) {

       return new ResponseEntity<MyObject>(new MyObject(), HttpStatus.OK);

   }

}

单元测试设置如下:

public class ControllerTest() { 

private static final String path = "/mypath/schema";
private static final String jsonPath = "$.myObject.val";
private static final String defaultVal = "HELLO";

MockMvc mockMvc;

@InjectMocks
MyController controller;

@Mock
MyService myService;

@Before
public void setup() {
    MockitoAnnotations.initMocks(this);

    mockMvc = standaloneSetup(controller)
                .setMessageConverters(new MappingJackson2HttpMessageConverter(),
                        new Jaxb2RootElementHttpMessageConverter()).build();


    when(myService.getInfo(any(String.class))).thenReturn(information);
    when(myService.getInfo(any(String.class), any(Date.class))).thenReturn(informationOld);

}

@Test
public void pathReturnsJsonData() throws Exception {

    mockMvc.perform(get(path).contentType(MediaType.APPLICATION_JSON))
        .andDo(print())
        .andExpect(content().contentTypeCompatibleWith(MediaType.APPLICATION_JSON))
        .andExpect(jsonPath(jsonPath).value(defaultVal));
}

}

我正在使用: Spring 4.0.2 Junit 4.11 Gradle 1.12

我已经看到了SO问题Similiar Question,但无论我的单元测试中的contentType和期望是什么组合,我都会得到相同的结果。

非常感谢任何帮助。

由于

2 个答案:

答案 0 :(得分:9)

您的解决方案取决于您希望在项目中使用哪种注释。

  • 您可以将@ResponseBody添加到Controller中的getSchema方法

  • 或者,在produces中添加@RequestMapping属性也可以解决问题。

    @RequestMapping(value="/schema", 
          method = RequestMethod.GET, 
          produces = {MediaType.APPLICATION_JSON_VALUE} )
    
  • 最终选择,将标题添加到ResponseEntity(这是使用此类的主要目标之一)

    //...
    HttpHeaders headers = new HttpHeaders();
    headers.add("Content-Type", "application/json; charset=utf-8");
    return new ResponseEntity<MyObject>(new MyObject(), headers, HttpStatus.OK);
    

编辑:我刚刚看到你想要Json和Xml数据,所以更好的选择是produces属性:

@RequestMapping(value="/schema", 
      method = RequestMethod.GET, 
      produces = {MediaType.APPLICATION_JSON_VALUE, MediaType.APPLICATION_XML_VALUE} )

答案 1 :(得分:0)

您需要添加

@RequestMapping(produces = MediaType.APPLICATION_JSON_VALUE, 
method = RequestMethod.GET
value = "/schema")

您的xml配置中的<mvc:annotation-driven />@EnableWebMvc