2019-09-05 06:16:11 +08:00
|
|
|
import {
|
|
|
|
h,
|
|
|
|
nodeOps,
|
|
|
|
render,
|
|
|
|
serializeInner,
|
|
|
|
triggerEvent,
|
|
|
|
TestElement,
|
|
|
|
nextTick,
|
|
|
|
renderToString,
|
2019-09-06 06:48:49 +08:00
|
|
|
ref,
|
|
|
|
createComponent
|
2019-09-05 06:16:11 +08:00
|
|
|
} from '@vue/runtime-test'
|
|
|
|
|
2019-09-04 23:36:27 +08:00
|
|
|
describe('api: options', () => {
|
2019-09-05 06:16:11 +08:00
|
|
|
test('data', async () => {
|
2019-09-06 06:48:49 +08:00
|
|
|
const Comp = createComponent({
|
2019-09-05 06:16:11 +08:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
foo: 1
|
|
|
|
}
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
return h(
|
|
|
|
'div',
|
|
|
|
{
|
|
|
|
onClick: () => {
|
|
|
|
this.foo++
|
|
|
|
}
|
|
|
|
},
|
|
|
|
this.foo
|
|
|
|
)
|
|
|
|
}
|
2019-09-06 06:48:49 +08:00
|
|
|
})
|
2019-09-05 06:16:11 +08:00
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(h(Comp), root)
|
|
|
|
expect(serializeInner(root)).toBe(`<div>1</div>`)
|
|
|
|
|
|
|
|
triggerEvent(root.children[0] as TestElement, 'click')
|
|
|
|
await nextTick()
|
|
|
|
expect(serializeInner(root)).toBe(`<div>2</div>`)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('computed', async () => {
|
2019-09-06 06:48:49 +08:00
|
|
|
const Comp = createComponent({
|
2019-09-05 06:16:11 +08:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
foo: 1
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2019-09-06 06:48:49 +08:00
|
|
|
bar(): number {
|
2019-09-05 06:16:11 +08:00
|
|
|
return this.foo + 1
|
|
|
|
},
|
2019-09-06 06:48:49 +08:00
|
|
|
baz(): number {
|
2019-09-05 06:16:11 +08:00
|
|
|
return this.bar + 1
|
|
|
|
}
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
return h(
|
|
|
|
'div',
|
|
|
|
{
|
|
|
|
onClick: () => {
|
|
|
|
this.foo++
|
|
|
|
}
|
|
|
|
},
|
|
|
|
this.bar + this.baz
|
|
|
|
)
|
|
|
|
}
|
2019-09-06 06:48:49 +08:00
|
|
|
})
|
2019-09-05 06:16:11 +08:00
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(h(Comp), root)
|
|
|
|
expect(serializeInner(root)).toBe(`<div>5</div>`)
|
|
|
|
|
|
|
|
triggerEvent(root.children[0] as TestElement, 'click')
|
|
|
|
await nextTick()
|
|
|
|
expect(serializeInner(root)).toBe(`<div>7</div>`)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('methods', async () => {
|
2019-09-06 06:48:49 +08:00
|
|
|
const Comp = createComponent({
|
2019-09-05 06:16:11 +08:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
foo: 1
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
inc() {
|
|
|
|
this.foo++
|
|
|
|
}
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
return h(
|
|
|
|
'div',
|
|
|
|
{
|
|
|
|
onClick: this.inc
|
|
|
|
},
|
|
|
|
this.foo
|
|
|
|
)
|
|
|
|
}
|
2019-09-06 06:48:49 +08:00
|
|
|
})
|
2019-09-05 06:16:11 +08:00
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(h(Comp), root)
|
|
|
|
expect(serializeInner(root)).toBe(`<div>1</div>`)
|
|
|
|
|
|
|
|
triggerEvent(root.children[0] as TestElement, 'click')
|
|
|
|
await nextTick()
|
|
|
|
expect(serializeInner(root)).toBe(`<div>2</div>`)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('watch', async () => {
|
2019-09-06 06:48:49 +08:00
|
|
|
function returnThis(this: any) {
|
2019-09-05 06:16:11 +08:00
|
|
|
return this
|
|
|
|
}
|
|
|
|
const spyA = jest.fn(returnThis)
|
|
|
|
const spyB = jest.fn(returnThis)
|
|
|
|
const spyC = jest.fn(returnThis)
|
|
|
|
|
|
|
|
let ctx: any
|
|
|
|
const Comp = {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
foo: 1,
|
|
|
|
bar: 2,
|
|
|
|
baz: {
|
|
|
|
qux: 3
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
// string method name
|
|
|
|
foo: 'onFooChange',
|
|
|
|
// direct function
|
|
|
|
bar: spyB,
|
|
|
|
baz: {
|
|
|
|
handler: spyC,
|
|
|
|
deep: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
onFooChange: spyA
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
ctx = this
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(h(Comp), root)
|
2019-09-04 23:36:27 +08:00
|
|
|
|
2019-09-05 06:16:11 +08:00
|
|
|
function assertCall(spy: jest.Mock, callIndex: number, args: any[]) {
|
|
|
|
expect(spy.mock.calls[callIndex].slice(0, 2)).toMatchObject(args)
|
|
|
|
}
|
2019-09-04 23:36:27 +08:00
|
|
|
|
2019-09-05 06:16:11 +08:00
|
|
|
assertCall(spyA, 0, [1, undefined])
|
|
|
|
assertCall(spyB, 0, [2, undefined])
|
|
|
|
assertCall(spyC, 0, [{ qux: 3 }, undefined])
|
|
|
|
expect(spyA).toHaveReturnedWith(ctx)
|
|
|
|
expect(spyB).toHaveReturnedWith(ctx)
|
|
|
|
expect(spyC).toHaveReturnedWith(ctx)
|
2019-09-04 23:36:27 +08:00
|
|
|
|
2019-09-05 06:16:11 +08:00
|
|
|
ctx.foo++
|
|
|
|
await nextTick()
|
|
|
|
expect(spyA).toHaveBeenCalledTimes(2)
|
|
|
|
assertCall(spyA, 1, [2, 1])
|
2019-09-04 23:36:27 +08:00
|
|
|
|
2019-09-05 06:16:11 +08:00
|
|
|
ctx.bar++
|
|
|
|
await nextTick()
|
|
|
|
expect(spyB).toHaveBeenCalledTimes(2)
|
|
|
|
assertCall(spyB, 1, [3, 2])
|
2019-09-04 23:36:27 +08:00
|
|
|
|
2019-09-05 06:16:11 +08:00
|
|
|
ctx.baz.qux++
|
|
|
|
await nextTick()
|
|
|
|
expect(spyC).toHaveBeenCalledTimes(2)
|
|
|
|
// new and old objects have same identity
|
|
|
|
assertCall(spyC, 1, [{ qux: 4 }, { qux: 4 }])
|
|
|
|
})
|
2019-09-04 23:36:27 +08:00
|
|
|
|
2019-09-05 06:16:11 +08:00
|
|
|
test('provide/inject', () => {
|
|
|
|
const Root = {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
a: 1
|
|
|
|
}
|
|
|
|
},
|
|
|
|
provide() {
|
|
|
|
return {
|
|
|
|
a: this.a
|
|
|
|
}
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
return [h(ChildA), h(ChildB), h(ChildC), h(ChildD)]
|
|
|
|
}
|
2019-09-06 06:48:49 +08:00
|
|
|
} as any
|
2019-09-05 06:16:11 +08:00
|
|
|
const ChildA = {
|
|
|
|
inject: ['a'],
|
|
|
|
render() {
|
|
|
|
return this.a
|
|
|
|
}
|
2019-09-06 06:48:49 +08:00
|
|
|
} as any
|
2019-09-05 06:16:11 +08:00
|
|
|
const ChildB = {
|
|
|
|
// object alias
|
|
|
|
inject: { b: 'a' },
|
|
|
|
render() {
|
|
|
|
return this.b
|
|
|
|
}
|
2019-09-06 06:48:49 +08:00
|
|
|
} as any
|
2019-09-05 06:16:11 +08:00
|
|
|
const ChildC = {
|
|
|
|
inject: {
|
|
|
|
b: {
|
|
|
|
from: 'a'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
return this.b
|
|
|
|
}
|
2019-09-06 06:48:49 +08:00
|
|
|
} as any
|
2019-09-05 06:16:11 +08:00
|
|
|
const ChildD = {
|
|
|
|
inject: {
|
|
|
|
b: {
|
|
|
|
from: 'c',
|
|
|
|
default: 2
|
|
|
|
}
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
return this.b
|
|
|
|
}
|
2019-09-06 06:48:49 +08:00
|
|
|
} as any
|
2019-09-05 06:16:11 +08:00
|
|
|
|
|
|
|
expect(renderToString(h(Root))).toBe(`<!---->1112<!---->`)
|
|
|
|
})
|
2019-09-04 23:36:27 +08:00
|
|
|
|
2019-09-05 22:07:43 +08:00
|
|
|
test('lifecycle', async () => {
|
|
|
|
const count = ref(0)
|
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
const calls: string[] = []
|
|
|
|
|
|
|
|
const Root = {
|
|
|
|
beforeCreate() {
|
|
|
|
calls.push('root beforeCreate')
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
calls.push('root created')
|
|
|
|
},
|
|
|
|
beforeMount() {
|
|
|
|
calls.push('root onBeforeMount')
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
calls.push('root onMounted')
|
|
|
|
},
|
|
|
|
beforeUpdate() {
|
|
|
|
calls.push('root onBeforeUpdate')
|
|
|
|
},
|
|
|
|
updated() {
|
|
|
|
calls.push('root onUpdated')
|
|
|
|
},
|
|
|
|
beforeUnmount() {
|
|
|
|
calls.push('root onBeforeUnmount')
|
|
|
|
},
|
|
|
|
unmounted() {
|
|
|
|
calls.push('root onUnmounted')
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
return h(Mid, { count: count.value })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const Mid = {
|
|
|
|
beforeCreate() {
|
|
|
|
calls.push('mid beforeCreate')
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
calls.push('mid created')
|
|
|
|
},
|
|
|
|
beforeMount() {
|
|
|
|
calls.push('mid onBeforeMount')
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
calls.push('mid onMounted')
|
|
|
|
},
|
|
|
|
beforeUpdate() {
|
|
|
|
calls.push('mid onBeforeUpdate')
|
|
|
|
},
|
|
|
|
updated() {
|
|
|
|
calls.push('mid onUpdated')
|
|
|
|
},
|
|
|
|
beforeUnmount() {
|
|
|
|
calls.push('mid onBeforeUnmount')
|
|
|
|
},
|
|
|
|
unmounted() {
|
|
|
|
calls.push('mid onUnmounted')
|
|
|
|
},
|
2019-09-06 06:48:49 +08:00
|
|
|
render(this: any) {
|
2019-09-05 22:07:43 +08:00
|
|
|
return h(Child, { count: this.$props.count })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const Child = {
|
|
|
|
beforeCreate() {
|
|
|
|
calls.push('child beforeCreate')
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
calls.push('child created')
|
|
|
|
},
|
|
|
|
beforeMount() {
|
|
|
|
calls.push('child onBeforeMount')
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
calls.push('child onMounted')
|
|
|
|
},
|
|
|
|
beforeUpdate() {
|
|
|
|
calls.push('child onBeforeUpdate')
|
|
|
|
},
|
|
|
|
updated() {
|
|
|
|
calls.push('child onUpdated')
|
|
|
|
},
|
|
|
|
beforeUnmount() {
|
|
|
|
calls.push('child onBeforeUnmount')
|
|
|
|
},
|
|
|
|
unmounted() {
|
|
|
|
calls.push('child onUnmounted')
|
|
|
|
},
|
2019-09-06 06:48:49 +08:00
|
|
|
render(this: any) {
|
2019-09-05 22:07:43 +08:00
|
|
|
return h('div', this.$props.count)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// mount
|
|
|
|
render(h(Root), root)
|
|
|
|
expect(calls).toEqual([
|
|
|
|
'root beforeCreate',
|
|
|
|
'root created',
|
|
|
|
'root onBeforeMount',
|
|
|
|
'mid beforeCreate',
|
|
|
|
'mid created',
|
|
|
|
'mid onBeforeMount',
|
|
|
|
'child beforeCreate',
|
|
|
|
'child created',
|
|
|
|
'child onBeforeMount',
|
|
|
|
'child onMounted',
|
|
|
|
'mid onMounted',
|
|
|
|
'root onMounted'
|
|
|
|
])
|
|
|
|
|
|
|
|
calls.length = 0
|
|
|
|
|
|
|
|
// update
|
|
|
|
count.value++
|
|
|
|
await nextTick()
|
|
|
|
expect(calls).toEqual([
|
|
|
|
'root onBeforeUpdate',
|
|
|
|
'mid onBeforeUpdate',
|
|
|
|
'child onBeforeUpdate',
|
|
|
|
'child onUpdated',
|
|
|
|
'mid onUpdated',
|
|
|
|
'root onUpdated'
|
|
|
|
])
|
|
|
|
|
|
|
|
calls.length = 0
|
|
|
|
|
|
|
|
// unmount
|
|
|
|
render(null, root)
|
|
|
|
expect(calls).toEqual([
|
|
|
|
'root onBeforeUnmount',
|
|
|
|
'mid onBeforeUnmount',
|
|
|
|
'child onBeforeUnmount',
|
|
|
|
'child onUnmounted',
|
|
|
|
'mid onUnmounted',
|
|
|
|
'root onUnmounted'
|
|
|
|
])
|
|
|
|
})
|
2019-09-05 06:16:11 +08:00
|
|
|
|
|
|
|
test('mixins', () => {
|
|
|
|
const calls: string[] = []
|
|
|
|
const mixinA = {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
a: 1
|
|
|
|
}
|
|
|
|
},
|
2019-09-06 06:48:49 +08:00
|
|
|
created(this: any) {
|
2019-09-05 22:07:43 +08:00
|
|
|
calls.push('mixinA created')
|
|
|
|
expect(this.a).toBe(1)
|
|
|
|
expect(this.b).toBe(2)
|
|
|
|
expect(this.c).toBe(3)
|
|
|
|
},
|
2019-09-05 06:16:11 +08:00
|
|
|
mounted() {
|
2019-09-05 22:07:43 +08:00
|
|
|
calls.push('mixinA mounted')
|
2019-09-05 06:16:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
const mixinB = {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
b: 2
|
|
|
|
}
|
|
|
|
},
|
2019-09-06 06:48:49 +08:00
|
|
|
created(this: any) {
|
2019-09-05 22:07:43 +08:00
|
|
|
calls.push('mixinB created')
|
|
|
|
expect(this.a).toBe(1)
|
|
|
|
expect(this.b).toBe(2)
|
|
|
|
expect(this.c).toBe(3)
|
|
|
|
},
|
2019-09-05 06:16:11 +08:00
|
|
|
mounted() {
|
2019-09-05 22:07:43 +08:00
|
|
|
calls.push('mixinB mounted')
|
2019-09-05 06:16:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
const Comp = {
|
|
|
|
mixins: [mixinA, mixinB],
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
c: 3
|
|
|
|
}
|
|
|
|
},
|
2019-09-06 06:48:49 +08:00
|
|
|
created(this: any) {
|
2019-09-05 22:07:43 +08:00
|
|
|
calls.push('comp created')
|
|
|
|
expect(this.a).toBe(1)
|
|
|
|
expect(this.b).toBe(2)
|
|
|
|
expect(this.c).toBe(3)
|
|
|
|
},
|
2019-09-05 06:16:11 +08:00
|
|
|
mounted() {
|
2019-09-05 22:07:43 +08:00
|
|
|
calls.push('comp mounted')
|
2019-09-05 06:16:11 +08:00
|
|
|
},
|
2019-09-06 06:48:49 +08:00
|
|
|
render(this: any) {
|
2019-09-05 06:16:11 +08:00
|
|
|
return `${this.a}${this.b}${this.c}`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(renderToString(h(Comp))).toBe(`123`)
|
2019-09-05 22:07:43 +08:00
|
|
|
expect(calls).toEqual([
|
|
|
|
'mixinA created',
|
|
|
|
'mixinB created',
|
|
|
|
'comp created',
|
|
|
|
'mixinA mounted',
|
|
|
|
'mixinB mounted',
|
|
|
|
'comp mounted'
|
|
|
|
])
|
2019-09-05 06:16:11 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
test('extends', () => {
|
|
|
|
const calls: string[] = []
|
|
|
|
const Base = {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
a: 1
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
calls.push('base')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const Comp = {
|
|
|
|
extends: Base,
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
b: 2
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
calls.push('comp')
|
|
|
|
},
|
2019-09-06 06:48:49 +08:00
|
|
|
render(this: any) {
|
2019-09-05 06:16:11 +08:00
|
|
|
return `${this.a}${this.b}`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(renderToString(h(Comp))).toBe(`12`)
|
|
|
|
expect(calls).toEqual(['base', 'comp'])
|
|
|
|
})
|
|
|
|
|
|
|
|
test('accessing setup() state from options', async () => {
|
2019-09-06 06:48:49 +08:00
|
|
|
const Comp = createComponent({
|
2019-09-05 06:16:11 +08:00
|
|
|
setup() {
|
|
|
|
return {
|
|
|
|
count: ref(0)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
2019-09-06 06:48:49 +08:00
|
|
|
plusOne: (this as any).count + 1
|
2019-09-05 06:16:11 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
2019-09-06 06:48:49 +08:00
|
|
|
plusTwo(): number {
|
2019-09-05 06:16:11 +08:00
|
|
|
return this.count + 2
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
inc() {
|
|
|
|
this.count++
|
|
|
|
}
|
|
|
|
},
|
|
|
|
render() {
|
|
|
|
return h(
|
|
|
|
'div',
|
|
|
|
{
|
|
|
|
onClick: this.inc
|
|
|
|
},
|
|
|
|
`${this.count},${this.plusOne},${this.plusTwo}`
|
|
|
|
)
|
|
|
|
}
|
2019-09-06 06:48:49 +08:00
|
|
|
})
|
2019-09-05 06:16:11 +08:00
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(h(Comp), root)
|
|
|
|
expect(serializeInner(root)).toBe(`<div>0,1,2</div>`)
|
|
|
|
|
|
|
|
triggerEvent(root.children[0] as TestElement, 'click')
|
|
|
|
await nextTick()
|
|
|
|
expect(serializeInner(root)).toBe(`<div>1,1,3</div>`)
|
|
|
|
})
|
2019-09-04 23:36:27 +08:00
|
|
|
})
|