-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdynamo-update-expression.spec.js
More file actions
1136 lines (1069 loc) · 59.6 KB
/
dynamo-update-expression.spec.js
File metadata and controls
1136 lines (1069 loc) · 59.6 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
const jp = require('jsonpath');
const _ = require('lodash');
const due = require('./dynamo-update-expression');
const original = Object.freeze({
id: 123,
title: 'Bicycle 123',
description: '123 description',
bicycleType: 'Hybrid',
brand: 'Brand-Company C',
price: 500,
color: ['Red', 'Black'], // String Set if you use docClient.createSet() before put/update
productCategory: 'Bicycle',
inStok: true,
quantityOnHand: null,
relatedItems: [341, 472, 649], // Numeric Set if you use docClient.createSet() before put/update
pictures: {
frontView: 'http://example.com/products/123_front.jpg',
rearView: 'http://example.com/products/123_rear.jpg',
sideView: 'http://example.com/products/123_left_side.jpg'
},
productReview: {
fiveStar: [
"Excellent! Can't recommend it highly enough! Buy it!",
'Do yourself a favor and buy this.'
],
oneStar: [
'Terrible product! Do no buy this.'
]
},
comment: 'This product sells out quickly during the summer',
'Safety.Warning': 'Always wear a helmet' // attribute name with `.`
});
describe('dynamodb-update-expression', () => {
const ADDITIONS = {
'$.root0': 'root0',
'$.newParent.newChild1.newGrandChild1': 'c1gc1',
'$.newParent.newChild1.newGrandChild2': 'c1gc',
'$.newParent.newChild2.newGrandChild1': 'c2gc1',
'$.newParent.newChild2.newGrandChild2': 'c2gc2',
'$.newParent.newChild3': {},
'$.pictures.otherSideView': 'pictures.otherSideView',
'$.color[2]': 'Blue',
'$.relatedItems[3]': 1000,
'$.productReview.oneStar[1]': 'Never again!',
'$["prefix-suffix"]': 'Value for attribute name with -',
'$["name with space"]': 'name with spaces is also okay',
'$["1atBeginning"]': 'name starting with number is also okay',
'$.productReview.thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasLen': 'Value for attribute name with 255 characters excluding the parent path',
'$.thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasLen[0]': 'Value for attribute name with 255 characters with subscript excluding the parent path'
};
const ADDITIONS_NO_ORPHANS = {
'$.color[2]': 'Blue',
'$.newParent': {
'newChild1': {'newGrandChild1': 'c1gc1', 'newGrandChild2': 'c1gc'},
'newChild2': {'newGrandChild1': 'c2gc1', 'newGrandChild2': 'c2gc2'},
'newChild3': {}
},
'$.pictures.otherSideView': 'pictures.otherSideView',
'$.productReview.oneStar[1]': 'Never again!',
'$.relatedItems[3]': 1000,
'$.root0': 'root0',
'$["prefix-suffix"]': 'Value for attribute name with -',
'$["name with space"]': 'name with spaces is also okay',
'$["1atBeginning"]': 'name starting with number is also okay',
'$.productReview.thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasLen': 'Value for attribute name with 255 characters excluding the parent path',
'$.thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasLen': [
'Value for attribute name with 255 characters with subscript excluding the parent path'
]
};
const UPDATES = {
'$.title': 'root0',
'$.pictures.rearView': 'root1.level1',
'$.color[0]': 'Blue',
'$.relatedItems[1]': 1000,
'$.productReview.oneStar[0]': 'Never again!',
'$["Safety.Warning"]': 'Value for attribute with DOT'
};
const DELETES = [
'$.title',
'$.pictures.rearView',
'$.color[0]',
'$.relatedItems[1]',
// '$.productReview' // our delete diff paths enumerate leaves to preserve document structure allowing for subsequent queries with no null check on collections, and subsequent SET expressions without missing levels in the document
'$.productReview.fiveStar[0]',
'$.productReview.fiveStar[1]',
'$.productReview.oneStar[0]'
];
const applyUpdates = (document, updates) => {
const modified = _.cloneDeep(document);
// const modified = JSON.parse(JSON.stringify(document));
for (const path in updates) {
jp.value(modified, path, updates[path]);
}
return modified;
};
const applyDeletes = (document, deletes, nullify = true) => {
const modified = _.cloneDeep(document);
// const modified = JSON.parse(JSON.stringify(document));
for (const path of deletes) {
const parent = jp.parent(modified, path);
if (_.isArray(parent)) {
const _subscript = /\[([\d]+)\]$/;
const subscript = _subscript.exec(path)[1];
if (nullify) {
parent[subscript] = null; // delete array['0'] doesn't work with jsonpath! list items should be deleted by setting to null or undefined,
} else {
parent.splice(subscript, 1);
}
} else {
delete parent[path.split('.').pop()];
}
}
return modified;
};
describe('diff', () => {
it('returns the diff objects with the ADD fields', () => {
const modified = applyUpdates(original, ADDITIONS);
const {ADD} = due.diff(original, modified, true);
expect(ADD.reduce((acc, node) => {
acc[node.path] = node.value;
return acc;
}, {})).toEqual(ADDITIONS);
});
it('returns the diff objects with the ADD fields with no orphans', () => {
const modified = applyUpdates(original, ADDITIONS);
const {ADD} = due.diff(original, modified, false);
expect(ADD.reduce((acc, node) => {
acc[node.path] = node.value;
return acc;
}, {})).toEqual(ADDITIONS_NO_ORPHANS);
});
it('returns the diff objects with the SET fields', () => {
const modified = applyUpdates(original, UPDATES);
const {SET} = due.diff(original, modified);
expect(SET.reduce((acc, node) => {
acc[node.path] = node.value;
return acc;
}, {})).toEqual(UPDATES);
});
it('returns the diff objects with the DELETE fields', () => {
const modified = applyDeletes(original, DELETES);
const {DELETE, SET, ADD} = due.diff(original, modified);
expect(DELETE.reduce((acc, node) => {
acc.push(node.path);
return acc;
}, []).sort()).toEqual(DELETES.sort());
expect(ADD).toEqual([]);
expect(SET).toEqual([]);
});
});
describe('getUpdateExpression', () => {
it('showcase test case default usage', () => {
const modified = {
id: 123,
// title: 'Bicycle 123', // DELETED
description: '123 description',
bicycleType: 'Hybrid',
brand: 'Brand-Company C',
price: 600, // UPDATED
color: ['Red', undefined, 'Blue'], // ADDED color[2] = 'Blue', REMOVED color[1] by setting to undefined, never pop, see why it is best below
productCategory: 'Bicycle',
inStok: false, // UPDATED boolean true => false
quantityOnHand: null, // No change, was null in original, still null. DynamoDB recognizes null.
relatedItems: [100, null, 649], // UPDATE relatedItems[0], REMOVE relatedItems[1], always nullify or set to undefined, never pop
pictures: {
frontView: 'http://example.com/products/123_front.jpg',
rearView: 'http://example.com/products/123_rear.jpg',
sideView: 'http://example.com/products/123_right_side.jpg' // UPDATED Map item
},
productReview: {
fiveStar: [
"", // DynamoDB doesn't allow empty string, would be REMOVED
'Do yourself a favor and buy this.',
'This is new' // ADDED *deep* list item
],
oneStar: [
'Actually I take it back, it is alright' // UPDATED *deep* List item
]
},
comment: 'This product sells out quickly during the summer',
'Safety.Warning': 'Always wear a helmet, ride at your own risk!' // UPDATED attribute name with `.`
};
const updateExpression = due.getUpdateExpression({original, modified});
expect(updateExpression).toEqual({
"UpdateExpression": "SET #color[2] = :color2, #productReview.#fiveStar[2] = :productReviewFiveStar2, #inStok = :inStok, #pictures.#sideView = :picturesSideView, #price = :price, #productReview.#oneStar[0] = :productReviewOneStar0, #relatedItems[0] = :relatedItems0, #safetyWarning = :safetyWarning REMOVE #color[1], #productReview.#fiveStar[0], #relatedItems[1], #title",
"ExpressionAttributeNames": {
"#color": "color",
"#fiveStar": "fiveStar",
"#inStok": "inStok",
"#oneStar": "oneStar",
"#pictures": "pictures",
"#price": "price",
"#productReview": "productReview",
"#relatedItems": "relatedItems",
"#safetyWarning": "Safety.Warning",
"#sideView": "sideView",
"#title": "title"
},
"ExpressionAttributeValues": {
":color2": "Blue",
":inStok": false,
":picturesSideView": "http://example.com/products/123_right_side.jpg",
":price": 600,
":productReviewFiveStar2": "This is new",
":productReviewOneStar0": "Actually I take it back, it is alright",
":relatedItems0": 100,
":safetyWarning": "Always wear a helmet, ride at your own risk!"
}
});
});
it('showcase test case orphans = false', () => {
const partial = {
id: 123,
title: 'Bicycle 123',
inStock: false,
description: '123 description'
};
const modified = {
id: 123,
title: 'Bicycle 123',
inStock: true,
stock: 10,
description: 'modified 123 description',
pictures: {
topView: 'http://example.com/products/123_top.jpg'
}
};
const updateExpression = due.getUpdateExpression({original: partial, modified});
expect(updateExpression).toEqual({
"ExpressionAttributeNames": {
"#description": "description",
"#inStock": "inStock",
"#pictures": "pictures",
"#stock": "stock"
},
"ExpressionAttributeValues": {
":description": "modified 123 description",
":inStock": true,
":pictures": {
"topView": "http://example.com/products/123_top.jpg"
},
":stock": 10
},
"UpdateExpression": "SET #pictures = :pictures, #stock = :stock, #description = :description, #inStock = :inStock"
});
});
it('showcase test case orphans = true', () => {
const partial = {
id: 123,
title: 'Bicycle 123',
inStock: false,
description: '123 description'
};
const modified = {
id: 123,
title: 'Bicycle 123',
inStock: true,
stock: 10,
description: 'modified 123 description',
pictures: {
topView: 'http://example.com/products/123_top.jpg'
}
};
const updateExpression = due.getUpdateExpression({original: partial, modified, orphans: true});
expect(updateExpression).toEqual({
"ExpressionAttributeNames": {
"#description": "description",
"#inStock": "inStock",
"#pictures": "pictures",
"#stock": "stock",
"#topView": "topView"
},
"ExpressionAttributeValues": {
":description": "modified 123 description",
":inStock": true,
":picturesTopView": "http://example.com/products/123_top.jpg",
":stock": 10
},
"UpdateExpression": "SET #pictures.#topView = :picturesTopView, #stock = :stock, #description = :description, #inStock = :inStock"
});
});
it('showcase test case deep additions, orphans = false', () => {
const partial = {
id: 123,
title: 'Bicycle 123',
inStock: false,
description: '123 description'
};
const modified = {
id: 123,
title: 'Bicycle 123',
inStock: true,
stock: 10,
description: 'modified 123 description',
productReview: {
fiveStar: {
comment: 'Such a fantastic item!'
}
}
};
const updateExpression = due.getUpdateExpression({original: partial, modified});
expect(updateExpression).toEqual({
"ExpressionAttributeNames": {
"#description": "description",
"#inStock": "inStock",
"#productReview": "productReview",
"#stock": "stock"
},
"ExpressionAttributeValues": {
":description": "modified 123 description",
":inStock": true,
":productReview": {
"fiveStar": {
"comment": "Such a fantastic item!"
}
},
":stock": 10
},
"UpdateExpression": "SET #productReview = :productReview, #stock = :stock, #description = :description, #inStock = :inStock"
});
});
it('showcase test case deep additions, orphans = true', () => {
const partial = {
id: 123,
title: 'Bicycle 123',
inStock: false,
description: '123 description'
};
const modified = {
id: 123,
title: 'Bicycle 123',
inStock: true,
stock: 10,
description: 'modified 123 description',
productReview: {
fiveStar: {
comment: 'Such a fantastic item!'
}
}
};
const updateExpression = due.getUpdateExpression({original: partial, modified, orphans: true});
expect(updateExpression).toEqual({
"ExpressionAttributeNames": {
"#comment": "comment",
"#description": "description",
"#fiveStar": "fiveStar",
"#inStock": "inStock",
"#productReview": "productReview",
"#stock": "stock"
},
"ExpressionAttributeValues": {
":description": "modified 123 description",
":inStock": true,
":productReviewFiveStarComment": "Such a fantastic item!",
":stock": 10
},
"UpdateExpression": "SET #productReview.#fiveStar.#comment = :productReviewFiveStarComment, #stock = :stock, #description = :description, #inStock = :inStock"
});
});
it('creates update expression for ADDITIONS with orphans and long name truncation to 255', () => {
const modified = applyUpdates(original, ADDITIONS);
const updateExpression = due.getUpdateExpression({original, modified, orphans: true});
expect(updateExpression).toEqual({
"ExpressionAttributeNames": {
"#1AtBeginning": "1atBeginning",
"#color": "color",
"#nameWithSpace": "name with space",
"#newChild1": "newChild1",
"#newChild2": "newChild2",
"#newChild3": "newChild3",
"#newGrandChild1": "newGrandChild1",
"#newGrandChild2": "newGrandChild2",
"#newParent": "newParent",
"#oneStar": "oneStar",
"#otherSideView": "otherSideView",
"#pictures": "pictures",
"#prefixSuffix": "prefix-suffix",
"#productReview": "productReview",
"#relatedItems": "relatedItems",
"#root0": "root0",
"#thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL1": "thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasLen",
"#thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL3": "thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasLen"
},
"ExpressionAttributeValues": {
":1AtBeginning": "name starting with number is also okay",
":color2": "Blue",
":nameWithSpace": "name with spaces is also okay",
":newParentNewChild1NewGrandChild1": "c1gc1",
":newParentNewChild1NewGrandChild2": "c1gc",
":newParentNewChild2NewGrandChild1": "c2gc1",
":newParentNewChild2NewGrandChild2": "c2gc2",
":newParentNewChild3": {},
":picturesOtherSideView": "pictures.otherSideView",
":prefixSuffix": "Value for attribute name with -",
":productReviewOneStar1": "Never again!",
":productReviewThisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesA2": "Value for attribute name with 255 characters excluding the parent path",
":relatedItems3": 1000,
":root0": "root0",
":thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL4": "Value for attribute name with 255 characters with subscript excluding the parent path"
},
"UpdateExpression": "SET #color[2] = :color2, #newParent.#newChild1.#newGrandChild1 = :newParentNewChild1NewGrandChild1, #newParent.#newChild1.#newGrandChild2 = :newParentNewChild1NewGrandChild2, #newParent.#newChild2.#newGrandChild1 = :newParentNewChild2NewGrandChild1, #newParent.#newChild2.#newGrandChild2 = :newParentNewChild2NewGrandChild2, #newParent.#newChild3 = :newParentNewChild3, #pictures.#otherSideView = :picturesOtherSideView, #productReview.#oneStar[1] = :productReviewOneStar1, #productReview.#thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL1 = :productReviewThisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesA2, #relatedItems[3] = :relatedItems3, #root0 = :root0, #thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL3[0] = :thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL4, #1AtBeginning = :1AtBeginning, #nameWithSpace = :nameWithSpace, #prefixSuffix = :prefixSuffix"
});
});
it('creates update expression for ADDITIONS with no orphans', () => {
const modified = applyUpdates(original, ADDITIONS);
const updateExpression = due.getUpdateExpression({original, modified});
expect(updateExpression).toEqual({
"ExpressionAttributeNames": {
"#1AtBeginning": "1atBeginning",
"#color": "color",
"#nameWithSpace": "name with space",
"#newParent": "newParent",
"#oneStar": "oneStar",
"#otherSideView": "otherSideView",
"#pictures": "pictures",
"#prefixSuffix": "prefix-suffix",
"#productReview": "productReview",
"#relatedItems": "relatedItems",
"#root0": "root0",
"#thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL1": "thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasLen",
"#thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL3": "thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasLen"
},
"ExpressionAttributeValues": {
":1AtBeginning": "name starting with number is also okay",
":color2": "Blue",
":nameWithSpace": "name with spaces is also okay",
":newParent": {
"newChild1": {
"newGrandChild1": "c1gc1",
"newGrandChild2": "c1gc"
},
"newChild2": {
"newGrandChild1": "c2gc1",
"newGrandChild2": "c2gc2"
},
"newChild3": {}
},
":picturesOtherSideView": "pictures.otherSideView",
":prefixSuffix": "Value for attribute name with -",
":productReviewOneStar1": "Never again!",
":productReviewThisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesA2": "Value for attribute name with 255 characters excluding the parent path",
":relatedItems3": 1000,
":root0": "root0",
":thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL4": [
"Value for attribute name with 255 characters with subscript excluding the parent path"
]
},
"UpdateExpression": "SET #color[2] = :color2, #newParent = :newParent, #pictures.#otherSideView = :picturesOtherSideView, #productReview.#oneStar[1] = :productReviewOneStar1, #productReview.#thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL1 = :productReviewThisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesA2, #relatedItems[3] = :relatedItems3, #root0 = :root0, #thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL3 = :thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL4, #1AtBeginning = :1AtBeginning, #nameWithSpace = :nameWithSpace, #prefixSuffix = :prefixSuffix"
});
});
it('creates update expression for UPDATES', () => {
const modified = applyUpdates(original, UPDATES);
const updateExpression = due.getUpdateExpression({original, modified});
expect(updateExpression).toEqual({
"ExpressionAttributeNames": {
"#color": "color",
"#oneStar": "oneStar",
"#pictures": "pictures",
"#productReview": "productReview",
"#rearView": "rearView",
"#relatedItems": "relatedItems",
"#safetyWarning": "Safety.Warning",
"#title": "title"
},
"ExpressionAttributeValues": {
":color0": "Blue",
":picturesRearView": "root1.level1",
":productReviewOneStar0": "Never again!",
":relatedItems1": 1000,
":safetyWarning": "Value for attribute with DOT",
":title": "root0"
},
"UpdateExpression": "SET #color[0] = :color0, #pictures.#rearView = :picturesRearView, #productReview.#oneStar[0] = :productReviewOneStar0, #relatedItems[1] = :relatedItems1, #title = :title, #safetyWarning = :safetyWarning"
});
});
it('creates update expression using REMOVE for Map and List', () => {
const modified = applyDeletes(original, DELETES);
const updateExpression = due.getUpdateExpression({original, modified});
expect(updateExpression).toEqual({
"ExpressionAttributeNames": {
"#color": "color",
"#fiveStar": "fiveStar",
"#oneStar": "oneStar",
"#pictures": "pictures",
"#productReview": "productReview",
"#rearView": "rearView",
"#relatedItems": "relatedItems",
"#title": "title"
},
"UpdateExpression": "REMOVE #color[0], #pictures.#rearView, #productReview.#fiveStar[0], #productReview.#fiveStar[1], #productReview.#oneStar[0], #relatedItems[1], #title"
});
});
// it.skip('creates update expression using REMOVE Map and List, and DELETES for Set', () => {
// const modified = applyDeletes(original, DELETES);
// const updateExpression = due.getUpdateExpression({original, modified, orphans: true, supportSets: true});
// expect(updateExpression).toEqual({});
// });
it('creates update expression using SET & REMOVE for mixed add/update/delete document changes', () => {
let modified = applyUpdates(original, ADDITIONS);
modified = applyUpdates(modified, UPDATES);
modified = applyDeletes(modified, DELETES);
const updateExpression = due.getUpdateExpression({original, modified});
expect(updateExpression).toEqual({
"ExpressionAttributeNames": {
"#1AtBeginning": "1atBeginning",
"#color": "color",
"#fiveStar": "fiveStar",
"#nameWithSpace": "name with space",
"#newParent": "newParent",
"#oneStar": "oneStar",
"#otherSideView": "otherSideView",
"#pictures": "pictures",
"#prefixSuffix": "prefix-suffix",
"#productReview": "productReview",
"#rearView": "rearView",
"#relatedItems": "relatedItems",
"#root0": "root0",
"#safetyWarning": "Safety.Warning",
"#thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL1": "thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasLen",
"#thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL3": "thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasLen",
"#title": "title"
},
"ExpressionAttributeValues": {
":1AtBeginning": "name starting with number is also okay",
":color2": "Blue",
":nameWithSpace": "name with spaces is also okay",
":newParent": {
"newChild1": {
"newGrandChild1": "c1gc1",
"newGrandChild2": "c1gc"
},
"newChild2": {
"newGrandChild1": "c2gc1",
"newGrandChild2": "c2gc2"
},
"newChild3": {}
},
":picturesOtherSideView": "pictures.otherSideView",
":prefixSuffix": "Value for attribute name with -",
":productReviewOneStar1": "Never again!",
":productReviewThisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesA2": "Value for attribute name with 255 characters excluding the parent path",
":relatedItems3": 1000,
":root0": "root0",
":safetyWarning": "Value for attribute with DOT",
":thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL4": [
"Value for attribute name with 255 characters with subscript excluding the parent path"
]
},
"UpdateExpression": "SET #color[2] = :color2, #newParent = :newParent, #pictures.#otherSideView = :picturesOtherSideView, #productReview.#oneStar[1] = :productReviewOneStar1, #productReview.#thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL1 = :productReviewThisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesA2, #relatedItems[3] = :relatedItems3, #root0 = :root0, #thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL3 = :thisIsAVeryLongAttributeNameAndHadToKeepTypingRandomWordsToTryToGetUpTo255CharactersYouWouldThinkThatThisIsEnoughOrThatItWillHappenOftenWhenYouHaveAnAttributeThatLongYouMightAlsoOpenAnIssueAboutItPleaseDoNotSinceTheLibraryDoesTrimYourNamesAndLimitAliasL4, #1AtBeginning = :1AtBeginning, #nameWithSpace = :nameWithSpace, #prefixSuffix = :prefixSuffix, #safetyWarning = :safetyWarning REMOVE #color[0], #pictures.#rearView, #productReview.#fiveStar[0], #productReview.#fiveStar[1], #productReview.#oneStar[0], #relatedItems[1], #title"
});
});
});
describe('getVersionedUpdateExpression backward compatible versionning', () => {
it('creates update expression for ADDITIONS with orphans with version = 1 if attribute_not_exists', () => {
const original = {};
const modified = {parent: {child: 'newChildValue'}, version: 1};
const updateExpression = due.getVersionedUpdateExpression({original, modified, orphans: true});
expect(updateExpression).toEqual({
"ConditionExpression": "attribute_not_exists (#expectedVersion)",
"ExpressionAttributeNames": {
"#child": "child",
"#expectedVersion": "version",
"#parent": "parent",
"#version": "version"
},
"ExpressionAttributeValues": {
":parentChild": "newChildValue",
":version": 1
},
"UpdateExpression": "SET #parent.#child = :parentChild, #version = :version"
});
});
it('creates update expression for ADDITIONS with no orphans with version = 1 if attribute_not_exists', () => {
const original = {};
const modified = {parent: {child: 'newChildValue'}, version: 1};
const updateExpression = due.getVersionedUpdateExpression({original, modified, orphans: false});
expect(updateExpression).toEqual({
"ConditionExpression": "attribute_not_exists (#expectedVersion)",
"ExpressionAttributeNames": {
"#expectedVersion": "version",
"#parent": "parent",
"#version": "version"
},
"ExpressionAttributeValues": {
":parent": {
"child": "newChildValue"
},
":version": 1
},
"UpdateExpression": "SET #parent = :parent, #version = :version"
});
});
it('creates update expression for UPDATES with version = 1 if attribute_not_exists', () => {
const original = {parent: {child: 'oldChildValue'}};
const modified = {parent: {child: 'newChildValue'}, version: 1};
const updateExpression = due.getVersionedUpdateExpression({original, modified, orphans: false});
expect(updateExpression).toEqual({
"ConditionExpression": "attribute_not_exists (#expectedVersion)",
"ExpressionAttributeNames": {
"#child": "child",
"#expectedVersion": "version",
"#parent": "parent",
"#version": "version"
},
"ExpressionAttributeValues": {
":parentChild": "newChildValue",
":version": 1
},
"UpdateExpression": "SET #version = :version, #parent.#child = :parentChild"
});
});
it('creates update expression using REMOVE for Map and List with version = 1 if attribute_not_exists', () => {
const original = {parent: {child: 'oldChildValue'}, childList: ['one', 'two']};
const modified = {parent: {}, childList: [null, 'two'], version: 1};
const updateExpression = due.getVersionedUpdateExpression({original, modified, orphans: false});
expect(updateExpression).toEqual({
"ConditionExpression": "attribute_not_exists (#expectedVersion)",
"ExpressionAttributeNames": {
"#child": "child",
"#childList": "childList",
"#expectedVersion": "version",
"#parent": "parent",
"#version": "version"
},
"ExpressionAttributeValues": {
":version": 1
},
"UpdateExpression": "SET #version = :version REMOVE #childList[0], #parent.#child"
});
});
it('creates update expression using SET & REMOVE for mixed add/update/delete document changes with version = 1 if attribute_not_exists', () => {
const original = {
parent: {
child: 'oldChildValue',
secondChild: 'secondChildValue'
},
childList: ['one', 'two']
};
const modified = {parent: {child: 'newChildValue'}, childList: [null, 'three'], version: 1};
const updateExpression = due.getVersionedUpdateExpression({original, modified, orphans: false});
expect(updateExpression).toEqual({
"ConditionExpression": "attribute_not_exists (#expectedVersion)",
"ExpressionAttributeNames": {
"#child": "child",
"#childList": "childList",
"#expectedVersion": "version",
"#parent": "parent",
"#secondChild": "secondChild",
"#version": "version"
},
"ExpressionAttributeValues": {
":childList1": "three",
":parentChild": "newChildValue",
":version": 1
},
"UpdateExpression": "SET #version = :version, #childList[1] = :childList1, #parent.#child = :parentChild REMOVE #childList[0], #parent.#secondChild"
});
});
});
describe('getVersionedUpdateExpression current version condition', () => {
it('creates update expression for ADDITIONS with orphans with current version condition', () => {
const original = {parent: {child: 'original value'}, version: 1};
const modified = {parent: {child: 'new value'}, version: 2};
const updateExpression = due.getVersionedUpdateExpression({
original, modified,
condition: '='
});
expect(updateExpression).toEqual({
"ConditionExpression": "#expectedVersion = :expectedVersion",
"ExpressionAttributeNames": {
"#child": "child",
"#expectedVersion": "version",
"#parent": "parent",
"#version": "version"
},
"ExpressionAttributeValues": {
":expectedVersion": 1,
":parentChild": "new value",
":version": 2
},
"UpdateExpression": "SET #parent.#child = :parentChild, #version = :version"
});
});
it('creates update expression for ADDITIONS with no orphans with current version condition', () => {
const original = {expiry: 500};
const modified = {parent: {child: 'newChildValue'}, expiry: 1000};
const updateExpression = due.getVersionedUpdateExpression({
original, modified,
versionPath: '$.expiry',
orphans: false, //default
useCurrent: true,
condition: '<'
});
expect(updateExpression).toEqual({
"ConditionExpression": "#expectedExpiry < :expectedExpiry",
"ExpressionAttributeNames": {
"#expectedExpiry": "expiry",
"#expiry": "expiry",
"#parent": "parent"
},
"ExpressionAttributeValues": {
":expectedExpiry": 500,
":expiry": 1000,
":parent": {
"child": "newChildValue"
}
},
"UpdateExpression": "SET #parent = :parent, #expiry = :expiry"
});
});
it('creates update expression for UPDATES with current version condition', () => {
const original = {parent: {child: {name: 'oldChildValue', age: 0}}};
const modified = {parent: {child: {name: 'newChildValue', age: 10}}};
const updateExpression = due.getVersionedUpdateExpression({
original, modified,
versionPath: '$.parent.child.age',
useCurrent: true,
aliasContext: {prefix: 'InvalidValue'},
condition: '<='
});
expect(updateExpression).toEqual({
"ConditionExpression": "#invalidValueParent.#invalidValueChild.#invalidValueAge <= :invalidValueParentChildAge",
"ExpressionAttributeNames": {
"#age": "age",
"#child": "child",
"#invalidValueAge": "age",
"#invalidValueChild": "child",
"#invalidValueParent": "parent",
"#name": "name",
"#parent": "parent"
},
"ExpressionAttributeValues": {
":invalidValueParentChildAge": 0,
":parentChildAge": 10,
":parentChildName": "newChildValue"
},
"UpdateExpression": "SET #parent.#child.#age = :parentChildAge, #parent.#child.#name = :parentChildName"
});
});
it('creates update expression using REMOVE for Map and List with current version condition', () => {
const original = {parent: {child: 'oldChildValue', childList: ['one', 'two']}, consumed: 100};
const modified = {parent: {childList: [null, 'two']}, consumed: 0};
const updateExpression = due.getVersionedUpdateExpression({
original, modified,
versionPath: '$.consumed',
useCurrent: true,
aliasContext: {prefix: ''},
condition: '>='
});
expect(updateExpression).toEqual({
"ConditionExpression": "#consumed >= :consumed",
"ExpressionAttributeNames": {
"#child": "child",
"#childList": "childList",
"#consumed": "consumed",
"#parent": "parent"
},
"ExpressionAttributeValues": {
":consumed": 100
},
"UpdateExpression": "SET #consumed = :consumed REMOVE #parent.#child, #parent.#childList[0]"
});
});
it('creates update expression using SET & REMOVE for mixed add/update/delete document changes with with current version condition', () => {
const original = {
v: 1,
parent: {
child: 'oldChildValue',
childList: ['one', 'two'],
secondChild: 'secondChildValue'
}
};
const modified = {parent: {child: 'newChildValue', childList: [null, undefined]}, v: 5};
const updateExpression = due.getVersionedUpdateExpression({
original, modified,
versionPath: '$.v',
useCurrent: true,
aliasContext: {prefix: ''},
condition: '='
});
expect(updateExpression).toEqual({
"ConditionExpression": "#v = :v",
"ExpressionAttributeNames": {
"#child": "child",
"#childList": "childList",
"#parent": "parent",
"#secondChild": "secondChild",
"#v": "v"
},
"ExpressionAttributeValues": {
":parentChild": "newChildValue",
":v": 1
},
"UpdateExpression": "SET #parent.#child = :parentChild, #v = :v REMOVE #parent.#childList[0], #parent.#childList[1], #parent.#secondChild"
});
});
});
describe('getVersionedUpdateExpression new version condition', () => {
it('creates update expression for ADDITIONS with orphans with new version condition', () => {
const modified = {coupon: {code: 'HG74XSD'}, price: 10};
const updateExpression = due.getVersionedUpdateExpression({
modified,
versionPath: '$.coupon.code',
orphans: true,
aliasContext: {prefix: ''}
});
expect(updateExpression).toEqual({
"ConditionExpression": "attribute_not_exists (#coupon.#code)",
"ExpressionAttributeNames": {
"#code": "code",
"#coupon": "coupon",
"#price": "price"
},
"ExpressionAttributeValues": {
":couponCode": "HG74XSD",
":price": 10
},
"UpdateExpression": "SET #coupon.#code = :couponCode, #price = :price"
});
});
it('creates update expression for ADDITIONS with orphans with new version condition, overriding currentVersion value', () => {
const modified = {coupon: {code: 'HG74XSD'}, price: 10};
const updateExpression = due.getVersionedUpdateExpression({
modified,
versionPath: '$.coupon.code',
orphans: true,
useCurrent: false,
currentVersion: 'N/A',
condition: '<>'
});
expect(updateExpression).toEqual({
"ConditionExpression": "#expectedCoupon.#expectedCode <> :expectedCouponCode",
"ExpressionAttributeNames": {
"#code": "code",
"#coupon": "coupon",
"#expectedCode": "code",
"#expectedCoupon": "coupon",
"#price": "price"
},
"ExpressionAttributeValues": {
":couponCode": "HG74XSD",
":expectedCouponCode": "HG74XSD",
":price": 10
},
"UpdateExpression": "SET #coupon.#code = :couponCode, #price = :price"
});
});
it('creates update expression for ADDITIONS with no orphans with new version condition', () => {
const original = {expiry: 500};
const modified = {parent: {child: 'newChildValue'}, expiry: 1000};
const updateExpression = due.getVersionedUpdateExpression({
original, modified,
versionPath: '$.expiry',
orphans: false, //default
useCurrent: false,
condition: '<='
});
expect(updateExpression).toEqual({
"ConditionExpression": "#expectedExpiry <= :expectedExpiry",
"ExpressionAttributeNames": {
"#expectedExpiry": "expiry",
"#expiry": "expiry",
"#parent": "parent"
},
"ExpressionAttributeValues": {
":expectedExpiry": 1000,
":expiry": 1000,
":parent": {
"child": "newChildValue"
}
},
"UpdateExpression": "SET #parent = :parent, #expiry = :expiry"
});
});
it('creates update expression for UPDATES with new version condition', () => {
const original = {parent: {child: {name: 'oldChildValue', age: 0}}};
const modified = {parent: {child: {name: 'newChildValue', age: 10}}};
const updateExpression = due.getVersionedUpdateExpression({
original, modified,
versionPath: '$.parent.child.age',
useCurrent: false,
aliasContext: {prefix: 'InvalidValue'},
condition: '<='
});
expect(updateExpression).toEqual({
"ConditionExpression": "#invalidValueParent.#invalidValueChild.#invalidValueAge <= :invalidValueParentChildAge",
"ExpressionAttributeNames": {
"#age": "age",
"#child": "child",
"#invalidValueAge": "age",
"#invalidValueChild": "child",
"#invalidValueParent": "parent",
"#name": "name",
"#parent": "parent"
},
"ExpressionAttributeValues": {
":invalidValueParentChildAge": 10,
":parentChildAge": 10,
":parentChildName": "newChildValue"
},
"UpdateExpression": "SET #parent.#child.#age = :parentChildAge, #parent.#child.#name = :parentChildName"
});
});
it('creates update expression using REMOVE for Map and List with new version condition', () => {
const original = {parent: {child: 'oldChildValue', childList: ['one', 'two']}, consumed: 100};
const modified = {parent: {childList: [null, 'two']}, consumed: 0};
const updateExpression = due.getVersionedUpdateExpression({
original, modified,
versionPath: '$.consumed',
useCurrent: false,
aliasContext: {prefix: ''},
condition: '>='
});
expect(updateExpression).toEqual({
"ConditionExpression": "#consumed >= :consumed",
"ExpressionAttributeNames": {
"#child": "child",
"#childList": "childList",
"#consumed": "consumed",
"#parent": "parent"
},
"ExpressionAttributeValues": {
":consumed": 0
},
"UpdateExpression": "SET #consumed = :consumed REMOVE #parent.#child, #parent.#childList[0]"
});
});
it('creates update expression using SET & REMOVE for mixed add/update/delete document changes with with new version condition', () => {
const original = {
v: 1,
parent: {
child: 'oldChildValue',
childList: ['one', 'two'],
secondChild: 'secondChildValue'
}
};
const modified = {parent: {child: 'newChildValue', childList: [null, undefined]}, v: 5};
const updateExpression = due.getVersionedUpdateExpression({
original, modified,
versionPath: '$.v',
useCurrent: false,
aliasContext: {prefix: ''},