-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathcomponentProps.spec.ts
493 lines (429 loc) · 12.4 KB
/
componentProps.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
// NOTE: This test is implemented based on the case of `runtime-core/__test__/componentProps.spec.ts`.
import { setCurrentInstance } from '../src/component'
import {
createComponent,
defineComponent,
getCurrentInstance,
nextTick,
ref,
setText,
template,
toRefs,
watch,
watchEffect,
} from '../src'
import { makeRender } from './_utils'
const define = makeRender<any>()
describe('component: props', () => {
// NOTE: no proxy
test('stateful', () => {
let props: any
let attrs: any
const { render } = define({
props: ['fooBar', 'barBaz'],
render() {
const instance = getCurrentInstance()!
props = instance.props
attrs = instance.attrs
},
})
render({ fooBar: () => 1, bar: () => 2 })
expect(props).toEqual({ fooBar: 1 })
expect(attrs).toEqual({ bar: 2 })
// test passing kebab-case and resolving to camelCase
render({ 'foo-bar': () => 2, bar: () => 3, baz: () => 4 })
expect(props).toEqual({ fooBar: 2 })
expect(attrs).toEqual({ bar: 3, baz: 4 })
// test updating kebab-case should not delete it (#955)
render({ 'foo-bar': () => 3, bar: () => 3, baz: () => 4, barBaz: () => 5 })
expect(props).toEqual({ fooBar: 3, barBaz: 5 })
expect(attrs).toEqual({ bar: 3, baz: 4 })
// remove the props with camelCase key (#1412)
render({ qux: () => 5 })
expect(props).toEqual({})
expect(attrs).toEqual({ qux: 5 })
})
test.fails('stateful with setup', () => {
let props: any
let attrs: any
const { render } = define({
props: ['foo'],
setup(_props: any, { attrs: _attrs }: any) {
return () => {
props = _props
attrs = _attrs
}
},
})
render({ foo: () => 1, bar: () => 2 })
expect(props).toEqual({ foo: 1 })
expect(attrs).toEqual({ bar: 2 })
render({ foo: () => 2, bar: () => 3, baz: () => 4 })
expect(props).toEqual({ foo: 2 })
expect(attrs).toEqual({ bar: 3, baz: 4 })
render({ qux: () => 5 })
expect(props).toEqual({})
expect(attrs).toEqual({ qux: 5 })
})
test('functional with declaration', () => {
let props: any
let attrs: any
const { component: Comp, render } = define((_props: any) => {
const instance = getCurrentInstance()!
props = instance.props
attrs = instance.attrs
return {}
})
Comp.props = ['foo']
render({ foo: () => 1, bar: () => 2 })
expect(props).toEqual({ foo: 1 })
expect(attrs).toEqual({ bar: 2 })
render({ foo: () => 2, bar: () => 3, baz: () => 4 })
expect(props).toEqual({ foo: 2 })
expect(attrs).toEqual({ bar: 3, baz: 4 })
render({ qux: () => 5 })
expect(props).toEqual({})
expect(attrs).toEqual({ qux: 5 })
})
test('functional without declaration', () => {
let props: any
let attrs: any
const { render } = define((_props: any, { attrs: _attrs }: any) => {
const instance = getCurrentInstance()!
props = instance.props
attrs = instance.attrs
return {}
})
render({ foo: () => 1 })
expect(props).toEqual({ foo: 1 })
expect(attrs).toEqual({ foo: 1 })
expect(props).toBe(attrs)
render({ bar: () => 2 })
expect(props).toEqual({ bar: 2 })
expect(attrs).toEqual({ bar: 2 })
expect(props).toBe(attrs)
})
test('boolean casting', () => {
let props: any
const { render } = define({
props: {
foo: Boolean,
bar: Boolean,
baz: Boolean,
qux: Boolean,
},
render() {
const instance = getCurrentInstance()!
props = instance.props
},
})
render({
// absent should cast to false
bar: () => '', // empty string should cast to true
baz: () => 'baz', // same string should cast to true
qux: () => 'ok', // other values should be left in-tact (but raise warning)
})
expect(props.foo).toBe(false)
expect(props.bar).toBe(true)
expect(props.baz).toBe(true)
expect(props.qux).toBe('ok')
// expect('type check failed for prop "qux"').toHaveBeenWarned()
})
test('default value', () => {
let props: any
const defaultFn = vi.fn(() => ({ a: 1 }))
const defaultBaz = vi.fn(() => ({ b: 1 }))
const { render } = define({
props: {
foo: {
default: 1,
},
bar: {
default: defaultFn,
},
baz: {
type: Function,
default: defaultBaz,
},
},
render() {
const instance = getCurrentInstance()!
props = instance.props
},
})
render({ foo: () => 2 })
expect(props.foo).toBe(2)
// const prevBar = props.bar
expect(props.bar).toEqual({ a: 1 })
expect(props.baz).toEqual(defaultBaz)
expect(defaultFn).toHaveBeenCalledTimes(1)
expect(defaultBaz).toHaveBeenCalledTimes(0)
// #999: updates should not cause default factory of unchanged prop to be
// called again
render({ foo: () => 3 })
expect(props.foo).toBe(3)
expect(props.bar).toEqual({ a: 1 })
// expect(props.bar).toBe(prevBar) // failed: (caching is not supported)
// expect(defaultFn).toHaveBeenCalledTimes(1) // failed: caching is not supported (called 2 times)
render({ bar: () => ({ b: 2 }) })
expect(props.foo).toBe(1)
expect(props.bar).toEqual({ b: 2 })
// expect(defaultFn).toHaveBeenCalledTimes(1) // failed: caching is not supported (called 2 times)
render({
foo: () => 3,
bar: () => ({ b: 3 }),
})
expect(props.foo).toBe(3)
expect(props.bar).toEqual({ b: 3 })
// expect(defaultFn).toHaveBeenCalledTimes(1) // failed: caching is not supported (called 2 times)
render({ bar: () => ({ b: 4 }) })
expect(props.foo).toBe(1)
expect(props.bar).toEqual({ b: 4 })
// expect(defaultFn).toHaveBeenCalledTimes(1) // failed: caching is not supported (called 2 times)
})
test.todo('using inject in default value factory', () => {
// TODO: impl inject
})
test('optimized props updates', async () => {
const t0 = template('<div>')
const { component: Child } = define({
props: ['foo'],
render() {
const instance = getCurrentInstance()!
const n0 = t0()
watchEffect(() => setText(n0, instance.props.foo))
return n0
},
})
const foo = ref(1)
const id = ref('a')
const { instance, host } = define({
setup() {
return { foo, id }
},
render(_ctx: Record<string, any>) {
return createComponent(
Child,
{
foo: () => _ctx.foo,
id: () => _ctx.id,
},
null,
true,
)
},
}).render()
const reset = setCurrentInstance(instance)
expect(host.innerHTML).toBe('<div id="a">1</div>')
foo.value++
await nextTick()
expect(host.innerHTML).toBe('<div id="a">2</div>')
id.value = 'b'
await nextTick()
expect(host.innerHTML).toBe('<div id="b">2</div>')
reset()
})
describe('validator', () => {
test('validator should be called with two arguments', () => {
const mockFn = vi.fn((...args: any[]) => true)
const props = {
foo: () => 1,
bar: () => 2,
}
const t0 = template('<div/>')
define({
props: {
foo: {
type: Number,
validator: (value: any, props: any) => mockFn(value, props),
},
bar: {
type: Number,
},
},
render() {
return t0()
},
}).render(props)
expect(mockFn).toHaveBeenCalledWith(1, { foo: 1, bar: 2 })
})
// TODO: impl setter and warnner
test.todo(
'validator should not be able to mutate other props',
async () => {
const mockFn = vi.fn((...args: any[]) => true)
defineComponent({
props: {
foo: {
type: Number,
validator: (value: any, props: any) => !!(props.bar = 1),
},
bar: {
type: Number,
validator: (value: any) => mockFn(value),
},
},
render() {
const t0 = template('<div/>')
const n0 = t0()
return n0
},
}).render!({
foo() {
return 1
},
bar() {
return 2
},
})
expect(
`Set operation on key "bar" failed: taris readonly.`,
).toHaveBeenWarnedLast()
expect(mockFn).toHaveBeenCalledWith(2)
},
)
})
test.todo('warn props mutation', () => {
// TODO: impl warn
})
test('warn absent required props', () => {
define({
props: {
bool: { type: Boolean, required: true },
str: { type: String, required: true },
num: { type: Number, required: true },
},
setup() {
return () => null
},
}).render()
expect(`Missing required prop: "bool"`).toHaveBeenWarned()
expect(`Missing required prop: "str"`).toHaveBeenWarned()
expect(`Missing required prop: "num"`).toHaveBeenWarned()
})
// NOTE: type check is not supported in vapor
// test('warn on type mismatch', () => {})
// #3495
test('should not warn required props using kebab-case', async () => {
define({
props: {
fooBar: { type: String, required: true },
},
setup() {
return () => null
},
}).render({
['foo-bar']: () => 'hello',
})
expect(`Missing required prop: "fooBar"`).not.toHaveBeenWarned()
})
test('props type support BigInt', () => {
const t0 = template('<div>')
const { host } = define({
props: {
foo: BigInt,
},
render() {
const instance = getCurrentInstance()!
const n0 = t0()
watchEffect(() => setText(n0, instance.props.foo))
return n0
},
}).render({
foo: () =>
BigInt(BigInt(100000111)) + BigInt(2000000000) * BigInt(30000000),
})
expect(host.innerHTML).toBe('<div>60000000100000111</div>')
})
// #3474
test.todo(
'should cache the value returned from the default factory to avoid unnecessary watcher trigger',
() => {},
)
// #3288
test('declared prop key should be present even if not passed', async () => {
let initialKeys: string[] = []
const changeSpy = vi.fn()
const passFoo = ref(false)
const Comp: any = {
render() {},
props: {
foo: String,
},
setup(props: any) {
initialKeys = Object.keys(props)
const { foo } = toRefs(props)
watch(foo, changeSpy)
},
}
define(() =>
createComponent(Comp, [() => (passFoo.value ? { foo: () => 'ok' } : {})]),
).render()
expect(initialKeys).toMatchObject(['foo'])
passFoo.value = true
await nextTick()
expect(changeSpy).toHaveBeenCalledTimes(1)
})
// #3371
test.todo(`avoid double-setting props when casting`, async () => {
// TODO: proide, slots
})
// NOTE: type check is not supported
test.todo('support null in required + multiple-type declarations', () => {
const { render } = define({
props: {
foo: { type: [Function, null], required: true },
},
render() {},
})
expect(() => {
render({ foo: () => () => {} })
}).not.toThrow()
expect(() => {
render({ foo: () => null })
}).not.toThrow()
})
// #5016
test('handling attr with undefined value', () => {
const { render, host } = define({
inheritAttrs: false,
render() {
const instance = getCurrentInstance()!
const t0 = template('<div></div>')
const n0 = t0()
watchEffect(() =>
setText(
n0,
JSON.stringify(instance.attrs) + Object.keys(instance.attrs),
),
)
return n0
},
})
const attrs: any = { foo: () => undefined }
render(attrs)
expect(host.innerHTML).toBe(
`<div>${JSON.stringify(attrs) + Object.keys(attrs)}</div>`,
)
})
// #6915
test('should not mutate original props long-form definition object', () => {
const props = {
msg: {
type: String,
},
}
define({ props, render() {} }).render({ msg: () => 'test' })
expect(Object.keys(props.msg).length).toBe(1)
})
test('should warn against reserved prop names', () => {
const { render } = define({
props: {
$foo: String,
},
render() {},
})
render({ msg: () => 'test' })
expect(`Invalid prop name: "$foo"`).toHaveBeenWarned()
})
})