项目开发过程中,不少公司都要求写单元测试的代码,可以提高代码的质量,并且可以减少出现BUG的概率。

对于中小型公司来说,对单元测试不做硬性要求,不写最好。因为还是需要一定的工作量,在保证代码质量和性能

的前提下,再去考虑单元测试比较合适。有更好,没有也不影响项目的开发进度。自己所在的项目组对于单元测试

有要求,并且要求被测试代码的覆盖率达到20%及以上,每次发布版本的时候,变更覆盖率需要达标才能够发版。

每次写完代码后,基本都会被要求写单元测试的代码,或者是后期补单元测试的代码,总之都得写。

下面就聊聊自己在项目中是如何写单元测试的,使用的框架是Mockito框架,maven的依赖为,

<dependency>

<groupId>org.mockito</groupId>

<artifactId>mockito-core</artifactId>

<version>1.10.19</version>

<scope>test</scope>

</dependency>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-test</artifactId>

</dependency>

安装Squaretest插件.

选择需要进行单元测试的service实现类.

可以根据需要选择对应的JUnit版本

自己使用的配置为

生成的测试代码示例.

package applets.nature.service.impl;

import applets.nature.entiry.GiftExchangeEntiry;

import applets.nature.entiry.GiftInfo;

import applets.nature.mapper.GiftInfoMapper;

import applets.user.entiry.UserInfo;

import applets.user.service.UserService;

import org.junit.Test;

import org.junit.runner.RunWith;

import org.mockito.InjectMocks;

import org.mockito.Mock;

import org.mockito.runners.MockitoJUnitRunner;

import java.util.Arrays;

import java.util.Collections;

import java.util.List;

import static org.assertj.core.api.Assertions.assertThat;

import static org.assertj.core.api.Assertions.assertThatThrownBy;

import static org.mockito.Mockito.when;

@RunWith(MockitoJUnitRunner.class)

public class GiftHandlerServiceImplTest {

@Mock

private GiftInfoMapper mockGiftInfoMapper;

@Mock

private UserService mockUserService;

@InjectMocks

private GiftHandlerServiceImpl giftHandlerServiceImplUnderTest;

@Test

public void testSelectGiftList() throws Exception {

// Setup

final GiftInfo giftInfo = new GiftInfo();

giftInfo.setGiftId("giftId");

giftInfo.setGiftType("giftType");

giftInfo.setGiftTitle("giftTitle");

giftInfo.setGiftDescription("giftDescription");

giftInfo.setGiftFilePath("giftFilePath");

giftInfo.setNeedLevel(0);

giftInfo.setCreateTime("createTime");

giftInfo.setCreateUser("createUser");

giftInfo.setIsInvalid(0);

giftInfo.setStatus(0);

final List<GiftInfo> expectedResult = Arrays.asList(giftInfo);

// Configure GiftInfoMapper.selectGiftList(...).

final GiftInfo giftInfo1 = new GiftInfo();

giftInfo1.setGiftId("giftId");

giftInfo1.setGiftType("giftType");

giftInfo1.setGiftTitle("giftTitle");

giftInfo1.setGiftDescription("giftDescription");

giftInfo1.setGiftFilePath("giftFilePath");

giftInfo1.setNeedLevel(0);

giftInfo1.setCreateTime("createTime");

giftInfo1.setCreateUser("createUser");

giftInfo1.setIsInvalid(0);

giftInfo1.setStatus(0);

final List<GiftInfo> giftInfos = Arrays.asList(giftInfo1);

when(mockGiftInfoMapper.selectGiftList()).thenReturn(giftInfos);

// Configure UserService.selectUserByOpenid(...).

final UserInfo userInfo = new UserInfo();

userInfo.setUserId("userId");

userInfo.setUserName("userName");

userInfo.setNickName("nickName");

userInfo.setOpenid("openid");

userInfo.setUserPhone("userPhone");

userInfo.setAvatarUrl("avatarUrl");

userInfo.setGender(0);

userInfo.setCreateTime("createTime");

userInfo.setRegistrationCode("registrationCode");

userInfo.setUpdateTime("updateTime");

when(mockUserService.selectUserByOpenid("openid")).thenReturn(userInfo);

when(mockGiftInfoMapper.selectUserExchange("openid")).thenReturn(Arrays.asList(0));

// Run the test

final List<GiftInfo> result = giftHandlerServiceImplUnderTest.selectGiftList("openid");

// Verify the results

assertThat(result).isEqualTo(expectedResult);

}

@Test

public void testSelectGiftList_GiftInfoMapperSelectGiftListReturnsNoItems() throws Exception {

// Setup

when(mockGiftInfoMapper.selectGiftList()).thenReturn(Collections.emptyList());

// Configure UserService.selectUserByOpenid(...).

final UserInfo userInfo = new UserInfo();

userInfo.setUserId("userId");

userInfo.setUserName("userName");

userInfo.setNickName("nickName");

userInfo.setOpenid("openid");

userInfo.setUserPhone("userPhone");

userInfo.setAvatarUrl("avatarUrl");

userInfo.setGender(0);

userInfo.setCreateTime("createTime");

userInfo.setRegistrationCode("registrationCode");

userInfo.setUpdateTime("updateTime");

when(mockUserService.selectUserByOpenid("openid")).thenReturn(userInfo);

when(mockGiftInfoMapper.selectUserExchange("openid")).thenReturn(Arrays.asList(0));

// Run the test

final List<GiftInfo> result = giftHandlerServiceImplUnderTest.selectGiftList("openid");

// Verify the results

assertThat(result).isEqualTo(Collections.emptyList());

}

}

生成的代码说明,以查询方法SelectGiftLis为例:如果是测试service接口,一般使用serviceImpl来写测试用例,serviceImpl中一般会引入mapper接口。

测试代码中一般都是先生成一个对象,传入mapper接口方法的参数中,并且会创建一个mapper接口的返回对象。然后在使用serviceImpl来测试查

询方法,mock一个同样的查询参数,serviceImpl查询时就会有返回值。最后比对mapper接口返回的结果和serviceImpl查询返回的结果是否一致。

一致则通过测试,不一致则测试不通过。

点击如下图中的执行即可,效果如下.

有执行不成功的方法,自己在稍微修改一下测试的代码即可。

再次执行结果全部通过.

IDAE插件Squaretest是收费的,免费使用时间为30天。个人版本收费价格为35美元,有破解版本的小伙伴可以分享一下。

参考文章:https://zhuanlan.zhihu.com/p/318426230

完成第一步单元测试,下一步还需要收集测试之后的代码覆盖率。

添加依赖如下.

<dependency>

<groupId>org.jacoco</groupId>

<artifactId>jacoco-maven-plugin</artifactId>

<version>0.8.3</version>

</dependency>

配置maven plugin 插件.

<plugin>

<groupId>org.jacoco</groupId>

<artifactId>jacoco-maven-plugin</artifactId>

<version>0.8.3</version>

<configuration>

<includes>

<include>com/**/*</include>

</includes>

</configuration>

<executions>

<execution>

<id>pre-test</id>

<goals>

<goal>prepare-agent</goal>

</goals>

</execution>

<execution>

<id>post-test</id>

<phase>test</phase>

<goals>

<goal>report</goal>

</goals>

</execution>

</executions>

</plugin>

参考博文.

https://www.cnblogs.com/fnlingnzb-learner/p/10637802.html

依次执行clean/compile/test

遇到问题,没有生成测试报告,也没报错信息。查看控制台信息,发现单元测试被跳过执行。

修改配置后,继续执行,发现如下信息,Skipping JaCoCo execution due to missing execution data file.

去必应搜索查找原因,

https://www.cnblogs.com/trimphNuan/p/13863269.html

说是配置文件中配置了argLine 配置项,导致出现问题,去除后重新执行,代码覆盖率生成成功。

可以点击进入查看每一行代码的覆盖率。绿色的表示测试时已经已经覆盖到该行的代码,粉色的表示未覆盖到。

至此,单元测试操作,并且生成代码覆盖率完成。

最后可以参考一下阿里巴巴写的一篇关于单元测试的博文:《5个编写技巧,有效提高单元测试实践》

https://mp.weixin.qq.com/s/wQjFlXbK3MqKTUX2TfRR0g

使用Mockito与Squaretest进行单元测试.的更多相关文章

  1. 基于mockito做有效的单元测试

    概述 本文讲解的主要是有效和单元的思想,并不是说如何编写单元测试,用于改善和提高开发效率.编码风格.编码可读性和单测效率,不盲目追求覆盖率. 背景 现在很多单元测试只是利用@Test注解把代码或者整个 ...

  2. dubbo应用程序的单元测试环境搭建(springtest,powermock,mockito)

    转:http://blog.csdn.net/yys79/article/details/66472797 最近,项目中频繁用到dubbo,而且java工程用引用了几十个关联系统的服务(如用户认证,基 ...

  3. [Java SE/Junit] 基于Java的单元测试框架Mockito

    Mockito 是一个模拟测试框架,主要功能是在单元测试中模拟类/对象的行为. 1 为什么要使用Mockito? Mock可以理解为创建一个虚假的对象,或者说模拟出一个对象.在测试环境中用来替换掉真实 ...

  4. junit+mock+spring-test构建后台单元测试

    from:从0开始,构建前后端分离应用 1. 一些基本概念 1.1 为什么要进行单元测试?我自己的理解是 1.能够快速发现问题.避免衍生BUG的出现     在对一些现有代码进行修改时,或者修改现有B ...

  5. 学习 Spring Boot:(二十九)Spring Boot Junit 单元测试

    前言 JUnit 是一个回归测试框架,被开发者用于实施对应用程序的单元测试,加快程序编制速度,同时提高编码的质量. JUnit 测试框架具有以下重要特性: 测试工具 测试套件 测试运行器 测试分类 了 ...

  6. Mockito图书馆

    转载:https://static.javadoc.io/org.mockito/mockito-core/2.12.0/org/mockito/Mockito.html#42 org.mockito ...

  7. Mockito 学习资料

    Mockito 学习资料 网址 单元测试指南:Mockito https://blinkfox.github.io/2018/11/15/hou-duan/java/dan-yuan-ce-shi-z ...

  8. Mockito鸡尾酒第一杯 单测Mock

    鸡尾酒 Mockito是Java的单元测试Mock框架. 它的logo是一杯古巴最著名的鸡尾酒Mojito, Mojito鸡尾酒,源自古巴的哈瓦那,带有浓厚的加勒比海风情. 并不浓烈,但是喝一杯下去, ...

  9. Mockito 简介

    Mockito 是一种 Java Mock 框架,主要是用来做 Mock 测试,它可以模拟任何 Spring 管理的 Bean.模拟方法的返回值.模拟抛出异常等等,在了解 Mockito 的具体用法之 ...

  10. Android Weekly Notes Issue #233

    Android Weekly Issue #233 November 27th, 2016 Android Weekly Issue #233 本期内容包括: 用Mockito做RxJava的单元测试 ...

随机推荐

  1. 3.2 IDAPro脚本IDC常用函数

    IDA Pro内置的IDC脚本语言是一种灵活的.C语言风格的脚本语言,旨在帮助逆向工程师更轻松地进行反汇编和静态分析.IDC脚本语言支持变量.表达式.循环.分支.函数等C语言中的常见语法结构,并且还提 ...

  2. 2.0 熟悉CheatEngine修改器

    Cheat Engine 一般简称为CE,它是一款功能强大的开源内存修改工具,其主要功能包括.内存扫描.十六进制编辑器.动态调试功能于一体,且该工具自身附带了脚本工具,可以用它很方便的生成自己的脚本窗 ...

  3. MySQL创建, 修改,删除用户密码

    MySQL创建, 修改,删除用户密码 创建用新户名密码 创建用新户名密码: create user 'test1'@'localhost' identified by 'test1'; 修改用户名密码 ...

  4. 进程锁(互斥锁)(Python)

    3:# 抢票示例 import json import time from multiprocessing import Process,Lock def search(i): with open(' ...

  5. spring框架中RESTFUL接口相关注解

    1.说明 springboot 是国内最常用的web框架,因为它的http server功能是最重要的.本文列举了一些现在通用的restful形式的接口所需要的注解 2.@RequestMapping ...

  6. Win12不会取代Win11!真正目标是Google

    Windows 11之后自然应该是Windows 12,但这一次不太一样. 据多个消息源确认,Windows的下一个重大版本将不会是Windows 11的直接升级版,而是更专注于云和Web,同时大力接 ...

  7. 基于BiLSTM-CRF模型的分词、词性标注、信息抽取任务的详解,侧重模型推导细化以及LAC分词实践

    基于BiLSTM-CRF模型的分词.词性标注.信息抽取任务的详解,侧重模型推导细化以及LAC分词实践 1.GRU简介 GRU(Gate Recurrent Unit)门控循环单元,是[循环神经网络]( ...

  8. Mysql 创建外键、索引的问题

    总结: 创建外键的列,要求必须创建索引,通常我们只需要创建外键就可,索引他会自动创建.若是索引那里已经存在了组合索引,那么组合索引前面的第一列已经有了索引,所以创建外键的时候不会自动创建,但是后面的列 ...

  9. List大陷阱,这个问题,造成我的很多问题,我靠,今天才发现MyList.Duplicates := dupIgnore;不sort就无效。

    procedure TfrmMain.Button1Click(Sender: TObject); var MyLogisticsCompanyApi: TLogisticsCompanyApi; b ...

  10. .NET Core开发实战(第32课:集成事件:解决跨微服务的最终一致性)--学习笔记

    32 | 集成事件:解决跨微服务的最终一致性 首先看一下集成事件的工作原理 它的目的时为了实现系统的集成,它主要是用于系统里面多个微服务之间相互传递事件 集成事件的实现方式有两种,一种是图上显示的发布 ...