Вы можете сделать что-то вроде этого:
@Test
public void createUser() throws Exception {
User user = userRepository.save(new User("testname", "testemail", 10));
String userJson = toJson(user);
this.mockMvc.perform(post("/user/add/")
.contentType(contentType)
.content(userJson))
.andExpect(status().isCreated());
}
или
@Test
public void getUserById() throws Exception {
User user = userRepository.save(new User("testname", "testemail", 10));
mockMvc.perform(get("/user/" + user.getId()))
.andExpect(status().isOk())
.andExpect(content().contentType(contentType))
.andExpect(jsonPath("$.id", is(user.getId())))
.andExpect(jsonPath("$.username", is(user.getUsername())))
.andExpect(jsonPath("$.age", is(user.getAge())))
.andExpect(jsonPath("$.emailAddress", is(user.getEmailAddress())));
}
Вы можете проверить весь тестовый класс в моем репозитории github
Надеюсь, это поможет вам