-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmodify.test.js
411 lines (338 loc) · 13.8 KB
/
modify.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
import update from 'immutability-helper';
import modify from './modify.js';
import each from './lib/each';
// Examples are taken from https://docs.mongodb.com/manual/reference/
describe("modify", function () {
describe("$currentDate", () => {
it('something', () => {
const testObject = {
'first': 1,
'second': 2,
'third': 3
};
const changedObject = {};
const expectedObject = {
'first': 2,
'second': 4,
'third': 6
};
each(testObject, (value, key) => {
changedObject[key] = value * 2;
})
//
// Object.keys(testObject).forEach(key => {
// changedObject[key] = testObject[key] * 2;
// })
expect(changedObject).toEqual(expectedObject);
})
it.skip("sets a field with a currentDate", () => {
const myObject = {existingItem: "here"};
const updatedObject = modify(myObject, {$currentDate: "lastModified"});
const expectedObject = {existingItem: "here", lastModified: new Date()}; // placeholder, obviously wrong
expect(updatedObject).toEqual(expectedObject);
});
})
describe("$min", () => {
it("updates a field when the passed value is lower than an existing one", () => {
const myObject = { _id: 1, highScore: 800, lowScore: 200 };
const updatedObject = modify(myObject, {$min: {lowScore: 150}});
const expectedObject = {...myObject, lowScore: 150};
expect(updatedObject).toEqual(expectedObject);
});
it("doesn't update a field when the passed value is higher than an existing one", () => {
const myObject = { _id: 1, highScore: 800, lowScore: 200 };
const updatedObject = modify(myObject, {$min: {lowScore: 250}});
const expectedObject = {...myObject};
expect(updatedObject).toEqual(expectedObject);
})
});
describe("$max", () => {
it("updates a field when the passed value is higher than an existing one", () => {
const myObject = {_id: 1, highScore: 800, lowScore: 200};
const updatedObject = modify(myObject, {$max: {highScore: 950}});
const expectedObject = {...myObject, highScore: 950};
expect(updatedObject).toEqual(expectedObject);
});
it("doesn't update a field when the passed value is lower than an existing one", () => {
const myObject = { _id: 1, highScore: 950, lowScore: 200 };
const updatedObject = modify(myObject, {$max: {highScore: 870}});
const expectedObject = {...myObject};
expect(updatedObject).toEqual(expectedObject);
})
});
describe("$inc", () => {
it("can increment with positive and negative values at the same time", () => {
const myObject = {
_id: 1,
sku: "abc123",
quantity: 10,
metrics: {
orders: 2,
ratings: 3.5
}
};
const updatedObject = modify(myObject, {$inc: {quantity: -2, "metrics.orders": 1}});
const expectedObject = update(myObject, {
quantity: {$set: myObject.quantity - 2},
metrics: {
orders: {$set: myObject.metrics.orders + 1}
}
});
expect(updatedObject).toEqual(expectedObject);
})
});
describe("$set", () => {
// https://docs.mongodb.com/manual/reference/operator/update/set/#set-top-level-fields
it("sets top-level fields", () => {
const myObject = {
_id: 100,
sku: "abc123",
quantity: 250,
instock: true,
reorder: false,
details: { model: "14Q2", make: "xyz" },
tags: [ "apparel", "clothing" ],
ratings: [ { by: "ijk", rating: 4 } ]
};
const updatedObject = modify(myObject, { $set:
{
quantity: 500,
details: { model: "14Q3", make: "xyz" },
tags: [ "coats", "outerwear", "clothing" ]
}
});
const expectedObject = update(myObject, {
quantity: {$set: 500},
details: {$set: {model: "14Q3", make: "xyz"}},
tags: {$set: [ "coats", "outerwear", "clothing" ]}
});
expect(updatedObject).toEqual(expectedObject);
});
// https://docs.mongodb.com/manual/reference/operator/update/set/#set-fields-in-embedded-documents
it("sets fields in embedded documents", () => {
const myObject = {
_id: 100,
sku: "abc123",
quantity: 250,
instock: true,
reorder: false,
details: { model: "14Q2", make: "xyz" },
tags: [ "apparel", "clothing" ],
ratings: [ { by: "ijk", rating: 4 } ]
};
const updatedObject = modify(myObject, {$set: { "details.make": "zzz"}});
const expectedObject = update(myObject, {
details: {
make: {$set: "zzz"}
}
});
expect(updatedObject).toEqual(expectedObject);
});
// https://docs.mongodb.com/manual/reference/operator/update/set/#set-elements-in-arrays
it("sets elements in arrays", () => {
const myObject = {
_id: 100,
sku: "abc123",
quantity: 250,
instock: true,
reorder: false,
details: { model: "14Q2", make: "xyz" },
tags: [ "apparel", "clothing" ],
ratings: [ { by: "ijk", rating: 4 } ]
};
const updatedObject = modify(myObject, { $set:
{
"tags.1": "rain gear",
"ratings.0.rating": 2
}
});
const expectedObject = update(myObject, {
tags: {
1: {$set: "rain gear"}
},
ratings: {
0: {
rating: {$set: 2}
}
}
});
expect(updatedObject).toEqual(expectedObject);
})
});
// https://docs.mongodb.com/manual/reference/operator/update/unset/
describe("$unset", () => {
it("deletes a particular field", () => {
const myObject = {sku: "unknown", quantity: 2, instock: true};
const updatedObject = modify(myObject, {$unset: {quantity: "", instock: ""}});
const expectedObject = {...myObject};
delete expectedObject.quantity;
delete expectedObject.instock;
expect(updatedObject).toEqual(expectedObject);
})
});
describe("$push", () => {
// https://docs.mongodb.com/manual/reference/operator/update/push/#append-a-value-to-an-array
it("appends a value to an array", () => {
const myObject = {_id: 1, scores: [50]};
const updatedObject = modify(myObject, {$push: {scores: 89}});
const expectedObject = update(myObject, {
scores: {$push: [89]}
});
expect(updatedObject).toEqual(expectedObject);
});
// https://docs.mongodb.com/manual/reference/operator/update/push/#append-multiple-values-to-an-array
it("appends multiple values to an array", () => {
const myObject = {name: "joe", scores: [50]};
const updatedObject = modify(myObject, {$push: {scores: {$each: [90, 92, 85]}}});
const expectedObject = update(myObject, {
scores: {$push: [90, 92, 85]}
});
expect(updatedObject).toEqual(expectedObject);
});
// https://docs.mongodb.com/manual/reference/operator/update/push/#use-push-operator-with-multiple-modifiers
// Looks like this is not fully supported in minimongo yet!
// I get MinimongoError: $slice in $push must be zero or negative for field 'quizzes'
//TODO When I change slice to negative, turns out I don't have minimongo sorter yet, will investigate this later
it.skip("can update an array with multiple modifiers", () => {
const myObject = {
"_id" : 5,
"quizzes" : [
{ "wk": 1, "score" : 10 },
{ "wk": 2, "score" : 8 },
{ "wk": 3, "score" : 5 },
{ "wk": 4, "score" : 6 }
]
};
const updatedObject = modify(myObject, {
$push: {
quizzes: {
$each: [ { wk: 5, score: 8 }, { wk: 6, score: 7 }, { wk: 7, score: 6 } ],
$sort: { score: -1 },
$slice: 3
}
}
});
const expectedObject = {
"_id" : 5,
"quizzes" : [
{ "wk" : 1, "score" : 10 },
{ "wk" : 2, "score" : 8 },
{ "wk" : 5, "score" : 8 }
]
};
expect(updatedObject).toEqual(expectedObject);
})
});
// deprecated since mongo 2.4, based on the example of $push "appends multiple values to an array" above
//
describe("$pushAll", () => {
it("appends multiple values to an array without $each", () => {
const myObject = {name: "joe", scores: [50]};
// compare with - notice the $each
// {$push: {scores: {$each: [90, 92, 85]}}};
const updatedObject = modify(myObject, {$pushAll: {scores: [90, 92, 85]}});
const expectedObject = update(myObject, {
scores: {$push: [90, 92, 85]}
});
expect(updatedObject).toEqual(expectedObject);
});
});
// https://docs.mongodb.com/manual/reference/operator/update/addToSet/#behavior
describe("$addToSet", () => {
it("appends array with an array", () => {
const myObject = { _id: 1, letters: ["a", "b"] };
const updatedObject = modify(myObject, {$addToSet: {letters: ["c", "d"]}});
const expectedObject = {_id: 1, letters: ["a", "b", ["c", "d"]]};
expect(updatedObject).toEqual(expectedObject);
});
// https://docs.mongodb.com/manual/reference/operator/update/addToSet/#examples
it("adds element to an array if element doesn't already exist", () => {
const myObject = { _id: 1, item: "polarizing_filter", tags: [ "electronics", "camera" ] };
const updatedObject = modify(myObject, {$addToSet: {tags: "accessories"}});
const expectedObject = update(myObject, {tags: {$push: ["accessories"]}});
expect(updatedObject).toEqual(expectedObject);
});
it("doesn't add an element to the array if it does already exists", () => {
const myObject = { _id: 1, item: "polarizing_filter", tags: [ "electronics", "camera" ] };
const updatedObject = modify(myObject, {$addToSet: {tags: "camera"}});
const expectedObject = {...myObject};
expect(updatedObject).toEqual(expectedObject);
});
// https://docs.mongodb.com/manual/reference/operator/update/addToSet/#each-modifier
it("adds multiple values to the array field with $each modifier, omitting existing ones", () => {
const myObject = { _id: 2, item: "cable", tags: [ "electronics", "supplies" ] };
const updatedObject = modify(myObject, {$addToSet: { tags: { $each: [ "camera", "electronics", "accessories" ] } }});
const expectedObject = update(myObject, {tags: {$push: ["camera", "accessories"]}});
expect(updatedObject).toEqual(expectedObject);
});
});
describe("$pop", () => {
// https://docs.mongodb.com/manual/reference/operator/update/pop/#remove-the-first-item-of-an-array
it("removes the first element from an array", () => {
const myObject = { _id: 1, scores: [ 8, 9, 10 ] };
const updatedObject = modify(myObject, {$pop: {scores: -1}});
const expectedObject = {_id: 1, scores: [9, 10]};
expect(updatedObject).toEqual(expectedObject);
});
// https://docs.mongodb.com/manual/reference/operator/update/pop/#remove-the-last-item-of-an-array
it("removes the last item of an array", () => {
const myObject = {_id: 1, scores: [ 9, 10 ]};
const updatedObject = modify(myObject, { $pop: { scores: 1 } });
const expectedObject = {_id: 1, scores: [ 9 ]};
expect(updatedObject).toEqual(expectedObject);
})
});
describe("$pull", () => {
// https://docs.mongodb.com/manual/reference/operator/update/pull/#remove-all-items-that-equals-a-specified-value
it.skip("removes all items that equals a specified value", () => {
const myObject = {
_id: 1,
fruits: [ "apples", "pears", "oranges", "grapes", "bananas" ],
vegetables: [ "carrots", "celery", "squash", "carrots" ]
};
const updatedObject = modify(myObject, { $pull: { fruits: { $in: [ "apples", "oranges" ] }, vegetables: "carrots" } });
const expectedObject = {
"_id" : 1,
"fruits" : [ "pears", "grapes", "bananas" ],
"vegetables" : [ "celery", "squash" ]
};
// notice two carrots missing from the vegetables array
expect(updatedObject).toEqual(expectedObject);
});
// https://docs.mongodb.com/manual/reference/operator/update/pull/#remove-all-items-that-match-a-specified-pull-condition
it.skip("Remove All Items That Match a Specified $pull Condition", () => {
const myObject = { _id: 1, votes: [ 3, 5, 6, 7, 7, 8 ] };
const updatedObject = modify(myObject, { $pull: { votes: { $gte: 6 } } });
const expectedObject = { _id: 1, votes: [ 3, 5 ] };
expect(updatedObject).toEqual(expectedObject);
})
});
describe("$pullAll", () => {
// https://docs.mongodb.com/manual/reference/operator/update/pullAll/#up._S_pullAll
it("removes all instances of the specified values from an existing array", () => {
const myObject = { _id: 1, scores: [ 0, 2, 5, 5, 1, 0 ] };
const updatedObject = modify(myObject, {$pullAll: {scores: [0, 5]}});
const expectedObject = {_id: 1, scores: [2, 1]};
expect(updatedObject).toEqual(expectedObject);
});
});
// https://docs.mongodb.com/manual/reference/operator/update/rename/
describe("$rename", () => {
it("updates the name of a field", () => {
const myObject = {
"_id": 1,
"alias": [ "The American Cincinnatus", "The American Fabius" ],
"mobile": "555-555-5555",
"nmae": { "first" : "george", "last" : "washington" }
};
const updatedObject = modify(myObject, {$rename: {"nmae": "name"}});
const expectedObject = {...myObject};
delete expectedObject.nmae;
expectedObject.name = {...myObject.nmae};
expect(updatedObject).toEqual(expectedObject);
})
});
it("throws an error when the operand path contains an empty field name", () => {
expect(() => { modify({}, {$set: {"test.abc.": "name"}}) }).toThrow(/empty field name/);
})
});