forked from annette-arrigucci/mongoose-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidation-mongoose.js
98 lines (87 loc) · 3.02 KB
/
validation-mongoose.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
var mongoose = require('mongoose');
mongoose.Promise = global.Promise;
mongoose.connect('mongodb://localhost/test');
var db = mongoose.connection;
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', function() {
// we're connected!
//console.log("We're connected!");
//add validation to the schema
var personSchema = mongoose.Schema({
firstName: {
type: String,
//validate: /[a-z]/,
required: true
},
lastName: {
type: String,
required: true
},
age: {
type: Number,
required: true,
min: [18, 'Customer must be at least 18'],
max: [72, 'Customer must be no older than 72']
},
email: {
type: String,
required: true
},
phone: {
type: String,
validate: {
validator: function(v) {
return /\d{3}-\d{3}-\d{4}/.test(v);
},
message: '{VALUE} is not a valid phone number!'
},
required: [true, 'Customer phone number required']
},
address: {
type: String,
required: true
}
});
var Person = mongoose.model('Person', personSchema);
//test the required validators
var annette = new Person({firstName: "", lastName: "Arrigucci", age: "35", email: "[email protected]", phone: "555-555-5555", address: "500 Broad Street"});
annette.save(function (err) {
if (err) {
console.log(err.message);
}
});
//test the age validators
var john = new Person({firstName: "John", lastName: "Arrigucci", age: "2", email: "[email protected]", phone: "555-555-5555", address: "500 Broad Street"});
john.save(function (err) {
if (err) {
console.log(err.message);
}
});
var jack = new Person({firstName: "Jack", lastName: "Arrigucci", age: "73", email: "[email protected]", phone: "555-555-5555", address: "500 Broad Street"});
jack.save(function (err) {
if (err) {
console.log(err.message);
}
});
//test the phone number validator
var christine = new Person({firstName: "Christine", lastName: "Arrigucci", age: "31", email: "[email protected]", phone: "(555) 555-5555", address: "500 Broad Street"});
christine.save(function (err) {
if (err) {
console.log(err.message);
}
});
//try to insert a string into a Number type
var mary = new Person({firstName: "Mary", lastName: "Arrigucci", age: "thirty-one", email: "[email protected]", phone: "555-555-5555", address: "500 Broad Street"});
mary.save(function (err) {
if (err) {
console.log(err.message);
}
});
//try to insert a Number into a String type - this works, does not trigger the validation
var alan = new Person({firstName: "1", lastName: "Arrigucci", age: "31", email: "[email protected]", phone: "555-555-5555", address: "500 Broad Street"});
alan.save(function (err) {
if (err) {
console.log(err.message);
}
});
});