IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发测试 -> Powermockito和Mockito单元测试框架实战 -> 正文阅读

[开发测试]Powermockito和Mockito单元测试框架实战

1.Powermockito和Mockito之间的关系可以参考我的另一篇博客

Powermockito和Mockito测试框架分析以及一个简单的脚手架+单测的注意事项

2.maven依赖配置

<dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.13.1</version>
            <scope>test</scope>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.powermock/powermock-api-mockito2 -->
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-api-mockito2</artifactId>
            <version>2.0.9</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-module-junit4</artifactId>
            <version>2.0.9</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.assertj</groupId>
            <artifactId>assertj-core</artifactId>
            <version>3.19.0</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

3.java 代码准备

@Repository
public interface UserDAO {
    UserDTO getById(Long userId);
}
@Data
@AllArgsConstructor
@NoArgsConstructor
public class UserDTO {
    private Long userId;
    private String username;
}
@Service
public class UserService {
    @Resource
    private UserDAO userDAO;

    public UserDTO getById(Long userId) {
        if (Objects.isNull(userId) || userId == 0l) {
            return new UserDTO(1l, "zxliuyu");
        }
        return userDAO.getById(userId);
    }
     public UserDTO getByIdAllowException(Long userId) {
        if (Objects.isNull(userId) || userId == 0l) {
            throw new RuntimeException("用户Id不能为空");
        }

        return userDAO.getById(userId);
    }
    public UserDTO getByIdUseStaticMethod(Long userId) {
        userId = HttpClient.getUserId();
        return userDAO.getById(userId);
    }
    public UserDTO getByIdContainInternalCall(Long userId) {
        userId = getUserId();
        return userDAO.getById(userId);
    }

    public Long getUserId() {
        return 1l;
    }
}

4.单元测试代码

@RunWith(PowerMockRunner.class)
@PrepareForTest(HttpClient.class)
public class UserServiceTest {
    @InjectMocks
    private UserService userService;
    @Mock
    private UserDAO userDAO;
    @Rule
    public ExpectedException exception = ExpectedException.none();

    @Before
    public void init() {
        MockitoAnnotations.initMocks(this);
        PowerMockito.mockStatic(HttpClient.class);
    }

    @Test
    public void testGetByIdUserIdIsNull() {
        // Give
        Long userId = null;
        long expectedUserId = 1l;

        // When
        UserDTO user = userService.getById(userId);

        // Then
        Mockito.verify(userDAO, Mockito.times(0)).getById(any());
        Assertions.assertThat(user.getUserId()).isEqualTo(expectedUserId);
    }

    @Test
    public void testGetById() {
        // Give
        Long userId = 1l;
        long expectedUserId = 1l;

        // When
        when(userDAO.getById(any())).thenReturn(new UserDTO(1l, "zxliuyu"));
        UserDTO user = userService.getById(userId);

        // Then
        Mockito.verify(userDAO, Mockito.times(1)).getById(any());
        Assertions.assertThat(user.getUserId()).isEqualTo(expectedUserId);
    }

    @Test
    public void testGetByIdAllowExceptionUserIdIsNull() {
        // Give
        Long userId = null;

        // When
        exception.expect(RuntimeException.class);
        exception.expectMessage("用户Id不能为空");
        userService.getByIdAllowException(userId);

        // Then 如果是抛异常的可以没有then
    }

    @Test
    public void testGetByIdAllowException() {
        // Give
        Long userId = 1l;
        long expectedUserId = 1l;

        // When
        when(userDAO.getById(any())).thenReturn(new UserDTO(1l, "zxliuyu"));
        UserDTO user = userService.getByIdAllowException(userId);

        // Then
        Mockito.verify(userDAO, Mockito.times(1)).getById(any());
        Assertions.assertThat(user.getUserId()).isEqualTo(expectedUserId);
    }

    @Test
    public void testGetByIdUseStaticMethod() {
        // Give
        Long userId = 1l;
        long expectedUserId = 1l;

        // When
        when(userDAO.getById(any())).thenReturn(new UserDTO(1l, "zxliuyu"));
        when(HttpClient.getUserId()).thenReturn(userId);
        UserDTO user = userService.getByIdUseStaticMethod(userId);

        // Then
        Mockito.verify(userDAO, Mockito.times(1)).getById(any());
        Assertions.assertThat(user.getUserId()).isEqualTo(expectedUserId);
    }

    @Test
    public void testGetByIdContainInternalCall() {
        // Give
        Long userId = 1l;
        long expectedUserId = 1l;

        // When 如果出现方法内部调用,需要使用spy进行打桩,然后该类所有的方法都用打桩后的对象调用
        UserService userServiceSpy = PowerMockito.spy(userService);
        when(userDAO.getById(any())).thenReturn(new UserDTO(1l, "zxliuyu"));
        doReturn(userId).when(userServiceSpy).getUserId();
        UserDTO user = userServiceSpy.getByIdContainInternalCall(userId);

        // Then
        Mockito.verify(userDAO, Mockito.times(1)).getById(any());
        Assertions.assertThat(user.getUserId()).isEqualTo(expectedUserId);
    }
}

执行结果
在这里插入图片描述

5.注意事项

1.如果出现方法内部调用,需要使用spy进行打桩,然后该类所有的方法都用打桩后的对象调用

doReturn(userId).when(userServiceSpy).getUserId();

2.尽量不要mock使用私有方法,会有一些问题,如果私有方法需要单元测试,建议改成公共方法,加上VisibleForTesting代表这个方法是为了测试才改成公共方法

	@VisibleForTesting
    public Long getUserId() {
        return 1l;
    }
  开发测试 最新文章
pytest系列——allure之生成测试报告(Wind
某大厂软件测试岗一面笔试题+二面问答题面试
iperf 学习笔记
关于Python中使用selenium八大定位方法
【软件测试】为什么提升不了?8年测试总结再
软件测试复习
PHP笔记-Smarty模板引擎的使用
C++Test使用入门
【Java】单元测试
Net core 3.x 获取客户端地址
上一篇文章      下一篇文章      查看所有文章
加:2022-01-08 14:19:44  更:2022-01-08 14:21:05 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/18 5:33:17-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码