时间:2021-05-19
现在我们来利用Spring Boot来构建一个RestFul API,具体如下:
1.添加Springboot测试注解
@RunWith(SpringRunner.class)@SpringBootTestpublic 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 = 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语法
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文介绍了详解SpringBoot之添加单元测试,分享给大家,希望此文章对各位有所帮助在SpringBoot里添加单元测试是非常简单的一件事,我们只需要添加Sp
开篇本例是在springboot整合H2内存数据库,实现单元测试与数据库无关性和使用RestTemplate消费springboot的Restful服务两个示例
开篇:我们将前面的springboot整合H2内存数据库,实现单元测试与数据库无关性提供的Restful服务注册到springcloud的EurekaServe
为什么要进行单元测试?单元测试保证局部代码的质量单元测试改良项目代码的整体结构单元测试降低测试、维护升级的成本单元测试使开发过程适应频繁变化的需求单元测试有助于
1、前言“不会写单元测试的程序员不是合格的程序员,不写单元测试的程序员不是优秀的工程师。”那么问题来了,什么是单元测试,如何做单元测试。2、单元测试2.1单元测