详解SpringBoot restful api的单元测试
现在我们来利用SpringBoot来构建一个RestFulAPI,具体如下:
1.添加Springboot测试注解
@RunWith(SpringRunner.class)
@SpringBootTest
publicclassUserControllerTest{
}
2.伪造mvc环境
//注入Spring工厂
@Autowired
privateWebApplicationContextwac;
//伪造mvc环境
privateMockMvcmockMvc;
@Before
publicvoidsetup(){
mockMvc=MockMvcBuilders.webAppContextSetup(wac).build();
}
3.引入静态方法
importstaticorg.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; importstaticorg.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; importstaticorg.springframework.test.web.servlet.request.MockMvcRequestBuilders.put; importstaticorg.springframework.test.web.servlet.request.MockMvcRequestBuilders.delete; importstaticorg.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; importstaticorg.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
3.编写测试方法
@Test
publicvoidwhenXXXXSuccess()throwsException{
//模拟发送请求
Stringresult=
mockMvc.perform(get("/user")//发往/user的get请求,可以换成post,put,delete方法执行相应请求
.param("username","xxx")//get请求时填写参数的位置
.contentType(MediaType.APPLICATION_JSON_UTF8)//utf编码
.content(content))//post和put请求填写参数的位置
.andExpect(status().isOk())
.andExpect(jsonPath("$.length()").value(3))//期望的json返回结果
.andReturn().getResponse().getContentAsString();//对返回字符串的json内容进行判断
log.info(result);
}
这里是具体的jsonpath语法
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。
热门推荐
2 万寿祝福语简短
10 日语送考祝福语简短
11 聚餐会祝福语简短
12 送灯祝福语简短独特
13 浪漫的生日祝福语简短
14 俄语祝福语贺卡文案简短
15 虎年新年专属祝福语简短
16 孙女结婚姥姥祝福语简短
17 生日祝福语简短独特的
18 结婚喜庆的祝福语简短