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

521 lines
12 KiB
TypeScript
Raw Normal View History

import {
watch,
watchEffect,
reactive,
computed,
nextTick,
ref,
h
} from '../src/index'
import { render, nodeOps, serializeInner } from '@vue/runtime-test'
import {
ITERATE_KEY,
DebuggerEvent,
TrackOpTypes,
TriggerOpTypes
} from '@vue/reactivity'
import { mockWarn } from '@vue/shared'
2019-08-27 10:47:38 +08:00
2019-08-23 10:15:39 +08:00
// reference: https://vue-composition-api-rfc.netlify.com/api.html#watch
2019-08-24 03:32:19 +08:00
describe('api: watch', () => {
mockWarn()
it('effect', async () => {
2019-08-27 10:47:38 +08:00
const state = reactive({ count: 0 })
let dummy
watchEffect(() => {
2019-08-27 10:47:38 +08:00
dummy = state.count
})
expect(dummy).toBe(0)
state.count++
await nextTick()
expect(dummy).toBe(1)
})
it('watching single source: getter', async () => {
const state = reactive({ count: 0 })
let dummy
watch(
() => state.count,
(count, prevCount) => {
dummy = [count, prevCount]
// assert types
count + 1
if (prevCount) {
prevCount + 1
}
2019-08-27 10:47:38 +08:00
}
)
state.count++
await nextTick()
expect(dummy).toMatchObject([1, 0])
})
it('watching single source: ref', async () => {
const count = ref(0)
let dummy
watch(count, (count, prevCount) => {
dummy = [count, prevCount]
// assert types
count + 1
if (prevCount) {
prevCount + 1
}
2019-08-27 10:47:38 +08:00
})
count.value++
await nextTick()
expect(dummy).toMatchObject([1, 0])
})
it('watching single source: computed ref', async () => {
const count = ref(0)
const plus = computed(() => count.value + 1)
let dummy
watch(plus, (count, prevCount) => {
dummy = [count, prevCount]
// assert types
count + 1
if (prevCount) {
prevCount + 1
}
2019-08-27 10:47:38 +08:00
})
count.value++
await nextTick()
expect(dummy).toMatchObject([2, 1])
})
it('watching primitive with deep: true', async () => {
const count = ref(0)
let dummy
watch(
count,
(c, prevCount) => {
dummy = [c, prevCount]
},
{
deep: true
}
)
count.value++
await nextTick()
expect(dummy).toMatchObject([1, 0])
})
2019-08-27 10:47:38 +08:00
it('watching multiple sources', async () => {
const state = reactive({ count: 1 })
const count = ref(1)
const plus = computed(() => count.value + 1)
let dummy
watch([() => state.count, count, plus], (vals, oldVals) => {
dummy = [vals, oldVals]
// assert types
vals.concat(1)
oldVals.concat(1)
2019-08-27 10:47:38 +08:00
})
state.count++
count.value++
await nextTick()
expect(dummy).toMatchObject([[2, 2, 3], [1, 1, 2]])
})
it('watching multiple sources: readonly array', async () => {
const state = reactive({ count: 1 })
const status = ref(false)
let dummy
watch([() => state.count, status] as const, (vals, oldVals) => {
dummy = [vals, oldVals]
2020-03-23 23:11:00 +08:00
const [count] = vals
const [, oldStatus] = oldVals
// assert types
count + 1
oldStatus === true
})
state.count++
status.value = true
await nextTick()
expect(dummy).toMatchObject([[2, true], [1, false]])
})
it('stopping the watcher (effect)', async () => {
2019-08-27 10:47:38 +08:00
const state = reactive({ count: 0 })
let dummy
const stop = watchEffect(() => {
2019-08-27 10:47:38 +08:00
dummy = state.count
})
expect(dummy).toBe(0)
stop()
state.count++
await nextTick()
// should not update
expect(dummy).toBe(0)
})
it('stopping the watcher (with source)', async () => {
const state = reactive({ count: 0 })
let dummy
const stop = watch(
() => state.count,
count => {
dummy = count
}
)
state.count++
await nextTick()
expect(dummy).toBe(1)
stop()
state.count++
await nextTick()
// should not update
expect(dummy).toBe(1)
})
it('cleanup registration (effect)', async () => {
2019-08-27 10:47:38 +08:00
const state = reactive({ count: 0 })
const cleanup = jest.fn()
let dummy
const stop = watchEffect(onCleanup => {
2019-08-27 10:47:38 +08:00
onCleanup(cleanup)
dummy = state.count
})
expect(dummy).toBe(0)
state.count++
await nextTick()
expect(cleanup).toHaveBeenCalledTimes(1)
expect(dummy).toBe(1)
stop()
expect(cleanup).toHaveBeenCalledTimes(2)
})
it('cleanup registration (with source)', async () => {
const count = ref(0)
const cleanup = jest.fn()
let dummy
const stop = watch(count, (count, prevCount, onCleanup) => {
onCleanup(cleanup)
dummy = count
})
count.value++
2019-08-27 10:47:38 +08:00
await nextTick()
expect(cleanup).toHaveBeenCalledTimes(0)
expect(dummy).toBe(1)
2019-08-27 10:47:38 +08:00
count.value++
await nextTick()
expect(cleanup).toHaveBeenCalledTimes(1)
expect(dummy).toBe(2)
2019-08-27 10:47:38 +08:00
stop()
expect(cleanup).toHaveBeenCalledTimes(2)
})
it('flush timing: post (default)', async () => {
2019-08-27 23:35:22 +08:00
const count = ref(0)
let callCount = 0
2019-08-27 23:35:22 +08:00
const assertion = jest.fn(count => {
callCount++
// on mount, the watcher callback should be called before DOM render
// on update, should be called after the count is updated
const expectedDOM = callCount === 1 ? `` : `${count}`
expect(serializeInner(root)).toBe(expectedDOM)
2019-08-27 23:35:22 +08:00
})
const Comp = {
setup() {
watchEffect(() => {
2019-08-27 23:35:22 +08:00
assertion(count.value)
})
return () => count.value
}
}
const root = nodeOps.createElement('div')
render(h(Comp), root)
expect(assertion).toHaveBeenCalledTimes(1)
count.value++
await nextTick()
expect(assertion).toHaveBeenCalledTimes(2)
})
it('flush timing: pre', async () => {
const count = ref(0)
const count2 = ref(0)
let callCount = 0
const assertion = jest.fn((count, count2Value) => {
callCount++
// on mount, the watcher callback should be called before DOM render
// on update, should be called before the count is updated
const expectedDOM = callCount === 1 ? `` : `${count - 1}`
expect(serializeInner(root)).toBe(expectedDOM)
// in a pre-flush callback, all state should have been updated
const expectedState = callCount === 1 ? 0 : 1
expect(count2Value).toBe(expectedState)
})
const Comp = {
setup() {
watchEffect(
2019-08-27 23:35:22 +08:00
() => {
assertion(count.value, count2.value)
},
{
flush: 'pre'
}
)
return () => count.value
}
}
const root = nodeOps.createElement('div')
render(h(Comp), root)
expect(assertion).toHaveBeenCalledTimes(1)
count.value++
count2.value++
await nextTick()
// two mutations should result in 1 callback execution
expect(assertion).toHaveBeenCalledTimes(2)
})
it('flush timing: sync', async () => {
const count = ref(0)
const count2 = ref(0)
2019-08-27 10:47:38 +08:00
2019-08-27 23:35:22 +08:00
let callCount = 0
const assertion = jest.fn(count => {
callCount++
// on mount, the watcher callback should be called before DOM render
// on update, should be called before the count is updated
const expectedDOM = callCount === 1 ? `` : `${count - 1}`
expect(serializeInner(root)).toBe(expectedDOM)
2019-08-27 10:47:38 +08:00
2019-08-27 23:35:22 +08:00
// in a sync callback, state mutation on the next line should not have
// executed yet on the 2nd call, but will be on the 3rd call.
const expectedState = callCount < 3 ? 0 : 1
expect(count2.value).toBe(expectedState)
})
const Comp = {
setup() {
watchEffect(
2019-08-27 23:35:22 +08:00
() => {
assertion(count.value)
},
{
flush: 'sync'
}
)
return () => count.value
}
}
const root = nodeOps.createElement('div')
render(h(Comp), root)
expect(assertion).toHaveBeenCalledTimes(1)
2019-08-27 10:47:38 +08:00
2019-08-27 23:35:22 +08:00
count.value++
count2.value++
await nextTick()
expect(assertion).toHaveBeenCalledTimes(3)
})
2019-08-27 10:47:38 +08:00
2019-08-27 23:35:22 +08:00
it('deep', async () => {
const state = reactive({
nested: {
count: ref(0)
},
2019-08-28 02:42:05 +08:00
array: [1, 2, 3],
2019-08-28 03:01:01 +08:00
map: new Map([['a', 1], ['b', 2]]),
set: new Set([1, 2, 3])
2019-08-27 23:35:22 +08:00
})
2019-08-27 10:47:38 +08:00
2019-08-27 23:35:22 +08:00
let dummy
watch(
() => state,
state => {
2019-08-28 03:01:01 +08:00
dummy = [
state.nested.count,
state.array[0],
state.map.get('a'),
state.set.has(1)
]
2019-08-27 23:35:22 +08:00
},
{ deep: true }
)
2019-08-27 10:47:38 +08:00
2019-08-27 23:35:22 +08:00
state.nested.count++
await nextTick()
2019-08-28 03:01:01 +08:00
expect(dummy).toEqual([1, 1, 1, true])
2019-08-27 23:35:22 +08:00
// nested array mutation
2019-08-28 02:42:05 +08:00
state.array[0] = 2
2019-08-27 23:35:22 +08:00
await nextTick()
2019-08-28 03:01:01 +08:00
expect(dummy).toEqual([1, 2, 1, true])
2019-08-28 02:42:05 +08:00
// nested map mutation
state.map.set('a', 2)
await nextTick()
2019-08-28 03:01:01 +08:00
expect(dummy).toEqual([1, 2, 2, true])
// nested set mutation
state.set.delete(1)
await nextTick()
expect(dummy).toEqual([1, 2, 2, false])
2019-08-27 23:35:22 +08:00
})
it('immediate', async () => {
2019-08-27 23:35:22 +08:00
const count = ref(0)
const cb = jest.fn()
watch(count, cb, { immediate: true })
expect(cb).toHaveBeenCalledTimes(1)
2019-08-27 23:35:22 +08:00
count.value++
await nextTick()
expect(cb).toHaveBeenCalledTimes(2)
})
it('immediate: triggers when initial value is null', async () => {
const state = ref(null)
const spy = jest.fn()
watch(() => state.value, spy, { immediate: true })
expect(spy).toHaveBeenCalled()
})
it('immediate: triggers when initial value is undefined', async () => {
const state = ref()
const spy = jest.fn()
watch(() => state.value, spy, { immediate: true })
expect(spy).toHaveBeenCalled()
state.value = 3
await nextTick()
expect(spy).toHaveBeenCalledTimes(2)
// testing if undefined can trigger the watcher
state.value = undefined
await nextTick()
expect(spy).toHaveBeenCalledTimes(3)
// it shouldn't trigger if the same value is set
state.value = undefined
await nextTick()
expect(spy).toHaveBeenCalledTimes(3)
2019-08-27 23:35:22 +08:00
})
it('warn immediate option when using effect', async () => {
const count = ref(0)
let dummy
watchEffect(
() => {
dummy = count.value
},
// @ts-ignore
{ immediate: false }
)
expect(dummy).toBe(0)
expect(`"immediate" option is only respected`).toHaveBeenWarned()
count.value++
await nextTick()
expect(dummy).toBe(1)
})
it('warn and not respect deep option when using effect', async () => {
const arr = ref([1, [2]])
2020-03-23 23:11:00 +08:00
const spy = jest.fn()
watchEffect(
() => {
spy()
return arr
},
// @ts-ignore
{ deep: true }
)
expect(spy).toHaveBeenCalledTimes(1)
;(arr.value[1] as Array<number>)[0] = 3
await nextTick()
expect(spy).toHaveBeenCalledTimes(1)
expect(`"deep" option is only respected`).toHaveBeenWarned()
})
2019-08-27 23:35:22 +08:00
it('onTrack', async () => {
2019-08-29 00:13:36 +08:00
const events: DebuggerEvent[] = []
2019-08-27 23:35:22 +08:00
let dummy
const onTrack = jest.fn((e: DebuggerEvent) => {
events.push(e)
})
const obj = reactive({ foo: 1, bar: 2 })
watchEffect(
2019-08-27 23:35:22 +08:00
() => {
dummy = [obj.foo, 'bar' in obj, Object.keys(obj)]
},
{ onTrack }
)
await nextTick()
expect(dummy).toEqual([1, true, ['foo', 'bar']])
expect(onTrack).toHaveBeenCalledTimes(3)
expect(events).toMatchObject([
{
2019-08-29 00:13:36 +08:00
target: obj,
type: TrackOpTypes.GET,
2019-08-27 23:35:22 +08:00
key: 'foo'
},
{
2019-08-29 00:13:36 +08:00
target: obj,
type: TrackOpTypes.HAS,
2019-08-27 23:35:22 +08:00
key: 'bar'
},
{
2019-08-29 00:13:36 +08:00
target: obj,
type: TrackOpTypes.ITERATE,
2019-08-27 23:35:22 +08:00
key: ITERATE_KEY
}
])
})
it('onTrigger', async () => {
2019-08-29 00:13:36 +08:00
const events: DebuggerEvent[] = []
2019-08-27 23:35:22 +08:00
let dummy
const onTrigger = jest.fn((e: DebuggerEvent) => {
events.push(e)
})
const obj = reactive({ foo: 1 })
watchEffect(
2019-08-27 23:35:22 +08:00
() => {
dummy = obj.foo
},
{ onTrigger }
)
await nextTick()
expect(dummy).toBe(1)
obj.foo++
await nextTick()
expect(dummy).toBe(2)
expect(onTrigger).toHaveBeenCalledTimes(1)
expect(events[0]).toMatchObject({
type: TriggerOpTypes.SET,
2019-08-27 23:35:22 +08:00
key: 'foo',
oldValue: 1,
newValue: 2
})
delete obj.foo
await nextTick()
expect(dummy).toBeUndefined()
expect(onTrigger).toHaveBeenCalledTimes(2)
expect(events[1]).toMatchObject({
type: TriggerOpTypes.DELETE,
2019-08-27 23:35:22 +08:00
key: 'foo',
oldValue: 2
})
})
2019-08-24 03:32:19 +08:00
})