服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - 详解SpringBoot restful api的单元测试

详解SpringBoot restful api的单元测试

2020-12-31 15:38Meet相识_bfa5 Java教程

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

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

1.添加Springboot测试注解

?
1
2
3
4
@RunWith(SpringRunner.class)
public class UserControllerTest {
}

2.伪造mvc环境

?
1
2
3
4
5
6
7
8
9
// 注入Spring 工厂
 @Autowired
 private WebApplicationContext wac;
//伪造mvc环境
 private MockMvc mockMvc;
 @Before
 public void setup(){
   mockMvc = MockMvcBuilders.webAppContextSetup(wac).build();
 }

3.引入静态方法

?
1
2
3
4
5
6
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.编写测试方法

?
1
2
3
4
5
6
7
8
9
10
11
12
13
@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语法

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://www.jianshu.com/p/f244e2f87688

延伸 · 阅读

精彩推荐