初次体验单元测试Jest

2021-03-07  本文已影响0人  取个帅气的名字真好

1、安装

初始化package.json

npm init -y 

安装jest

 yarn add jest

修改 scripts

{
  "name": "jest",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "jest"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "jest": "^26.6.3"
  }
}

index.js

function xxx1(e) {
  return e >= 10 ? '老友粉':"螺蛳粉"
}

function xxx2(e) {
  return e >= 2 ? '加蛋':"加青菜"
}
module.exports = {xxx1,xxx2}

index.test.js

const fendian = require('./index.js')
const { xxx1 , xxx2 }  = fendian

test('吃粉 10元',()=>{
    expect(xxx1(10)).toBe('老友粉')
})

test('加料  2',()=>{
    expect(xxx2(2)).toBe('加青菜')
})

运行test

yarn test
image.png
说明:期望得到 加青菜 但接受到 加蛋 测试不通过。
以上成功运行以上内容说明你已经成功一半了。
初始化jest.config.js配置
 npx jest --init

选项

//您要使用Typescript作为配置文件吗?
Would you like to use Typescript for the configuration file? … no
//选测试环境 node 或 web
✔ Choose the test environment that will be used for testing › jsdom (browser-like)
//是否生成测试覆盖率
✔ Do you want Jest to add coverage reports? … yes
  //使用哪个提供程序来检测覆盖范围的代码
✔ Which provider should be used to instrument code for coverage? › babel
//自动清除模拟调用和实例
✔ Automatically clear mock calls and instances between every test? … yes

运行以上 npx jest --init 会在根目录生成jest.config.js

测试覆盖率

coverageDirectory 测试覆盖率输出目录

  coverageDirectory: "coverage",
 npx jest --coverage

本地会生成一个coverage文件夹(可以用浏览器打开), 终端也会生成简单的图表。


image.png
image.png

2、常用匹配器

toBe() :全等于
toEqual():递归检查对象或数组的每个字段
toBeNull():仅匹配null值
toBeUndefined():仅匹配undefined值
toBeDefined():与toBeUndifined相反,只要定义过就可以通过(包括null)。
toBeTruthy():true,就相当于判断真的
toBeFalsy():false,就相当于判断假的
toBeGreaterThan():大于 >
toBeGreaterThanOrEqual():大于等于 >=
toBeLessThan():小于 <
toBeLessThanOrEqual():小于等于 <=
toBeCloseTo():浮点数的近似相等比较
toMatch():字符串正则比较
toContain():数组比较
toThrow():对异常进行处理的匹配器,检测一个方法会不会抛出异常
not():非。相反的

test(`toBe()`, () => {
  expect(1 + 1).toBe(2)// 通过
  // expect(1+1).toBe(2) // 不通过
})
test(`toEqual() 对象`, () => {
  const obj = { xx: '苏宋霖' }
  expect(obj).toEqual({ xx: '苏宋霖' })// 通过
  // expect(obj).toEqual({xx:'苏宋霖',x:1})  // 不通过
})
test(`toEqual() 数组`, () => {
  const arr = [1, 2, 3]
  expect(arr).toEqual([1, 2, 3]) // 通过
  // expect(arr).toEqual([1,2]) // 不通过
})
test(`toBeNull()`, () => {
  const a = null // 通过
  // const a = '' // 不通过 undefined  or ''
  expect(a).toBeNull()
})
test(`toBeUndefined()`, () => {
  const a = undefined // 通过
  // const a = null // 不通过 null or ''  or  123
  expect(a).toBeUndefined()
})
test(`toBeDefined()`, () => {
  const a = '苏宋霖' // 通过   '' or null or 123
  // const a = undefined // 不通过
  expect(a).toBeDefined()
})
test(`toBeTruthy()`, () => {
  const a = 1 // 通过
  // const a = '' // 不通过  null or undefined or 0 or ''
  expect(a).toBeTruthy()
})
test(`toBeFalsy()`, () => {
  const a = '' // 通过  null or undefined or 0 or ''
  // const a = '11' // 不通过 1 or '字符串'
  expect(a).toBeFalsy()
})
test(`toBeGreaterThan()`, () => {
  const a = 10
  expect(a).toBeGreaterThan(9)   // 通过
  // expect(a).toBeGreaterThan(10)  // 不通过
})
test(`toBeGreaterThanOrEqual()`, () => {
  const a = 10
  expect(a).toBeGreaterThanOrEqual(10)   // 通过
  // expect(a).toBeGreaterThanOrEqual(11)  // 不通过
})
test(`toBeLessThan()`, () => {
  const a = 10
  expect(a).toBeLessThan(11) // 通过
  // expect(a).toBeLessThan(9) // 不通过
})
test(`toBeLessThanOrEqual()`, () => {
  const a = 10
  expect(a).toBeLessThanOrEqual(10) // 通过
  // expect(a).toBeLessThanOrEqual(2)// 不通过
})
test(`toBeCloseTo()`, () => {
  const a = 0.1
  const b = 0.2
  expect(a + b).toBeCloseTo(0.3)  // 通过
  // expect(a+b).toBe(0.3) // 不通过
})
test(`toMatch()`, () => {
  const a = '苏宋霖哈哈哈嘻嘻嘻'
  expect(a).toMatch('苏宋霖') // 通过
  // expect(a).toMatch('苏宋霖哈哈哈嘻嘻嘻1')  // 不通过
})

-toContain():数组比较

test(`toContain()`, () => {
  const a = [1, 2, 3]
  expect(a).toContain(1)// 通过
  // expect(a).toContain('1') //[1] // 不通过
})
const errorFn = () => {
  throw new Error('报错了')
}
const errorFn1 = () => {
  console.log(111);
}
test(`toThrow()`, () => {
  expect(errorFn).toThrow()// 通过
  // expect(errorFn1).toThrow()  // 不通过
})
test(`not()`, () => {
  const a = 11
  expect(a).not.toBe(12) // 通过
  // expect(a).not.toBe(11) // 不通过
})

3、异步处理

yarn add axios
yarn add mockjs

新建mockData.js

import Mock from 'mockjs'
Mock.mock('/xx','get',{
    "code": "1",
})

新建axiosMock.js

import './mockData.js'
import axios from 'axios'

export const moack1 = (fn) => {
  axios.get('/xx').then((res) => {
    fn(res.data)
  })
}
export const moack2 = () => {
  return new Promise((resolve, reject) => {
    resolve(111)
  })
}
export const moack3 = (fn) => {
  return axios.get('/xx')
}

修改index.test.js

import {moack1,moack2, moack3}  from './axiosMock'

test('异步处理 async...await',async () => {
 const data =  await moack2()
  expect(data).toBe(111)
})

test('异步处理 done', (done) => {
  moack1((data)=>{
    expect(data).toEqual({code: "1"})
    done()
  })
})
test('异步处理 return', () => {
 return moack3().then(({data})=>{
      expect(data).toEqual({code: '1'})
    })
})
异步处理错误 如404

修改axiosMock.js

export const moack4 = ()=>{
  return new Promise((resolve, reject) => {
    setTimeout(() => {
      reject(404)
    }, 1000 * 1);
  })
}

修改index.test.js

test('异步处理 404', () => {
  // expect.assertions(1)  // 断言必须执行一次expect
  return moack4().catch((res) => {
    expect(res.toString().indexOf('404') > -1).toBe(true)
  })
})

声明周期钩子

beforeAll(()=>{
  console.log('所有测试用例开始之前执行')
})
afterAll(()=>{
  console.log('所有测试用例完成后才执行')
})
beforeEach(()=>{
  console.log('每个测试用例 开始 之前执行')
})
afterEach(()=>{
  console.log('每个测试用例 结束 之后执行')
})

分组模块 describe

describe('异步模块',()=>{
  test('异步处理 async...await', async () => {
    const data = await moack2()
    expect(data).toBe(111)
  })
})
describe(' 常用匹配器模块',()=>{
 test('吃粉 10元', () => {
    expect(xxx1(10)).toBe('老友粉')
  })
})
image.png

4、常见问题

如何让Jest使用import导入?
yarn add  @babel/core  @babel/preset-env -D

根目录新建.babelrc

{
  "presets":[
      [
              "@babel/preset-env",{
              "targets":{
                  "node":"current"
              }
          }
      ]
  ]
}

修改index.test.js

- const fendian = require('./index.js')
+ import fendian from './index'

只运行某个测试用例或者运行某个模块only
  test.only('异步处理 404', () => {
    // expect.assertions(1)  // 断言必须执行一次expect
    return moack4().catch((res) => {
      expect(res.toString().indexOf('404') > -1).toBe(true)
    })
  })
只运行某个测试用例
只运行某个模块

在线DEMO

上一篇下一篇

猜你喜欢

热点阅读