2020-11-26 23:01:36 +08:00
|
|
|
import {
|
2021-06-29 21:24:12 +08:00
|
|
|
ComponentInternalInstance,
|
2021-06-30 02:21:31 +08:00
|
|
|
createApp,
|
2020-11-26 23:01:36 +08:00
|
|
|
defineComponent,
|
2021-06-29 21:24:12 +08:00
|
|
|
getCurrentInstance,
|
2020-11-26 23:01:36 +08:00
|
|
|
h,
|
|
|
|
nodeOps,
|
2021-06-29 21:24:12 +08:00
|
|
|
onMounted,
|
2020-11-26 23:01:36 +08:00
|
|
|
render,
|
2021-06-30 02:21:31 +08:00
|
|
|
serializeInner,
|
2021-06-29 21:24:12 +08:00
|
|
|
SetupContext,
|
|
|
|
Suspense
|
2020-11-26 23:01:36 +08:00
|
|
|
} from '@vue/runtime-test'
|
2021-06-23 22:31:32 +08:00
|
|
|
import {
|
|
|
|
defineEmits,
|
|
|
|
defineProps,
|
2021-06-27 09:11:57 +08:00
|
|
|
defineExpose,
|
|
|
|
withDefaults,
|
2021-06-23 22:31:32 +08:00
|
|
|
useAttrs,
|
2021-06-27 09:11:57 +08:00
|
|
|
useSlots,
|
2021-06-29 21:24:12 +08:00
|
|
|
mergeDefaults,
|
|
|
|
withAsyncContext
|
2021-06-23 22:31:32 +08:00
|
|
|
} from '../src/apiSetupHelpers'
|
2020-11-26 23:01:36 +08:00
|
|
|
|
|
|
|
describe('SFC <script setup> helpers', () => {
|
|
|
|
test('should warn runtime usage', () => {
|
|
|
|
defineProps()
|
|
|
|
expect(`defineProps() is a compiler-hint`).toHaveBeenWarned()
|
|
|
|
|
2021-06-23 03:02:56 +08:00
|
|
|
defineEmits()
|
|
|
|
expect(`defineEmits() is a compiler-hint`).toHaveBeenWarned()
|
2021-06-27 09:11:57 +08:00
|
|
|
|
|
|
|
defineExpose()
|
|
|
|
expect(`defineExpose() is a compiler-hint`).toHaveBeenWarned()
|
|
|
|
|
|
|
|
withDefaults({}, {})
|
|
|
|
expect(`withDefaults() is a compiler-hint`).toHaveBeenWarned()
|
2020-11-26 23:01:36 +08:00
|
|
|
})
|
|
|
|
|
2021-06-23 22:31:32 +08:00
|
|
|
test('useSlots / useAttrs (no args)', () => {
|
|
|
|
let slots: SetupContext['slots'] | undefined
|
|
|
|
let attrs: SetupContext['attrs'] | undefined
|
2020-11-26 23:01:36 +08:00
|
|
|
const Comp = {
|
|
|
|
setup() {
|
2021-06-23 22:31:32 +08:00
|
|
|
slots = useSlots()
|
|
|
|
attrs = useAttrs()
|
2020-11-26 23:01:36 +08:00
|
|
|
return () => {}
|
|
|
|
}
|
|
|
|
}
|
2021-06-23 22:31:32 +08:00
|
|
|
const passedAttrs = { id: 'foo' }
|
|
|
|
const passedSlots = {
|
|
|
|
default: () => {},
|
|
|
|
x: () => {}
|
|
|
|
}
|
|
|
|
render(h(Comp, passedAttrs, passedSlots), nodeOps.createElement('div'))
|
|
|
|
expect(typeof slots!.default).toBe('function')
|
|
|
|
expect(typeof slots!.x).toBe('function')
|
|
|
|
expect(attrs).toMatchObject(passedAttrs)
|
2020-11-26 23:01:36 +08:00
|
|
|
})
|
|
|
|
|
2021-06-23 22:31:32 +08:00
|
|
|
test('useSlots / useAttrs (with args)', () => {
|
|
|
|
let slots: SetupContext['slots'] | undefined
|
|
|
|
let attrs: SetupContext['attrs'] | undefined
|
2020-11-26 23:01:36 +08:00
|
|
|
let ctx: SetupContext | undefined
|
|
|
|
const Comp = defineComponent({
|
2021-06-23 22:31:32 +08:00
|
|
|
setup(_, _ctx) {
|
|
|
|
slots = useSlots()
|
|
|
|
attrs = useAttrs()
|
|
|
|
ctx = _ctx
|
2020-11-26 23:01:36 +08:00
|
|
|
return () => {}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
render(h(Comp), nodeOps.createElement('div'))
|
2021-06-23 22:31:32 +08:00
|
|
|
expect(slots).toBe(ctx!.slots)
|
|
|
|
expect(attrs).toBe(ctx!.attrs)
|
2020-11-26 23:01:36 +08:00
|
|
|
})
|
2021-06-27 09:11:57 +08:00
|
|
|
|
|
|
|
test('mergeDefaults', () => {
|
|
|
|
const merged = mergeDefaults(
|
|
|
|
{
|
|
|
|
foo: null,
|
|
|
|
bar: { type: String, required: false }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
foo: 1,
|
|
|
|
bar: 'baz'
|
|
|
|
}
|
|
|
|
)
|
|
|
|
expect(merged).toMatchObject({
|
|
|
|
foo: { default: 1 },
|
|
|
|
bar: { type: String, required: false, default: 'baz' }
|
|
|
|
})
|
|
|
|
|
|
|
|
mergeDefaults({}, { foo: 1 })
|
|
|
|
expect(
|
|
|
|
`props default key "foo" has no corresponding declaration`
|
|
|
|
).toHaveBeenWarned()
|
|
|
|
})
|
2021-06-29 21:24:12 +08:00
|
|
|
|
2021-06-30 02:21:31 +08:00
|
|
|
describe('withAsyncContext', () => {
|
|
|
|
// disable options API because applyOptions() also resets currentInstance
|
|
|
|
// and we want to ensure the logic works even with Options API disabled.
|
|
|
|
beforeEach(() => {
|
|
|
|
__FEATURE_OPTIONS_API__ = false
|
|
|
|
})
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
__FEATURE_OPTIONS_API__ = true
|
|
|
|
})
|
2021-06-29 21:24:12 +08:00
|
|
|
|
2021-06-30 02:21:31 +08:00
|
|
|
test('basic', async () => {
|
|
|
|
const spy = jest.fn()
|
2021-06-29 21:24:12 +08:00
|
|
|
|
2021-06-30 02:21:31 +08:00
|
|
|
let beforeInstance: ComponentInternalInstance | null = null
|
|
|
|
let afterInstance: ComponentInternalInstance | null = null
|
|
|
|
let resolve: (msg: string) => void
|
|
|
|
|
|
|
|
const Comp = defineComponent({
|
|
|
|
async setup() {
|
|
|
|
beforeInstance = getCurrentInstance()
|
|
|
|
const msg = await withAsyncContext(
|
|
|
|
new Promise(r => {
|
|
|
|
resolve = r
|
|
|
|
})
|
|
|
|
)
|
|
|
|
// register the lifecycle after an await statement
|
|
|
|
onMounted(spy)
|
|
|
|
afterInstance = getCurrentInstance()
|
|
|
|
return () => msg
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(h(() => h(Suspense, () => h(Comp))), root)
|
|
|
|
|
|
|
|
expect(spy).not.toHaveBeenCalled()
|
|
|
|
resolve!('hello')
|
|
|
|
// wait a macro task tick for all micro ticks to resolve
|
|
|
|
await new Promise(r => setTimeout(r))
|
|
|
|
// mount hook should have been called
|
|
|
|
expect(spy).toHaveBeenCalled()
|
|
|
|
// should retain same instance before/after the await call
|
|
|
|
expect(beforeInstance).toBe(afterInstance)
|
|
|
|
expect(serializeInner(root)).toBe('hello')
|
|
|
|
})
|
|
|
|
|
|
|
|
test('error handling', async () => {
|
|
|
|
const spy = jest.fn()
|
|
|
|
|
|
|
|
let beforeInstance: ComponentInternalInstance | null = null
|
|
|
|
let afterInstance: ComponentInternalInstance | null = null
|
|
|
|
let reject: () => void
|
|
|
|
|
|
|
|
const Comp = defineComponent({
|
|
|
|
async setup() {
|
|
|
|
beforeInstance = getCurrentInstance()
|
|
|
|
try {
|
|
|
|
await withAsyncContext(
|
|
|
|
new Promise((r, rj) => {
|
|
|
|
reject = rj
|
|
|
|
})
|
|
|
|
)
|
|
|
|
} catch (e) {
|
|
|
|
// ignore
|
|
|
|
}
|
|
|
|
// register the lifecycle after an await statement
|
|
|
|
onMounted(spy)
|
|
|
|
afterInstance = getCurrentInstance()
|
|
|
|
return () => ''
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(h(() => h(Suspense, () => h(Comp))), root)
|
|
|
|
|
|
|
|
expect(spy).not.toHaveBeenCalled()
|
|
|
|
reject!()
|
|
|
|
// wait a macro task tick for all micro ticks to resolve
|
|
|
|
await new Promise(r => setTimeout(r))
|
|
|
|
// mount hook should have been called
|
|
|
|
expect(spy).toHaveBeenCalled()
|
|
|
|
// should retain same instance before/after the await call
|
|
|
|
expect(beforeInstance).toBe(afterInstance)
|
|
|
|
})
|
|
|
|
|
|
|
|
test('should not leak instance on multiple awaits', async () => {
|
|
|
|
let resolve: (val?: any) => void
|
|
|
|
let beforeInstance: ComponentInternalInstance | null = null
|
|
|
|
let afterInstance: ComponentInternalInstance | null = null
|
|
|
|
let inBandInstance: ComponentInternalInstance | null = null
|
|
|
|
let outOfBandInstance: ComponentInternalInstance | null = null
|
|
|
|
|
|
|
|
const ready = new Promise(r => {
|
|
|
|
resolve = r
|
|
|
|
})
|
|
|
|
|
|
|
|
async function doAsyncWork() {
|
|
|
|
// should still have instance
|
|
|
|
inBandInstance = getCurrentInstance()
|
|
|
|
await Promise.resolve()
|
|
|
|
// should not leak instance
|
|
|
|
outOfBandInstance = getCurrentInstance()
|
2021-06-29 21:24:12 +08:00
|
|
|
}
|
2021-06-30 02:21:31 +08:00
|
|
|
|
|
|
|
const Comp = defineComponent({
|
|
|
|
async setup() {
|
|
|
|
beforeInstance = getCurrentInstance()
|
|
|
|
// first await
|
|
|
|
await withAsyncContext(Promise.resolve())
|
|
|
|
// setup exit, instance set to null, then resumed
|
|
|
|
await withAsyncContext(doAsyncWork())
|
|
|
|
afterInstance = getCurrentInstance()
|
|
|
|
return () => {
|
|
|
|
resolve()
|
|
|
|
return ''
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
render(h(() => h(Suspense, () => h(Comp))), root)
|
|
|
|
|
|
|
|
await ready
|
|
|
|
expect(inBandInstance).toBe(beforeInstance)
|
|
|
|
expect(outOfBandInstance).toBeNull()
|
|
|
|
expect(afterInstance).toBe(beforeInstance)
|
|
|
|
expect(getCurrentInstance()).toBeNull()
|
2021-06-29 21:24:12 +08:00
|
|
|
})
|
|
|
|
|
2021-06-30 02:21:31 +08:00
|
|
|
test('should not leak on multiple awaits + error', async () => {
|
|
|
|
let resolve: (val?: any) => void
|
|
|
|
const ready = new Promise(r => {
|
|
|
|
resolve = r
|
|
|
|
})
|
|
|
|
|
|
|
|
const Comp = defineComponent({
|
|
|
|
async setup() {
|
|
|
|
await withAsyncContext(Promise.resolve())
|
|
|
|
await withAsyncContext(Promise.reject())
|
|
|
|
},
|
|
|
|
render() {}
|
|
|
|
})
|
|
|
|
|
|
|
|
const app = createApp(() => h(Suspense, () => h(Comp)))
|
|
|
|
app.config.errorHandler = () => {
|
|
|
|
resolve()
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
const root = nodeOps.createElement('div')
|
|
|
|
app.mount(root)
|
|
|
|
|
|
|
|
await ready
|
|
|
|
expect(getCurrentInstance()).toBeNull()
|
|
|
|
})
|
2021-06-29 21:24:12 +08:00
|
|
|
})
|
2020-11-26 23:01:36 +08:00
|
|
|
})
|