I have a very simple RESTful controller that produces a json and I want to test if it works ok. I can easily test the method when the user id exists, no problem with that. I would like to validate that an IllegalArgumentException is thrown when the given id does not exist. Is there any way to do that?
In the application, when an assertion error occurs, the response is redirected to a generic error page that displays a generic message. If I use response(withStatus(HttpStatus.NOT_FOUND) I'm not validating the exception nor my message. Can somebody help me please?
This is the method I want to test:
@Transactional (readOnly = true)
@RequestMapping(method=RequestMethod.GET, value="/json/user/{id}", headers="Accept=application/json, text/html")
public @ResponseBody UserData getUserJson(@PathVariable Long id)
{
User user = this.userService.findUserById(id);
Assert.notNull(user , "User does not exist with the given id: " + id);
return new UserData (user);
}
This is a test with a valid id:
@Test
public void testRestUserJson() {
mockServer.expect(requestTo(JSON_URL + USER)).andExpect(method(HttpMethod.GET))
.andRespond(withSuccess(JSON_RESPONSE, MediaType.APPLICATION_JSON));
UserData userData = restClientTemplate.getForObject(JSON_URL + USER, UserData.class);
AssertResponseContent(userData , expectedData);
mockServer.verify();
EasyMock.verify(user);
}
Regards, Daniela
Why don't you catch the exceptions and create a log and write the exception to log.