|
| 1 | +'use strict'; |
| 2 | + |
| 3 | +const start = require('./common'); |
| 4 | + |
| 5 | +const assert = require('assert'); |
| 6 | + |
| 7 | +const mongoose = start.mongoose; |
| 8 | +const Schema = mongoose.Schema; |
| 9 | + |
| 10 | +describe('model: validate: ', function() { |
| 11 | + beforeEach(() => mongoose.deleteModel(/.*/)); |
| 12 | + after(() => mongoose.deleteModel(/.*/)); |
| 13 | + |
| 14 | + it('Model.validate() (gh-7587)', async function() { |
| 15 | + const Model = mongoose.model('Test', new Schema({ |
| 16 | + name: { |
| 17 | + first: { |
| 18 | + type: String, |
| 19 | + required: true |
| 20 | + }, |
| 21 | + last: { |
| 22 | + type: String, |
| 23 | + required: true |
| 24 | + } |
| 25 | + }, |
| 26 | + age: { |
| 27 | + type: Number, |
| 28 | + required: true |
| 29 | + }, |
| 30 | + comments: [{ name: { type: String, required: true } }] |
| 31 | + })); |
| 32 | + |
| 33 | + |
| 34 | + let err = null; |
| 35 | + let obj = null; |
| 36 | + |
| 37 | + err = await Model.validate({ age: null }, ['age']). |
| 38 | + then(() => null, err => err); |
| 39 | + assert.ok(err); |
| 40 | + assert.deepEqual(Object.keys(err.errors), ['age']); |
| 41 | + |
| 42 | + err = await Model.validate({ name: {} }, ['name']). |
| 43 | + then(() => null, err => err); |
| 44 | + assert.ok(err); |
| 45 | + assert.deepEqual(Object.keys(err.errors), ['name.first', 'name.last']); |
| 46 | + |
| 47 | + obj = { name: { first: 'foo' } }; |
| 48 | + err = await Model.validate(obj, ['name']). |
| 49 | + then(() => null, err => err); |
| 50 | + assert.ok(err); |
| 51 | + assert.deepEqual(Object.keys(err.errors), ['name.last']); |
| 52 | + |
| 53 | + obj = { comments: [{ name: 'test' }, {}] }; |
| 54 | + err = await Model.validate(obj, ['comments']). |
| 55 | + then(() => null, err => err); |
| 56 | + assert.ok(err); |
| 57 | + assert.deepEqual(Object.keys(err.errors), ['comments.name']); |
| 58 | + |
| 59 | + obj = { age: '42' }; |
| 60 | + await Model.validate(obj, ['age']); |
| 61 | + assert.strictEqual(obj.age, 42); |
| 62 | + }); |
| 63 | + |
| 64 | + it('Model.validate(...) validates paths in arrays (gh-8821)', async function() { |
| 65 | + const userSchema = new Schema({ |
| 66 | + friends: [{ type: String, required: true, minlength: 3 }] |
| 67 | + }); |
| 68 | + |
| 69 | + const User = mongoose.model('User', userSchema); |
| 70 | + |
| 71 | + const err = await User.validate({ friends: [null, 'A'] }).catch(err => err); |
| 72 | + |
| 73 | + assert.ok(err.errors['friends.0']); |
| 74 | + assert.ok(err.errors['friends.1']); |
| 75 | + }); |
| 76 | + |
| 77 | + it('Model.validate(...) respects discriminators (gh-12621)', async function() { |
| 78 | + const CatSchema = new Schema({ meows: { type: Boolean, required: true } }); |
| 79 | + const DogSchema = new Schema({ barks: { type: Boolean, required: true } }); |
| 80 | + const AnimalSchema = new Schema( |
| 81 | + { id: String }, |
| 82 | + { discriminatorKey: 'kind' } |
| 83 | + ); |
| 84 | + AnimalSchema.discriminator('cat', CatSchema); |
| 85 | + AnimalSchema.discriminator('dog', DogSchema); |
| 86 | + |
| 87 | + const Animal = mongoose.model('Test', AnimalSchema); |
| 88 | + |
| 89 | + const invalidPet1 = new Animal({ |
| 90 | + id: '123', |
| 91 | + kind: 'dog', |
| 92 | + meows: true |
| 93 | + }); |
| 94 | + |
| 95 | + const err = await Animal.validate(invalidPet1).then(() => null, err => err); |
| 96 | + assert.ok(err); |
| 97 | + assert.ok(err.errors['barks']); |
| 98 | + }); |
| 99 | + |
| 100 | + it('Model.validate() works with arrays (gh-10669)', async function() { |
| 101 | + const testSchema = new Schema({ |
| 102 | + docs: [String] |
| 103 | + }); |
| 104 | + |
| 105 | + const Test = mongoose.model('Test', testSchema); |
| 106 | + |
| 107 | + const test = { docs: ['6132655f2cdb9d94eaebc09b'] }; |
| 108 | + |
| 109 | + const err = await Test.validate(test); |
| 110 | + assert.ifError(err); |
| 111 | + }); |
| 112 | + |
| 113 | + it('Model.validate(...) uses document instance as context by default (gh-10132)', async function() { |
| 114 | + const userSchema = new Schema({ |
| 115 | + name: { |
| 116 | + type: String, |
| 117 | + required: function() { |
| 118 | + return this.nameRequired; |
| 119 | + } |
| 120 | + }, |
| 121 | + nameRequired: Boolean |
| 122 | + }); |
| 123 | + |
| 124 | + const User = mongoose.model('User', userSchema); |
| 125 | + |
| 126 | + const user = new User({ name: 'test', nameRequired: false }); |
| 127 | + const err = await User.validate(user).catch(err => err); |
| 128 | + |
| 129 | + assert.ifError(err); |
| 130 | + |
| 131 | + }); |
| 132 | + it('Model.validate(...) uses object as context by default (gh-10346)', async() => { |
| 133 | + |
| 134 | + const userSchema = new mongoose.Schema({ |
| 135 | + name: { type: String, required: true }, |
| 136 | + age: { type: Number, required() {return this && this.name === 'John';} } |
| 137 | + }); |
| 138 | + |
| 139 | + const User = mongoose.model('User', userSchema); |
| 140 | + |
| 141 | + const err1 = await User.validate({ name: 'John' }).then(() => null, err => err); |
| 142 | + assert.ok(err1); |
| 143 | + |
| 144 | + const err2 = await User.validate({ name: 'Sam' }).then(() => null, err => err); |
| 145 | + assert.ok(err2 === null); |
| 146 | + }); |
| 147 | +}); |
0 commit comments