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

virtuals.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
'use strict';
const assert = require('assert');const start = require('../common');
const mongoose = new start.mongoose.Mongoose();const Schema = mongoose.Schema;
// This file is in `es-next` because it uses async/await for convenience
describe('Virtuals', function() { before(async function() { await mongoose.connect(start.uri); });
beforeEach(function() { mongoose.deleteModel(/.*/); });
it('basic', async function() { const userSchema = mongoose.Schema({ email: String }); // Create a virtual property `domain` that's computed from `email`. userSchema.virtual('domain').get(function() { return this.email.slice(this.email.indexOf('@') + 1); }); const User = mongoose.model('User', userSchema);
let doc = await User.create({ email: 'test@gmail.com' }); // `domain` is now a property on User documents. doc.domain; // 'gmail.com' // acquit:ignore:start assert.equal(doc.domain, 'gmail.com'); // acquit:ignore:end });
it('fullName', async function() { const userSchema = mongoose.Schema({ firstName: String, lastName: String }); // Create a virtual property `fullName` with a getter and setter. userSchema.virtual('fullName'). get(function() { return `${this.firstName} ${this.lastName}`; }). set(function(v) { // `v` is the value being set, so use the value to set // `firstName` and `lastName`. const firstName = v.substring(0, v.indexOf(' ')); const lastName = v.substring(v.indexOf(' ') + 1); this.set({ firstName, lastName }); }); const User = mongoose.model('User', userSchema);
const doc = new User(); // Vanilla JavaScript assignment triggers the setter doc.fullName = 'Jean-Luc Picard';
doc.fullName; // 'Jean-Luc Picard' doc.firstName; // 'Jean-Luc' doc.lastName; // 'Picard' // acquit:ignore:start assert.equal(doc.fullName, 'Jean-Luc Picard'); assert.equal(doc.firstName, 'Jean-Luc'); assert.equal(doc.lastName, 'Picard'); // acquit:ignore:end });
it('toJSON', async function() { const opts = { toJSON: { virtuals: true } }; const userSchema = mongoose.Schema({ _id: Number, email: String }, opts); // Create a virtual property `domain` that's computed from `email`. userSchema.virtual('domain').get(function() { return this.email.slice(this.email.indexOf('@') + 1); }); const User = mongoose.model('User', userSchema);
const doc = new User({ _id: 1, email: 'test@gmail.com' }); doc.toJSON().domain; // 'gmail.com' // {"_id":1,"email":"test@gmail.com","domain":"gmail.com","id":"1"} JSON.stringify(doc);
// To skip applying virtuals, pass `virtuals: false` to `toJSON()` doc.toJSON({ virtuals: false }).domain; // undefined // acquit:ignore:start assert.equal(doc.toJSON().domain, 'gmail.com'); assert.equal(JSON.stringify(doc), '{"_id":1,"email":"test@gmail.com","domain":"gmail.com","id":"1"}'); assert.equal(doc.toJSON({ virtuals: false }).domain, void 0); // acquit:ignore:end });
it('lean', async function() { // acquit:ignore:start const userSchema = mongoose.Schema({ email: String }); // Create a virtual property `domain` that's computed from `email`. userSchema.virtual('domain').get(function() { return this.email.slice(this.email.indexOf('@') + 1); }); const User = mongoose.model('User', userSchema); await User.deleteMany({}); await User.create({ email: 'test@gmail.com' }); // acquit:ignore:end const fullDoc = await User.findOne(); fullDoc.domain; // 'gmail.com'
const leanDoc = await User.findOne().lean(); leanDoc.domain; // undefined // acquit:ignore:start assert.equal(fullDoc.domain, 'gmail.com'); assert.equal(leanDoc.domain, void 0); // acquit:ignore:end });
it('in query', async function() { // acquit:ignore:start const userSchema = mongoose.Schema({ email: String }); // Create a virtual property `domain` that's computed from `email`. userSchema.virtual('domain').get(function() { return this.email.slice(this.email.indexOf('@') + 1); }); const User = mongoose.model('User', userSchema); await User.deleteMany({}); await User.create({ email: 'test@gmail.com' }); // acquit:ignore:end // Will **not** find any results, because `domain` is not stored in // MongoDB. const doc = await User.findOne({ domain: 'gmail.com' }, null, { strictQuery: false }); doc; // undefined // acquit:ignore:start assert.equal(doc, null); // acquit:ignore:end });
it('populate', async function() { const userSchema = mongoose.Schema({ _id: Number, email: String }); const blogPostSchema = mongoose.Schema({ title: String, authorId: Number }); // When you `populate()` the `author` virtual, Mongoose will find the // first document in the User model whose `_id` matches this document's // `authorId` property. blogPostSchema.virtual('author', { ref: 'User', localField: 'authorId', foreignField: '_id', justOne: true }); const User = mongoose.model('User', userSchema); const BlogPost = mongoose.model('BlogPost', blogPostSchema);
// acquit:ignore:start await BlogPost.deleteMany({}); await User.deleteMany({}); // acquit:ignore:end await BlogPost.create({ title: 'Introduction to Mongoose', authorId: 1 }); await User.create({ _id: 1, email: 'test@gmail.com' });
const doc = await BlogPost.findOne().populate('author'); doc.author.email; // 'test@gmail.com' // acquit:ignore:start assert.equal(doc.author.email, 'test@gmail.com'); // acquit:ignore:end });});
mongoose

Version Info

Tagged at
a year ago