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 小米 华为 单反 装机 图拉丁
 
   -> 开发测试 -> 单元测试学习汇总 -> 正文阅读

[开发测试]单元测试学习汇总

原文链接:https://www.jianshu.com/p/e39bafff7714

1、 创建一个被测试类:FileUtil

package UT_Test;

import java.io.File;
import java.io.FileNotFoundException;

public class FileUtil {

    private static final String LOG_FILE = "root.log";

    public boolean mkdirs(String path) {
        log("start to mkdirs:" + path);
        File fileDir = new File(path);
        if (fileDir.exists()) {
            throw new IllegalArgumentException(path + "alreay exists!");
        } else {
            return fileDir.mkdirs();
        }
    }

    public File getLogFile() throws FileNotFoundException {
        log("start to get log file");
        String logPath = System.getenv("LOG_PATH");
        if (null == logPath) {
            throw new IllegalArgumentException("System env:LOG_PATH not exist!");
        }
        if (isExists(logPath)) {
            return new File(logPath + LOG_FILE);
        }
        throw new FileNotFoundException("File " + logPath + LOG_FILE + "not exist!");
    }

    private boolean isExists(String logPath) {
        return false;
    }

    public void log(String log) {
        System.out.println(log);
    }
}

2、测试类:FileUtilMkdirTest

package UT_Test;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;

import java.io.File;
import java.io.FileNotFoundException;

import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.Mockito;
import org.powermock.api.mockito.PowerMockito;
import org.powermock.core.classloader.annotations.PrepareForTest;
import org.powermock.modules.junit4.PowerMockRunner;

/**
 * 参考链接:
 *      https://www.jianshu.com/p/e39bafff7714
 */
@RunWith(PowerMockRunner.class)
@PrepareForTest(FileUtil.class)
public class FileUtilMkdirTest {
    @Before
    public void init() throws Exception {
        File fileDir = PowerMockito.mock(File.class);
        PowerMockito.whenNew(File.class).withAnyArguments().thenReturn(fileDir);
        PowerMockito.when(fileDir.exists()).thenReturn(false);
        PowerMockito.when(fileDir.mkdirs()).thenReturn(true);
    }

    @Test
    public void testMkdirs() {
        assertTrue(new FileUtil().mkdirs("testDir"));
    }

    @Test
    public void testGetLogFileWithException() {
        PowerMockito.mockStatic(System.class);
        PowerMockito.when(System.getenv("LOG_PATH")).thenReturn("./");
        try {
            new FileUtil().getLogFile();
            fail();
        } catch (FileNotFoundException e) {
            assertTrue(true);
        }
    }
    @Test
    public void testGetLogFile() throws Exception {
        PowerMockito.mockStatic(System.class);
        PowerMockito.when(System.getenv("LOG_PATH")).thenReturn("./");

        FileUtil fileUtil = PowerMockito.spy(new FileUtil());
        PowerMockito.when(fileUtil, "isExists", "./").thenReturn(true);

        File logFile = fileUtil.getLogFile();
        assertTrue(logFile != null);
    }
    @Test
    public void testGetLogFileWithoutLog() throws Exception {
        PowerMockito.mockStatic(System.class);
        PowerMockito.when(System.getenv("LOG_PATH")).thenReturn("./");

        FileUtil fileUtil = PowerMockito.spy(new FileUtil());
        PowerMockito.when(fileUtil, "isExists", "./").thenReturn(true);
        PowerMockito.doNothing().when(fileUtil, "log", Mockito.anyString());

        File logFile = fileUtil.getLogFile();
        assertTrue(logFile != null);
    }
}

3、 相关链接:

(1) JUnit单元测试5—PowerMock
https://www.jianshu.com/p/e39bafff7714
(2) 单元测试之PowerMock
https://www.cnblogs.com/kancy/p/13912443.html

  开发测试 最新文章
pytest系列——allure之生成测试报告(Wind
某大厂软件测试岗一面笔试题+二面问答题面试
iperf 学习笔记
关于Python中使用selenium八大定位方法
【软件测试】为什么提升不了?8年测试总结再
软件测试复习
PHP笔记-Smarty模板引擎的使用
C++Test使用入门
【Java】单元测试
Net core 3.x 获取客户端地址
上一篇文章      下一篇文章      查看所有文章
加:2021-12-23 16:01:58  更:2021-12-23 16:02:19 
 
开发: 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 4:18:52-

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