| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- import { createVNode } from '@vue/runtime-test'
- import { ShapeFlags } from '@vue/runtime-core'
- import { mergeProps } from '../src/vnode'
- import { Data } from '../src/component'
- describe('vnode', () => {
- test('create with just tag', () => {
- const vnode = createVNode('p')
- expect(vnode.type).toBe('p')
- expect(vnode.props).toBe(null)
- })
- test('create with tag and props', () => {
- const vnode = createVNode('p', {})
- expect(vnode.type).toBe('p')
- expect(vnode.props).toMatchObject({})
- })
- test('create with tag, props and children', () => {
- const vnode = createVNode('p', {}, ['foo'])
- expect(vnode.type).toBe('p')
- expect(vnode.props).toMatchObject({})
- expect(vnode.children).toMatchObject(['foo'])
- })
- test('create with 0 as props', () => {
- const vnode = createVNode('p', null)
- expect(vnode.type).toBe('p')
- expect(vnode.props).toBe(null)
- })
- describe('class normalization', () => {
- test('string', () => {
- const vnode = createVNode('p', { class: 'foo baz' })
- expect(vnode.props).toMatchObject({ class: 'foo baz' })
- })
- test('array<string>', () => {
- const vnode = createVNode('p', { class: ['foo', 'baz'] })
- expect(vnode.props).toMatchObject({ class: 'foo baz' })
- })
- test('array<object>', () => {
- const vnode = createVNode('p', {
- class: [{ foo: 'foo' }, { baz: 'baz' }]
- })
- expect(vnode.props).toMatchObject({ class: 'foo baz' })
- })
- test('object', () => {
- const vnode = createVNode('p', { class: { foo: 'foo', baz: 'baz' } })
- expect(vnode.props).toMatchObject({ class: 'foo baz' })
- })
- })
- describe('style normalization', () => {
- test('array', () => {
- const vnode = createVNode('p', {
- style: [{ foo: 'foo' }, { baz: 'baz' }]
- })
- expect(vnode.props).toMatchObject({ style: { foo: 'foo', baz: 'baz' } })
- })
- test('object', () => {
- const vnode = createVNode('p', { style: { foo: 'foo', baz: 'baz' } })
- expect(vnode.props).toMatchObject({ style: { foo: 'foo', baz: 'baz' } })
- })
- })
- describe('children normalization', () => {
- const nop = jest.fn
- test('null', () => {
- const vnode = createVNode('p', null, null)
- expect(vnode.children).toBe(null)
- expect(vnode.shapeFlag).toBe(ShapeFlags.ELEMENT)
- })
- test('array', () => {
- const vnode = createVNode('p', null, ['foo'])
- expect(vnode.children).toMatchObject(['foo'])
- expect(vnode.shapeFlag).toBe(
- ShapeFlags.ELEMENT + ShapeFlags.ARRAY_CHILDREN
- )
- })
- test('object', () => {
- const vnode = createVNode('p', null, { foo: 'foo' })
- expect(vnode.children).toMatchObject({ foo: 'foo' })
- expect(vnode.shapeFlag).toBe(
- ShapeFlags.ELEMENT + ShapeFlags.SLOTS_CHILDREN
- )
- })
- test('function', () => {
- const vnode = createVNode('p', null, nop)
- expect(vnode.children).toMatchObject({ default: nop })
- expect(vnode.shapeFlag).toBe(
- ShapeFlags.ELEMENT + ShapeFlags.SLOTS_CHILDREN
- )
- })
- test('string', () => {
- const vnode = createVNode('p', null, 'foo')
- expect(vnode.children).toBe('foo')
- expect(vnode.shapeFlag).toBe(
- ShapeFlags.ELEMENT + ShapeFlags.TEXT_CHILDREN
- )
- })
- })
- test.todo('normalizeVNode')
- test.todo('node type/shapeFlag inference')
- test.todo('cloneVNode')
- describe('mergeProps', () => {
- test('class', () => {
- let props1: Data = { class: 'c' }
- let props2: Data = { class: ['cc'] }
- let props3: Data = { class: [{ ccc: true }] }
- let props4: Data = { class: { cccc: true } }
- expect(mergeProps(props1, props2, props3, props4)).toMatchObject({
- class: 'c cc ccc cccc'
- })
- })
- test('style', () => {
- let props1: Data = {
- style: {
- color: 'red',
- fontSize: 10
- }
- }
- let props2: Data = {
- style: [
- {
- color: 'blue',
- with: '200px'
- },
- {
- with: '300px',
- height: '300px',
- fontSize: 30
- }
- ]
- }
- expect(mergeProps(props1, props2)).toMatchObject({
- style: {
- color: 'blue',
- with: '300px',
- height: '300px',
- fontSize: 30
- }
- })
- })
- test('handlers', () => {
- let clickHander1 = function() {}
- let clickHander2 = function() {}
- let focusHander2 = function() {}
- let props1: Data = { onClick: clickHander1 }
- let props2: Data = { onClick: clickHander2, onFocus: focusHander2 }
- expect(mergeProps(props1, props2)).toMatchObject({
- onClick: [clickHander1, clickHander2],
- onFocus: focusHander2
- })
- })
- test('default', () => {
- let props1: Data = { foo: 'c' }
- let props2: Data = { foo: {}, bar: ['cc'] }
- let props3: Data = { baz: { ccc: true } }
- expect(mergeProps(props1, props2, props3)).toMatchObject({
- foo: {},
- bar: ['cc'],
- baz: { ccc: true }
- })
- })
- })
- })
|