summaryrefslogtreecommitdiff
path: root/jstests/core/write/update/upsert_and.js
blob: 1e45cbe8dc20b984df9523120547e437c90866ed (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
// 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, requires_non_retryable_writes]

// tests to ensure fields in $and conditions are created when using the query to do upsert
var res;
coll = db.upsert4;
coll.drop();

res = coll.update({_id: 1, $and: [{c: 1}, {d: 1}], a: 12}, {$inc: {y: 1}}, true);
assert.commandWorked(res);
assert.docEq({_id: 1, c: 1, d: 1, a: 12, y: 1}, coll.findOne());

coll.remove({});
res = coll.update({$and: [{c: 1}, {d: 1}]}, {$setOnInsert: {_id: 1}}, true);
assert.commandWorked(res);
assert.docEq({_id: 1, c: 1, d: 1}, coll.findOne());

coll.remove({});
res = coll.update({$and: [{c: 1}, {d: 1}, {$or: [{x: 1}]}]}, {$setOnInsert: {_id: 1}}, true);
assert.commandWorked(res);
assert.docEq({_id: 1, c: 1, d: 1, x: 1}, coll.findOne());

coll.remove({});
res = coll.update({$and: [{c: 1}, {d: 1}], $or: [{x: 1}, {x: 2}]}, {$setOnInsert: {_id: 1}}, true);
assert.commandWorked(res);
assert.docEq({_id: 1, c: 1, d: 1}, coll.findOne());

coll.remove({});
res = coll.update(
    {r: {$gt: 3}, $and: [{c: 1}, {d: 1}], $or: [{x: 1}, {x: 2}]}, {$setOnInsert: {_id: 1}}, true);
assert.commandWorked(res);
assert.docEq({_id: 1, c: 1, d: 1}, coll.findOne());

coll.remove({});
res = coll.update(
    {r: /s/, $and: [{c: 1}, {d: 1}], $or: [{x: 1}, {x: 2}]}, {$setOnInsert: {_id: 1}}, true);
assert.commandWorked(res);
assert.docEq({_id: 1, c: 1, d: 1}, coll.findOne());

coll.remove({});
res = coll.update({c: 2, $and: [{c: 1}, {d: 1}]}, {$setOnInsert: {_id: 1}}, true);
assert.writeError(res);