-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall.test.js
367 lines (326 loc) · 7.44 KB
/
all.test.js
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
'use strict';
const { assert, refute, match } = require('@sinonjs/referee-sinon');
const {
schema,
all,
object,
boolean,
number,
integer,
string,
literal,
validator
} = require('..');
describe('all', () => {
it('throws if less than two arguments are given', () => {
assert.exception(
() => {
all();
},
{
name: 'Error',
message: 'Require at least two arguments'
}
);
assert.exception(
() => {
all(string);
},
{
name: 'Error',
message: 'Require at least two arguments'
}
);
});
it('validates object with two object validators', () => {
const obj = all(
object({ foo: integer.min(1) }),
object({ foo: number.max(2) })
);
assert.isTrue(obj({ foo: 1 }));
assert.isTrue(obj({ foo: 2 }));
assert.isFalse(obj({ foo: 0 }));
assert.isFalse(obj({ foo: 3 }));
assert.isFalse(obj({ foo: 1.5 }));
// @ts-expect-error
assert.isFalse(obj({}));
// @ts-expect-error
assert.isFalse(obj({ foo: null }));
// @ts-expect-error
assert.isFalse(obj({ foo: 'test' }));
// @ts-expect-error
assert.isFalse(obj({ bar: 1 }));
});
it('validates object with an object and a custom validator', () => {
const obj = all(
object({ key: string }),
validator(() => true)
);
assert.isTrue(obj({ key: 'test' }));
// @ts-expect-error
assert.isFalse(obj({ key: 42 }));
});
it('exposes validators', () => {
const one = object({ key: string });
const obj = all(
one,
validator(() => true)
);
assert.equals(obj.validators, [one, match.func]);
refute.exception(() => obj.validators[0].verify({ key: 'test' }));
assert.exception(
() =>
obj.validators[0].verify({
// @ts-expect-error
key: 42
}),
{
name: 'TypeError',
message: 'Expected property "key" to be string but got 42'
}
);
});
it('fails if either of two validators fail', () => {
const allSchema = schema(all(number.max(-1), number.min(1)));
assert.exception(
() => {
// @ts-expect-error
allSchema(false);
},
{
name: 'TypeError',
message: 'Expected all(number <= -1, number >= 1) but got false',
code: 'E_SCHEMA'
}
);
assert.exception(
() => {
allSchema(0);
},
{
name: 'TypeError',
message: 'Expected all(number <= -1, number >= 1) but got 0',
code: 'E_SCHEMA'
}
);
assert.exception(
() => {
// @ts-expect-error
allSchema('test');
},
{
name: 'TypeError',
message: 'Expected all(number <= -1, number >= 1) but got "test"',
code: 'E_SCHEMA'
}
);
});
it('fails as part of an object assertion', () => {
const allSchema = schema(
object({
// @ts-expect-error
key: all(boolean, integer)
})
);
assert.exception(
() => {
// @ts-expect-error
allSchema({ key: 42 });
},
{
name: 'TypeError',
message:
'Expected property "key" to be all(boolean, integer) but got 42',
code: 'E_SCHEMA'
}
);
});
it('fails null and custom test', () => {
const allSchema = schema(
all(
literal(null),
validator(() => false)
)
);
assert.exception(
() => {
allSchema(null);
},
{
name: 'TypeError',
message: 'Expected all(null, <custom validator>) but got null'
}
);
});
it('fails with given error code', () => {
const allSchema = schema(all(number.max(-1), number.min(1)));
assert.exception(
() => {
allSchema(42, { error_code: 'INVALID' });
},
{
code: 'INVALID'
}
);
});
it('fails with given error code for reader', () => {
const allSchema = schema(all(number.max(-1), number.min(1)));
assert.exception(
() => {
allSchema.read(42, { error_code: 'INVALID' });
},
{
code: 'INVALID'
}
);
});
it('fails with error code from schema', () => {
const allSchema = schema(all(number.max(-1), number.min(1)), {
error_code: 'INVALID'
});
assert.exception(
() => {
allSchema(42);
},
{
code: 'INVALID'
}
);
});
it.skip('fails with error code from schema for reader', () => {
const allSchema = schema(all(number.max(-1), number.min(1)), {
error_code: 'INVALID'
});
assert.exception(
() => {
allSchema.read(42);
},
{
code: 'INVALID'
}
);
});
it('passes on custom tests', () => {
const allSchema = schema(
all(
validator(() => true),
validator(() => true)
)
);
refute.exception(() => {
allSchema(null);
allSchema('test');
allSchema({});
});
});
it('fails to access unknown property on reader', () => {
const allSchema = schema(
all(
object({ key: string }),
validator(() => true)
)
);
const proxy = allSchema.read({ key: 'test' });
assert.exception(
() => {
// @ts-expect-error
return proxy.foo;
},
{
name: 'ReferenceError',
message: 'Invalid property "foo"',
code: 'E_SCHEMA'
}
);
});
it('fails to access unknown property on writer', () => {
const allSchema = schema(
all(
object({ key: string }),
validator(() => true)
)
);
const proxy = allSchema.write({ key: 'test' });
assert.exception(
() => {
// @ts-expect-error
return proxy.foo;
},
{
name: 'ReferenceError',
message: 'Invalid property "foo"',
code: 'E_SCHEMA'
}
);
});
it('fails to assign property on writer', () => {
const allSchema = schema(
all(
object({ key: string }),
validator(() => true)
)
);
const proxy = allSchema.write({ key: 'test' });
assert.exception(
() => {
// @ts-expect-error
proxy.key = 11;
},
{
name: 'TypeError',
message: 'Expected property "key" to be string but got 11',
code: 'E_SCHEMA'
}
);
});
it('fails to assign property on writer (with custom validator first)', () => {
const allSchema = schema(
all(
validator((/** @type {{ key: string }} */ _obj) => true),
object({ key: string })
)
);
const proxy = allSchema.write({ key: 'test' });
assert.exception(
() => {
// @ts-expect-error
proxy.key = 11;
},
{
name: 'TypeError',
message: 'Expected property "key" to be string but got 11',
code: 'E_SCHEMA'
}
);
});
it('succeeds on two custom validators', () => {
const allSchema = schema(
all(
validator(() => true),
validator(() => true)
)
);
refute.exception(() => {
allSchema.write({});
});
});
it('fails on two custom validators', () => {
const allSchema = schema(
all(
validator(() => true),
validator(() => false)
)
);
assert.exception(
() => {
allSchema.write({});
},
{
name: 'TypeError',
message:
'Expected all(<custom validator>, <custom validator>) but got {}',
code: 'E_SCHEMA'
}
);
});
});