最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
详解SpringBoot restful api的单元测试
时间:2022-06-25 03:28:55 编辑:袖梨 来源:一聚教程网
现在我们来利用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 =
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);
}
相关文章
- 明日方舟终末地洁尔佩塔队伍如何搭配 12-10
- 九牧之野大乔阵容有什么搭配方案 12-10
- 奇幻梦旅人宠物怎么选择 12-10
- 三国大冒险如何洗髓 12-10
- 巨神军师新手神魔将哪些优先购买 12-10
- 鸣潮卜灵角色如何 12-10