summaryrefslogtreecommitdiff
path: root/jstests/core/updateh.js
blob: 1fd3d62750d9699e37f8b640c1815a8e88348036 (plain)
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
// Cannot implicitly shard accessed collections because of following errmsg: A single
// update/delete on a sharded collection must contain an exact match on _id or contain the shard
// key.
// @tags: [assumes_unsharded_collection]

// Disallow $ in field names
var res;

t = db.jstest_updateh;
t.drop();

t.insert({x: 1});

res = t.update({x: 1}, {$set: {y: 1}});  // ok
assert.commandWorked(res);

res = t.update({x: 1}, {$set: {$z: 1}});  // not ok
assert.writeError(res);

res = t.update({x: 1}, {$set: {'a.$b': 1}});  // not ok
assert.writeError(res);

res = t.update({x: 1}, {$inc: {$z: 1}});  // not ok
assert.writeError(res);

// Second section
t.drop();

t.save({_id: 0, n: 0});

// Test that '$' cannot be the first character in a field.
// SERVER-7150
res = t.update({n: 0}, {$set: {$x: 1}});
assert.writeError(res);

res = t.update({n: 0}, {$set: {$$$: 1}});
assert.writeError(res);

res = t.update({n: 0}, {$set: {"sneaky.$x": 1}});
assert.writeError(res);

res = t.update({n: 0}, {$set: {"secret.agent$.$x": 1}});
assert.writeError(res);

res = t.update({n: 0}, {$set: {"$secret.agent.x": 1}});
assert.writeError(res);

res = t.update({n: 0}, {$set: {"secret.agent$": 1}});
assert.commandWorked(res);
t.save({_id: 0, n: 0});

// Test that you cannot update database references into top level fields
// Enable after SERVER-14252 fixed: currently validation does not catch DBRef
// fields at the top level for update and will not cause an error here
// res = t.update({ n: 0 }, { $set: {$ref: "1", $id: 1, $db: "1"}});
// assert.writeError(res);

// res = t.update({ n: 0 }, { $set: {$ref: "1", $id: 1}});
// assert.writeError(res);

// SERVER-11241: Validation used to allow any DBRef field name as a prefix
// thus allowing things like $idXXX
res = t.update({n: 0}, {$set: {$reffoo: 1}});
assert.writeError(res);

res = t.update({n: 0}, {$set: {$idbar: 1}});
assert.writeError(res);

res = t.update({n: 0}, {$set: {$dbbaz: 1}});
assert.writeError(res);

// Test that '$id', '$db', and '$ref' are acceptable field names in
// the correct case ( subdoc)
// SERVER-3231
res = t.update({n: 0}, {$set: {x: {$ref: '1', $id: 1, $db: '1'}}});
assert.commandWorked(res);
t.save({_id: 0, n: 0});

// Test that '$' can occur elsewhere in a field name.
// SERVER-7557
res = t.update({n: 0}, {$set: {ke$sha: 1}});
assert.commandWorked(res);
t.save({_id: 0, n: 0});

res = t.update({n: 0}, {$set: {more$$moreproblem$: 1}});
assert.commandWorked(res);
t.save({_id: 0, n: 0});