• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

详解SpringBoot restful api的单元测试

springboot 搞代码 4年前 (2022-01-05) 21次浏览 已收录 0个评论

本篇文章主要介绍了详解SpringBoot restful api的单元测试,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

现在我们来利用Spring Boot来构建一个RestFul API,具体如下:

1.添加Springboot测试注解

 @RunWith(SpringRunner.class) @SpringBootTest public class UserControllerTest { }

2.伪造mvc环境

 // 注入Spring 工厂 @Autowired private WebApplicationContext wac; //伪造mvc环境 private MockMvc mockMvc; @Before public void setup(){ mockMvc = MockMvcBuilders.webAppContextSetup(wac).build(); } 

3.引入静态方法

 import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.put; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.delete; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;

3.编写测试方法

 @Test public void whenXXXXSuccess() throws Exception { //模拟发送请求 String result =<strong style="color:transparent">来源gaodai#ma#com搞@@代~&码网</strong> 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语法

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持gaodaima搞代码网

以上就是详解SpringBoot restful api的单元测试的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:详解SpringBoot restful api的单元测试

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址