@ExceptionHandler未被调用测试

时间:2016-04-11 16:39:11

标签: java rest exception-handling spring-test spring-web

我一直在试图修复测试,并且在SO或其他在线资源上没有提供解决方案。我有@ControllerAdvice方法来处理MyException异常,即:

@ControllerAdvice
public class MyControllerAdvice {
    @ExceptionHandler(MyException.class)
    @ResponseBody
    public HttpEntity<ErrorDetail> handleMyException(MyException exception) {
        return new ResponseEntity<>(exception.getErrorDetail(), exception.getHttpStatus();
    }
}

我有一个控制器:

@Controller
@RequestMapping(value = "/image")
public class ImageController {
    @Autowired
    private MyImageService imageService;

    @RequestMapping(value = "/{IMG_ID}", method = RequestMethod.GET, 
         produces = MediaType.IMAGE_PNG_VALUE)
    public HttpEntity<?> getImage(String imageId) {
        byte[] imageBytes = imageService.findOne(imageId); // Exception thrown here
        ....
        return new ResponseEntity<>(imageBytes, HttpStatus.OK);
    }
    ...
}

通过以下方式测试:

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(classes = MyApplication.class)
@WebAppConfiguration
@IntegrationTest("server.port:0")
public class ThumbnailControllerTest {
    @Autowired
    private ImageController testObject;
    private ImageService mockImageService = mock(ImageService.class);

    @Autowired
    protected WebApplicationContext webApplicationContext;
    private MockMvc mockMvc;

    @Before
    public void setup() {
        testObject.setImageService(mockImageService);
        mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build();
    }

    @Test
    public void testImageWhichDoesntExistReturns404() {
           doThrow(new MyException("Doesn't exist", HttpStatus.NOT_FOUND))
                 .when(mockImageService).findOne(anyString());

           mockMvc.perform(get("/image/doesnt_exist"))
               .andExpect(status().isNotFound());
    }
}

我有其他测试的类似设置,但这些似乎通过了。但是对于这个我得到:Failed to invoke @ExceptionHandler method: public org.springframework.http.HttpEntity<mypackage.ErrorDetail>但我知道它被调用,因为当我单步调用它时,日志显示它已被检测到(Detected @ExceptionHandler methods in MyControllerAdvice)。

我的想法是,这是因为HttpMessageConverters未正确解析并尝试使用ModelAndView方法而不是所需的JSON格式来解析输出。我无法使用standaloneSetup为MockMvc(使用ControllerAdvice和HttpMessageConverters设置)配置或使用所需类型的HttpMessageConverters bean强制它。

我正在使用spring依赖项:

org.springframework.boot:spring-boot-starter-web:jar:1.3.1.RELEASE
org.springframework.boot:spring-boot-starter:jar:1.3.1.RELEASE
org.springframework.boot:spring-boot-starter-test:jar:1.3.1.RELEASE
org.springframework.boot:spring-boot-starter-data-rest:jar:1.3.1.RELEASE

我做错了什么?

1 个答案:

答案 0 :(得分:1)

我已经能够将其追踪到produces = MediaType.IMAGE_PNG_VALUE。如果你删除它,它工作正常(假设你的ErrorDetail是JSON可序列化的)。问题是,AbstractMessageConverterMethodProcessor坚持要求的类型。它只是跳过JSON转换器,因为它无法生成image / png。指定produces = {MediaType.IMAGE_PNG_VALUE, MediaType.APPLICATION_JSON_VALUE}也不会有任何帮助:它只选择第一个类型并坚持下去。

我还没有弄清楚如何让它与produces一起使用。欢迎任何改进或更正。