deno.land / x / mongoose@6.7.5 / test / docs / validation.test.js

validation.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
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
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
'use strict';const assert = require('assert');const mongoose = require('../../');const start = require('../common');
const Promise = global.Promise || require('bluebird');
describe('validation docs', function() { let db; const Schema = mongoose.Schema;
before(function() { db = mongoose.createConnection(start.uri, { minPoolSize: 1, maxPoolSize: 1 }); });
after(async function() { await db.close(); });
/** * Before we get into the specifics of validation syntax, please keep the following rules in mind: * * - Validation is defined in the [SchemaType](./schematypes.html) * - Validation is [middleware](./middleware.html). Mongoose registers validation as a `pre('save')` hook on every schema by default. * - You can disable automatic validation before save by setting the [validateBeforeSave](./guide.html#validateBeforeSave) option * - You can manually run validation using `doc.validate(callback)` or `doc.validateSync()` * - You can manually mark a field as invalid (causing validation to fail) by using [`doc.invalidate(...)`](./api.html#document_Document-invalidate) * - Validators are not run on undefined values. The only exception is the [`required` validator](./api.html#schematype_SchemaType-required). * - Validation is asynchronously recursive; when you call [Model#save](./api.html#model_Model-save), sub-document validation is executed as well. If an error occurs, your [Model#save](./api.html#model_Model-save) callback receives it * - Validation is customizable */
it('Validation', async function() { const schema = new Schema({ name: { type: String, required: true } }); const Cat = db.model('Cat', schema);
// This cat has no name :( const cat = new Cat();
let error; try { await cat.save(); } catch (err) { error = err; } assert.equal(error.errors['name'].message, 'Path `name` is required.');
error = cat.validateSync(); assert.equal(error.errors['name'].message, 'Path `name` is required.'); });
/** * Mongoose has several built-in validators. * * - All [SchemaTypes](/docs/schematypes.html) have the built-in [required](./api.html#schematype_SchemaType-required) validator. The required validator uses the [SchemaType's `checkRequired()` function](./api.html#schematype_SchemaType-checkRequired) to determine if the value satisfies the required validator. * - [Numbers](/docs/schematypes.html#numbers) have [`min` and `max`](./schematypes.html#number-validators) validators. * - [Strings](/docs/schematypes.html#strings) have [`enum`, `match`, `minLength`, and `maxLength`](./schematypes.html#string-validators) validators. * * Each of the validator links above provide more information about how to enable them and customize their error messages. */
it('Built-in Validators', function() { const breakfastSchema = new Schema({ eggs: { type: Number, min: [6, 'Too few eggs'], max: 12 }, bacon: { type: Number, required: [true, 'Why no bacon?'] }, drink: { type: String, enum: ['Coffee', 'Tea'], required: function() { return this.bacon > 3; } } }); const Breakfast = db.model('Breakfast', breakfastSchema);
const badBreakfast = new Breakfast({ eggs: 2, bacon: 0, drink: 'Milk' }); let error = badBreakfast.validateSync(); assert.equal(error.errors['eggs'].message, 'Too few eggs'); assert.ok(!error.errors['bacon']); assert.equal(error.errors['drink'].message, '`Milk` is not a valid enum value for path `drink`.');
badBreakfast.bacon = 5; badBreakfast.drink = null;
error = badBreakfast.validateSync(); assert.equal(error.errors['drink'].message, 'Path `drink` is required.');
badBreakfast.bacon = null; error = badBreakfast.validateSync(); assert.equal(error.errors['bacon'].message, 'Why no bacon?'); });
/** * You can configure the error message for individual validators in your schema. There are two equivalent * ways to set the validator error message: * * - Array syntax: `min: [6, 'Must be at least 6, got {VALUE}']` * - Object syntax: `enum: { values: ['Coffee', 'Tea'], message: '{VALUE} is not supported' }` * * Mongoose also supports rudimentary templating for error messages. * Mongoose replaces `{VALUE}` with the value being validated. */
it('Custom Error Messages', function() { const breakfastSchema = new Schema({ eggs: { type: Number, min: [6, 'Must be at least 6, got {VALUE}'], max: 12 }, drink: { type: String, enum: { values: ['Coffee', 'Tea'], message: '{VALUE} is not supported' } } }); // acquit:ignore:start db.deleteModel(/Breakfast/); // acquit:ignore:end const Breakfast = db.model('Breakfast', breakfastSchema);
const badBreakfast = new Breakfast({ eggs: 2, drink: 'Milk' }); const error = badBreakfast.validateSync(); assert.equal(error.errors['eggs'].message, 'Must be at least 6, got 2'); assert.equal(error.errors['drink'].message, 'Milk is not supported'); });
/** * A common gotcha for beginners is that the `unique` option for schemas * is *not* a validator. It's a convenient helper for building [MongoDB unique indexes](https://docs.mongodb.com/manual/core/index-unique/). * See the [FAQ](/docs/faq.html) for more information. */
it('The `unique` Option is Not a Validator', function(done) { const uniqueUsernameSchema = new Schema({ username: { type: String, unique: true } }); const U1 = db.model('U1', uniqueUsernameSchema); const U2 = db.model('U2', uniqueUsernameSchema); // acquit:ignore:start this.timeout(5000); let remaining = 2; // acquit:ignore:end
const dup = [{ username: 'Val' }, { username: 'Val' }]; U1.create(dup, err => { // Race condition! This may save successfully, depending on whether // MongoDB built the index before writing the 2 docs. // acquit:ignore:start err; --remaining || done(); // acquit:ignore:end });
// You need to wait for Mongoose to finish building the `unique` // index before writing. You only need to build indexes once for // a given collection, so you normally don't need to do this // in production. But, if you drop the database between tests, // you will need to use `init()` to wait for the index build to finish. U2.init(). then(() => U2.create(dup)). catch(error => { // Will error, but will *not* be a mongoose validation error, it will be // a duplicate key error. // See: https://masteringjs.io/tutorials/mongoose/e11000-duplicate-key assert.ok(error); assert.ok(!error.errors); assert.ok(error.message.indexOf('duplicate key error') !== -1); // acquit:ignore:start --remaining || done(); // acquit:ignore:end }); });
/** * If the built-in validators aren't enough, you can define custom validators * to suit your needs. * * Custom validation is declared by passing a validation function. * You can find detailed instructions on how to do this in the * [`SchemaType#validate()` API docs](./api.html#schematype_SchemaType-validate). */ it('Custom Validators', function() { const userSchema = new Schema({ phone: { type: String, validate: { validator: function(v) { return /\d{3}-\d{3}-\d{4}/.test(v); }, message: props => `${props.value} is not a valid phone number!` }, required: [true, 'User phone number required'] } });
const User = db.model('user', userSchema); const user = new User(); let error;
user.phone = '555.0123'; error = user.validateSync(); assert.equal(error.errors['phone'].message, '555.0123 is not a valid phone number!');
user.phone = ''; error = user.validateSync(); assert.equal(error.errors['phone'].message, 'User phone number required');
user.phone = '201-555-0123'; // Validation succeeds! Phone number is defined // and fits `DDD-DDD-DDDD` error = user.validateSync(); assert.equal(error, null); });
/** * Custom validators can also be asynchronous. If your validator function * returns a promise (like an `async` function), mongoose will wait for that * promise to settle. If the returned promise rejects, or fulfills with * the value `false`, Mongoose will consider that a validation error. */ it('Async Custom Validators', async function() { const userSchema = new Schema({ name: { type: String, // You can also make a validator async by returning a promise. validate: () => Promise.reject(new Error('Oops!')) }, email: { type: String, // There are two ways for an promise-based async validator to fail: // 1) If the promise rejects, Mongoose assumes the validator failed with the given error. // 2) If the promise resolves to `false`, Mongoose assumes the validator failed and creates an error with the given `message`. validate: { validator: () => Promise.resolve(false), message: 'Email validation failed' } } });
const User = db.model('User', userSchema); const user = new User();
user.email = 'test@test.co'; user.name = 'test';
let error; try { await user.validate(); } catch (err) { error = err; } assert.ok(error); assert.equal(error.errors['name'].message, 'Oops!'); assert.equal(error.errors['email'].message, 'Email validation failed'); });
/** * Errors returned after failed validation contain an `errors` object * whose values are `ValidatorError` objects. Each * [ValidatorError](./api.html#error-validation-js) has `kind`, `path`, * `value`, and `message` properties. * A ValidatorError also may have a `reason` property. If an error was * thrown in the validator, this property will contain the error that was * thrown. */
it('Validation Errors', async function() { const toySchema = new Schema({ color: String, name: String });
const validator = function(value) { return /red|white|gold/i.test(value); }; toySchema.path('color').validate(validator, 'Color `{VALUE}` not valid', 'Invalid color'); toySchema.path('name').validate(function(v) { if (v !== 'Turbo Man') { throw new Error('Need to get a Turbo Man for Christmas'); } return true; }, 'Name `{VALUE}` is not valid');
const Toy = db.model('Toy', toySchema);
const toy = new Toy({ color: 'Green', name: 'Power Ranger' });
let error; try { await toy.save(); } catch(err) { error = err; } // `error` is a ValidationError object // `error.errors.color` is a ValidatorError object assert.equal(error.errors.color.message, 'Color `Green` not valid'); assert.equal(error.errors.color.kind, 'Invalid color'); assert.equal(error.errors.color.path, 'color'); assert.equal(error.errors.color.value, 'Green');
// If your validator throws an exception, mongoose will use the error // message. If your validator returns `false`, // mongoose will use the 'Name `Power Ranger` is not valid' message. assert.equal(error.errors.name.message, 'Need to get a Turbo Man for Christmas'); assert.equal(error.errors.name.value, 'Power Ranger'); // If your validator threw an error, the `reason` property will contain // the original error thrown, including the original stack trace. assert.equal(error.errors.name.reason.message, 'Need to get a Turbo Man for Christmas');
assert.equal(error.name, 'ValidationError'); });
/** * Before running validators, Mongoose attempts to coerce values to the * correct type. This process is called _casting_ the document. If * casting fails for a given path, the `error.errors` object will contain * a `CastError` object. * * Casting runs before validation, and validation does not run if casting * fails. That means your custom validators may assume `v` is `null`, * `undefined`, or an instance of the type specified in your schema. */
it('Cast Errors', function() { const vehicleSchema = new mongoose.Schema({ numWheels: { type: Number, max: 18 } }); const Vehicle = db.model('Vehicle', vehicleSchema);
const doc = new Vehicle({ numWheels: 'not a number' }); const err = doc.validateSync();
err.errors['numWheels'].name; // 'CastError' // 'Cast to Number failed for value "not a number" at path "numWheels"' err.errors['numWheels'].message; // acquit:ignore:start assert.equal(err.errors['numWheels'].name, 'CastError'); assert.equal(err.errors['numWheels'].message, 'Cast to Number failed for value "not a number" (type string) at path "numWheels"'); // acquit:ignore:end });
it('Global SchemaType Validation', async function() { // Add a custom validator to all strings mongoose.Schema.Types.String.set('validate', v => v == null || v > 0);
const userSchema = new Schema({ name: String, email: String }); // acquit:ignore:start db.deleteModel(/User/); // acquit:ignore:end const User = db.model('User', userSchema);
const user = new User({ name: '', email: '' });
const err = await user.validate().then(() => null, err => err); err.errors['name']; // ValidatorError err.errors['email']; // ValidatorError // acquit:ignore:start assert.ok(err); assert.equal(err.errors['name'].name, 'ValidatorError'); assert.equal(err.errors['email'].name, 'ValidatorError');
delete mongoose.Schema.Types.String.defaultOptions; // acquit:ignore:end });
/** * Defining validators on nested objects in mongoose is tricky, because * nested objects are not fully fledged paths. */
it('Required Validators On Nested Objects', function() { let personSchema = new Schema({ name: { first: String, last: String } });
assert.throws(function() { // This throws an error, because 'name' isn't a full fledged path personSchema.path('name').required(true); }, /Cannot.*'required'/);
// To make a nested object required, use a single nested schema const nameSchema = new Schema({ first: String, last: String });
personSchema = new Schema({ name: { type: nameSchema, required: true } });
const Person = db.model('Person', personSchema);
const person = new Person(); const error = person.validateSync(); assert.ok(error.errors['name']); });
/** * In the above examples, you learned about document validation. Mongoose also * supports validation for [`update()`](/docs/api.html#query_Query-update), * [`updateOne()`](/docs/api.html#query_Query-updateOne), * [`updateMany()`](/docs/api.html#query_Query-updateMany), * and [`findOneAndUpdate()`](/docs/api.html#query_Query-findOneAndUpdate) operations. * Update validators are off by default - you need to specify * the `runValidators` option. * * To turn on update validators, set the `runValidators` option for * `update()`, `updateOne()`, `updateMany()`, or `findOneAndUpdate()`. * Be careful: update validators are off by default because they have several * caveats. */ it('Update Validators', async function() { const toySchema = new Schema({ color: String, name: String });
const Toy = db.model('Toys', toySchema);
Toy.schema.path('color').validate(function(value) { return /red|green|blue/i.test(value); }, 'Invalid color');
const opts = { runValidators: true };
let error; try { await Toy.updateOne({}, { color: 'not a color' }, opts); } catch (err) { error = err; }
assert.equal(error.errors.color.message, 'Invalid color'); });
/** * There are a couple of key differences between update validators and * document validators. In the color validation function above, `this` refers * to the document being validated when using document validation. * However, when running update validators, the document being updated * may not be in the server's memory, so by default the value of `this` is * not defined. */
it('Update Validators and `this`', async function() { const toySchema = new Schema({ color: String, name: String });
toySchema.path('color').validate(function(value) { // When running in `validate()` or `validateSync()`, the // validator can access the document using `this`. // When running with update validators, `this` is the Query, // **not** the document being updated! // Queries have a `get()` method that lets you get the // updated value. if (this.get('name') && this.get('name').toLowerCase().indexOf('red') !== -1) { return value === 'red'; } return true; });
const Toy = db.model('ActionFigure', toySchema);
const toy = new Toy({ color: 'green', name: 'Red Power Ranger' }); // Validation failed: color: Validator failed for path `color` with value `green` let error = toy.validateSync(); assert.ok(error.errors['color']);
const update = { color: 'green', name: 'Red Power Ranger' }; const opts = { runValidators: true };
error = null; try { await Toy.updateOne({}, update, opts); } catch (err) { error = err; } // Validation failed: color: Validator failed for path `color` with value `green` assert.ok(error); });
/** * The other key difference is that update validators only run on the paths * specified in the update. For instance, in the below example, because * 'name' is not specified in the update operation, update validation will * succeed. * * When using update validators, `required` validators **only** fail when * you try to explicitly `$unset` the key. */
it('Update Validators Only Run On Updated Paths', function(done) { // acquit:ignore:start let outstanding = 2; // acquit:ignore:end const kittenSchema = new Schema({ name: { type: String, required: true }, age: Number });
const Kitten = db.model('Kitten', kittenSchema);
const update = { color: 'blue' }; const opts = { runValidators: true }; Kitten.updateOne({}, update, opts, function() { // Operation succeeds despite the fact that 'name' is not specified // acquit:ignore:start --outstanding || done(); // acquit:ignore:end });
const unset = { $unset: { name: 1 } }; Kitten.updateOne({}, unset, opts, function(err) { // Operation fails because 'name' is required assert.ok(err); assert.ok(err.errors['name']); // acquit:ignore:start --outstanding || done(); // acquit:ignore:end }); });
/** * One final detail worth noting: update validators **only** run on the * following update operators: * * - `$set` * - `$unset` * - `$push` (>= 4.8.0) * - `$addToSet` (>= 4.8.0) * - `$pull` (>= 4.12.0) * - `$pullAll` (>= 4.12.0) * * For instance, the below update will succeed, regardless of the value of * `number`, because update validators ignore `$inc`. * * Also, `$push`, `$addToSet`, `$pull`, and `$pullAll` validation does * **not** run any validation on the array itself, only individual elements * of the array. */
it('Update Validators Only Run For Some Operations', async function() { const testSchema = new Schema({ number: { type: Number, max: 0 }, arr: [{ message: { type: String, maxlength: 10 } }] });
// Update validators won't check this, so you can still `$push` 2 elements // onto the array, so long as they don't have a `message` that's too long. testSchema.path('arr').validate(function(v) { return v.length < 2; });
const Test = db.model('Test', testSchema);
let update = { $inc: { number: 1 } }; const opts = { runValidators: true };
// There will never be a validation error here await Test.updateOne({}, update, opts);
// This will never error either even though the array will have at // least 2 elements. update = { $push: [{ message: 'hello' }, { message: 'world' }] }; await Test.updateOne({}, update, opts); });});
mongoose

Version Info

Tagged at
a year ago