123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562 |
- /* eslint-disable @typescript-eslint/ban-types */
- import { defineComponent } from 'vue'
- import { mount } from '@vue/test-utils'
- import { describe, expect, it, vi } from 'vitest'
- import { expectTypeOf } from 'expect-type'
- import { buildProp, buildProps, definePropType, keysOf, mutable } from '../..'
- import type {
- EpProp,
- EpPropInputDefault,
- EpPropMergeType,
- IfNever,
- ResolvePropType,
- UnknownToNever,
- Writable,
- WritableArray,
- epPropKey,
- } from '../..'
- import type { ExtractPropTypes, PropType } from 'vue'
- describe('Types', () => {
- it('Writable', () => {
- expectTypeOf<Writable<readonly [1, 2, 3]>>().toEqualTypeOf<[1, 2, 3]>()
- expectTypeOf<Writable<Readonly<{ a: 'b' }>>>().toEqualTypeOf<{
- a: 'b'
- }>()
- expectTypeOf<Writable<123>>().toEqualTypeOf<123>()
- expectTypeOf<
- Writable<StringConstructor>
- >().not.toEqualTypeOf<StringConstructor>()
- })
- it('WritableArray', () => {
- expectTypeOf<WritableArray<readonly [1, 2, 3]>>().toEqualTypeOf<[1, 2, 3]>()
- expectTypeOf<
- WritableArray<BooleanConstructor>
- >().toEqualTypeOf<BooleanConstructor>()
- })
- it('IfNever', () => {
- expectTypeOf<IfNever<boolean | 123 | '1'>>().toEqualTypeOf<false>()
- expectTypeOf<IfNever<never>>().toEqualTypeOf<true>()
- })
- it('UnknownToNever', () => {
- expectTypeOf<UnknownToNever<unknown>>().toEqualTypeOf<never>()
- expectTypeOf<UnknownToNever<unknown | 1>>().toEqualTypeOf<never>()
- expectTypeOf<UnknownToNever<1>>().toEqualTypeOf<1>()
- })
- it('ResolvePropType', () => {
- expectTypeOf<ResolvePropType<BooleanConstructor>>().toEqualTypeOf<boolean>()
- expectTypeOf<ResolvePropType<StringConstructor>>().toEqualTypeOf<string>()
- expectTypeOf<ResolvePropType<DateConstructor>>().toEqualTypeOf<Date>()
- expectTypeOf<
- ResolvePropType<[DateConstructor, NumberConstructor]>
- >().toEqualTypeOf<Date | number>()
- expectTypeOf<
- ResolvePropType<readonly [DateConstructor, NumberConstructor]>
- >().toEqualTypeOf<Date | number>()
- expectTypeOf<
- ResolvePropType<PropType<string | 12 | false>>
- >().toEqualTypeOf<string | 12 | false>()
- expectTypeOf<ResolvePropType<never>>().toBeNever()
- })
- it('EpPropMergeType', () => {
- expectTypeOf<
- EpPropMergeType<StringConstructor | NumberConstructor, 'str', 1>
- >().toEqualTypeOf<'str' | 1>()
- expectTypeOf<EpPropMergeType<NumberConstructor, 2 | 3, 4>>().toEqualTypeOf<
- 2 | 3 | 4
- >()
- })
- it('EpPropInputDefault', () => {
- expectTypeOf<EpPropInputDefault<true, 1>>().toBeNever()
- expectTypeOf<EpPropInputDefault<false, 1>>().toEqualTypeOf<1 | (() => 1)>()
- })
- it('EpProp', () => {
- expectTypeOf<EpProp<'1', '2', false>>().toEqualTypeOf<{
- readonly type: PropType<'1'>
- readonly required: false
- readonly validator: ((val: unknown) => boolean) | undefined
- readonly default: '2'
- [epPropKey]: true
- }>()
- expectTypeOf<EpProp<'1', '2', true>>().toEqualTypeOf<{
- readonly type: PropType<'1'>
- readonly required: true
- readonly validator: ((val: unknown) => boolean) | undefined
- readonly default: '2'
- [epPropKey]: true
- }>()
- })
- })
- describe('buildProp', () => {
- it('Only type', () => {
- expectTypeOf(
- buildProp({
- type: definePropType<'a' | 'b'>(String),
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<'a' | 'b'>
- readonly required: false
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Only values', () => {
- expectTypeOf(
- buildProp({
- values: [1, 2, 3, 4],
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<1 | 2 | 3 | 4>
- readonly required: false
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Type and values', () => {
- expectTypeOf(
- buildProp({
- type: Number,
- values: [1, 2, 3, 4],
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<1 | 2 | 3 | 4>
- readonly required: false
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Values and validator', () => {
- expectTypeOf(
- buildProp({
- values: ['a', 'b', 'c'],
- validator: (val: unknown): val is number => typeof val === 'number',
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<number | 'a' | 'b' | 'c'>
- readonly required: false
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Values and required', () => {
- expectTypeOf(
- buildProp({
- values: ['a', 'b', 'c'],
- required: true,
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<'a' | 'b' | 'c'>
- readonly required: true
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Value and default', () => {
- expectTypeOf(
- buildProp({
- values: ['a', 'b', 'c'],
- required: false,
- default: 'b',
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<'a' | 'b' | 'c'>
- readonly required: false
- readonly default: 'b'
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Type and Array default value', () => {
- expectTypeOf(
- buildProp({
- type: definePropType<string[]>(Array),
- default: () => mutable(['a', 'b'] as const),
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<string[]>
- readonly required: false
- readonly default: ['a', 'b']
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Type and Object default value', () => {
- interface Options {
- key: string
- }
- expectTypeOf(
- buildProp({
- type: definePropType<Options>(Object),
- default: () => mutable({ key: 'value' } as const),
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<Options>
- readonly required: false
- readonly default: { key: 'value' }
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Type, validator and Object default value', () => {
- interface Options {
- key: string
- }
- expectTypeOf(
- buildProp({
- type: definePropType<Options>(Object),
- default: () => ({ key: 'value' }),
- validator: (val: unknown): val is string => true,
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<string | Options>
- readonly required: false
- readonly default: { key: string }
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Type, validator, required', () => {
- expectTypeOf(
- buildProp({
- type: definePropType<'a' | 'b' | 'c'>(String),
- required: true,
- validator: (val: unknown): val is number => true,
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<number | 'a' | 'b' | 'c'>
- readonly required: true
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Normal type', () => {
- expectTypeOf(
- buildProp({
- type: String,
- })
- ).toEqualTypeOf<{
- readonly type: PropType<string>
- readonly required: false
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Normal types', () => {
- expectTypeOf(buildProp({ type: [String, Number, Boolean] })).toEqualTypeOf<{
- readonly type: PropType<string | number | boolean>
- readonly required: false
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Normal type and values', () => {
- expectTypeOf(
- buildProp({
- type: String,
- values: ['1', '2', '3'],
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<'1' | '2' | '3'>
- readonly required: false
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Required and validator', () => {
- expectTypeOf(
- buildProp({
- required: true,
- validator: (val: unknown): val is string => true,
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<string>
- readonly required: true
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Required and validator', () => {
- expectTypeOf(
- buildProp({
- values: keysOf({ a: 'a', b: 'b' }),
- default: 'a',
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<'a' | 'b'>
- readonly required: false
- readonly default: 'a'
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Type and default value', () => {
- expectTypeOf(
- buildProp({
- type: definePropType<{ key: 'a' | 'b' | 'c' } | undefined>(Object),
- default: () => mutable({ key: 'a' } as const),
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<{ key: 'a' | 'b' | 'c' } | undefined>
- readonly required: false
- readonly default: { key: 'a' }
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('Type and default value', () => {
- expectTypeOf(
- buildProp({
- type: [String, Number],
- default: '',
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<string | number>
- readonly required: false
- readonly default: ''
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('default value is empty object', () => {
- expectTypeOf(
- buildProp({
- type: Object,
- default: () => mutable({} as const),
- } as const)
- ).toEqualTypeOf<{
- readonly type: PropType<Record<string, any>>
- readonly required: false
- readonly default: {}
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- it('extract', () => {
- const props = {
- key1: buildProp({
- type: String,
- required: true,
- }),
- key2: buildProp({
- type: [String, Number],
- required: true,
- }),
- } as const
- type Extracted = ExtractPropTypes<typeof props>
- expectTypeOf<Extracted>().toEqualTypeOf<{
- readonly key1: string
- readonly key2: string | number
- }>()
- })
- })
- describe('buildProps', () => {
- it('test buildProps', () => {
- const propsCommon = buildProps({
- type: {
- type: String,
- default: 'hello',
- },
- } as const)
- const props = buildProps({
- ...propsCommon,
- key1: {
- type: definePropType<'a' | 'b'>(String),
- },
- key2: {
- values: [1, 2, 3, 4],
- },
- key3: {
- values: [1, 2, 3, 4],
- default: 2,
- },
- key4: {
- values: keysOf({ a: 'a', b: 'b' }),
- default: 'a',
- },
- key5: Boolean,
- key6: String,
- key7: null,
- key8: Object,
- key9: Date,
- key10: Set,
- key11: undefined,
- // nested
- key12: buildProp({
- type: String,
- } as const),
- // default generator
- key13: {
- type: [String, Number, Function],
- default: () => '123' as const,
- } as const,
- key14: {
- type: Function,
- default: () => '123' as const,
- } as const,
- key15: {
- type: Function,
- default: () => () => '123' as const,
- } as const,
- key16: {
- type: String,
- default: () => '123' as const,
- } as const,
- } as const)
- expectTypeOf(props.type).toEqualTypeOf<{
- readonly type: PropType<string>
- readonly required: false
- readonly default: 'hello'
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- expectTypeOf(props.key1).toEqualTypeOf<{
- readonly type: PropType<'a' | 'b'>
- readonly required: false
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- expectTypeOf(props.key2).toEqualTypeOf<{
- readonly type: PropType<1 | 2 | 3 | 4>
- readonly required: false
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- expectTypeOf(props.key3).toEqualTypeOf<{
- readonly type: PropType<1 | 2 | 3 | 4>
- readonly required: false
- readonly default: 2
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- expectTypeOf(props.key4).toEqualTypeOf<{
- readonly type: PropType<'a' | 'b'>
- readonly required: false
- readonly default: 'a'
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- expectTypeOf(props.key5).toEqualTypeOf<BooleanConstructor>()
- expectTypeOf(props.key6).toEqualTypeOf<StringConstructor>()
- expectTypeOf(props.key7).toEqualTypeOf<null>()
- expectTypeOf(props.key8).toEqualTypeOf<ObjectConstructor>()
- expectTypeOf(props.key9).toEqualTypeOf<DateConstructor>()
- expectTypeOf(props.key10).toEqualTypeOf<SetConstructor>()
- expectTypeOf(props.key11).toEqualTypeOf<undefined>()
- expectTypeOf(props.key12).toEqualTypeOf<{
- readonly type: PropType<string>
- readonly required: false
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- expectTypeOf(props.key13).toEqualTypeOf<{
- readonly type: PropType<string | number | Function>
- readonly required: false
- // TODO
- readonly default: () => '123'
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- expectTypeOf(props.key14).toEqualTypeOf<{
- readonly type: PropType<Function>
- readonly required: false
- readonly default: () => '123'
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- expectTypeOf(props.key15).toEqualTypeOf<{
- readonly type: PropType<Function>
- readonly required: false
- readonly default: () => () => '123'
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- expectTypeOf(props.key16).toEqualTypeOf<{
- readonly type: PropType<string>
- readonly required: false
- // TODO
- readonly default: () => '123'
- readonly validator: ((val: unknown) => boolean) | undefined
- [epPropKey]: true
- }>()
- })
- })
- describe('runtime', () => {
- it('default value', () => {
- const warnHandler = vi.fn()
- const Foo = defineComponent({
- props: buildProps({
- bar: { type: Boolean },
- baz: { values: ['a', 'b', 'c'] },
- qux: { values: ['a', 'b', 'c'], required: true },
- qux2: { values: ['a', 'b', 'c'], required: true },
- } as const),
- template: `{{ $props }}`,
- })
- const props = mount(Foo as any, {
- props: {
- baz: undefined,
- qux2: undefined,
- },
- global: {
- config: {
- warnHandler,
- },
- },
- }).props()
- expect(props.bar).toBe(false)
- expect(props.baz).toBe(undefined)
- expect(warnHandler.mock.calls[0][0]).toBe('Missing required prop: "qux"')
- expect(warnHandler.mock.calls[1][0]).toBe(
- 'Invalid prop: validation failed for prop "qux2". Expected one of ["a", "b", "c"], got value undefined.'
- )
- })
- })
|