You’re browsing the documentation for Vue Test Utils for Vue v2.x and earlier.
To read docs for Vue Test Utils for Vue 3, click here.
测试异步行为
在编写测试代码时你将会遇到两种异步行为:
- 来自 Vue 的更新
- 来自外部行为的更新
来自 Vue 的更新
Vue 会异步的将未生效的 DOM 批量更新,避免因数据反复变化而导致不必要的渲染。
你可以阅读Vue 文档了解更多关于异步指更新的信息。
在实践中,这意味着变更一个响应式 property 之后,为了断言这个变化,你的测试需要等待 Vue 完成更新。其中一种办法是使用 await Vue.nextTick()
,一个更简单且清晰的方式则是 await
那个你变更状态的方法,例如 trigger
。
// 在测试框架中,编写一个测试用例
it('button click should increment the count text', async () => {
expect(wrapper.text()).toContain('0')
const button = wrapper.find('button')
await button.trigger('click')
expect(wrapper.text()).toContain('1')
})
和等待上述触发等价:
it('button click should increment the count text', async () => {
expect(wrapper.text()).toContain('0')
const button = wrapper.find('button')
button.trigger('click')
await Vue.nextTick()
expect(wrapper.text()).toContain('1')
})
可以被 await 的方法有:
来自外部行为的更新
在 Vue 之外最常见的一种异步行为就是在 Vuex 中进行 API 调用。以下示例将展示如何测试在 Vuex 中进行 API 调用的方法。本示例使用 Jest 运行测试并模拟 HTTP 库axios
。可以在这里找到有关 Jest Mock 的更多信息。
axios
mock 的实现如下所示:
export default {
get: () => Promise.resolve({ data: 'value' })
}
当按钮被点击时,组件将会产生一个 API 调用,并且将响应的返回内容赋值给 value
。
<template>
<button @click="fetchResults">{{ value }}</button>
</template>
<script>
import axios from 'axios'
export default {
data() {
return {
value: null
}
},
methods: {
async fetchResults() {
const response = await axios.get('mock/service')
this.value = response.data
}
}
}
</script>
可以这样编写测试:
import { shallowMount } from '@vue/test-utils'
import Foo from './Foo'
jest.mock('axios', () => ({
get: Promise.resolve('value')
}))
it('fetches async when a button is clicked', () => {
const wrapper = shallowMount(Foo)
wrapper.find('button').trigger('click')
expect(wrapper.text()).toBe('value')
})
上面的代码代码会执行失败,这是因为我们在 fetchResults
方法执行完毕前就对结果进行断言。绝大多数单元测试框架都会提供一个回调来通知你测试将在何时完成。Jest 和 Mocha 都使用done
这个方法。我们可以将 done
与 $nextTick
或 setTimeout
结合使用,以确保在进行断言前已经处理完所有的 Promise 回调。
it('fetches async when a button is clicked', done => {
const wrapper = shallowMount(Foo)
wrapper.find('button').trigger('click')
wrapper.vm.$nextTick(() => {
expect(wrapper.text()).toBe('value')
done()
})
})
setTimeout 也可以使测试通过的原因是,Promise 回调的微任务队列会在 setTimeout 回调的(宏)任务队列之前执行。这意味着当 setTimeout 回调执行时,微任务队列上的所有 Promise 回调已经被执行过了。另一方面,$nextTick
也存在调度微任务的情况,但是由于微任务队列是先进先出的,因此也保证了在进行断言时已经处理完所有的 Promise 回调。请参阅此处了解更多详细说明。
另外一个使用 async
方法的解决方案是使用类似 flush-promises 的包。flush-promises
会刷新所有处于 pending 状态或 resolved 状态的 Promise。你可以用 await
语句来等待 flushPromises
刷新 Promise 的状态,这样可以提升你代码的可读性。
修改以后的测试代码:
import { shallowMount } from '@vue/test-utils'
import flushPromises from 'flush-promises'
import Foo from './Foo'
jest.mock('axios')
it('fetches async when a button is clicked', async () => {
const wrapper = shallowMount(Foo)
wrapper.find('button').trigger('click')
await flushPromises()
expect(wrapper.text()).toBe('value')
})
相同的技术细节也可以应用在处理 Vuex 的 action 上,默认情况下,它也会返回一个 Promise。
await button.trigger()
?
为什么不使用 如之前所解释的,Vue 更新其组件和完成其 Promise 对象的时机不同,如 axios
解析出的那个。
一个易于遵循的规则是在诸如 trigger
或 setProps
的变更时始终使用 await
。如果你的代码依赖一些诸如 axios
的异步操作,也要为 flushPromises
加入一个 await。