如何用SpringBoot 进行测试
普通测试
假设要测试一个工具类 stringutil(com.rxliuli.example.springboottest.util.stringutil)
/** * 用于测试的字符串工具类 * * @author rxliuli */ public class stringutil { /** * 判断是否为空 * * @param string 要进行判断的字符串 * @return 是否为 null 或者空字符串 */ public static boolean isempty(string string) { return string == null || string.isempty(); } /** * 判断是否为空 * * @param string 要进行判断的字符串 * @return 是否为 null 或者空字符串 */ public static boolean isnotempty(string string) { return !isempty(string); } /** * 判断是否有字符串为空 * * @param strings 要进行判断的一个或多个字符串 * @return 是否有 null 或者空字符串 */ public static boolean isanyempty(string... strings) { return arrays.stream(strings) .anymatch(stringutil::isempty); } /** * 判断字符串是否全部为空 * * @param strings 要进行判断的一个或多个字符串 * @return 是否全部为 null 或者空字符串 */ public static boolean isallempty(string... strings) { return arrays.stream(strings) .allmatch(stringutil::isempty); } }
需要添加依赖 spring-boot-starter-test
以及指定 assertj-core
的最新版本
<dependencies> <dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-test</artifactid> <scope>test</scope> </dependency> </dependencies> <dependencymanagement> <dependencies> <dependency> <groupid>org.assertj</groupid> <artifactid>assertj-core</artifactid> <version>3.9.1</version> <scope>test</scope> </dependency> </dependencies> </dependencymanagement>
这里指定 assertj-core
的版本是为了使用较新的一部分断言功能(例如属性 lambda
断言)
/** * @author rxliuli */ public class stringutiltest { private string strnull = null; private string strempty = ""; private string strsome = "str"; @test public void isempty() { //测试 null assertthat(stringutil.isempty(strnull)) .istrue(); //测试 empty assertthat(stringutil.isempty(strempty)) .istrue(); //测试 some assertthat(stringutil.isempty(strsome)) .isfalse(); } @test public void isnotempty() { //测试 null assertthat(stringutil.isnotempty(strnull)) .isfalse(); //测试 empty assertthat(stringutil.isnotempty(strempty)) .isfalse(); //测试 some assertthat(stringutil.isnotempty(strsome)) .istrue(); } @test public void isanyempty() { assertthat(stringutil.isanyempty(strnull, strempty, strsome)) .istrue(); assertthat(stringutil.isanyempty()) .isfalse(); } @test public void isallempty() { assertthat(stringutil.isallempty(strnull, strempty, strsome)) .isfalse(); assertthat(stringutil.isanyempty(strnull, strempty)) .istrue(); } }
这里和非 springboot 测试时没什么太大的区别,唯一的一点就是引入 jar 不同,这里虽然我们只引入了 spring-boot-starter-test
,但它本身已经帮我们引入了许多的测试相关类库了。
dao/service 测试
从这里开始就和标准的 spring 不太一样了
首先,我们需要 dao 层,这里使用 h2db 和 springjdbc 做数据访问层(比较简单)。
依赖
<dependency> <groupid>com.h2database</groupid> <artifactid>h2</artifactid> <scope>runtime</scope> </dependency> <dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-jdbc</artifactid> </dependency>
添加两个初始化脚本
数据库结构 db_schema.sql
(db/db_schema.sql
)
drop table if exists user; create table user ( id int auto_increment not null comment '编号', name varchar(20) not null comment '名字', sex boolean null comment '性别', age int null comment '年龄' );
数据库数据 db_data.sql
(db/db_data.sql
)
insert into user (id, name, sex, age) values (1, '琉璃', false, 17), (2, '月姬', false, 1000);
为 springboot 配置一下数据源及初始化脚本
spring: datasource: driver-class-name: org.h2.driver platform: h2 schema: classpath:db/db_schema.sql data: classpath:db/db_data.sql
然后是实体类与 dao
用户实体类 user
(com.rxliuli.example.springboottest.entity.user
)
/** * @author rxliuli */ public class user implements serializable { private integer id; private string name; private boolean sex; private integer age; public user() { } public user(string name, boolean sex, integer age) { this.name = name; this.sex = sex; this.age = age; } public user(integer id, string name, boolean sex, integer age) { this.id = id; this.name = name; this.sex = sex; this.age = age; } //getter() and setter() }
用户 dao userdao
(com.rxliuli.example.springboottest.dao.userdao
)
/** * @author rxliuli */ @repository public class userdao { private final rowmapper<user> userrowmapper = (rs, rownum) -> new user( rs.getint("id"), rs.getstring("name"), rs.getboolean("sex"), rs.getint("age") ); @autowired private jdbctemplate jdbctemplate; /** * 根据 id 获取一个对象 * * @param id id * @return 根据 id 查询到的对象,如果没有查到则为 null */ public user get(integer id) { return jdbctemplate.queryforobject("select * from user where id = ?", userrowmapper, id); } /** * 查询全部用户 * * @return 全部用户列表 */ public list<user> listforall() { return jdbctemplate.query("select * from user", userrowmapper); } /** * 根据 id 删除用户 * * @param id 用户 id * @return 受影响行数 */ public int deletebyid(integer id) { return jdbctemplate.update("delete from user where id = ?", id); } }
接下来才是正事,测试 dao 层需要加载 spring 容器,自动回滚以避免污染数据库。
/** * {@code @springboottest} 和 {@code @runwith(springrunner.class)} 是必须的,这里貌似一直有人误会需要使用 {@code @runwith(springjunit4classrunner.class)},但其实并不需要了 * 下面的 {@code @transactional} 和 {@code @rollback}则是开启事务控制以及自动回滚 * * @author rxliuli */ @springboottest @runwith(springrunner.class) @transactional @rollback public class userdaotest { @autowired private userdao userdao; @test public void get() { int id = 1; user result = userdao.get(id); //断言 id 和 get id 相同 assertthat(result) .extracting(user::getid) .contains(id); } @test public void listforall() { list<user> userlist = userdao.listforall(); //断言不为空 assertthat(userlist) .isnotempty(); } @test public void deletebyid() { int result = userdao.deletebyid(1); assertthat(result) .isgreaterthan(0); } }
web 测试
与传统的 springtest 一样,springboot 也分为两种。
- 独立安装测试:
手动加载单个 controller,所以测试其他 controller 中的接口会发生异常。但测试速度上较快,所以应当优先选择。
- 集成 web 环境测试:
将启动并且加载所有的 controller, 所以效率上之于 basewebunittest 来说非常低下, 仅适用于集成测试多个 controller 时使用。
独立安装测试
主要是设置需要使用的 controller 实例,然后用获得 mockmvc 对象进行测试即可。
/** * @author rxliuli */ @springboottest @runwith(springrunner.class) @transactional @rollback public class usercontrollerunittest { @autowired private usercontroller usercontroller; /** * 用于测试 api 的模拟请求对象 */ private mockmvc mockmvc; @before public void before() { //模拟一个 mvc 测试环境,获取一个 mockmvc 实例 mockmvc = mockmvcbuilders.standalonesetup(usercontroller) .build(); } @test public void testget() throws exception { //测试能够正常获取 integer id = 1; mockmvc.perform( //发起 get 请求 get("/user/" + id) ) //断言请求的状态是成功的(200) .andexpect(status().isok()) //断言返回对象的 id 和请求的 id 相同 .andexpect(jsonpath("$.id").value(id)); } @test public void listforall() throws exception { //测试正常获取 mockmvc.perform( //发起 post 请求 post("/user/listforall") ) //断言请求状态 .andexpect(status().isok()) //断言返回结果是数组 .andexpect(jsonpath("$").isarray()) //断言返回数组不是空的 .andexpect(jsonpath("$").isnotempty()); } }
集成 web 环境测试
/** * @author rxliuli */ @springboottest @runwith(springrunner.class) @transactional @rollback public class usercontrollerintegratedtest { @autowired private webapplicationcontext context; /** * 用于测试 api 的模拟请求对象 */ private mockmvc mockmvc; @before public void before() { //这里把整个 webapplicationcontext 上下文都丢进去了,所以可以测试所有的 controller mockmvc = mockmvcbuilders.webappcontextsetup(context) .build(); } @test public void testget() throws exception { //测试能够正常获取 integer id = 1; mockmvc.perform( //发起 get 请求 get("/user/" + id) ) //断言请求的状态是成功的(200) .andexpect(status().isok()) //断言返回对象的 id 和请求的 id 相同 .andexpect(jsonpath("$.id").value(id)); } @test public void listforall() throws exception { //测试正常获取 mockmvc.perform( //发起 post 请求 post("/user/listforall") ) //断言请求状态 .andexpect(status().isok()) //断言返回结果是数组 .andexpect(jsonpath("$").isarray()) //断言返回数组不是空的 .andexpect(jsonpath("$").isnotempty()); } }
总结
其实上面的测试类的注解感觉都差不多,我们可以将一些普遍的注解封装到基类,然后测试类只要继承基类就能得到所需要的环境,吾辈自己的测试基类在 src/test/common
下面,具体使用方法便留到下次再说吧
以上代码已全部放到 github 上面,可以直接 clone 下来进行测试
到此这篇关于如何用springboot 进行测试的文章就介绍到这了,更多相关springboot 测试内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读
-
springboot+idea+maven 多模块项目搭建的详细过程(连接数据库进行测试)
-
Mockito 结合 Springboot 进行应用测试的方法详解
-
如何用SpringBoot 进行测试
-
Springboot---mockMVC进行Controller单元测试
-
Springboot+mockito进行单元测试心得
-
controller 和dao_[易学springboot]对controller层进行单元测试
-
springboot+idea+maven 多模块项目搭建的详细过程(连接数据库进行测试)
-
springboot如何进行简单的测试
-
SpringBoot对Controller进行单元测试的实现代码 附乱码解决方案
-
Mockito 结合 Springboot 进行应用测试的方法详解