| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419 |
- import { watch, 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'
- // reference: https://vue-composition-api-rfc.netlify.com/api.html#watch
- describe('api: watch', () => {
- it('basic usage', async () => {
- const state = reactive({ count: 0 })
- let dummy
- watch(() => {
- dummy = state.count
- })
- await nextTick()
- 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
- prevCount + 1
- }
- )
- await nextTick()
- expect(dummy).toMatchObject([0, undefined])
- 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
- prevCount + 1
- })
- await nextTick()
- expect(dummy).toMatchObject([0, undefined])
- 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
- prevCount + 1
- })
- await nextTick()
- expect(dummy).toMatchObject([1, undefined])
- count.value++
- await nextTick()
- expect(dummy).toMatchObject([2, 1])
- })
- 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)
- })
- await nextTick()
- expect(dummy).toMatchObject([[1, 1, 2], []])
- 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]
- let [count] = vals
- let [, oldStatus] = oldVals
- // assert types
- count + 1
- oldStatus === true
- })
- await nextTick()
- expect(dummy).toMatchObject([[1, false], []])
- state.count++
- status.value = false
- await nextTick()
- expect(dummy).toMatchObject([[2, false], [1, false]])
- })
- it('stopping the watcher', async () => {
- const state = reactive({ count: 0 })
- let dummy
- const stop = watch(() => {
- dummy = state.count
- })
- await nextTick()
- expect(dummy).toBe(0)
- stop()
- state.count++
- await nextTick()
- // should not update
- expect(dummy).toBe(0)
- })
- it('cleanup registration (basic)', async () => {
- const state = reactive({ count: 0 })
- const cleanup = jest.fn()
- let dummy
- const stop = watch(onCleanup => {
- onCleanup(cleanup)
- dummy = state.count
- })
- await nextTick()
- 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
- })
- await nextTick()
- expect(dummy).toBe(0)
- count.value++
- await nextTick()
- expect(cleanup).toHaveBeenCalledTimes(1)
- expect(dummy).toBe(1)
- stop()
- expect(cleanup).toHaveBeenCalledTimes(2)
- })
- it('flush timing: post', async () => {
- const count = ref(0)
- const assertion = jest.fn(count => {
- expect(serializeInner(root)).toBe(`${count}`)
- })
- const Comp = {
- setup() {
- watch(() => {
- assertion(count.value)
- })
- return () => count.value
- }
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- await nextTick()
- 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() {
- watch(
- () => {
- assertion(count.value, count2.value)
- },
- {
- flush: 'pre'
- }
- )
- return () => count.value
- }
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- await nextTick()
- 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)
- 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)
- // 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() {
- watch(
- () => {
- assertion(count.value)
- },
- {
- flush: 'sync'
- }
- )
- return () => count.value
- }
- }
- const root = nodeOps.createElement('div')
- render(h(Comp), root)
- await nextTick()
- expect(assertion).toHaveBeenCalledTimes(1)
- count.value++
- count2.value++
- await nextTick()
- expect(assertion).toHaveBeenCalledTimes(3)
- })
- it('deep', async () => {
- const state = reactive({
- nested: {
- count: ref(0)
- },
- array: [1, 2, 3],
- map: new Map([['a', 1], ['b', 2]]),
- set: new Set([1, 2, 3])
- })
- let dummy
- watch(
- () => state,
- state => {
- dummy = [
- state.nested.count,
- state.array[0],
- state.map.get('a'),
- state.set.has(1)
- ]
- },
- { deep: true }
- )
- await nextTick()
- expect(dummy).toEqual([0, 1, 1, true])
- state.nested.count++
- await nextTick()
- expect(dummy).toEqual([1, 1, 1, true])
- // nested array mutation
- state.array[0] = 2
- await nextTick()
- expect(dummy).toEqual([1, 2, 1, true])
- // nested map mutation
- state.map.set('a', 2)
- await nextTick()
- expect(dummy).toEqual([1, 2, 2, true])
- // nested set mutation
- state.set.delete(1)
- await nextTick()
- expect(dummy).toEqual([1, 2, 2, false])
- })
- it('lazy', async () => {
- const count = ref(0)
- const cb = jest.fn()
- watch(count, cb, { lazy: true })
- await nextTick()
- expect(cb).not.toHaveBeenCalled()
- count.value++
- await nextTick()
- expect(cb).toHaveBeenCalled()
- })
- it('onTrack', async () => {
- const events: DebuggerEvent[] = []
- let dummy
- const onTrack = jest.fn((e: DebuggerEvent) => {
- events.push(e)
- })
- const obj = reactive({ foo: 1, bar: 2 })
- watch(
- () => {
- 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([
- {
- target: obj,
- type: TrackOpTypes.GET,
- key: 'foo'
- },
- {
- target: obj,
- type: TrackOpTypes.HAS,
- key: 'bar'
- },
- {
- target: obj,
- type: TrackOpTypes.ITERATE,
- key: ITERATE_KEY
- }
- ])
- })
- it('onTrigger', async () => {
- const events: DebuggerEvent[] = []
- let dummy
- const onTrigger = jest.fn((e: DebuggerEvent) => {
- events.push(e)
- })
- const obj = reactive({ foo: 1 })
- watch(
- () => {
- 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,
- 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,
- key: 'foo',
- oldValue: 2
- })
- })
- })
|