文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

有啥不同?来看看Spring Boot基于JUnit 5实现单元测试

2024-12-11 18:56

关注

 目录

简介

Spring Boot 2.2.0 版本开始引入 JUnit 5 作为单元测试默认库,在 Spring Boot 2.2.0 版本之前,spring-boot-starter-test 包含了 JUnit 4 的依赖,Spring Boot 2.2.0 版本之后替换成了 Junit Jupiter。

JUnit 4 和 JUnit 5 的差异

1. 忽略测试用例执行

JUnit 4: 

  1. @Test  
  2. @Ignore  
  3. public void testMethod() {  
  4.    // ...  

JUnit 5: 

  1. @Test  
  2. @Disabled("explanation")  
  3. public void testMethod() {  
  4.    // ...  

2. RunWith 配置

JUnit 4: 

  1. @RunWith(SpringRunner.class)  
  2. @SpringBootTest  
  3. public class ApplicationTests {  
  4.     @Test  
  5.     public void contextLoads() {  
  6.     }  

JUnit 5: 

  1. @ExtendWith(SpringExtension.class)  
  2. @SpringBootTest 
  3. public class ApplicationTests {  
  4.     @Test  
  5.     public void contextLoads() {  
  6.     }  

3. @Before、@BeforeClass、@After、@AfterClass 被替换

开发环境

示例

1.创建 Spring Boot 工程。

2.添加 spring-boot-starter-web 依赖,最终 pom.xml 如下。 

  1. xml version="1.0" encoding="UTF-8"?>  
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  3.          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">  
  4.     <modelVersion>4.0.0modelVersion>  
  5.     <parent>  
  6.         <groupId>org.springframework.bootgroupId>  
  7.         <artifactId>spring-boot-starter-parentartifactId>  
  8.         <version>2.2.6.RELEASEversion>  
  9.         <relativePath/>  
  10.     parent>  
  11.     <groupId>tutorial.spring.bootgroupId>  
  12.     <artifactId>spring-boot-junit5artifactId>  
  13.     <version>0.0.1-SNAPSHOTversion>  
  14.     <name>spring-boot-junit5name>  
  15.     <description>Demo project for Spring Boot Unit Test with JUnit 5description>  
  16.     <properties>  
  17.         <java.version>1.8java.version>  
  18.     properties>  
  19.     <dependencies>  
  20.         <dependency>  
  21.             <groupId>org.springframework.bootgroupId>  
  22.             <artifactId>spring-boot-starter-webartifactId>  
  23.         dependency>  
  24.         <dependency>  
  25.             <groupId>org.springframework.bootgroupId>  
  26.             <artifactId>spring-boot-starter-testartifactId>  
  27.             <scope>testscope>  
  28.             <exclusions> 
  29.                  <exclusion>  
  30.                     <groupId>org.junit.vintagegroupId>  
  31.                     <artifactId>junit-vintage-engineartifactId>  
  32.                 exclusion>  
  33.             exclusions>  
  34.         dependency>  
  35.     dependencies>  
  36.     <build>  
  37.         <plugins>  
  38.             <plugin>  
  39.                 <groupId>org.springframework.bootgroupId>  
  40.                 <artifactId>spring-boot-maven-pluginartifactId>  
  41.             plugin>  
  42.         plugins>  
  43.     build> 
  44. project> 

3.工程创建好之后自动生成了一个测试类。 

  1. package tutorial.spring.boot.junit5;  
  2. import org.junit.jupiter.api.Test;  
  3. import org.springframework.boot.test.context.SpringBootTest;  
  4. @SpringBootTest  
  5. class SpringBootJunit5ApplicationTests {  
  6.     @Test  
  7.     void contextLoads() {  
  8.     }  

这个测试类的作用是检查应用程序上下文是否可正常启动。@SpringBootTest 注解告诉 Spring Boot 查找带 @SpringBootApplication 注解的主配置类,并使用该类启动 Spring 应用程序上下文。Java知音公众号内回复“后端面试”, 送你一份Java面试题宝典

4.补充待测试应用逻辑代码

4.1. 定义 Service 层接口 

  1. package tutorial.spring.boot.junit5.service;  
  2. public interface HelloService { 
  3.     String hello(String name);  

4.2. 定义 Controller 层 

  1. package tutorial.spring.boot.junit5.controller;  
  2. import org.springframework.web.bind.annotation.GetMapping;  
  3. import org.springframework.web.bind.annotation.PathVariable;  
  4. import org.springframework.web.bind.annotation.RestController;  
  5. import tutorial.spring.boot.junit5.service.HelloService;  
  6. @RestController  
  7. public class HelloController {  
  8.     private final HelloService helloService;  
  9.     public HelloController(HelloService helloService) { 
  10.         this.helloService = helloService;  
  11.     }  
  12.     @GetMapping("/hello/{name}")  
  13.     public String hello(@PathVariable("name") String name) {  
  14.         return helloService.hello(name);  
  15.     }  

4.3. 定义 Service 层实现 

  1. package tutorial.spring.boot.junit5.service.impl;  
  2. import org.springframework.stereotype.Service;  
  3. import tutorial.spring.boot.junit5.service.HelloService;  
  4. @Service 
  5. public class HelloServiceImpl implements HelloService {  
  6.     @Override  
  7.     public String hello(String name) {  
  8.         return "Hello, " + name;  
  9.     }  

5.编写发送 HTTP 请求的单元测试。 

  1. package tutorial.spring.boot.junit5;  
  2. import org.assertj.core.api.Assertions;  
  3. import org.junit.jupiter.api.Test;  
  4. import org.springframework.beans.factory.annotation.Autowired;  
  5. import org.springframework.boot.test.context.SpringBootTest;  
  6. import org.springframework.boot.test.web.client.TestRestTemplate;  
  7. import org.springframework.boot.web.server.LocalServerPort;  
  8. @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)  
  9. public class HttpRequestTest {  
  10.     @LocalServerPort  
  11.     private int port;  
  12.     @Autowired  
  13.     private TestRestTemplate restTemplate; 
  14.     @Test  
  15.     public void testHello() {  
  16.         String requestResult = this.restTemplate.getForObject("http://127.0.0.1:" + port + "/hello/spring",  
  17.                 String.class);  
  18.         Assertions.assertThat(requestResult).contains("Hello, spring");  
  19.     }  

说明:

  1. package tutorial.spring.boot.junit5.controller;  
  2. import org.assertj.core.api.Assertions;  
  3. import org.junit.jupiter.api.Test;  
  4. import org.springframework.beans.factory.annotation.Autowired;  
  5. import org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;  
  6. import org.springframework.boot.test.context.SpringBootTest;  
  7. import org.springframework.test.web.servlet.MockMvc;  
  8. import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;  
  9. import org.springframework.test.web.servlet.result.MockMvcResultHandlers;  
  10. import org.springframework.test.web.servlet.result.MockMvcResultMatchers;  
  11. @SpringBootTest  
  12. @AutoConfigureMockMvc  
  13. public class HelloControllerTest {  
  14.     @Autowired  
  15.     private HelloController helloController;  
  16.     @Autowired  
  17.     private MockMvc mockMvc;  
  18.     @Test  
  19.     public void testNotNull() {  
  20.         Assertions.assertThat(helloController).isNotNull();  
  21.     }  
  22.     @Test  
  23.     public void testHello() throws Exception {  
  24.         this.mockMvc.perform(MockMvcRequestBuilders.get("/hello/spring"))  
  25.                 .andDo(MockMvcResultHandlers.print())  
  26.                 .andExpect(MockMvcResultMatchers.status().isOk())  
  27.                 .andExpect(MockMvcResultMatchers.content().string("Hello, spring")); 
  28.     }  

以上测试方法属于整体测试,即将应用上下文全都启动起来,还有一种分层测试方法,譬如仅测试 Controller 层。

6.分层测试。 

  1. package tutorial.spring.boot.junit5.controller;  
  2. import org.assertj.core.api.Assertions;  
  3. import org.junit.jupiter.api.Test;  
  4. import org.mockito.Mockito;  
  5. import org.springframework.beans.factory.annotation.Autowired;  
  6. import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;  
  7. import org.springframework.boot.test.mock.mockito.MockBean;  
  8. import org.springframework.test.web.servlet.MockMvc;  
  9. import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;  
  10. import org.springframework.test.web.servlet.result.MockMvcResultHandlers;  
  11. import org.springframework.test.web.servlet.result.MockMvcResultMatchers;  
  12. import tutorial.spring.boot.junit5.service.HelloService;  
  13. @WebMvcTest  
  14. public class HelloControllerTest {  
  15.     @Autowired  
  16.     private HelloController helloController;  
  17.     @Autowired  
  18.     private MockMvc mockMvc; 
  19.     @MockBean  
  20.     private HelloService helloService;  
  21.     @Test  
  22.     public void testNotNull() {  
  23.         Assertions.assertThat(helloController).isNotNull();  
  24.     }  
  25.     @Test  
  26.     public void testHello() throws Exception {  
  27.         Mockito.when(helloService.hello(Mockito.anyString())).thenReturn("Mock hello");  
  28.         this.mockMvc.perform(MockMvcRequestBuilders.get("/hello/spring"))  
  29.                 .andDo(MockMvcResultHandlers.print())  
  30.                 .andExpect(MockMvcResultMatchers.status().isOk())  
  31.                 .andExpect(MockMvcResultMatchers.content().string("Mock hello"));  
  32.     }  

说明:

@WebMvcTest 注释告诉 Spring Boot 仅实例化 Controller 层,而不去实例化整体上下文,还可以进一步指定仅实例化 Controller 层的某个实例:@WebMvcTest(HelloController.class);

因为只实例化了 Controller 层,所以依赖的 Service 层实例需要通过 @MockBean 创建,并通过 Mockito 的方法指定 Mock 出来的 Service 层实例在特定情况下方法调用时的返回结果。 

 

来源:Java知音内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯