deno.land / x / mongoose@6.7.5 / test / model.indexes.test.js

model.indexes.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
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
'use strict';
/** * Test dependencies. */
const start = require('./common');
const assert = require('assert');const random = require('./util').random;
const mongoose = start.mongoose;const Schema = mongoose.Schema;const ObjectId = Schema.Types.ObjectId;
describe('model', function() { let db;
before(function() { db = start();
return db.createCollection('Test').catch(() => {}); });
after(async function() { await db.close(); });
beforeEach(() => db.deleteModel(/.*/)); afterEach(() => require('./util').clearTestData(db)); afterEach(() => require('./util').stopRemainingOps(db));
describe('indexes', function() { this.timeout(5000);
it('are created when model is compiled', async function() { const Indexed = new Schema({ name: { type: String, index: true }, last: String, email: String, date: Date });
Indexed.index({ last: 1, email: 1 }, { unique: true }); Indexed.index({ date: 1 }, { expires: 10 });
const IndexedModel = db.model('Test', Indexed); let assertions = 0;
await IndexedModel.init();
const indexes = await IndexedModel.collection.getIndexes({ full: true });
indexes.forEach(function(index) { switch (index.name) { case '_id_': case 'name_1': case 'last_1_email_1': assertions++; break; case 'date_1': assertions++; assert.equal(index.expireAfterSeconds, 10); break; } });
assert.equal(assertions, 4); });
it('of embedded documents', async function() { const BlogPosts = new Schema({ _id: { type: ObjectId, index: true }, title: { type: String, index: true }, desc: String });
const User = new Schema({ name: { type: String, index: true }, blogposts: [BlogPosts] });
const UserModel = db.model('Test', User); let assertions = 0;
await UserModel.init();
const mongoIndexes = Object.values(await UserModel.collection.getIndexes());
for (const mongoIndex in mongoIndexes) { mongoIndexes[mongoIndex].forEach(function iter(mongoIndex) { if (mongoIndex[0] === 'name') { assertions++; } if (mongoIndex[0] === 'blogposts._id') { assertions++; } if (mongoIndex[0] === 'blogposts.title') { assertions++; } }); }
assert.equal(assertions, 3); });
it('of embedded documents unless excludeIndexes (gh-5575) (gh-8343)', async function() { const BlogPost = Schema({ _id: { type: ObjectId }, title: { type: String, index: true }, desc: String }); const otherSchema = Schema({ name: { type: String, index: true } }, { excludeIndexes: true });
const User = new Schema({ name: { type: String, index: true }, blogposts: { type: [BlogPost], excludeIndexes: true }, otherblogposts: [{ type: BlogPost, excludeIndexes: true }], blogpost: { type: BlogPost, excludeIndexes: true }, otherArr: [otherSchema] });
const UserModel = db.model('Test', User); await UserModel.init();
const indexes = await UserModel.collection.getIndexes();
// Should only have _id and name indexes const indexNames = Object.keys(indexes); assert.deepEqual(indexNames.sort(), ['_id_', 'name_1']); });
it('of multiple embedded documents with same schema', async function() { const BlogPosts = new Schema({ _id: { type: ObjectId, unique: true }, title: { type: String, index: true }, desc: String });
const User = new Schema({ name: { type: String, index: true }, blogposts: [BlogPosts], featured: [BlogPosts] });
const UserModel = db.model('Test', User);
await UserModel.init();
const mongoIndexesNames = Object.values(await UserModel.collection.getIndexes()).map(indexArray => indexArray[0][0]);
const existingIndexesMap = { name: false, 'blogposts._id': false, 'blogposts.title': false, 'featured._id': false, 'featured.title': false };
for (const mongoIndexName of mongoIndexesNames) { if (existingIndexesMap[mongoIndexName] != null) { existingIndexesMap[mongoIndexName] = true; } }
assert.deepEqual( existingIndexesMap, { name: true, 'blogposts._id': true, 'blogposts.title': true, 'featured._id': true, 'featured.title': true } ); });
it('compound: on embedded docs', async function() { const BlogPosts = new Schema({ title: String, desc: String });
BlogPosts.index({ title: 1, desc: 1 });
const User = new Schema({ name: { type: String, index: true }, blogposts: [BlogPosts] });
const UserModel = db.model('Test', User); let found = 0;
await UserModel.init();
const indexes = await UserModel.collection.getIndexes();
for (const index in indexes) { switch (index) { case 'name_1': case 'blogposts.title_1_blogposts.desc_1': ++found; break; } }
assert.equal(found, 2); });
it('nested embedded docs (gh-5199)', function() { const SubSubSchema = mongoose.Schema({ nested2: String });
SubSubSchema.index({ nested2: 1 });
const SubSchema = mongoose.Schema({ nested1: String, subSub: SubSubSchema });
SubSchema.index({ nested1: 1 });
const ContainerSchema = mongoose.Schema({ nested0: String, sub: SubSchema });
ContainerSchema.index({ nested0: 1 });
assert.deepEqual(ContainerSchema.indexes().map(function(v) { return v[0]; }), [ { 'sub.subSub.nested2': 1 }, { 'sub.nested1': 1 }, { nested0: 1 } ]); });
it('primitive arrays (gh-3347)', function() { const schema = new Schema({ arr: [{ type: String, unique: true }] });
const indexes = schema.indexes(); assert.equal(indexes.length, 1); assert.deepEqual(indexes[0][0], { arr: 1 }); assert.ok(indexes[0][1].unique); });
it('error should emit on the model', async function() { const schema = new Schema({ name: { type: String } }); const Test = db.model('Test', schema);
await Test.create({ name: 'hi' }, { name: 'hi' });
Test.schema.index({ name: 1 }, { unique: true }); Test.schema.index({ other: 1 });
const err = await Test.ensureIndexes().then(() => null, err => err);
assert.ok(/E11000 duplicate key error/.test(err.message), err);
delete Test.$init; await Test.init().catch(() => {}); });
it('when one index creation errors', async function() { const userSchema = { name: { type: String }, secondValue: { type: Boolean } };
const userSchema1 = new Schema(userSchema); userSchema1.index({ name: 1 });
const userSchema2 = new Schema(userSchema); userSchema2.index({ name: 1 }, { unique: true }); userSchema2.index({ secondValue: 1 });
const collectionName = 'deepindexedmodel' + random(); // Create model with first schema to initialize indexes db.model('SingleIndexedModel', userSchema1, collectionName);
// Create model with second schema in same collection to add new indexes const UserModel2 = db.model('DuplicateIndexedModel', userSchema2, collectionName); let assertions = 0;
await UserModel2.init().catch(err => err);
const rawIndexesResponse = await UserModel2.collection.getIndexes(); const indexesNames = Object.values(rawIndexesResponse).map(indexArray => indexArray[0][0]);
for (const indexName of indexesNames) { if (indexName === 'name') { assertions++; } if (indexName === 'secondValue') { assertions++; } }
assert.equal(assertions, 2); });
it('creates descending indexes from schema definition(gh-8895)', async function() {
const userSchema = new Schema({ name: { type: String, index: -1 }, address: { type: String, index: '-1' } });
const User = db.model('User', userSchema);
await User.init();
const indexes = await User.collection.getIndexes();
assert.ok(indexes['name_-1']); assert.ok(indexes['address_-1']); });
describe('auto creation', function() { it('can be disabled', async function() { const schema = new Schema({ name: { type: String, index: true } }); schema.set('autoIndex', false);
const Test = db.model('Test', schema); Test.on('index', function() { assert.ok(false, 'Model.ensureIndexes() was called'); });
// Create a doc because mongodb 3.0 getIndexes errors if db doesn't // exist await Test.create({ name: 'Bacon' }); await new Promise((resolve) => setTimeout(resolve, 100));
const indexes = await Test.collection.getIndexes();
// Only default _id index should exist assert.deepEqual(['_id_'], Object.keys(indexes)); });
describe('global autoIndexes (gh-1875)', function() { beforeEach(() => db.deleteModel(/Test/));
it('will create indexes as a default', async function() { const schema = new Schema({ name: { type: String, index: true } }); const Test = db.model('Test', schema); await Test.init();
assert.ok(true, 'Model.ensureIndexes() was called'); const indexes = await Test.collection.getIndexes();
assert.equal(Object.keys(indexes).length, 2); });
it('will not create indexes if the global auto index is false and schema option isnt set (gh-1875)', async function() { const db = start({ config: { autoIndex: false } }); const schema = new Schema({ name: { type: String, index: true } }); const Test = db.model('Test', schema); Test.on('index', function() { assert.ok(false, 'Model.ensureIndexes() was called'); });
await Test.create({ name: 'Bacon' }); await new Promise((resolve) => setTimeout(resolve, 100));
const indexes = await Test.collection.getIndexes(); assert.deepEqual(['_id_'], Object.keys(indexes));
await db.close(); }); }); });
describe.skip('model.ensureIndexes()', function() { it('is a function', function() { const schema = mongoose.Schema({ x: 'string' }); const Test = mongoose.createConnection().model('ensureIndexes-' + random, schema); assert.equal(typeof Test.ensureIndexes, 'function'); });
it('returns a Promise', function() { const schema = mongoose.Schema({ x: 'string' }); const Test = mongoose.createConnection().model('ensureIndexes-' + random, schema); const p = Test.ensureIndexes(); assert.ok(p instanceof mongoose.Promise); });
it('creates indexes', async function() { const schema = new Schema({ name: { type: String } }); const Test = db.model('ManualIndexing' + random(), schema, 'x' + random());
Test.schema.index({ name: 1 }, { sparse: true });
let called = false; Test.on('index', function() { called = true; });
await Test.ensureIndexes();
assert.ok(called); }); }); });
it('sets correct partialFilterExpression for document array (gh-9091)', async function() { const childSchema = new Schema({ name: String }); childSchema.index({ name: 1 }, { partialFilterExpression: { name: { $exists: true } } }); const schema = new Schema({ arr: [childSchema] }); const Model = db.model('Test', schema);

await Model.init();
await Model.syncIndexes(); const indexes = await Model.listIndexes();
assert.equal(indexes.length, 2); assert.ok(indexes[1].partialFilterExpression); assert.deepEqual(indexes[1].partialFilterExpression, { 'arr.name': { $exists: true } }); });
it('skips automatic indexing on childSchema if autoIndex: false (gh-9150)', async function() { const nestedSchema = mongoose.Schema({ name: { type: String, index: true } }, { autoIndex: false });
const schema = mongoose.Schema({ nested: nestedSchema, top: { type: String, index: true } });
const Model = db.model('Model', schema);
await Model.init();
const indexes = await Model.listIndexes();
assert.equal(indexes.length, 2); assert.deepEqual(indexes[1].key, { top: 1 }); });
describe('discriminators with unique', function() { this.timeout(5000);
it('converts to partial unique index (gh-6347)', async function() { const baseOptions = { discriminatorKey: 'kind' }; const baseSchema = new Schema({}, baseOptions);
const Base = db.model('Test', baseSchema);
const userSchema = new Schema({ emailId: { type: String, unique: true }, // Should become a partial firstName: { type: String } });
const User = Base.discriminator('User', userSchema);
const deviceSchema = new Schema({ _id: { type: Schema.ObjectId, auto: true }, name: { type: String, unique: true }, // Should become a partial other: { type: String, index: true }, // Should become a partial model: { type: String } });
const Device = Base.discriminator('Device', deviceSchema);
await Promise.all([ Base.init(), User.init(), Device.init(), Base.create({}), User.create({ emailId: 'val@karpov.io', firstName: 'Val' }), Device.create({ name: 'Samsung', model: 'Galaxy' }) ]); const indexes = await Base.listIndexes(); const index = indexes.find(i => i.key.other); assert.deepEqual(index.key, { other: 1 }); assert.deepEqual(index.partialFilterExpression, { kind: 'Device' }); });
it('decorated discriminator index with syncIndexes (gh-6347)', async function() { const userSchema = new Schema({}, { discriminatorKey: 'kind', autoIndex: false });
const User = db.model('User', userSchema);
const customerSchema = new Schema({ emailId: { type: String, unique: true }, // Should become a partial firstName: { type: String } });
const Customer = User.discriminator('Customer', customerSchema);
await Customer.init(); const droppedIndexes = await Customer.syncIndexes(); assert.equal(droppedIndexes.length, 0); });
it('uses schema-level collation by default (gh-9912)', async function() {
await db.db.collection('User').drop().catch(() => {});
const userSchema = new mongoose.Schema({ username: String }, { collation: { locale: 'en', strength: 2 } }); userSchema.index({ username: 1 }, { unique: true }); const User = db.model('User', userSchema, 'User');
await User.init(); const indexes = await User.listIndexes(); assert.equal(indexes.length, 2); assert.deepEqual(indexes[1].key, { username: 1 }); assert.ok(indexes[1].collation); assert.equal(indexes[1].collation.strength, 2);
await User.collection.drop(); });
it('different collation with syncIndexes() (gh-8521)', async function() {
await db.db.collection('User').drop().catch(() => {});
let userSchema = new mongoose.Schema({ username: String }); userSchema.index({ username: 1 }, { unique: true }); let User = db.model('User', userSchema, 'User');
await User.init(); let indexes = await User.listIndexes(); assert.equal(indexes.length, 2); assert.deepEqual(indexes[1].key, { username: 1 }); assert.ok(!indexes[1].collation);
userSchema = new mongoose.Schema({ username: String }, { autoIndex: false }); userSchema.index({ username: 1 }, { unique: true, collation: { locale: 'en', strength: 2 } }); db.deleteModel('User'); User = db.model('User', userSchema, 'User');
await User.syncIndexes();
indexes = await User.listIndexes(); assert.equal(indexes.length, 2); assert.deepEqual(indexes[1].key, { username: 1 }); assert.ok(!!indexes[1].collation);
await User.collection.drop(); });
it('reports syncIndexes() error (gh-9303)', async function() {
let userSchema = new mongoose.Schema({ username: String, email: String }); let User = db.model('User', userSchema);
await User.createCollection().catch(() => {}); let indexes = await User.listIndexes(); assert.equal(indexes.length, 1);
await User.create([{ username: 'test', email: 'foo@bar' }, { username: 'test', email: 'foo@bar' }]);
userSchema = new mongoose.Schema({ username: String, email: String }, { autoIndex: false }); userSchema.index({ username: 1 }, { unique: true }); userSchema.index({ email: 1 }); db.deleteModel('User'); User = db.model('User', userSchema, 'User');
const err = await User.syncIndexes().then(() => null, err => err); assert.ok(err); assert.equal(err.code, 11000);
indexes = await User.listIndexes(); assert.equal(indexes.length, 2); assert.deepEqual(indexes[1].key, { email: 1 });
await User.collection.drop(); });
it('cleanIndexes (gh-6676)', async function() {
let M = db.model('Test', new Schema({ name: { type: String, index: true } }, { autoIndex: false }), 'Test');
await M.createIndexes();
let indexes = await M.listIndexes(); assert.deepEqual(indexes.map(i => i.key), [ { _id: 1 }, { name: 1 } ]);
M = db.model('Test', new Schema({ name: String }, { autoIndex: false }), 'Test');
await M.cleanIndexes(); indexes = await M.listIndexes(); assert.deepEqual(indexes.map(i => i.key), [ { _id: 1 } ]); }); it('should prevent collation on text indexes (gh-10044)', async function() { const userSchema = new mongoose.Schema({ username: String }, { collation: { locale: 'en', strength: 2 }, autoCreate: false }); userSchema.index({ username: 'text' }, { unique: true }); const User = db.model('User', userSchema, 'User');
await User.init(); const indexes = await User.listIndexes(); assert.ok(!indexes[1].collation); await User.collection.drop(); });
it('should do a dryRun feat-10316', async function() { const userSchema = new mongoose.Schema({ username: String }, { password: String }, { email: String }); const User = db.model('Upson', userSchema); await User.collection.createIndex({ age: 1 }); await User.collection.createIndex({ weight: 1 }); await User.init(); userSchema.index({ password: 1 }); userSchema.index({ email: 1 }); const result = await User.diffIndexes(); assert.deepStrictEqual(result.toDrop, ['age_1', 'weight_1']); assert.deepStrictEqual(result.toCreate, [{ password: 1 }, { email: 1 }]); }); });});
mongoose

Version Info

Tagged at
a year ago