What are “stubbed child components” in Vue Test Utils?

后端 未结 2 1129
北荒
北荒 2021-02-08 14:50

Vue Test Utils has an API method called shallowMount() that:

...creates a Wrapper that contains the mounted and rendered Vue component, but w

2条回答
  •  日久生厌
    2021-02-08 15:50

    What exactly are stubbed child components?

    A stubbed child component is a replacement for a child component rendered by the component under test.

    Imagine you have a ParentComponent component that renders a ChildComponent:

    const ParentComponent = {
      template: `
        
    `, components: { ChildComponent } }

    ChildComponent renders a globally registered component and calls an injected instance method when it's mounted:

    const ChildComponent = {
      template: ``,
      mounted() {
        this.$injectedMethod()
      }
    }
    

    If you use shallowMount to mount the ParentComponent, Vue Test Utils will render a stub of ChildComponent in place of than the original ChildComponent. The stub component does not render the ChildComponent template, and it doesn't have the mounted lifecycle method.

    If you called html on the ParentComponent wrapper, you would see the following output:

    const wrapper = shallowMount(ParentComponent)
    wrapper.html() // 

    The stub looks a bit like this:

    const Stub = {
      props: originalComonent.props,
      render(h) {
        return h(tagName, this.$options._renderChildren)
      }
    }
    

    Because the stub component is created with information from the original component, you can use the original component as a selector:

    const wrapper = shallowMount(ParentComponent)
    wrapper.find(ChildComponent).props()
    

    Vue is unaware that it's rendering a stubbed component. Vue Test Utils sets it so that when Vue attempts to resolve the component, it will resolve with the stubbed component rather than the original.

    Which parts of the Vue component lifecycle do they go through?

    Stubs go through all parts of the Vue lifecycle.

    Is there a way to pre-program their behavior?

    Yes, you can create a custom stub and pass it using the stubs mounting option:

    const MyStub = {
      template: '
    ', methods: { someMethod() {} } } mount(TestComponent, { stubs: { 'my-stub': MyStub } })

提交回复
热议问题