我在mockMVC中有以下测试方法
我需要改进测试才能有意义。 目前测试不是测试,如何改进测试?只需添加数据合规性验证?如何添加?数据验证验证的例子是什么? 如何测试 UUID 是否同意?
如何改进这些测试?
你可以做这样的事情:
@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存储库中检查整个测试类
希望这对您有所帮助