初次体验单元测试Jest

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():非。相反的

  • toBe() :全等于
test(`toBe()`, () => {
  expect(1 + 1).toBe(2)// 通过
  // expect(1+1).toBe(2) // 不通过
})
  • toEqual():递归检查对象或数组的每个字段
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]) // 不通过
})
  • toBeNull():仅匹配null值
test(`toBeNull()`, () => {
  const a = null // 通过
  // const a = '' // 不通过 undefined  or ''
  expect(a).toBeNull()
})
  • toBeUndefined():仅匹配undefined值
test(`toBeUndefined()`, () => {
  const a = undefined // 通过
  // const a = null // 不通过 null or ''  or  123
  expect(a).toBeUndefined()
})
  • toBeDefined():与toBeUndifined相反,只要定义过就可以通过(包括null)。
test(`toBeDefined()`, () => {
  const a = '苏宋霖' // 通过   '' or null or 123
  // const a = undefined // 不通过
  expect(a).toBeDefined()
})
  • toBeTruthy():true,就相当于判断真的
test(`toBeTruthy()`, () => {
  const a = 1 // 通过
  // const a = '' // 不通过  null or undefined or 0 or ''
  expect(a).toBeTruthy()
})
  • toBeFalsy():false,就相当于判断假的
test(`toBeFalsy()`, () => {
  const a = '' // 通过  null or undefined or 0 or ''
  // const a = '11' // 不通过 1 or '字符串'
  expect(a).toBeFalsy()
})
  • toBeGreaterThan():大于 >
test(`toBeGreaterThan()`, () => {
  const a = 10
  expect(a).toBeGreaterThan(9)   // 通过
  // expect(a).toBeGreaterThan(10)  // 不通过
})
  • toBeGreaterThanOrEqual():大于等于 >=
test(`toBeGreaterThanOrEqual()`, () => {
  const a = 10
  expect(a).toBeGreaterThanOrEqual(10)   // 通过
  // expect(a).toBeGreaterThanOrEqual(11)  // 不通过
})
  • toBeLessThan():小于 <
test(`toBeLessThan()`, () => {
  const a = 10
  expect(a).toBeLessThan(11) // 通过
  // expect(a).toBeLessThan(9) // 不通过
})
  • toBeLessThanOrEqual():小于等于 <=
test(`toBeLessThanOrEqual()`, () => {
  const a = 10
  expect(a).toBeLessThanOrEqual(10) // 通过
  // expect(a).toBeLessThanOrEqual(2)// 不通过
})
  • toBeCloseTo():浮点数的近似相等比较
test(`toBeCloseTo()`, () => {
  const a = 0.1
  const b = 0.2
  expect(a + b).toBeCloseTo(0.3)  // 通过
  // expect(a+b).toBe(0.3) // 不通过
})
  • toMatch():字符串正则比较
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] // 不通过
})
  • toThrow():对异常进行处理的匹配器,检测一个方法会不会抛出异常
const errorFn = () => {
  throw new Error('报错了')
}
const errorFn1 = () => {
  console.log(111);
}
test(`toThrow()`, () => {
  expect(errorFn).toThrow()// 通过
  // expect(errorFn1).toThrow()  // 不通过
})
  • not():非。相反的
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:所有测试用例开始之前执行
  • afterAll:所有测试用例完成后才执行
  • beforeEach:每个测试用例开始之前执行
  • afterEach:每个测试用例结束之后执行
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

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,772评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,458评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,610评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,640评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,657评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,590评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,962评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,631评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,870评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,611评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,704评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,386评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,969评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,944评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,179评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,742评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,440评论 2 342

推荐阅读更多精彩内容