您好,登錄后才能下訂單哦!
使用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.h3database</groupId> <artifactId>h3</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.h3.Driver platform: h3 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 中的接口會發生異常。但測試速度上較快,所以應當優先選擇。
將啟動并且加載所有的 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()); } }
關于使用SpringBoot如何實現一個測試功能問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。