-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.test.ts
315 lines (287 loc) · 9.09 KB
/
index.test.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
/* eslint @typescript-eslint/no-unused-vars: ["error", { "varsIgnorePattern": "^schema$" }] */
import type { TypeOfSchema, Value } from ".";
declare function describe(name: string, body: () => void): void;
declare function it(name: string, body: () => void): void;
declare function assert<T extends true>(): T;
type Equal<X, Y> =
(<T>() => T extends X ? 1 : 2) extends <T>() => T extends Y ? 1 : 2 ? true : false;
type NormalizeObject<T> = T extends unknown ? { [K in keyof T]: T[K] } : never;
describe("empty schema", () => {
it("returns any value type", () => {
const schema = {} as const;
type Expected = Value;
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
});
describe("const", () => {
it("returns a constant value type", () => {
const schema = { const: 42 } as const;
type Expected = 42;
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
});
describe("enum", () => {
it("returns a union type of enum members", () => {
const schema = { enum: [42, "foo"] } as const;
type Expected = 42 | "foo";
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
});
describe("null", () => {
it("returns the null type", () => {
const schema = { type: "null" } as const;
type Expected = null;
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
});
describe("number", () => {
it("returns the number type", () => {
// NOTE: Constaints that cannot be represented in types, such as minimum and maximum, are ignored.
const schema = {
type: "number",
minimum: 0,
maximum: 10,
} as const;
type Expected = number;
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
});
describe("integer", () => {
it("returns the number type", () => {
// NOTE: The constraint that the value is an integer is ignored, as it cannot be represented in types.
const schema = {
type: "integer",
minimum: 0,
maximum: 10,
} as const;
type Expected = number;
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
});
describe("string", () => {
it("returns the string type", () => {
// NOTE: Constaints that cannot be represented in types, such as minLength and maxLength, are ignored.
const schema = {
type: "string",
minLength: 8,
maxLength: 16,
} as const;
type Expected = string;
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
});
describe("boolean", () => {
it("returns the boolean type", () => {
const schema = { type: "boolean" } as const;
type Expected = boolean;
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
});
describe("array", () => {
it("returns an array type of any values if no item is specified", () => {
const schema = { type: "array" } as const;
type Expected = Value[];
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
it("returns an array type of typed values if an item is specified", () => {
const schema = {
type: "array",
items: { type: "number" },
} as const;
type Expected = number[];
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
it("returns an array type of union typed values if multiple items are specified", () => {
const schema = {
type: "array",
items: [{ type: "number" }, { type: "string" }],
} as const;
type Expected = Array<number | string>;
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
it("returns an array type that allows any values if additionalItems is set to true", () => {
const schema = {
type: "array",
items: { type: "number" },
additionalItems: true,
} as const;
type Expected = Array<number | Value>;
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
it("returns an array type that disallows any values if additionalItems is set to false", () => {
const schema = {
type: "array",
items: { type: "number" },
additionalItems: false,
} as const;
type Expected = number[];
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
it("returns an array type that allows additional values if additionalItems is specified with a schema", () => {
const schema = {
type: "array",
items: { type: "number" },
additionalItems: { type: "string" },
} as const;
type Expected = Array<number | string>;
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<Actual, Expected>>();
});
});
describe("object", () => {
it("returns an empty object type if nothing else is specified", () => {
const schema = { type: "object" } as const;
type Expected = {};
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<NormalizeObject<Actual>, Expected>>();
});
it("returns an object type with any typed properties if required is specified without properties", () => {
const schema = {
type: "object",
required: ["a"],
} as const;
type Expected = { a: Value };
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<NormalizeObject<Actual>, Expected>>();
});
it("returns an object type with optional typed properties if properties are specified without required", () => {
const schema = {
type: "object",
properties: {
a: { type: "number" },
b: { type: "string" },
},
} as const;
type Expected = {
a?: number;
b?: string;
};
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<NormalizeObject<Actual>, Expected>>();
});
it("returns an object type with required typed properties if properties and required are specified", () => {
const schema = {
type: "object",
properties: {
a: { type: "number" },
b: { type: "string" },
},
required: ["b"],
} as const;
type Expected = {
a?: number;
b: string;
};
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<NormalizeObject<Actual>, Expected>>();
});
it("returns an object type with an any typed index signature if additionalProperties is set to true", () => {
const schema = {
type: "object",
additionalProperties: true,
} as const;
type Expected = { [K in string]?: Value };
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<NormalizeObject<Actual>, Expected>>();
});
it("returns an empty object type if additionalProperties is set to false", () => {
const schema = {
type: "object",
additionalProperties: false,
} as const;
type Expected = {};
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<NormalizeObject<Actual>, Expected>>();
});
it("returns an object type with a typed index signature if additionalProperties is specified with a schema", () => {
const schema = {
type: "object",
additionalProperties: { type: "string" },
} as const;
type Expected = { [K in string]?: string };
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<NormalizeObject<Actual>, Expected>>();
});
it("returns an intersection type of objects if both properties and additionalProperties are specified", () => {
const schema = {
type: "object",
properties: {
a: { type: "number" },
b: { type: "string" },
},
required: ["b"],
additionalProperties: { type: "string" },
} as const;
type Expected = {
a?: number;
b: string;
} & {
[K in string]?: string;
};
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<NormalizeObject<Actual>, NormalizeObject<Expected>>>();
});
});
describe("oneOf", () => {
it("returns a union type that accepts any values allowed by one of the schemas", () => {
const schema = {
oneOf: [
{
type: "object",
properties: {
a: { type: "number" },
},
required: ["a"],
},
{
type: "object",
properties: {
b: { type: "string" },
},
required: ["b"],
},
],
} as const;
type Expected = { a: number } | { b: string };
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<NormalizeObject<Actual>, Expected>>();
});
});
describe("allOf", () => {
it("returns an intersection type that accepts any values allowed by all of the schemas", () => {
const schema = {
allOf: [
{
type: "object",
properties: {
a: { type: "number" },
},
required: ["a"],
},
{
type: "object",
properties: {
b: { type: "string" },
},
required: ["b"],
},
],
} as const;
type Expected = { a: number } & { b: string };
type Actual = TypeOfSchema<typeof schema>;
assert<Equal<NormalizeObject<Actual>, NormalizeObject<Expected>>>();
});
});