2020-06-16 04:46:29 +08:00
|
|
|
import {
|
|
|
|
ref,
|
|
|
|
h,
|
|
|
|
render,
|
|
|
|
nodeOps,
|
|
|
|
serializeInner,
|
|
|
|
nextTick,
|
|
|
|
VNode
|
|
|
|
} from '@vue/runtime-test'
|
|
|
|
|
|
|
|
describe('renderer: component', () => {
|
|
|
|
test('should update parent(hoc) component host el when child component self update', async () => {
|
|
|
|
const value = ref(true)
|
|
|
|
let parentVnode: VNode
|
|
|
|
let childVnode1: VNode
|
|
|
|
let childVnode2: VNode
|
|
|
|
|
|
|
|
const Parent = {
|
|
|
|
render: () => {
|
|
|
|
// let Parent first rerender
|
|
|
|
return (parentVnode = h(Child))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const Child = {
|
|
|
|
render: () => {
|
|
|
|
return value.value
|
|
|
|
? (childVnode1 = h('div'))
|
|
|
|
: (childVnode2 = h('span'))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(h(Parent), root)
|
|
|
|
expect(serializeInner(root)).toBe(`<div></div>`)
|
|
|
|
expect(parentVnode!.el).toBe(childVnode1!.el)
|
|
|
|
|
|
|
|
value.value = false
|
|
|
|
await nextTick()
|
|
|
|
expect(serializeInner(root)).toBe(`<span></span>`)
|
|
|
|
expect(parentVnode!.el).toBe(childVnode2!.el)
|
|
|
|
})
|
2020-07-15 21:34:23 +08:00
|
|
|
|
|
|
|
it('should create an Component with props', () => {
|
|
|
|
const Comp = {
|
|
|
|
render: () => {
|
|
|
|
return h('div')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(h(Comp, { id: 'foo', class: 'bar' }), root)
|
|
|
|
expect(serializeInner(root)).toBe(`<div id="foo" class="bar"></div>`)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should create an Component with direct text children', () => {
|
|
|
|
const Comp = {
|
|
|
|
render: () => {
|
|
|
|
return h('div', 'test')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(h(Comp, { id: 'foo', class: 'bar' }), root)
|
|
|
|
expect(serializeInner(root)).toBe(`<div id="foo" class="bar">test</div>`)
|
|
|
|
})
|
|
|
|
|
|
|
|
it('should update an Component tag which is already mounted', () => {
|
|
|
|
const Comp1 = {
|
|
|
|
render: () => {
|
|
|
|
return h('div', 'foo')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(h(Comp1), root)
|
|
|
|
expect(serializeInner(root)).toBe('<div>foo</div>')
|
|
|
|
|
|
|
|
const Comp2 = {
|
|
|
|
render: () => {
|
|
|
|
return h('span', 'foo')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
render(h(Comp2), root)
|
|
|
|
expect(serializeInner(root)).toBe('<span>foo</span>')
|
|
|
|
})
|
2020-09-15 06:58:30 +08:00
|
|
|
|
|
|
|
// #2072
|
|
|
|
it('should not update Component if only changed props are declared emit listeners', () => {
|
|
|
|
const Comp1 = {
|
|
|
|
emits: ['foo'],
|
|
|
|
updated: jest.fn(),
|
|
|
|
render: () => null
|
|
|
|
}
|
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(
|
|
|
|
h(Comp1, {
|
|
|
|
onFoo: () => {}
|
|
|
|
}),
|
|
|
|
root
|
|
|
|
)
|
|
|
|
render(
|
|
|
|
h(Comp1, {
|
|
|
|
onFoo: () => {}
|
|
|
|
}),
|
|
|
|
root
|
|
|
|
)
|
|
|
|
expect(Comp1.updated).not.toHaveBeenCalled()
|
|
|
|
})
|
2020-06-16 04:46:29 +08:00
|
|
|
})
|