springboot+junit测试
参考视频:用Spring Boot编写RESTful API
参考链接:Spring Boot构建RESTful API与单元测试
参考链接:Junit自动单元测试以及测试覆盖率简单使用
一、junit断言
| 函数 | 作用 |
|---|---|
| TestCase.assertTrue | 判断条件是否为真 |
| TestCase.assertFalse | 判断条件是否为假 |
| TestCase.assertEquals(val1,val2) | 判断val1是否和val2相等 |
| TestCase.assertNotSame(val1,val2) | 判断val1是否和val2不相等 |
| Assert.assertArrayEquals(array1,array2) | 判断两个数组相等 |
| TestCase.fail(message) | 测试直接失败,抛出message信息 |
注意:
assertTrue(val1 == val2) 是判断val1和val2是否是同一个实例
assertEquals(val1, val2) 是判断val1和val2值是否相等
Assert中有许多方法被淘汰了,这里建议多用TestCase
二、测试模块
- 测试模块:我们需要写测试代码的模块
- 驱动模块:调用我们测试代码的模块
- 桩模块 :模拟被测试的模块所调用的模块,而不是软件产品的组成的部分,这个桩模块本身不执行任何功能仅在被调用时返回静态值来模拟被调用模块的行为
桩模块简单实例(税收计算较复杂,可以先模仿一下,作为桩模块,这样就可以不影响被测模块的测试):

三、使用Mockito作为桩模块
我们在maven中加入Mockito和junit的依赖
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
数据库访问层studentDao如下(还未实现方法):
import org.springframework.stereotype.Repository;
import whu.xsy.swagger_use.entity.student;
import java.util.List;
@Repository
public interface studentDao {
//TODO 从数据库获取所有学生信息
List<student> getAll();
}
service层如下(调用studentDao):
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import whu.xsy.swagger_use.dao.studentDao;
import whu.xsy.swagger_use.entity.student;
import java.util.List;
@Service
public class studentService {
@Autowired
studentDao studentDao;
public List<student> getAll(){
return studentDao.getAll();
}
}
接下来开始设置桩模块并开始测试
此时数据库并没有数据,数据访问层dao也没写好,那么该如何测试service呢?
我们使用mockito在dao层调用特定方法时模拟返回数据,这样就可以不影响service层的测试,并且即使数据库发生变化(比如环境迁移),也不影响测试。
简而言之,就是mockito接管了dao层
import junit.framework.TestCase;
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.context.SpringBootTest;
import org.springframework.boot.test.mock.mockito.MockBean;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import whu.xsy.swagger_use.dao.studentDao;
import whu.xsy.swagger_use.entity.student;
import whu.xsy.swagger_use.service.studentService;
import java.util.ArrayList;
import java.util.List;
@SpringBootTest
@RunWith(SpringJUnit4ClassRunner.class)
public class SwaggerUseApplicationTests {
@MockBean
studentDao studentDao;
@Autowired
studentService studentService;
@Test
public void contextLoads(){} // 可用来检测springboot环境
//测试studentService
@Test
public void testStudentService(){
//模拟数据库中数据
List<student> students= new ArrayList<>();
students.add(new student(1,"xsy"));
students.add(new student(2,"theory"));
//由于 studentDao 的 getAll() 方法还没写好,所以使用 Mockito 做桩模块,模拟返回数据
Mockito.when(studentDao.getAll()).thenReturn( students );
//调用studentService.getAll()
List<student> result = studentService.getAll();
//断言
TestCase.assertEquals(2,result.size());
TestCase.assertEquals("xsy",result.get(0).getName());
}
}
四、使用mockMvc测试web层
- 在test类上加上
@AutoConfigureMockMvc注解 - 自动注入
MockMvc mockMvc; - 对studentController中增删改查接口进行测试
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import org.springframework.web.bind.annotation.*;
import whu.xsy.swagger_use.entity.student;
import java.util.ArrayList;
import java.util.List;
@RestController
@RequestMapping("/student")
@Api(value = "/student", tags = "学生模块") //标注在类上的
public class studentController {
//模拟数据库
private static List<student> students = new ArrayList<>();
//初始化模拟数据库
static{
students.add(new student(1,"xsy"));
students.add(new student(2,"theory"));
}
@GetMapping("")
public List<student> getAll(){
return students;
}
@PostMapping("")
public boolean add(student student){
return students.add(student);
}
}
测试get方法(期望状态200,返回的json中含有xsy,打印返回的信息)
@SpringBootTest
@RunWith(SpringJUnit4ClassRunner.class)
@AutoConfigureMockMvc
public class SwaggerUseApplicationTests {
@MockBean
studentDao studentDao;
@Autowired
studentService studentService;
@Autowired
MockMvc mockMvc;
@Before
public void setUp() throws Exception {
mockMvc = MockMvcBuilders.standaloneSetup(new studentController()).build();
}
@Test
public void testStudentController() throws Exception {
RequestBuilder request = null;
//查询所有学生
request = get("/student/");
mockMvc.perform(request)
.andExpect(status().isOk())
.andDo(MockMvcResultHandlers.print())
.andExpect(content().string(Matchers.containsString("xsy")));
}
}
测试通过,并且打印的信息如下:
MockHttpServletRequest:
HTTP Method = GET
Request URI = /student/
Parameters = {}
Headers = []
Body = <no character encoding set>
Session Attrs = {}
Handler:
Type = whu.xsy.swagger_use.controller.studentController
Method = whu.xsy.swagger_use.controller.studentController#getAll()
Async:
Async started = false
Async result = null
Resolved Exception:
Type = null
ModelAndView:
View name = null
View = null
Model = null
FlashMap:
Attributes = null
MockHttpServletResponse:
Status = 200
Error message = null
Headers = [Content-Type:"application/json"]
Content type = application/json
Body = [{"id":1,"name":"xsy"},{"id":2,"name":"theory"}]
Forwarded URL = null
Redirected URL = null
Cookies = []
测试post方法:
本实例中展现了MockMvc如何上传数据和获取返回结果
测试方法与get类似
request = post("/student/")
.param("id","3")
.param("name","ys");
String result = mockMvc.perform(request)
.andExpect(status().isOk())
.andReturn().getResponse().getContentAsString();
TestCase.assertEquals("true",result);
五、批量测试和测试覆盖率
我们将service的测试和controller的测试分开:

我们需要一次性运行所有的单元测试,则需要配置一次性运行whu.xsy.swagger_use中的所有test类(具体配置见Junit自动单元测试以及测试覆盖率简单使用)


然后点击run with coverage

就可以运行所有的测试文件,并且可以看到覆盖率

springboot+junit测试的更多相关文章
- SpringBoot Junit测试Controller
原文链接:https://blog.csdn.net/xiaolyuh123/article/details/73281522 import java.util.List; import org.sp ...
- Springboot的日志管理&Springboot整合Junit测试&Springboot中AOP的使用
==============Springboot的日志管理============= springboot无需引入日志的包,springboot默认已经依赖了slf4j.logback.log4j等日 ...
- springboot集成junit测试与javamail测试遇到的问题
1.springboot如何集成junit测试? 导入junit的jar包 使用下面注解: @RunWith()关于这个的解释看下这两篇文章: http://www.imooc.com/qadetai ...
- springBoot中使用使用junit测试文件上传,以及文件下载接口编写
本篇文章将介绍如何使junit在springBoot中测试文件的上传,首先先阅读如何在springBoot中进行接口测试. 文件上传操作测试代码 import org.junit.Before; im ...
- SpringBoot系列三:SpringBoot基本概念(统一父 pom 管理、SpringBoot 代码测试、启动注解分析、配置访问路径、使用内置对象、项目打包发布)
声明:本文来源于MLDN培训视频的课堂笔记,写在这里只是为了方便查阅. 1.了解SpringBoot的基本概念 2.具体内容 在之前所建立的 SpringBoot 项目只是根据官方文档实现的一个基础程 ...
- 0005SpringBoot中用Junit测试实体类中绑定yml中的值
1.编写SpringBoot的引导类 package springboot_test.springboot_test; import org.springframework.boot.SpringAp ...
- 基于Springboot+Junit+Mockito做单元测试
前言 前面的两篇文章讨论过< 为什么要写单元测试,何时写,写多细 >和<单元测试规范>,这篇文章介绍如何使用Springboot+Junit+Mockito做单元测试,案例选取 ...
- 写Junit测试时用Autowired注入的类实例始终为空怎么解?
踩坑半天多,终于在网上寻觅到了解决方案,特此分享一下. 重要前提:src/main/java下的根包名必须和src/test/main的根包名完全一致,否则就会发生死活不能注入的情况,要继续进行下面的 ...
- 复利计算器(软件工程)及Junit测试———郭志豪
计算:1.本金为100万,利率或者投资回报率为3%,投资年限为30年,那么,30年后所获得的利息收入:按复利计算公式来计算就是:1,000,000×(1+3%)^30 客户提出: 2.如果按照单利计算 ...
随机推荐
- Linux 进程间通信(IPC)总结
概述 一个大型的应用系统,往往需要众多进程协作,进程(Linux进程概念见附1)间通信的重要性显而易见.本系列文章阐述了 Linux 环境下的几种主要进程间通信手段. 进程隔离 进程隔离是为保护操作系 ...
- 使用SpringCloud Stream结合rabbitMQ实现消息消费失败重发机制
前言:实际项目中经常遇到消息消费失败了,要进行消息的重发.比如支付消息消费失败后,要分不同时间段进行N次的消息重发提醒. 本文模拟场景 当金额少于100时,消息消费成功 当金额大于100,小于200时 ...
- Jmeter接口测试,往MySQL数据库写数据时,中文显示???
调Jmeter接口测试,请求字段输入中文,查看数据库插入情况, 发现数据库显示 ???
- opencv C++构造并访问单通道和多通道Mat。
一:构造并访问单通道. int main(){ cv::Mat m=(cv::Mat_<int>(3,2)<<1,2,3,4,5,6); for(int i=0;i<m. ...
- IDEA+Maven+Tomcat构建Web项目的三种方法
[本文版权归微信公众号"代码艺术"(ID:onblog)所有,若是转载请务必保留本段原创声明,违者必究.若是文章有不足之处,欢迎关注微信公众号私信与我进行交流!] 本文将介绍三种方 ...
- weblogic高级进阶之查看日志
域的日志位于 D:\Oracle\Middleware\user_projects\domains\base_domain\servers\AdminServer\logs 名字是base_domai ...
- Nginx深入学习(一篇搞定)
我们的口号是:人生不设限! 一.nginx简介 1.什么是nginx Nginx (engine x) 是一个高性能的HTTP和反向代理服务器,特点是占有内存少,并发能力强,事实上nginx的并发 ...
- Oracle 闪回总结
一.闪回查询(Flashback Query)1.闪回查询技术1.1 闪回查询机制 闪回查询是指利用数据库回滚段存放的信息查看指定表中过去某个时间点的数据信息,或过去某个时间段数据的变化情况,或 ...
- 【UVA11383】 Golden Tiger Claw 【二分图KM算法(板子)】
题目 题目传送门:https://www.luogu.com.cn/problem/UVA11383 分析 最近刚刚学了二分图,然后来了一个这样的题,看完题意之后,稍微想一想就能想出来是一个二分图,然 ...
- Centos 6.4 安装/卸载 Adobe Reader 9(.bin .tar.bz2 rpm 包)
一.To install Adobe Reader 9.1 using a tarball installer 1. Open a terminal window. 2. Change directo ...