SpringBoot+JUnit5+MockMvc+Mockito单元测试的实现

目录

  • 版本
  • 项目结构
    • EchoServiceImpl
    • EchoControllerNoMockitoTest
    • EchoControllerMockTest
今天聊聊如何在 SpringBoot 中集成 Junit5、MockMvc、Mocktio。Junit5 是在 Java 栈中应用最广的测试框架,Junit4 一度霸榜。
升级到 Junit5 之后,除了增加 Java8 的很多特性,做了很多功能增强,在结构上做了优化调整,拆分了很多不同的模块,可以按需引入,比如:
  • JUnit Platform - 在 JVM 上启动测试框架
  • JUnit Jupiter - 在 JUnit5 中编写测试和扩展
  • JUnit Vintage - 提供运行基于 JUnit3 和 JUnit4 的测试引擎
从 SpringBoot 2.2.0 之后,Junit5 已经成为了默认的 Junit 版本。有了 JUnit Vintage,从 Junit4 迁移到 Junit5 的成本极低。所以本文就直接针对 Junit5 开始了。

版本
先说版本,是为了避免因为版本差异出现各种奇怪的问题:
  • JDK:jdk8(小版本可以忽略)
  • SpringBoot:2.5.2
    • 继承spring-boot-starter-parent
    • 依赖spring-boot-starter-web
    • 依赖spring-boot-starter-test
  • JUnit:5.7.2
  • Mockito:3.9.0
  • hamcrest:2.2
SpringBoot 的好处在于,只要继承spring-boot-starter-parent或引入spring-boot-pom-dependencies,然后添加spring-boot-starter-test依赖即可。定义的 POM 内容如下:
4.0.0org.springframework.bootspring-boot-starter-parent2.5.2cn.howardliu.effective.springspringboot-junit5-mockito0.0.1-SNAPSHOTspringboot-junit5-mockioorg.springframework.bootspring-boot-starter-weborg.springframework.bootspring-boot-devtoolsruntimetrueorg.projectlomboklomboktrueorg.springframework.bootspring-boot-starter-testtestorg.springframework.bootspring-boot-maven-plugin

因为继承了spring-boot-starter-parent,所以我们依赖的spring-boot-starter-test不需要写具体的版本,可以直接集成父级的版本定义。其中,spring-boot-starter-web是用于提供 REST API 的 web 容器,spring-boot-starter-test可以提供各种测试框架的,spring-boot-maven-plugin是将 SpringBoot 应用打包为可执行 jar 的插件。

项目结构
因为是 DEMO 示例,我们实现一个 Echo 接口,能够接收请求参数,并返回加工后的字符串。按照惯例,我们使用万能的Hello, World!。
我们的项目结构如下:
├── pom.xml└── src├── main│├── java││└── cn││└── howardliu││└── effective││└── spring││└── springbootjunit5mockio││├── SpringbootJunit5MockioApplication.java││├── controller│││└── EchoController.java││└── service││├── EchoService.java││└── impl││└── EchoServiceImpl.java│└── resources│└── application.yaml└── test└── java└── cn└── howardliu└── effective└── spring└── springbootjunit5mockio└── controller├── EchoControllerMockTest.java└── EchoControllerNoMockitoTest.java

  • SpringbootJunit5MockioApplication:SpringBoot 应用启动入口
  • EchoController:接口定义
  • EchoService:实现业务逻辑接口
  • EchoServiceImpl:接口实现
  • EchoControllerMockTest:使用 Mock 代理 EchoService 实现
  • EchoControllerNoMockitoTest:直接测试接口实现

EchoServiceImpl

我们看下EchoService的实现,这将是我们 DEMO 的核心实现:
@Servicepublic class EchoServiceImpl implements EchoService {@Overridepublic String echo(String foo) {return "Hello, " + foo; }}

【SpringBoot+JUnit5+MockMvc+Mockito单元测试的实现】
EchoControllerNoMockitoTest

我们先使用 Junit5+MockMvc 实现 Controller 接口的普通调用,代码如下:
@SpringBootTest(classes = SpringbootJunit5MockioApplication.class)@AutoConfigureMockMvcclass EchoControllerNoMockitoTest {@Autowiredprivate MockMvc mockMvc; @Testvoid echo() throws Exception {final String result = mockMvc.perform(MockMvcRequestBuilders.get("/echo/").param("name", "看山")).andExpect(MockMvcResultMatchers.status().isOk()).andDo(MockMvcResultHandlers.print()).andReturn().getResponse().getContentAsString(StandardCharsets.UTF_8); Assertions.assertEquals("Hello, 看山", result); }}

我们通过SpringBootTest注解定义这是一个 SpringBoot 应用的测试用例,然后通过AutoConfigureMockMvc启动测试容器。这样,就可以直接注入MockMvc实例测试 Controller 接口。
这里需要注意一点,网上很多教程会让写@ExtendWith({SpringExtension.class})这样一个注解,其实完全没有必要。通过源码我们可以知道,SpringBootTest注解已经添加了ExtendWith。

EchoControllerMockTest

这个测试用例中,我们通过 Mockito 组件代理EchoService的echo方法,代码如下:
@SpringBootTest(classes = SpringbootJunit5MockioApplication.class)@ExtendWith(MockitoExtension.class)@AutoConfigureMockMvcclass EchoControllerMockTest {@Autowiredprivate MockMvc mockMvc; @MockBeanprivate EchoService echoService; @BeforeEachvoid setUp() {Mockito.when(echoService.echo(Mockito.any())).thenReturn("看山说:" + System.currentTimeMillis()); }@Testvoid echo() throws Exception {final String result = mockMvc.perform(MockMvcRequestBuilders.get("/echo/").param("name", "看山的小屋")).andExpect(MockMvcResultMatchers.status().isOk()).andDo(MockMvcResultHandlers.print()).andReturn().getResponse().getContentAsString(StandardCharsets.UTF_8); Assertions.assertTrue(result.startsWith("看山")); }}

在这个示例中,我们需要注意@ExtendWith(MockitoExtension.class)注解,这个注解是用于引入MockBean的,我们通过对echo方法的拦截,使其返回我们定义好的响应结果。这种方式是为了在多系统或者多功能测试时,不需要真正调用接口。
比如,我们需要获取用户手机号,通常在接口中会校验用户有没有登录,我们就可以使用 Mockito 的能力代理登录验证,使结果永远是 true。

到此这篇关于SpringBoot+JUnit5+MockMvc+Mockito单元测试的实现的文章就介绍到这了,更多相关SpringBoot JUnit5 MockMvc Mockito单元测试内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    推荐阅读