Jest 单元测试快速上手指南

技术交流群: fiora.suisuijiang.com/
原文连接: github.com/yinxin630/b…css

Jest 是一款简单, 容易上手且功能十分强大的测试框架html

安装

yarn add -D jestnode

使用

建立 test 目录, 添加 plus.spec.js 文件react

describe('example', () => {
    it('should equal 2', () => {
        expect(1 + 1).toBe(2);
    });
});
复制代码

执行 yarn jest 或者 yarn jest test/plus.spec.js 运行测试用例webpack

成功结果ios

image

失败结果git

image

输出测试覆盖率

在根目录建立 jest.config.js 配置文件github

module.exports = {
    collectCoverage: true,
};
复制代码

建立 plus.js 模块web

module.exports = function plus(a, b) {
    return a + b;
}
复制代码

修改测试用例使用模块typescript

const plus = require('../plus');

describe('example', () => {
    it('should equal 2', () => {
        expect(plus(1, 1)).toBe(2);
    });
});

复制代码

再次执行测试, 输出覆盖率以下 image

在浏览器中打开 coverage/lcov-report/index.html 能够浏览覆盖率结果页面 image image

忽略部分文件或者代码行的覆盖率

修改 plus.ts 模块, 添加更多分支

export default function plus(a: number, b: number) {
    if (a + b > 100) {
        return 0;
    } else if (a + b < 0) {
        return 0;
    } else {
        return a + b;
    }
}
复制代码

从新执行测试, 覆盖率输出结果 image

你能够完善测试用例, 或者可能有些文件(譬如 config)和代码分支并不须要测试, 能够将其在测试覆盖率结果中排除, 参考以下配置

  1. 忽略目录下全部文件

jest.config.js 中添加

collectCoverageFrom: [
    '**/*.{ts,tsx}',
    '!**/node_modules/**',
    '!**/[directory path]/**',
],
复制代码

! 开头的表示忽略与其匹配的文件

  1. 忽略单个文件

在该文件顶部添加 /* istanbul ignore file */

  1. 忽略一个函数, 一块分支逻辑或者一行代码

在该函数, 分支逻辑或者代码行的上一行添加 /* istanbul ignore next */

支持 Typescript

执行 yarn add -D typescript ts-jest @types/jest 安装 typescript 和声明 并在 jest.config.js 中添加 preset: 'ts-jest'

plus.js 重命名为 plus.ts

export default function plus(a: number, b: number) {
    return a + b;
}
复制代码

一样的, 将 plus.spec.js 重命名为 plus.spec.ts

import plus from '../plus'

describe('example', () => {
    it('should equal 2', () => {
        expect(plus(1, 1)).toBe(2);
    });
});
复制代码

执行测试, 结果和以前一致

执行单测时不校验 ts 类型

有时你可能会但愿不校验 ts 类型, 仅执行代码测试, 好比须要在 CI 中将类型校验和单元测试分为两个任务 在 jest.config.js 中添加以下内容

globals: {
    'ts-jest': {
        isolatedModules: true,
    },
}
复制代码

测试 React 组件

安装 react 依赖 yarn add react react-dom 和声明 yarn add -D @types/react 安装 react 测试库 yarn add -D @testing-library/react @testing-library/jest-dom

添加 typescript 配置文件 tsconfig.json

{
    "compilerOptions": {
        "target": "es2018",
        "strict": true,
        "moduleResolution": "node",
        "jsx": "react",
        "allowSyntheticDefaultImports": true,
        "esModuleInterop": true,
        "lib": ["es2015", "es2016", "es2017", "dom"]
    },
    "exclude": ["node_modules"]
}
复制代码

新增测试组件 Title.tsx

import React from 'react';

function Title() {
    return (
        <h1>Title</h1>
    );
}

export default Title;
复制代码

新增测试用例 test/Title.spec.tsx

/** * @jest-environment jsdom */

import React from 'react';
import { render } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import Title from '../Title';

describe('Title', () => {
    it('should render without error', () => {
        const { getByText } = render(<Title />);
        const $title = getByText('Title');
        expect($title).toBeInTheDocument();
    });
});
复制代码

执行 yarn jest test/Title.spec.ts 查看结果

处理静态资源引用

react 组件有时引用一些静态资源, 譬如图片或者 css 样式表, webpack 会正确的处理这些资源, 可是对 Jest 来说, 这些资源是没法识别的

建立 Title.less 样式表

h1 {
    color: red;
}
复制代码

修改 Ttitle.tsx, 添加样式引用 import './Title.less';

执行测试会报错 image

咱们须要配置 transform 对其处理

在根目录建立 jest.transformer.js

const path = require('path');

module.exports = {
    process(src, filename) {
        return `module.exports = ${JSON.stringify(path.basename(filename))};`;
    },
};
复制代码

这里是将资源文件名做为模块导出内容

修改 jest.config.js 添加以下配置

transform: {
    '\\.(less)$': '<rootDir>/jest.transformer.js', // 正则匹配, 处理 less 样式
},
复制代码

而后从新执行测试就能够了

处理 css in js

若是你使用了相似 linaria 这种 css in js 方案, 其中的 css 样式模板字符串是不支持运行时编译的

修改 Title.tsx

import React from 'react';
import { css } from 'linaria';

const title = css` color: red; `;

function Title() {
    return <h1 className={title}>Title</h1>;
}

export default Title;
复制代码

运行测试会报错

image

linaria 是经过 babel 插件将其预编译为 class 名的, 这里能够 mock 一下 css 函数, 返回一个随机值做为 class 名

在根目录建立 jest.setup.js

jest.mock('linaria', () => ({
    css: jest.fn(() => Math.floor(Math.random() * (10 ** 9)).toString(36)),
}));
复制代码

修改 jest.config.js 添加以下配置

setupFilesAfterEnv: ['./jest.setup.js'],
复制代码

从新执行测试就能够了

测试交互事件

新增 Count.tsx 组件

import React, { useState } from 'react';

function Count() {
    const [count, updateCount] = useState(0);
    return (
        <div> <span data-testid="count">{count}</span> <button data-testid="button" onClick={() => updateCount(count + 1)}> +1 </button> </div>
    );
}

export default Count;
复制代码

新增 test/Count.spec.tsx 组件

/** * @jest-environment jsdom */

import React from 'react';
import { render, fireEvent } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import Count from '../Count';

describe('Count', () => {
    it('should render without error', () => {
        const { getByTestId } = render(<Count />);
        const $count = getByTestId('count');
        const $button = getByTestId('button');
        expect($count).toHaveTextContent('0');
        fireEvent.click($button);
        expect($count).toHaveTextContent('1');
    });
});
复制代码

这里经过 testId 来查找元素, 使用 fireEvent 触发 click 事件

测试函数调用

新增 Button.tsx 组件

import React from 'react';

type Props = {
    onClick: () => void;
};

function Button({ onClick }: Props) {
    return <button onClick={onClick}>button</button>;
}

export default Button;
复制代码

添加 test/Button.spec.tsx 测试用例

/** * @jest-environment jsdom */

import React from 'react';
import { render, fireEvent } from '@testing-library/react';
import '@testing-library/jest-dom/extend-expect';
import Button from '../Button';

describe('Button', () => {
    it('should render without error', () => {
        const handleClick = jest.fn(); // mock 函数
        const { getByText } = render(<Button onClick={handleClick} />); // 传递 props
        const $button = getByText('button');
        fireEvent.click($button);
        expect(handleClick).toHaveBeenCalled(); // 指望其被调用
    });
});
复制代码

测试包含定时器的逻辑

// timer.ts
let cache = 'cache';

export default function timer() {
    setTimeout(() => {
        cache = '';
    }, 1000);
    return cache;
}
复制代码
// test/timer.spec.ts
import timer from '../timer'

jest.useFakeTimers(); // 替代原生计时器

describe('timer', () => {
    it('should clear cache after timer out', () => {
        expect(timer()).toBe('cache');
        jest.advanceTimersByTime(1000); // 让计时器前进 1000ms
        expect(timer()).toBe('');
    })
})
复制代码

mock 依赖模块

要测试的模块可能依赖于其余模块或者第三方 npm 包的结果, 咱们能够使用 Mock Functions 对其进行 mock

// test/mock.spec.ts
import { mocked } from 'ts-jest/utils';
import plus from '../plus';

jest.mock('../plus');

describe('mock', () => {
    it('should return mock value', () => {
        mocked(plus).   (50);
        expect(plus(1, 1)).toBe(50);
    });
});
复制代码

还有官网 mock axios npm 模块的例子 jestjs.io/docs/en/moc…

mock 环境变量和命令行参数

有的模块会从环境变量和命令行参数取值, 而且多是在模块初始化时获取的

// process.ts
const { env, argv } = process;

export function getEnvironmentValue() {
    return env.Value;
}

export function getProcessArgsValues() {
    return argv[2];
}
复制代码

这种状况咱们须要在每一个测试用例中, 使用动态 require 来运行时引入改模块, 而且设置其每次引入时删除 cache

// test/process.spec.ts
describe('mock process', () => {
    beforeEach(() => {
        jest.resetModules();
    });

    it('should return environment value', () => {
        process.env = {
            Value: 'value',
        };
        const { getEnvironmentValue } = require('../process');
        expect(getEnvironmentValue()).toBe('value');
    });

    it('should return process args value', () => {
        process.argv = ['value'];
        const { getProcessArgsValues } = require('../process');
        expect(getProcessArgsValues()).toBe('value');
    });
});
复制代码
相关文章
相关标签/搜索