vue3-yuanma/packages/runtime-core/__tests__/h.spec.ts

68 lines
2.0 KiB
TypeScript
Raw Normal View History

import { h } from '../src/h'
2019-08-30 04:47:00 +08:00
import { createVNode } from '../src/vnode'
import { RawSlots } from '../src/componentSlots'
2019-08-30 04:47:00 +08:00
// Since h is a thin layer on top of createVNode, we are only testing its
// own logic here. Details of vnode creation is tested in vnode.spec.ts.
describe('renderer: h', () => {
2019-08-30 04:47:00 +08:00
test('type only', () => {
expect(h('div')).toMatchObject(createVNode('div'))
})
test('type + props', () => {
expect(h('div', { id: 'foo' })).toMatchObject(
createVNode('div', { id: 'foo' })
)
})
test('type + omit props', () => {
// array
expect(h('div', ['foo'])).toMatchObject(createVNode('div', null, ['foo']))
// default slot
const Component = { template: '<br />' }
2019-08-30 04:47:00 +08:00
const slot = () => {}
expect(h(Component, slot)).toMatchObject(createVNode(Component, null, slot))
// single vnode
const vnode = h('div')
expect(h('div', vnode)).toMatchObject(createVNode('div', null, [vnode]))
2019-08-30 04:47:00 +08:00
// text
expect(h('div', 'foo')).toMatchObject(createVNode('div', null, 'foo'))
})
test('type + props + children', () => {
// array
expect(h('div', {}, ['foo'])).toMatchObject(createVNode('div', {}, ['foo']))
// slots
const slots = {} as RawSlots
expect(h('div', {}, slots)).toMatchObject(createVNode('div', {}, slots))
const Component = { template: '<br />' }
expect(h(Component, {}, slots)).toMatchObject(
createVNode(Component, {}, slots)
)
// default slot
2019-08-30 04:47:00 +08:00
const slot = () => {}
expect(h(Component, {}, slot)).toMatchObject(
createVNode(Component, {}, slot)
)
// single vnode
const vnode = h('div')
expect(h('div', {}, vnode)).toMatchObject(createVNode('div', {}, [vnode]))
2019-08-30 04:47:00 +08:00
// text
expect(h('div', {}, 'foo')).toMatchObject(createVNode('div', {}, 'foo'))
})
test('named slots with null props', () => {
const Component = { template: '<br />' }
2019-08-30 04:47:00 +08:00
const slot = () => {}
expect(
h(Component, null, {
2019-08-30 04:47:00 +08:00
foo: slot
})
).toMatchObject(
createVNode(Component, null, {
2019-08-30 04:47:00 +08:00
foo: slot
})
)
})
2019-08-24 03:32:19 +08:00
})