Spring Boot 基于 JUnit 4 实现单元测试

本文介绍 Spring Boot 2 基于 JUnit 4 的单元测试实现方案。


目录

  • 开发环境
  • 测试 HTTP 接口
  • Mock 调用对象
  • 测试套件
  • 总结

开发环境

  • JDK 8

测试 HTTP 接口

Spring Boot 单元测试覆盖的一个最常见的业务场景是 HTTP 接口测试,以下演示如何基于 Spring Boot 单元测试框架测试常见的 HTTP 接口。

  1. 创建 Spring Boot 工程,参考:IntelliJ IDEA 创建 Spring Boot 工程

  2. 修改工程 pom 文件,添加 spring-boot-starter-webjunit 依赖。

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.3.RELEASE</version>
    </parent>
    <groupId>tutorial.spring.boot</groupId>
    <artifactId>spring-boot-unit-test</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>spring-boot-unit-test</name>
    <description>Spring Boot 单元测试示例</description>

    <properties>
        <java.version>1.8</java.version>
        <project.build.encoding.source>UTF-8</project.build.encoding.source>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.0</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                    <encoding>${project.build.encoding.source}</encoding>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>
  1. Spring Boot 工程 src\test\java\tutorial\spring\boot 目录下自动生成了一个单元测试类。
package tutorial.spring.boot;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class UnitTestApplicationTests {

    @Test
    public void contextLoads() {
    }

}
  1. 添加待测试的 Controller 方法,HTTP 接口通常定义在 Controller 层。
package tutorial.spring.boot.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class IndexController {

    @GetMapping(value = "/")
    public String index() {
        return "Just for Spring Boot unit test!";
    }
}
  1. 添加单元测试类。
package tutorial.spring.boot.controller;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.test.web.servlet.result.MockMvcResultMatchers;

@RunWith(SpringRunner.class)
@WebMvcTest(IndexController.class)
public class IndexControllerTest {

    @Autowired
    private MockMvc mvc;

    @Test
    public void testIndex() throws Exception {
        this.mvc.perform(MockMvcRequestBuilders.get("/"))
                .andExpect(MockMvcResultMatchers.status().isOk())
                .andExpect(MockMvcResultMatchers.content().string("Just for Spring Boot unit test!"));
    }
}

单元测试运行结果(略)。
上述示例演示如何测试不带参数的 GET 方法,实际应用中 HTTP 接口都要求请求参数,以下演示如何测试带参数的 POST 方法。

  1. 修改 IndexController,添加一个新的 POST 接口。
@PostMapping(value = "/commit")
public String commit(String content) {
    System.out.printf("Commit content: %s%n", content);
    return "Received content: " + content;
}
  1. 修改 IndexControllerTest,添加测试新增 POST 接口的方法。
@Test
public void testCommit() throws Exception {
    this.mvc.perform(MockMvcRequestBuilders.post("/commit"))
            .andExpect(MockMvcResultMatchers.status().isOk())
            .andExpect(MockMvcResultMatchers.content().string("Received content: null"));
    String content = "[Commit Content]";
    this.mvc.perform(MockMvcRequestBuilders.post("/commit").param("content", content))
            .andExpect(MockMvcResultMatchers.status().isOk())
            .andExpect(MockMvcResultMatchers.content().string("Received content: " + content));
}

单元测试运行结果(略)。
GET / POST 接口外的其它接口 PUT / DELETE / PATCH 测试方法类似,只需调用 org.springframework.test.web.servlet.request.MockMvcRequestBuilders 的不同方法构建不同类型的 HTTP 请求。


Mock 调用对象

通常,Controller 层职责只包含参数校验、包装返回值或重定向等,具体的业务处理会调用 Service 层对象完成,以下演示如何 Mock Service 层对象实现 Controller 层的独立测试。

  1. 添加 Service 接口。
package tutorial.spring.boot.service;

public interface IndexService {

    String commit(String content);
}
  1. 添加 Service 接口实现。
package tutorial.spring.boot.service.impl;

import org.springframework.stereotype.Service;
import tutorial.spring.boot.service.IndexService;

@Service
public class IndexServiceImpl implements IndexService {

    @Override
    public String commit(String content) {
        System.out.printf("Param[content] is: %s%n", content);
        return "Dealed " + content;
    }
}
  1. 改造 Controller 中方法,调用 Service 方法返回。
package tutorial.spring.boot.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RestController;
import tutorial.spring.boot.service.IndexService;

@RestController
public class IndexController {

    private final IndexService indexService;

    public IndexController(IndexService indexService) {
        this.indexService = indexService;
    }

    @GetMapping(value = "/")
    public String index() {
        return "Just for Spring Boot unit test!";
    }

    @PostMapping(value = "/commit")
    public String commit(String content) {
        System.out.printf("Commit content: %s%n", content);
        return indexService.commit(content);
    }
}
  1. 修改单元测试方法。
package tutorial.spring.boot.controller;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mockito;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders;
import org.springframework.test.web.servlet.result.MockMvcResultMatchers;
import tutorial.spring.boot.service.IndexService;

@RunWith(SpringRunner.class)
@WebMvcTest(IndexController.class)
public class IndexControllerTest {

    @Autowired
    private MockMvc mvc;

    @MockBean
    private IndexService indexService;

    @Test
    public void testIndex() throws Exception {
        this.mvc.perform(MockMvcRequestBuilders.get("/"))
                .andExpect(MockMvcResultMatchers.status().isOk())
                .andExpect(MockMvcResultMatchers.content().string("Just for Spring Boot unit test!"));
    }

    @Test
    public void testCommit() throws Exception {
        String request = "test";
        String response = "mock response";
        Mockito.when(indexService.commit(request)).thenReturn(response);
        this.mvc.perform(MockMvcRequestBuilders.post("/commit").param("content", request))
                .andExpect(MockMvcResultMatchers.status().isOk())
                .andExpect(MockMvcResultMatchers.content().string(response));
    }
}

单元测试运行结果(略)。

  1. 编写 Service 单元测试类
package tutorial.spring.boot.service;

import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)
@SpringBootTest
public class IndexServiceTest {

    @Autowired
    private IndexService indexService;

    @Test
    public void testNotNull() {
        Assert.assertNotNull(indexService);
    }

    @Test
    public void testCommit() {
        String content = "test";
        Assert.assertEquals("Dealed " + content, indexService.commit(content));
    }
}

单元测试运行结果(略)。


测试套件

如果有很多单元测试类,可以放在同一个测试套件中运行。

package tutorial.spring.boot;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import tutorial.spring.boot.controller.IndexControllerTest;
import tutorial.spring.boot.service.IndexServiceTest;

@RunWith(Suite.class)
@Suite.SuiteClasses({IndexControllerTest.class, IndexServiceTest.class})
public class SuiteTests {
}

单元测试运行结果(略)。


总结

有关 Spring Boot 和 Spring MVC 更详细的单元测试,请参考官方文档

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,335评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,895评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,766评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,918评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,042评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,169评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,219评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,976评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,393评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,711评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,876评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,562评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,193评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,903评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,142评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,699评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,764评论 2 351

推荐阅读更多精彩内容

  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,788评论 6 342
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,644评论 18 139
  • 单元测试对于开发人员来说是非常熟悉的,我们每天的工作也都是围绕着开发与测试进行的,在最早的时候测试都是采用工具De...
    OzanShareing阅读 4,760评论 0 1
  • 单元测试 单元测试注意事项 测试方法必须用@Test修饰 测试方法必须使用public void修饰,不能带参数 ...
    聪明的奇瑞阅读 1,393评论 0 2
  • 单元测试service层代码 如果想在单元测试中使用Spring boot的依赖注入功能,需要在单元测试的clas...
    AlienPaul阅读 265评论 0 1