-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy patherrors.test.ts
More file actions
248 lines (209 loc) · 13.1 KB
/
errors.test.ts
File metadata and controls
248 lines (209 loc) · 13.1 KB
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
import * as fs from 'node:fs'
import {test, expect} from 'vitest'
import {tsErrors, tsFileErrors} from './ts-output'
test('toEqualTypeOf<...>() error message', async () => {
expect(tsErrors(`expectTypeOf({a: 1}).toEqualTypeOf<{a: string}>()`)).toMatchInlineSnapshot(`
"test/test.ts:999:999 - error TS2344: Type '{ a: string; }' does not satisfy the constraint '{ a: "Expected: string, Actual: number"; }'.
Types of property 'a' are incompatible.
Type 'string' is not assignable to type '"Expected: string, Actual: number"'.
999 expectTypeOf({a: 1}).toEqualTypeOf<{a: string}>()
~~~~~~~~~~~"
`)
})
test('toEqualTypeOf(...) error message', async () => {
expect(tsErrors(`expectTypeOf({a: 1}).toEqualTypeOf({a: 'one'})`)).toMatchInlineSnapshot(`
"test/test.ts:999:999 - error TS2353: Object literal may only specify known properties, and 'a' does not exist in type 'Mismatch'.
999 expectTypeOf({a: 1}).toEqualTypeOf({a: 'one'})
~"
`)
})
test('toEqualTypeOf with optional properties', async () => {
expect(tsErrors(`expectTypeOf<{x?: 1; y: 1}>().toEqualTypeOf<{x?: 1; y: 2}>()`)).toMatchInlineSnapshot(`
"test/test.ts:999:999 - error TS2344: Type '{ x?: 1 | undefined; y: 2; }' does not satisfy the constraint '{ y: "Expected: literal number: 2, Actual: literal number: 1"; x?: 1 | undefined; }'.
Types of property 'y' are incompatible.
Type '2' is not assignable to type '"Expected: literal number: 2, Actual: literal number: 1"'.
999 expectTypeOf<{x?: 1; y: 1}>().toEqualTypeOf<{x?: 1; y: 2}>()
~~~~~~~~~~~~~"
`)
})
test('toEqualTypeOf with optional properties on actual type', async () => {
// ideally the error would report both problems: `x` is optional but isn't supposed to be, and `y` has type 1 but should be 2.
// but sadly we only report the first problem.
expect(tsErrors(`expectTypeOf<{x?: 1; y: 1}>().toEqualTypeOf<{x: 1; y: 2}>()`)).toMatchInlineSnapshot(`
"test/test.ts:999:999 - error TS2344: Type '{ x: 1; y: 2; }' does not satisfy the constraint '{ x: "Expected: literal number: 1, Actual: undefined"; y: "Expected: literal number: 2, Actual: literal number: 1"; }'.
Types of property 'x' are incompatible.
Type '1' is not assignable to type '"Expected: literal number: 1, Actual: undefined"'.
999 expectTypeOf<{x?: 1; y: 1}>().toEqualTypeOf<{x: 1; y: 2}>()
~~~~~~~~~~~~"
`)
})
test('toEqualTypeOf special types', async () => {
expect(
tsErrors(
`expectTypeOf<{a: any}>().toEqualTypeOf<{a: 1}>()`,
`expectTypeOf<{a: never}>().toEqualTypeOf<{a: 1}>()`,
`expectTypeOf<{a: unknown}>().toEqualTypeOf<{a: 1}>()`,
`expectTypeOf<{a: 1}>().toEqualTypeOf<{a: any}>()`,
`expectTypeOf<{a: 1}>().toEqualTypeOf<{a: never}>()`,
`expectTypeOf<{a: 1}>().toEqualTypeOf<{a: unknown}>()`,
),
).toMatchInlineSnapshot(`
"test/test.ts:999:999 - error TS2344: Type '{ a: 1; }' does not satisfy the constraint '{ a: never; }'.
Types of property 'a' are incompatible.
Type 'number' is not assignable to type 'never'.
999 expectTypeOf<{a: any}>().toEqualTypeOf<{a: 1}>()
~~~~~~
test/test.ts:999:999 - error TS2344: Type '{ a: 1; }' does not satisfy the constraint '{ a: "Expected: literal number: 1, Actual: never"; }'.
Types of property 'a' are incompatible.
Type '1' is not assignable to type '"Expected: literal number: 1, Actual: never"'.
999 expectTypeOf<{a: never}>().toEqualTypeOf<{a: 1}>()
~~~~~~
test/test.ts:999:999 - error TS2344: Type '{ a: 1; }' does not satisfy the constraint '{ a: "Expected: literal number: 1, Actual: unknown"; }'.
Types of property 'a' are incompatible.
Type '1' is not assignable to type '"Expected: literal number: 1, Actual: unknown"'.
999 expectTypeOf<{a: unknown}>().toEqualTypeOf<{a: 1}>()
~~~~~~
test/test.ts:999:999 - error TS2344: Type '{ a: any; }' does not satisfy the constraint '{ a: never; }'.
Types of property 'a' are incompatible.
Type 'any' is not assignable to type 'never'.
999 expectTypeOf<{a: 1}>().toEqualTypeOf<{a: any}>()
~~~~~~~~
test/test.ts:999:999 - error TS2554: Expected 1 arguments, but got 0.
999 expectTypeOf<{a: 1}>().toEqualTypeOf<{a: never}>()
~~~~~~~~~~~~~
src/index.ts:999:999
999 ...MISMATCH: MismatchArgs<StrictEqualUsingTSInternalIdenticalToOperator<Actual, Expected>, true>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Arguments for the rest parameter 'MISMATCH' were not provided.
test/test.ts:999:999 - error TS2344: Type '{ a: unknown; }' does not satisfy the constraint '{ a: "Expected: unknown, Actual: never"; }'.
Types of property 'a' are incompatible.
Type 'unknown' is not assignable to type '"Expected: unknown, Actual: never"'.
999 expectTypeOf<{a: 1}>().toEqualTypeOf<{a: unknown}>()
~~~~~~~~~~~~"
`)
})
test('toEqualTypeOf with literals', async () => {
expect(
tsErrors(
`expectTypeOf<{a: string}>().toEqualTypeOf<{a: 'abc'}>()`,
`expectTypeOf<{a: 'abc'}>().toEqualTypeOf<{a: string}>()`,
`expectTypeOf<{a: 'abc'}>().toEqualTypeOf<{a: 'xyz'}>()`,
`expectTypeOf<{a: number}>().toEqualTypeOf<{a: 1}>()`,
`expectTypeOf<{a: 1}>().toEqualTypeOf<{a: number}>()`,
`expectTypeOf<{a: 1}>().toEqualTypeOf<{a: 2}>()`,
`expectTypeOf<{a: boolean}>().toEqualTypeOf<{a: true}>()`,
`expectTypeOf<{a: true}>().toEqualTypeOf<{a: boolean}>()`,
`expectTypeOf<{a: true}>().toEqualTypeOf<{a: false}>()`,
),
).toMatchInlineSnapshot(`
"test/test.ts:999:999 - error TS2344: Type '{ a: "abc"; }' does not satisfy the constraint '{ a: "Expected: literal string: abc, Actual: string"; }'.
Types of property 'a' are incompatible.
Type '"abc"' is not assignable to type '"Expected: literal string: abc, Actual: string"'.
999 expectTypeOf<{a: string}>().toEqualTypeOf<{a: 'abc'}>()
~~~~~~~~~~
test/test.ts:999:999 - error TS2344: Type '{ a: string; }' does not satisfy the constraint '{ a: "Expected: string, Actual: never"; }'.
Types of property 'a' are incompatible.
Type 'string' is not assignable to type '"Expected: string, Actual: never"'.
999 expectTypeOf<{a: 'abc'}>().toEqualTypeOf<{a: string}>()
~~~~~~~~~~~
test/test.ts:999:999 - error TS2344: Type '{ a: "xyz"; }' does not satisfy the constraint '{ a: "Expected: literal string: xyz, Actual: literal string: abc"; }'.
Types of property 'a' are incompatible.
Type '"xyz"' is not assignable to type '"Expected: literal string: xyz, Actual: literal string: abc"'.
999 expectTypeOf<{a: 'abc'}>().toEqualTypeOf<{a: 'xyz'}>()
~~~~~~~~~~
test/test.ts:999:999 - error TS2344: Type '{ a: 1; }' does not satisfy the constraint '{ a: "Expected: literal number: 1, Actual: number"; }'.
Types of property 'a' are incompatible.
Type '1' is not assignable to type '"Expected: literal number: 1, Actual: number"'.
999 expectTypeOf<{a: number}>().toEqualTypeOf<{a: 1}>()
~~~~~~
test/test.ts:999:999 - error TS2344: Type '{ a: number; }' does not satisfy the constraint '{ a: "Expected: number, Actual: never"; }'.
Types of property 'a' are incompatible.
Type 'number' is not assignable to type '"Expected: number, Actual: never"'.
999 expectTypeOf<{a: 1}>().toEqualTypeOf<{a: number}>()
~~~~~~~~~~~
test/test.ts:999:999 - error TS2344: Type '{ a: 2; }' does not satisfy the constraint '{ a: "Expected: literal number: 2, Actual: literal number: 1"; }'.
Types of property 'a' are incompatible.
Type '2' is not assignable to type '"Expected: literal number: 2, Actual: literal number: 1"'.
999 expectTypeOf<{a: 1}>().toEqualTypeOf<{a: 2}>()
~~~~~~
test/test.ts:999:999 - error TS2344: Type '{ a: true; }' does not satisfy the constraint '{ a: "Expected: literal boolean: true, Actual: literal boolean: false"; }'.
Types of property 'a' are incompatible.
Type 'true' is not assignable to type '"Expected: literal boolean: true, Actual: literal boolean: false"'.
999 expectTypeOf<{a: boolean}>().toEqualTypeOf<{a: true}>()
~~~~~~~~~
test/test.ts:999:999 - error TS2344: Type '{ a: boolean; }' does not satisfy the constraint '{ a: "Expected: boolean, Actual: never"; }'.
Types of property 'a' are incompatible.
Type 'boolean' is not assignable to type '"Expected: boolean, Actual: never"'.
999 expectTypeOf<{a: true}>().toEqualTypeOf<{a: boolean}>()
~~~~~~~~~~~~
test/test.ts:999:999 - error TS2344: Type '{ a: false; }' does not satisfy the constraint '{ a: "Expected: literal boolean: false, Actual: literal boolean: true"; }'.
Types of property 'a' are incompatible.
Type 'false' is not assignable to type '"Expected: literal boolean: false, Actual: literal boolean: true"'.
999 expectTypeOf<{a: true}>().toEqualTypeOf<{a: false}>()
~~~~~~~~~~"
`)
})
test('toMatchTypeOf<...>() error message', async () => {
expect(tsErrors(`expectTypeOf({a: 1}).toMatchTypeOf<{a: string}>()`)).toMatchInlineSnapshot(`
"test/test.ts:999:999 - error TS2344: Type '{ a: string; }' does not satisfy the constraint '{ a: "Expected: string, Actual: number"; }'.
Types of property 'a' are incompatible.
Type 'string' is not assignable to type '"Expected: string, Actual: number"'.
999 expectTypeOf({a: 1}).toMatchTypeOf<{a: string}>()
~~~~~~~~~~~"
`)
})
test('toMatchTypeOf(...) error message', async () => {
expect(tsErrors(`expectTypeOf({a: 1}).toMatchTypeOf({a: 'one'})`)).toMatchInlineSnapshot(`
"test/test.ts:999:999 - error TS2554: Expected 0 arguments, but got 1.
999 expectTypeOf({a: 1}).toMatchTypeOf({a: 'one'})
~~~~~~~~~~"
`)
})
test('toBeString', async () => {
const badString = `expectTypeOf(1).toBeString()`
expect(tsErrors(badString)).toMatchInlineSnapshot(`
"test/test.ts:999:999 - error TS2349: This expression is not callable.
Type 'ExpectString<number>' has no call signatures.
999 expectTypeOf(1).toBeString()
~~~~~~~~~~"
`)
})
test('toBeNullable', async () => {
const okAssertion = `expectTypeOf<1 | undefined>().toBeNullable()`
expect(tsErrors(okAssertion + '\n' + okAssertion.replace('.toBe', '.not.toBe'))).toMatchInlineSnapshot(`
"test/test.ts:999:999 - error TS2349: This expression is not callable.
Type 'Inverted<ExpectNullable<1 | undefined>>' has no call signatures.
999 expectTypeOf<1 | undefined>().not.toBeNullable()
~~~~~~~~~~~~"
`)
})
test('toEqualTypeOf with tuples', () => {
const assertion = `expectTypeOf<[[number], [1], []]>().toEqualTypeOf<[[number], [2], []]>()`
expect(tsErrors(assertion)).toMatchInlineSnapshot(`
"test/test.ts:999:999 - error TS2344: Type '[[number], [2], []]' does not satisfy the constraint '{ 0: { 0: number; }; 1: { 0: "Expected: literal number: 2, Actual: literal number: 1"; }; 2: {}; }'.
The types of '1[0]' are incompatible between these types.
Type '2' is not assignable to type '"Expected: literal number: 2, Actual: literal number: 1"'.
999 expectTypeOf<[[number], [1], []]>().toEqualTypeOf<[[number], [2], []]>()
~~~~~~~~~~~~~~~~~~~"
`)
})
test('toMatchObjectType', () => {
expect(tsErrors(`expectTypeOf({a: {b: 1}}).toMatchObjectType<{a: {b: string}}>()`)).toMatchInlineSnapshot(`
"test/test.ts:999:999 - error TS2344: Type '{ a: { b: string; }; }' does not satisfy the constraint '{ a: { b: "Expected: string, Actual: number"; }; }'.
The types of 'a.b' are incompatible between these types.
Type 'string' is not assignable to type '"Expected: string, Actual: number"'.
999 expectTypeOf({a: {b: 1}}).toMatchObjectType<{a: {b: string}}>()
~~~~~~~~~~~~~~~~"
`)
})
test('usage.test.ts', () => {
// remove all `.not`s and `// @ts-expect-error`s from the main test file and snapshot the errors
const usageTestFile = fs
.readFileSync(__dirname + '/usage.test.ts')
.toString()
.split('\n')
.map(line => line.replace('// @ts-expect-error', '// error expected on next line:'))
.map(line => line.replace('.not.', '.'))
.join('\n')
expect(tsFileErrors({filepath: 'test/usage.test.ts', content: usageTestFile})).toMatchSnapshot()
})