当前位置:   article > 正文

vue-单元测试_单元测试 shallowmount propsdata

单元测试 shallowmount propsdata

单元测试

TPshop 中国免费商城系统 - 搜豹商城系统 - 免费50小时 Vue 视频教程 立即查看 >

Vue CLI 拥有开箱即用的通过 Jest 或 Mocha 进行单元测试的内置选项。我们还有官方的 Vue Test Utils 提供更多详细的指引和自定义设置。

简单的断言

你不必为了可测性在组件中做任何特殊的操作,导出原始设置就可以了:

  1. <template>
  2. <span>{{ message }}</span>
  3. </template>
  4. <script>
  5. export default {
  6. data () {
  7. return {
  8. message: 'hello!'
  9. }
  10. },
  11. created () {
  12. this.message = 'bye!'
  13. }
  14. }
  15. </script>

然后随着 Vue Test Utils 导入组件,你可以使用许多常见的断言 (这里我们使用的是 Jest 风格的 expect 断言作为示例):

  1. // 导入 Vue Test Utils 内的 `shallowMount` 和待测试的组件
  2. import { shallowMount } from '@vue/test-utils'
  3. import MyComponent from './MyComponent.vue'
  4. // 挂载这个组件
  5. const wrapper = shallowMount(MyComponent)
  6. // 这里是一些 Jest 的测试,你也可以使用你喜欢的任何断言库或测试
  7. describe('MyComponent', () => {
  8. // 检查原始组件选项
  9. it('has a created hook', () => {
  10. expect(typeof MyComponent.created).toBe('function')
  11. })
  12. // 评估原始组件选项中的函数的结果
  13. it('sets the correct default data', () => {
  14. expect(typeof MyComponent.data).toBe('function')
  15. const defaultData = MyComponent.data()
  16. expect(defaultData.message).toBe('hello!')
  17. })
  18. // 检查 mount 中的组件实例
  19. it('correctly sets the message when created', () => {
  20. expect(wrapper.vm.$data.message).toBe('bye!')
  21. })
  22. // 创建一个实例并检查渲染输出
  23. it('renders the correct message', () => {
  24. expect(wrapper.text()).toBe('bye!')
  25. })
  26. })

编写可被测试的组件

很多组件的渲染输出由它的 props 决定。事实上,如果一个组件的渲染输出完全取决于它的 props,那么它会让测试变得简单,就好像断言不同参数的纯函数的返回值。看下面这个例子:

  1. <template>
  2. <p>{{ msg }}</p>
  3. </template>
  4. <script>
  5. export default {
  6. props: ['msg']
  7. }
  8. </script>

你可以使用 Vue Test Utils 来在输入不同 prop 时为渲染输出下断言:

  1. import { shallowMount } from '@vue/test-utils'
  2. import MyComponent from './MyComponent.vue'
  3. // 挂载元素并返回已渲染的组件的工具函数
  4. function getMountedComponent(Component, propsData) {
  5. return shallowMount(Component, {
  6. propsData
  7. })
  8. }
  9. describe('MyComponent', () => {
  10. it('renders correctly with different props', () => {
  11. expect(
  12. getMountedComponent(MyComponent, {
  13. msg: 'Hello'
  14. }).text()
  15. ).toBe('Hello')
  16. expect(
  17. getMountedComponent(MyComponent, {
  18. msg: 'Bye'
  19. }).text()
  20. ).toBe('Bye')
  21. })
  22. })

断言异步更新

由于 Vue 进行异步更新 DOM 的情况,一些依赖 DOM 更新结果的断言必须在 vm.$nextTick() resolve 之后进行:

  1. // 在状态更新后检查生成的 HTML
  2. it('updates the rendered message when wrapper.message updates', async () => {
  3. const wrapper = shallowMount(MyComponent)
  4. wrapper.setData({ message: 'foo' })
  5. // 在状态改变后和断言 DOM 更新前等待一刻
  6. await wrapper.vm.$nextTick()
  7. expect(wrapper.text()).toBe('foo')
  8. })

关于更深入的 Vue 单元测试的内容,请移步 Vue Test Utils 以及我们关于 Vue 组件的单元测试的 cookbook 文章。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/820711
推荐阅读
相关标签
  

闽ICP备14008679号