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
|
// test $set with array indicies
t = db.jstests_set7;
var res;
t.drop();
t.save({a: [0, 1, 2, 3]});
t.update({}, {$set: {"a.0": 2}});
assert.eq([2, 1, 2, 3], t.findOne().a);
t.update({}, {$set: {"a.4": 5}});
assert.eq([2, 1, 2, 3, 5], t.findOne().a);
t.update({}, {$set: {"a.9": 9}});
assert.eq([2, 1, 2, 3, 5, null, null, null, null, 9], t.findOne().a);
t.drop();
t.save({a: [0, 1, 2, 3]});
t.update({}, {$set: {"a.9": 9, "a.7": 7}});
assert.eq([0, 1, 2, 3, null, null, null, 7, null, 9], t.findOne().a);
t.drop();
t.save({a: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]});
t.update({}, {$set: {"a.11": 11}});
assert.eq([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], t.findOne().a);
t.drop();
t.save({});
t.update({}, {$set: {"a.0": 4}});
assert.eq({"0": 4}, t.findOne().a);
t.drop();
t.update({"a.0": 4}, {$set: {b: 1}}, true);
assert.eq({"0": 4}, t.findOne().a);
t.drop();
t.save({a: []});
res = t.update({}, {$set: {"a.f": 1}});
assert.writeError(res);
assert.eq([], t.findOne().a);
// Test requiring proper ordering of multiple mods.
t.drop();
t.save({a: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]});
t.update({}, {$set: {"a.11": 11, "a.2": -2}});
assert.eq([0, 1, -2, 3, 4, 5, 6, 7, 8, 9, 10, 11], t.findOne().a);
// Test upsert case
t.drop();
t.update({a: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]}, {$set: {"a.11": 11}}, true);
assert.eq([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], t.findOne().a);
// SERVER-3750
t.drop();
t.save({a: []});
res = t.update({}, {$set: {"a.1500000": 1}}); // current limit
assert.writeOK(res);
t.drop();
t.save({a: []});
res = t.update({}, {$set: {"a.1500001": 1}}); // 1 over limit
assert.writeError(res);
t.drop();
t.save({a: []});
res = t.update({}, {$set: {"a.1000000000": 1}}); // way over limit
assert.writeError(res);
|