SpringBoot restful api 详解SpringBoot restful api的单元测试

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

SpringBoot restful api 详解SpringBoot restful api的单元测试

Meet相识_bfa5   2021-03-29 我要评论
想了解详解SpringBoot restful api的单元测试的相关内容吗,Meet相识_bfa5在本文为您仔细讲解SpringBoot restful api 的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:restful,api,单元测试,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 =
    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语法

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们