-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathservice.spec.ts
More file actions
1546 lines (1247 loc) · 42.9 KB
/
service.spec.ts
File metadata and controls
1546 lines (1247 loc) · 42.9 KB
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
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* eslint-disable @typescript-eslint/no-unused-expressions */
/* eslint-disable @typescript-eslint/ban-ts-comment */
import { z } from 'zod';
import chai from 'chai';
import spies from 'chai-spies';
import { Database } from '../index';
import 'mocha';
import config from '../config';
chai.use(spies);
chai.should();
const { assert } = chai;
const database = new Database(config.mongo.connection, config.mongo.dbName);
const companySchema = z.object({
_id: z.string(),
createdOn: z.date().optional(),
updatedOn: z.date().optional(),
deletedOn: z.date().optional().nullable(),
users: z.array(z.string()),
});
enum UserRoles {
ADMIN = 'admin',
MANAGER = 'manager',
MEMBER = 'member',
}
enum AdminPermissions {
READ = 'read',
WRITE = 'write',
EDIT = 'edit',
}
const USER_PRIVATE_FIELDS = ['passwordHash'] as const;
const userSchema = z.object({
_id: z.string(),
createdOn: z.date().optional(),
updatedOn: z.date().optional(),
deletedOn: z.date().optional().nullable(),
fullName: z.string(),
age: z.number().optional(),
passwordHash: z.string().optional(),
role: z.nativeEnum(UserRoles).default(UserRoles.MEMBER),
permissions: z.array(z.nativeEnum(AdminPermissions)).optional(),
birthDate: z.date().optional(),
subscriptionId: z.string().optional(),
});
type UserType = Omit<z.infer<typeof userSchema>, 'permissions'>;
type AdminType = Omit<z.infer<typeof userSchema>, 'subscriptionId'>;
type CompanyType = z.infer<typeof companySchema>;
const usersService = database.createService<UserType>('users', {
schemaValidator: (obj) => userSchema.parseAsync(obj),
});
const usersServiceEscapeRegExp = database.createService<UserType>('usersEsapeRegExp', {
schemaValidator: (obj) => userSchema.parseAsync(obj),
escapeRegExp: true,
});
const companyService = database.createService<CompanyType>('companies', {
schemaValidator: (obj) => companySchema.parseAsync(obj),
});
const usersServiceWithPrivateFields = database.createService<UserType, typeof USER_PRIVATE_FIELDS>('usersWithPrivateFields', {
schemaValidator: (obj) => userSchema.parseAsync(obj),
privateFields: USER_PRIVATE_FIELDS,
});
describe('service.ts', () => {
before(async () => {
await database.connect();
});
after(async () => {
await usersService.drop();
await usersServiceEscapeRegExp.drop();
await companyService.drop();
await database.close();
});
it('should create and find document', async () => {
const u = await usersService.insertOne({
fullName: 'John',
});
await usersService.insertOne(
{ fullName: 'John 2' },
{ publishEvents: false },
);
const newUser = await usersService.findOne({ _id: u._id });
u._id.should.be.equal(newUser?._id);
});
it('should create and find all documents', async () => {
const users = await usersService.insertMany([
{ fullName: 'John' },
{ fullName: 'Kobe' },
]);
const userIds = users.map((u) => u._id);
const { results: newUsers } = await usersService.find({
_id: { $in: userIds },
});
const newUsersIds = newUsers.map((u) => u._id);
newUsersIds.should.have.members(userIds);
});
it('should check readConfig', async () => {
const u = await usersService.insertOne({
fullName: 'John',
});
await usersService.deleteSoft({
_id: u._id,
});
const notFoundUser = await usersService.findOne({ _id: u._id });
const foundUser = await usersService.findOne(
{ _id: u._id },
{ skipDeletedOnDocs: false },
);
(notFoundUser === null).should.be.equal(true);
foundUser?._id.should.be.equal(u._id);
});
it('should create and find documents with paging', async () => {
const users = await usersService.insertMany([
{ fullName: 'John' },
{ fullName: 'Kobe' },
{ fullName: 'John' },
{ fullName: 'Kobe' },
{ fullName: 'John' },
{ fullName: 'Kobe' },
{ fullName: 'John' },
{ fullName: 'Kobe' },
{ fullName: 'John' },
{ fullName: 'Kobe' },
]);
const userIds = users.map((u) => u._id);
const { results: newUsers, pagesCount, count } = await usersService.find(
{ _id: { $in: userIds } },
{ page: 1, perPage: 2 },
);
newUsers?.length.should.be.equal(2);
pagesCount?.should.be.equal(5);
count?.should.be.equal(10);
});
it('should check that document exists', async () => {
const user = await usersService.insertOne( { fullName: 'John' });
const isUserExists = await usersService.exists({ _id: user._id });
const isNotUserExists = await usersService.exists({ _id: 'some-id' });
isUserExists.should.be.equal(true);
isNotUserExists.should.be.equal(false);
});
it('should return documents count', async () => {
await usersService.insertMany([
{ fullName: 'John IM' },
{ fullName: 'John IM' },
{ fullName: 'John IM' },
{ fullName: 'John IM' },
]);
const usersCount = await usersService.countDocuments({ fullName: 'John IM' });
usersCount.should.be.equal(4);
});
it('should return users fullNames', async () => {
const usersData = [
{ fullName: 'John IMS 1' },
{ fullName: 'John IMS 2' },
{ fullName: 'John IMS 3' },
{ fullName: 'John IMS 4' },
];
await usersService.insertMany(usersData);
const newUsersFullNames = usersData.map((u) => u.fullName);
const usersFullNames = await usersService.distinct('fullName', {
fullName: { $in: newUsersFullNames },
});
usersFullNames.should.have.members(newUsersFullNames);
});
it('should replace document', async () => {
const u = await usersService.insertOne({
fullName: 'User to replace',
});
const fullNameToUpdate = 'Updated fullname';
await usersService.replaceOne(
{ _id: u._id },
{ fullName: fullNameToUpdate },
);
const updatedUser = await usersService.findOne({ _id: u._id });
updatedUser?.fullName.should.be.equal(fullNameToUpdate);
});
it('should atomic update document', async () => {
const u = await usersService.insertOne({
fullName: 'User to update',
});
const fullNameToUpdate = 'Updated fullname';
await usersService.atomic.updateOne(
{ _id: u._id },
{ $set: { fullName: fullNameToUpdate } },
);
const updatedUser = await usersService.findOne({ _id: u._id });
updatedUser?.fullName.should.be.equal(fullNameToUpdate);
});
it('should atomic update documents', async () => {
const users = [
{ fullName: 'John' },
{ fullName: 'Kobe' },
];
const fullNameToUpdate = 'Updated fullname';
const createdUsers = await usersService.insertMany(users);
const usersIds = createdUsers.map((u) => u._id);
await usersService.atomic.updateMany(
{ _id: { $in: usersIds } },
{ $set: { fullName: fullNameToUpdate } },
);
const { results: updatedUsers } = await usersService.find({ _id: { $in: usersIds } });
const expectedFullnames = updatedUsers.map(() => 'Updated fullname');
const updatedFullnames = users.map(() => 'Updated fullname');
expectedFullnames.should.have.members(updatedFullnames);
});
it('should update document', async () => {
const u = await usersService.insertOne({
fullName: 'User to update',
});
const updatedUser = await usersService.updateOne(
{ _id: u._id }, () => ({
fullName: 'Updated fullname',
}),
);
updatedUser?.fullName.should.be.equal('Updated fullname');
});
it('should update documents', async () => {
const users = [
{ fullName: 'John' },
{ fullName: 'Kobe' },
];
const createdUsers = await usersService.insertMany(users);
const usersIds = createdUsers.map((u) => u._id);
const updatedUsers = await usersService.updateMany(
{ _id: { $in: usersIds } },
(doc) => ({
fullName: `${doc.fullName} Updated fullname`,
}),
);
const expectedFullnames = users.map((u) => `${u.fullName} Updated fullname`);
const updatedFullnames = updatedUsers.map((u) => u.fullName);
updatedFullnames.should.have.members(expectedFullnames);
});
it('should delete document', async () => {
const u = await usersService.insertOne({
fullName: 'User to remove',
});
await usersService.deleteOne({ _id: u._id });
const deletedUser = await usersService.findOne({
_id: u._id,
});
(deletedUser === null).should.be.equal(true);
});
it('should delete documents', async () => {
const users = await usersService.insertMany([
{ fullName: 'User to remove' },
{ fullName: 'User to remove' },
]);
const usersIds = users.map((u) => u._id);
await usersService.deleteMany({ _id: { $in: usersIds } });
const { results: removedUsers } = await usersService.find({
_id: { $in: usersIds },
});
removedUsers.length.should.be.equal(0);
});
it('should set deletedOn date to current JS date on remove', async () => {
const u = await usersService.insertOne({
fullName: 'User to remove',
});
await usersService.deleteSoft({
_id: u._id,
});
const updatedUser = await usersService.findOne(
{ _id: u._id },
{ skipDeletedOnDocs: false },
);
const deletedUser = await usersService.findOne({
_id: u._id,
});
(deletedUser === null).should.be.equal(true);
assert.exists(updatedUser?.deletedOn);
});
it('should return sum of documents through aggregation', async () => {
const users = [
{ fullName: 'John' },
{ fullName: 'John' },
{ fullName: 'Kobe' },
];
const createdUsers = await usersService.insertMany(users);
const usersIds = createdUsers.map((u) => u._id);
const aggregationResult = await usersService.aggregate([
{ $match: { _id: { $in: usersIds } } },
{ $group: { _id: null, count: { $sum: 1 } } },
]);
aggregationResult[0].count.should.be.equal(users.length);
});
it('should create and delete index', async () => {
const index = await usersService.createIndex({ fullName: 1 }) as string;
const isIndexExists = await usersService.indexExists(index);
await usersService.dropIndex(index);
const isIndexNotExists = await usersService.indexExists('fullName');
isIndexExists.should.be.equal(true);
isIndexNotExists.should.be.equal(false);
});
it('should create and delete indexes', async () => {
const indexes = await usersService.createIndexes([
{ key: { fullName: 1 } },
{ key: { createdOn: 1 } },
]) as string[];
const isIndexesExists = await usersService.indexExists(indexes);
await usersService.dropIndexes();
const isIndexesNotExists = await usersService.indexExists(indexes);
isIndexesExists.should.be.equal(true);
isIndexesNotExists.should.be.equal(false);
});
it('should commit transaction', async () => {
const { user, company } = await database.withTransaction(async (session) => {
const createdUser = await usersService.insertOne({ fullName: 'Bahrimchuk' }, {}, { session });
const createdCompany = await companyService.insertOne(
{ users: [createdUser._id] }, {},
{ session },
);
return { user: createdUser, company: createdCompany };
});
const expectedUser = await usersService.findOne({ _id: user._id });
const expectedCompany = await companyService.findOne({ _id: company._id });
user._id.should.be.equal(expectedUser?._id);
company._id.should.be.equal(expectedCompany?._id);
});
it('should rollback transaction', async () => {
try {
await database.withTransaction(async (session) => {
const createdUser = await usersService.insertOne({ fullName: 'Fake Bahrimchuk' }, {}, { session });
await companyService.insertOne(
{ users: [createdUser._id], unExistedField: 3 } as any,
{}, { session },
);
});
} catch (err) {
const user = await usersService.findOne({ fullName: 'Fake Bahrimchuk' });
(user === null).should.be.equal(true);
}
});
it('should throw a ts error if you pass an object that is not suitable for a generic type when creating a document', async () => {
// should throw ts error because admin doesn't have subscriptionId field
await usersService.insertOne<AdminType>({
fullName: 'Fake Bahrimchuk',
role: UserRoles.ADMIN,
//@ts-expect-error
subscriptionId: 'fakeId',
});
// should throw ts error because member doesn't have permissions field
await usersService.insertOne<UserType>({
fullName: 'Fake Bahrimchuk',
//@ts-expect-error
permissions: [AdminPermissions.WRITE],
});
});
it('should throw a ts error if you pass an array of objects that is not suitable for a generic type when creating documents', async () => {
// should throw ts error because admin doesn't have subscriptionId field
await usersService.insertMany<AdminType>([
{
fullName: 'Fake Bahrimchuk',
role: UserRoles.ADMIN,
//@ts-expect-error
subscriptionId: 'fakeId',
},
]);
// should throw ts error because member doesn't have permissions field
await usersService.insertMany<UserType>([
{
fullName: 'Fake Bahrimchuk',
//@ts-expect-error
permissions: [AdminPermissions.WRITE],
},
]);
});
it('should throw a ts error if you pass an object that is not suitable for a generic type when updating a document', async () => {
const createdAdmin = await usersService.insertOne<AdminType>({
fullName: 'Admin to update',
role: UserRoles.ADMIN,
permissions: [AdminPermissions.READ],
});
const createdMember = await usersService.insertOne<UserType>({
fullName: 'Member to update',
});
// should throw ts error because admin doesn't have subscriptionId field
await usersService.updateOne<AdminType>(
{ _id: createdAdmin._id },
//@ts-expect-error
(): AdminType => ({ subscriptionId: 'fakeId' }),
);
// should throw ts error because member doesn't have permissions field
await usersService.updateOne<UserType>(
{ _id: createdMember._id },
//@ts-expect-error
(): UserType => ({ permissions: [AdminPermissions.WRITE] }),
);
});
it('should throw a ts error if you pass an object that is not suitable for a generic type when updating documents', async () => {
const createdAdmin = await usersService.insertOne<AdminType>({
fullName: 'Admin to updated',
role: UserRoles.ADMIN,
permissions: [AdminPermissions.READ],
});
const createdMember = await usersService.insertOne<UserType>({
fullName: 'Member to update',
});
// should throw ts error because admin doesn't have subscriptionId field
await usersService.updateMany<AdminType>(
{ _id: createdAdmin._id },
//@ts-expect-error
(): AdminType => ({ subscriptionId: 'fakeId' }),
);
// should throw ts error because member doesn't have permissions field
await usersService.updateMany<UserType>(
{ _id: createdMember._id },
//@ts-expect-error
(): UserType => ({ permissions: [AdminPermissions.WRITE] }),
);
});
it('should throw a ts error if you try to pick a field that does not exist in generic type when finding a document', async () => {
const createdAdmin = await usersService.insertOne<AdminType>({
fullName: 'Fake Bahrimchuk',
role: UserRoles.ADMIN,
permissions: [AdminPermissions.READ],
});
const admin = await usersService.findOne<AdminType>({
_id: createdAdmin._id,
});
const createdMember = await usersService.insertOne<UserType>({
fullName: 'Fake Bahrimchuk',
});
const member = await usersService.findOne<UserType>({
_id: createdMember._id,
});
// should throw ts error because admin doesn't have subscriptionId field
//@ts-expect-error
admin?.subscriptionId?.should.to.be.undefined;
// should throw ts error because member doesn't have permissions field
//@ts-expect-error
member?.permissions?.should.to.be.undefined;
});
it('should throw a ts error if you try to pick a field that does not exist in generic type when finding documents', async () => {
const createdAdmin = await usersService.insertOne<AdminType>({
fullName: 'Fake Bahrimchuk',
role: UserRoles.ADMIN,
permissions: [AdminPermissions.READ],
});
const admins = await usersService.find<AdminType>({
_id: createdAdmin._id,
});
const createdMember = await usersService.insertOne<UserType>({
fullName: 'Fake Bahrimchuk',
});
const members = await usersService.find<UserType>({
_id: createdMember._id,
});
// should throw ts error because admin doesn't have subscriptionId field
//@ts-expect-error
admins.results[0]?.subscriptionId?.should.to.be.undefined;
// should throw ts error because member doesn't have permissions field
//@ts-expect-error
members.results[0]?.permissions?.should.to.be.undefined;
});
it('should throw a ts error if you pass an object that is not suitable for a generic type when deleting a document', async () => {
const createdAdmin = await usersService.insertOne<AdminType>({
fullName: 'Admin to delete',
role: UserRoles.ADMIN,
permissions: [AdminPermissions.READ],
});
const deletedAdmin = await usersService.deleteOne<AdminType>(
{ _id: createdAdmin._id },
);
const createdMember = await usersService.insertOne<UserType>({
fullName: 'Member to delete',
});
const deletedMember = await usersService.deleteOne<UserType>(
{ _id: createdMember._id },
);
// should throw ts error because admin doesn't have subscriptionId field
//@ts-expect-error
deletedAdmin?.subscriptionId?.should.to.be.undefined;
// should throw ts error because member doesn't have permissions field
//@ts-expect-error
deletedMember?.permissions?.should.to.be.undefined;
});
it('should throw a ts error if you pass an object that is not suitable for a generic type when deleting documents', async () => {
const createdAdmin = await usersService.insertOne<AdminType>({
fullName: 'Admin to delete',
role: UserRoles.ADMIN,
permissions: [AdminPermissions.READ],
});
const deletedAdmins = await usersService.deleteMany<AdminType>(
{ _id: createdAdmin._id },
);
const createdMember = await usersService.insertOne<UserType>({
fullName: 'Member to delete',
});
const deletedMembers = await usersService.deleteMany<UserType>(
{ _id: createdMember._id },
);
// should throw ts error because admin doesn't have subscriptionId field
//@ts-expect-error
deletedAdmins[0]?.subscriptionId?.should.to.be.undefined;
// should throw ts error because member doesn't have permissions field
//@ts-expect-error
deletedMembers[0]?.permissions?.should.to.be.undefined;
});
it('should escape regexp', async () => {
const users = await usersServiceEscapeRegExp.insertMany([
{ fullName: 'A(B).Nosov' },
{ fullName: 'A(B).Nosov' },
{ fullName: 'I.Krivoshey' },
{ fullName: ' ] \ ^ $ . | ? * + ( )' },
]);
const { results: nosovUsers } = await usersServiceEscapeRegExp.find({
fullName: { $regex: 'A(B).Nosov' },
});
const targetIds = users.map((p) => p._id);
targetIds.slice(0, 2).should.be.deep.equal(nosovUsers.map((u) => u._id));
const randomUser = await usersServiceEscapeRegExp.findOne({
fullName: { $regex: ' ] \ ^ $ . | ? * + ( )' },
});
targetIds[3].should.be.equal(randomUser?._id);
});
it('should not escape regexp', async () => {
await usersService.insertMany([
{ fullName: '$Ken BL' },
{ fullName: 'John Dow*^' },
]);
const { results: newUsers } = await usersService.find({
$or: [
{ fullName: { $regex: '$Ken BL' } },
{ fullName: { $regex: 'John Dow*^' } },
],
});
(newUsers.length).should.be.equal(0);
});
it('should update many documents with $set mongo operator', async () => {
const users = await usersService.insertMany([
{ fullName: 'User 1 to update' },
{ fullName: 'User 2 to update' },
]);
const usersIds = users.map((u) => u._id);
const fullNameToUpdate = 'Updated fullname';
const updatedUsers = await usersService.updateMany(
{ _id: { $in: usersIds } },
{
$set: {
fullName: fullNameToUpdate,
},
},
);
updatedUsers?.[0].fullName.should.be.equal(fullNameToUpdate);
updatedUsers?.[1].fullName.should.be.equal(fullNameToUpdate);
});
it('should update many documents with $currentDate mongo operator', async () => {
const nowDate = new Date();
const users = await usersService.insertMany([
{
fullName: 'User 1 to update',
birthDate: new Date('2022-01-01'),
},
{
fullName: 'User 2 to update',
birthDate: new Date('2022-01-01'),
},
]);
const usersIds = users.map((u) => u._id);
const updatedUsers = await usersService.updateMany(
{ _id: { $in: usersIds } },
{
$currentDate: {
birthDate: true,
},
},
{},
);
updatedUsers?.[0].birthDate?.getDate().should.be.equal(nowDate.getDate());
updatedUsers?.[0].birthDate?.getMonth().should.be.equal(nowDate.getMonth());
updatedUsers?.[0].birthDate?.getFullYear().should.be.equal(nowDate.getFullYear());
updatedUsers?.[1].birthDate?.getDate().should.be.equal(nowDate.getDate());
updatedUsers?.[1].birthDate?.getMonth().should.be.equal(nowDate.getMonth());
updatedUsers?.[1].birthDate?.getFullYear().should.be.equal(nowDate.getFullYear());
});
it('should update many documents with $inc mongo operator', async () => {
const userAge = 20;
const users = await usersService.insertMany([
{
fullName: 'User 1 to update',
age: userAge,
},
{
fullName: 'User 2 to update',
age: userAge,
},
]);
const usersIds = users.map((u) => u._id);
const ageToUpdate = userAge + 1;
const updatedUsers = await usersService.updateMany(
{ _id: { $in: usersIds } },
{
$inc: {
age: 1,
},
},
);
updatedUsers?.[0].age?.should.be.equal(ageToUpdate);
updatedUsers?.[1].age?.should.be.equal(ageToUpdate);
});
it('should update many documents with $min mongo operator', async () => {
const userAge = 20;
const users = await usersService.insertMany([
{
fullName: 'User 1 to update',
age: userAge,
},
{
fullName: 'User 2 to update',
age: userAge,
},
]);
const usersIds = users.map((u) => u._id);
const notUpdatedUsers = await usersService.updateMany(
{ _id: { $in: usersIds } },
{
$min: {
age: 21,
},
},
);
notUpdatedUsers[0]?.age?.should.be.equal(userAge);
notUpdatedUsers[1]?.age?.should.be.equal(userAge);
const minAgeToUpdate = 19;
const updatedUsers = await usersService.updateMany(
{ _id: { $in: usersIds } },
{
$min: {
age: minAgeToUpdate,
},
},
);
updatedUsers[0]?.age?.should.be.equal(minAgeToUpdate);
updatedUsers[1]?.age?.should.be.equal(minAgeToUpdate);
});
it('should update many documents with $max mongo operator', async () => {
const userAge = 20;
const users = await usersService.insertMany([
{
fullName: 'User 1 to update',
age: userAge,
},
{
fullName: 'User 2 to update',
age: userAge,
},
]);
const usersIds = users.map((u) => u._id);
const notUpdatedUsers = await usersService.updateMany(
{ _id: { $in: usersIds } },
{
$max: {
age: 19,
},
},
);
notUpdatedUsers?.[0]?.age?.should.be.equal(userAge);
notUpdatedUsers?.[1]?.age?.should.be.equal(userAge);
const maxAgeToUpdate = 21;
const updatedUsers = await usersService.updateMany(
{ _id: { $in: usersIds } },
{
$max: {
age: maxAgeToUpdate,
},
},
);
updatedUsers?.[0]?.age?.should.be.equal(maxAgeToUpdate);
updatedUsers?.[1]?.age?.should.be.equal(maxAgeToUpdate);
});
it('should update many documents with $mul mongo operator', async () => {
const userAge = 20;
const users = await usersService.insertMany([
{
fullName: 'User 1 to update',
age: userAge,
},
{
fullName: 'User 2 to update',
age: userAge,
},
]);
const usersIds = users.map((u) => u._id);
const mulValue = 2;
const updatedAge = userAge * mulValue;
const updatedUsers = await usersService.updateMany(
{ _id: { $in: usersIds } },
{
$mul: {
age: mulValue,
},
},
);
updatedUsers?.[0]?.age?.should.be.equal(updatedAge);
updatedUsers?.[1]?.age?.should.be.equal(updatedAge);
});
it('should update many documents with $rename mongo operator', async () => {
const userAge = 20;
type InvalidUser = Omit<UserType, 'age'> & {
'fakeAge'?: number
};
const users = await usersService.insertMany<InvalidUser>([
{
fullName: 'User 1 to update',
fakeAge: userAge,
},
{
fullName: 'User 2 to update',
fakeAge: userAge,
},
]);
const usersIds = users.map((u) => u._id);
const updatedUsers = await usersService.updateMany<UserType>(
{ _id: { $in: usersIds } },
{
$rename: {
'fakeAge': 'age',
},
},
);
updatedUsers?.[0]?.age?.should.be.equal(userAge);
updatedUsers?.[1]?.age?.should.be.equal(userAge);
});
it('should update many documents with $setOnInsert mongo operator', async () => {
const users = await usersService.insertMany([
{ fullName: 'User 1 to update' },
{ fullName: 'User 2 to update' },
]);
const usersIds = users.map((u) => u._id);
const userAgeToUpdate = 20;
const userFullNameToUpdate = 'Test Updated';
const updatedUsers = await usersService.updateMany<UserType>(
{ _id: { $in: usersIds } },
{
$set: {
fullName: userFullNameToUpdate,
},
$setOnInsert: {
age: userAgeToUpdate,
},
},
{},
{ upsert: true },
);
updatedUsers?.[0]?.age?.should.be.equal(userAgeToUpdate);
updatedUsers?.[0]?.fullName?.should.be.equal(userFullNameToUpdate);
updatedUsers?.[1]?.age?.should.be.equal(userAgeToUpdate);
updatedUsers?.[1]?.fullName?.should.be.equal(userFullNameToUpdate);
});
it('should update many document with $unset mongo operator', async () => {
const users = await usersService.insertMany([
{
fullName: 'User 1 to update',
birthDate: new Date(),
},
{
fullName: 'User 2 to update',
birthDate: new Date(),
},
]);
const usersIds = users.map((u) => u._id);
const updatedUsers = await usersService.updateMany<UserType>(
{ _id: { $in: usersIds } },
{
$unset: {
birthDate: true,
},
},
);
updatedUsers?.[0]?.birthDate?.should.be.undefined;
updatedUsers?.[1]?.birthDate?.should.be.undefined;
});
it('should update many documents with $addToSet mongo operator', async () => {
const users = await usersService.insertMany<AdminType>([
{
fullName: 'User 1 to update',
permissions: [AdminPermissions.EDIT],
},
{
fullName: 'User 2 to update',
permissions: [AdminPermissions.EDIT],
},
]);
const usersIds = users.map((u) => u._id);
const notUpdatedUsers = await usersService.updateMany<AdminType>(
{ _id: { $in: usersIds } },
{
$addToSet: {
permissions: AdminPermissions.EDIT,
},
},
);
notUpdatedUsers?.[0]?.permissions?.[0]?.should.be.equal(AdminPermissions.EDIT);
notUpdatedUsers?.[0]?.permissions?.length?.should.be.equal(1);
notUpdatedUsers?.[1]?.permissions?.[0]?.should.be.equal(AdminPermissions.EDIT);
notUpdatedUsers?.[1]?.permissions?.length?.should.be.equal(1);
const updatedUsers = await usersService.updateMany<AdminType>(
{ _id: { $in: usersIds } },