Spirng Boot 使用Junit4单元测试进行RESTful接口测试

上次开会前端说到:我们后端的接口发生了变化没有通知到他们,导致他们写好的功能不能使用。关于这个问题我想可以通过单元测试来解决。在这里我先抛个砖头,大家有什么好的想法记得不吝于赐教。下面用一个简单的Dome来说明。

构建项目

pom里面一些关键的依赖包



    org.flywaydb
    flyway-core



    org.springframework.boot
    spring-boot-starter-test
    test



    com.h2database
    h2
    test

  • spirng boot提供了测试框架我们只要引入spring-boot-starter-test 就可以了。
  • spirng boot还集成了flyway flyway简单入门,我们可以用这个工具来帮我们初始化测试用的数据表。 当然不用flywayhibernate也有反向生成数据表的功能
  • H2是一个免安装内嵌在运行程序里的一个数据库,这里我用它来作为我们的单元测试使用的数据库。这个数据库运行在内存中生命周期与单元测试生命周期一样。也就是说每次运行都是新的库。单元测试的数据是不会写到mysql库里的。

建立测试目标

创建一个普通的RESTful类UserController作为测试目标

/**
 * @author zengxc
 * @since 2018/3/23
 */
@RestController
public class UserController {
    @Autowired
    private UserJpa userJpa;

    /**
     * 查找所有用户
     * @return 用户列表
     */
    @GetMapping("/user")
    public List list(){
        return userJpa.findAll();
    }

    /**
     * 根据用户ID查找用户信息
     * @param id 用户ID
     * @return 用户信息
     */
    @GetMapping("/user/{id}")
    public User get(@PathVariable("id") long id){
        return userJpa.findOne(id);
    }

    /**
     * 创建一个用户
     * @param user 用户信息
     * @return 用户信息
     */
    @PostMapping("/user")
    public User create(@RequestBody User user){
        return userJpa.save(user);
    }

    /**
     * 更新用户
     * @param user 用户信息
     * @return
     */
    @PutMapping("/user")
    public User update(@RequestBody User user){
        return userJpa.save(user);
    }
}

这个类提供了对用户进行增、查、改功能的RESTful接口

建立测试类

IDEA提供了快速创建测试类的方法:把光标放到在类名处,然后按alt+enter>create test就可以创建一个测试类UserControllerTest

/**
 * @author zengxc
 * @since 2018/3/23
 */
@RunWith(SpringRunner.class)
@SpringBootTest
@AutoConfigureMockMvc
public class UserControllerTest {

    @Autowired
    private MockMvc mvc;

    @Test
    public void test() throws Exception {
        RequestBuilder request;

        // 1、get查一下user列表应该为空
        request = get("/user");
        mvc.perform(request)
                .andExpect(status().isOk())
                .andExpect(content().string(equalTo("[]")));
        // 2、post提交一个user
        request = post("/user/")
                .contentType(MediaType.APPLICATION_JSON)
                .accept(MediaType.APPLICATION_JSON)
                .content("{\"name\":\"zxc\",\"age\":18}");
        mvc.perform(request)
                .andDo(print())
                .andExpect(status().isOk())
                .andExpect(jsonPath("$.name",is("zxc")));
        // 3、get查一下user列表,应该不为空
        request = get("/user");
        mvc.perform(request)
                .andExpect(status().isOk())
                .andExpect(content().string(not("")))
                .andExpect(content().string(not("[]")));
        // 4、get查一下user id 等于1的用户,应该不为空,age等于18
        request = get("/user/{id}",1);
        mvc.perform(request)
                .andExpect(status().isOk())
                .andExpect(content().string(not("")))
                .andExpect(jsonPath("$.age").value(18));

        // 4、put更新用户zxc
        request = put("/user")
                .contentType(MediaType.APPLICATION_JSON)
                .accept(MediaType.APPLICATION_JSON)
                .content("{\"id\":1,\"name\":\"zxc\",\"age\":20}");
        mvc.perform(request)
                .andExpect(status().isOk())
                .andDo(print())
                .andExpect(jsonPath("$.age").value(20))
                .andExpect(jsonPath("$.name").value("zxc"));
    }
}

上面例子涵盖了GETPOSTPUT 方法。在POST方法后面记得要设置content-typeaccept要不然有可能会失败。另外参数可以通过param来设置。返回的内容可以通过andExpect()来进行断言,判断这个接口返回的状态和内容是否与预期一样。如status().isOk()表示返回状态为200;content()表示返回的内容;jsonPath可以解释json对象,判断json里的内容是否和预期的一致。更多jsonPath用法可以看一下这里。

正常情况上面这个测试用例运行是可以通过的,IDEA会显示一条绿色的进度条并输出1 test passed

发现异常

过一段时间后,我们可能会对UserController进行修改,比如把更新用户方法改成PUT /user/{id}

/**
* 更新用户
* @param user 用户信息
* @return
*/
@PutMapping("/user/{id}")
public User update(@PathVariable("id") long id, @RequestBody User user){
    user.setId(id);
    return userJpa.save(user);
}

这时候我们再运行这个测试用例时候IDEA会显示一条红色的进度条并输出1 test failed。看到这个提示我们便知道接口发生了变化与上次不一样了,这时候我们记得通知前端,告知他们我们接口发生了变更让他们记得修改过来。开会提到的问题得到解决。

在实际开发中我们并不需要每个测试类都去点一下让他运行。而是通过maven的test功能。maven install/package/test时候会执行所有@Test的代码,所以我们只要把测试类写好,在我们提交代码之前使用maven test 就可以得知我们有多少个接口发生了变化需要通知前端。

完整的代码可以到GitLab查看

  • GitLab

你可能感兴趣的:(Spirng Boot 使用Junit4单元测试进行RESTful接口测试)