Java如何优雅地实现单元测试与集成测试

开发 后端
在日常的开发过程中,为了保证代码质量,有追求的程序员一般都会对自己编写的代码进行充分的测试,这种测试不仅仅是体现在对正常功能的简单接口调用,而是要根据代码中的各种逻辑分支,进行尽可能多的覆盖性单元测试以及主要逻辑的集成测试。

[[332514]]

本文转载自微信公众号「 无敌码农」,作者 无敌码农。转载本文请联系 无敌码农公众号。

在日常的开发过程中,为了保证代码质量,有追求的程序员一般都会对自己编写的代码进行充分的测试,这种测试不仅仅是体现在对正常功能的简单接口调用,而是要根据代码中的各种逻辑分支,进行尽可能多的覆盖性单元测试以及主要逻辑的集成测试。

上面说到的测试对于程序员来说,绝不仅仅只是依赖于Postman之类的网络工具,而要以编写独立的单元/集成测试代码的方式来实现,具体来说在Java中就是要基于JUnit、Mocktio之类的测试框架编写相应的UT及IT代码,并在这个过程中提前发现软件Bug、重新审视所写代码并进行优化。

实话说编写测试代码对提高软件质量,及自身编程水平来说都是一种非常有用的手段。但在工作中,并不是所有人都能正确地掌握单元测试和集成测试代码的写法和组织形式。以Maven工程代码为例,很多人会把单元测试和集成测试代码弄混,这样导致的后果就是大部分Maven工程代码:"mvn test"几乎很难跑通。

而本文想要表达的内容就是如何在Maven工程中有效的区分和组织单元测试、集成测试代码使得它们互不干扰,并具体演示它们的写法。

Maven测试代码结构的组织

 

我们知道在Maven工程结构中“src/test”目录是专门用于存放测试代码的,但令人痛苦的是Maven的标准目录结构只定义了这样一个测试目录,也就是说它本身是无法单独区分单元测试代码和集成测试代码的,这也是为什么很多人会把UT和IT代码同时写到"src/test"目录而导致“mvn test”难以跑过的原因。

那么有什么办法可以友好地解决这个问题呢?在接下来的内容中我们以Maven构建Spring Boot项目为例来具体演示下在Maven中如何友好地分离UT及IT,具体步骤如下:

1)、首先我们创建一个基于Maven构建的Spring Boot项目,代码结构如下图所示:

 

如上图所示,在规划的目录结构中我们将IT的代码目录及资源文件目录单独分离在“src/integration-test”目录下,默认的“src/test”目录还是作为存放UT代码的目录,而Maven在构建的过程中默认只运行UT代码。这样即便IT代码由于网络、环境等原因无法正常执行,但也不至于影响到UT代码的运行。

2)、创建区分UT、IT代码的Maven Profiles文件

默认情况下Maven是无法主动识别“src/test”目录之外的测试代码的,所以当我们将IT代码抽象到"src/integration-test"目录之后,需要通过编写Maven Profiles文件来进行区分,具体示意图如下:

 

如上图所示,我们可以在与“src”目录平行创建一个“profiles”的目录,其中分别用“dev”、“integration-test”目录中的config.properties文件来进行区分,其中dev目录下的config.properties文件的内容为:

  1. profile=dev 

而integration-test目录中的config.properties文件则为:

  1. profile=integration-test

3)、通过pom.xml文件配置上述profiles文件生效规则

为了使得这些profiles文件生效,我们还需要在pom.xml文件中进行相应的配置。具体如下:

  1. <!--定义关于区分集成测试及单元测试代码的profiles--> 
  2. <profiles> 
  3.     <!-- The Configuration of the development profile --> 
  4.     <profile> 
  5.         <id>dev</id> 
  6.         <activation> 
  7.             <activeByDefault>true</activeByDefault> 
  8.         </activation> 
  9.         <properties> 
  10.             <build.profile.id>dev</build.profile.id> 
  11.             <!--Only unit tests are run when the development profile is active--> 
  12.             <skip.integration.tests>true</skip.integration.tests> 
  13.             <skip.unit.tests>false</skip.unit.tests> 
  14.         </properties> 
  15.     </profile> 
  16.     <!-- The Configuration of the integration-test profile --> 
  17.     <profile> 
  18.         <id>integration-test</id> 
  19.         <properties> 
  20.             <build.profile.id>integration-test</build.profile.id> 
  21.             <!--Only integration tests are run when the integration-test profile is active--> 
  22.             <skip.integration.tests>false</skip.integration.tests> 
  23.             <skip.unit.tests>true</skip.unit.tests> 
  24.         </properties> 
  25.     </profile> 
  26. </profiles> 

上述内容先定义了区分dev及integration-test环境的的profile信息,接下来在build标签中定义资源信息及相关plugin,具体如下:

  1. <build> 
  2.     <finalName>${project.artifactId}</finalName> 
  3.     <!--步骤1:单元测试代码、集成测试代码分离--> 
  4.     <filters> 
  5.         <filter>profiles/${build.profile.id}/config.properties</filter> 
  6.     </filters> 
  7.     <resources> 
  8.         <resource> 
  9.             <filtering>false</filtering> 
  10.             <directory>src/main/java</directory> 
  11.             <includes> 
  12.                 <include>**/*.properties</include> 
  13.                 <include>**/*.xml</include> 
  14.                 <include>**/*.tld</include> 
  15.                 <include>**/*.yml</include> 
  16.             </includes> 
  17.         </resource> 
  18.         <!--步骤2:通过Profile区分Maven集成测试代码、单元测试代码目录--> 
  19.         <resource> 
  20.             <filtering>true</filtering> 
  21.             <directory>src/main/resources</directory> 
  22.             <includes> 
  23.                 <include>**/*.properties</include> 
  24.                 <include>**/*.xml</include> 
  25.                 <include>**/*.tld</include> 
  26.                 <include>**/*.yml</include> 
  27.                 <include>**/*.sh</include> 
  28.             </includes> 
  29.         </resource> 
  30.     </resources> 
  31.     <plugins> 
  32.         <plugin> 
  33.             <groupId>org.springframework.boot</groupId> 
  34.             <artifactId>spring-boot-maven-plugin</artifactId> 
  35.         </plugin> 
  36.         <!-- 步骤三:将源目录和资源目录添加到构建中 --> 
  37.         <plugin> 
  38.             <groupId>org.codehaus.mojo</groupId> 
  39.             <artifactId>build-helper-maven-plugin</artifactId> 
  40.             <version>3.1.0</version> 
  41.             <executions> 
  42.                 <!-- Add a new source directory to our build --> 
  43.                 <execution> 
  44.                     <id>add-integration-test-sources</id> 
  45.                     <phase>generate-test-sources</phase> 
  46.                     <goals> 
  47.                         <goal>add-test-source</goal> 
  48.                     </goals> 
  49.                     <configuration> 
  50.                         <!-- Configures the source directory of our integration tests --> 
  51.                         <sources> 
  52.                             <source>src/integration-test/java</source> 
  53.                         </sources> 
  54.                     </configuration> 
  55.                 </execution> 
  56.                 <!-- Add a new resource directory to our build --> 
  57.                 <execution> 
  58.                     <id>add-integration-test-resources</id> 
  59.                     <phase>generate-test-resources</phase> 
  60.                     <goals> 
  61.                         <goal>add-test-resource</goal> 
  62.                     </goals> 
  63.                     <configuration> 
  64.                         <!-- Configures the resource directory of our integration tests --> 
  65.                         <resources> 
  66.                             <resource> 
  67.                                 <filtering>true</filtering> 
  68.                                 <directory>src/integration-test/resources</directory> 
  69.                                 <includes> 
  70.                                     <include>**/*.properties</include> 
  71.                                 </includes> 
  72.                             </resource> 
  73.                         </resources> 
  74.                     </configuration> 
  75.                 </execution> 
  76.             </executions> 
  77.         </plugin> 
  78.         <!--步骤四:Runs unit tests --> 
  79.         <plugin> 
  80.             <groupId>org.apache.maven.plugins</groupId> 
  81.             <artifactId>maven-surefire-plugin</artifactId> 
  82.             <version>2.18</version> 
  83.             <configuration> 
  84.                 <!-- Skips unit tests if the value of skip.unit.tests property is true --> 
  85.                 <skipTests>${skip.unit.tests}</skipTests> 
  86.                 <!-- Excludes integration tests when unit tests are run --> 
  87.                 <excludes> 
  88.                     <exclude>**/IT*.java</exclude> 
  89.                 </excludes> 
  90.             </configuration> 
  91.         </plugin> 
  92.         <!--步骤五:Runs integration tests --> 
  93.         <plugin> 
  94.             <groupId>org.apache.maven.plugins</groupId> 
  95.             <artifactId>maven-failsafe-plugin</artifactId> 
  96.             <version>2.18</version> 
  97.             <executions> 
  98.                 <execution> 
  99.                     <id>integration-tests</id> 
  100.                     <goals> 
  101.                         <goal>integration-test</goal> 
  102.                         <goal>verify</goal> 
  103.                     </goals> 
  104.                     <configuration> 
  105.                         <skipTests>${skip.integration.tests}</skipTests> 
  106.                     </configuration> 
  107.                 </execution> 
  108.             </executions> 
  109.         </plugin> 
  110.     </plugins> 
  111. </build> 

到这里我们就完成了基于Maven构建的Spring Boot项目的UT及IT代码目录的分离配置,此时对UT代码的执行还是通过默认“mvn test”命令,而集成测试代码的运行则可以通过如下命令:

  1. mvn clean verify -P integration-test 

单元测试代码示例

 

通过前面的配置操作就完成了单元测试、集成测试代码目录的分离设置。在后续的开发过程中只需要将相应的测试代码写在对应的测试目录即可。接下来我们模拟一段业务逻辑并演示如何编写其对应的UT代码。具体如下:

 

如上图所示,参考MVC三层规范,我们编写了一个接口逻辑,该接口Controller层接收Http请求后调用Service层进行处理,而Service层处理逻辑时会调用Dao层操作数据库,并将具体信息插入数据库。

那么我们编写单元测试(UT)代码时,针对的是单独的某个逻辑单元的测试,而不是从头到位的整个逻辑,它的运行不应该依赖于任何网络环境或其他组件,所有依赖的组件或网络都应该先进行Mock。以单元测试TestServceImpl中的“saveTest”方法为例,其UT代码编写如下:

  1. @RunWith(SpringRunner.class) 
  2. @SpringBootTest(classes = TestServiceImpl.class) 
  3. @ActiveProfiles("test"
  4. public class TestServiceImplTest { 
  5.  
  6.     @Autowired 
  7.     TestServiceImpl testServiceImpl; 
  8.  
  9.     @MockBean 
  10.     TestDao testDao; 
  11.  
  12.     @Test 
  13.     public void saveTest() { 
  14.         //调用测试方法 
  15.         testServiceImpl.saveTest("无敌码农微信公众号"); 
  16.         //验证执行测试的逻辑中是否调用过addUser方法 
  17.         verify(testDao).addUser(any()); 
  18.     } 

如上所示UT代码,我们UT测试的主要对象为TestServiceImpl类,所以可以在@SpringBootTest注解中进行范围指定。而@ActiveProfiles("test")则表示代码中所依赖的系统参数,可以从测试资源目录resouces/application-test.yml文件中获得。

单元测试的主要目的是验证单元代码内的逻辑,对于所依赖的数据库Dao组件并不是测试的范围,但是没有该Dao组件对象,UT代码在执行的过程中也会报错,所以一般会通过@MockBean注解进行组件Mock,以此解决UT测试过程中的代码依赖问题。此时运行“mvn test”命令:

 

单元测试代码得以正常执行!

集成测试代码示例

 

在Spring Boot中UT代码的编写方式与IT代码类似,但是其执行范围是包括了整个上下文环境。我们以模拟从Controller层发起Http接口请求为例,来完整的测试整个接口的逻辑,并最终将数据存入数据库。具体测试代码如下:

  1. @RunWith(SpringRunner.class) 
  2. @SpringBootTest 
  3. @ActiveProfiles("test"
  4. public class ITTestControllerTest { 
  5.  
  6.     @Autowired 
  7.     TestController testController; 
  8.  
  9.     @Test 
  10.     public void saveTest() { 
  11.         testController.saveTest("无敌码农微信公众号"); 
  12.     } 

可以看到对于集成测试代码在@SpringBootTest中并没有指定具体的类,它的默认执行范围为整个应用的上下文环境。而代码中的依赖组件由于整个应用上下文都会被启动,所以依赖上并不会报错,可以理解为是一个正常启动的Spring Boot应用。

需要注意的是由于IT代码的目录有独立的资源配置,所以相关的依赖配置,如数据库等需要在“src/integration-test/resouces/application-test.yml”文件中单独配置,例如:

  1. spring:
  2.   application: 
  3.     name: springboot-test-demo 
  4.   #数据库逻辑 
  5.   datasource: 
  6.     url: jdbc:mysql://127.0.0.1:3306/test 
  7.     username: root 
  8.     password: 123456 
  9.     type: com.alibaba.druid.pool.DruidDataSource 
  10.     driver-class-name: com.mysql.jdbc.Driver 
  11.     separator: // 
  12.  
  13. server: 
  14.   port: 8080 

此时运行集成测试命令“mvn clean verify -P integration-test”:

 

 

 

 

可以看到执行IT测试代码得以正常执行!

后记

 

本文着重介绍了在Java项目中如何编写单元测试(UT)和集成测试(IT)代码的工程实践。在日常编写代码的过程中,良好的测试代码编写是一种非常好的习惯,一般来说对于UT或IT代码执行错误的工程,要求严格的团队会让其构建的过程中无法通过,以此来严格要求团队成员。

原文链接:https://mp.weixin.qq.com/s/RT-KKT1BskUYEvYAXhms5A

 

责任编辑:武晓燕 来源: 无敌码农
相关推荐

2017-01-14 23:42:49

单元测试框架软件测试

2021-01-07 14:06:30

Spring BootJUnit5Java

2021-08-26 11:00:54

Spring BootJUnit5Java

2011-11-30 22:03:49

ibmdwJava

2009-09-01 10:20:06

protected方法单元测试

2020-09-30 08:08:15

单元测试应用

2011-04-18 13:20:40

单元测试软件测试

2023-10-07 08:49:56

测试驱动开发Xunit 框架

2017-04-07 13:45:02

PHP单元测试数据库测试

2020-08-18 08:10:02

单元测试Java

2017-02-21 10:30:17

Android单元测试研究与实践

2017-01-16 12:12:29

单元测试JUnit

2017-01-14 23:26:17

单元测试JUnit测试

2022-03-15 11:55:24

前端单元测试

2011-05-16 16:52:09

单元测试彻底测试

2021-03-28 23:03:50

Python程序员编码

2023-07-26 08:58:45

Golang单元测试

2017-03-23 16:02:10

Mock技术单元测试

2011-07-04 18:16:42

单元测试

2020-05-07 17:30:49

开发iOS技术
点赞
收藏

51CTO技术栈公众号