Skip to content

Commit

Permalink
SERVER-4176: tests for update usability improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Brandon Diamond committed Nov 1, 2011
1 parent 4f9e377 commit 7c59742
Showing 1 changed file with 86 additions and 0 deletions.
86 changes: 86 additions & 0 deletions jstests/updatei.js
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,86 @@
// Test new (optional) update syntax
// SERVER-4176
t = db.updatei;

// Using a multi update

t.drop();

for (i=0; i<10; i++) {
t.save({ _id : i, k: "x", a: [] });
}

t.update({ k: "x" }, { $push: { a: "y" }}, { multi: true });
t.find({ k : "x" }).forEach(function(z) {
assert.eq([ "y" ], z.a, "multi update using object arg");
});

t.drop();

// Using a single update

for (i=0; i<10; i++) {
t.save({ _id : i, k: "x", a: [] });
}

t.update({ k: "x" }, { $push: { a: "y" }}, { multi: false });
assert.eq(1, t.find({ "a": "y" }).count(), "update using object arg");

t.drop();

// Using upsert, found

for (i=0; i<10; i++) {
t.save({ _id : i, k: "x", a: [] });
}

t.update({ k: "x" }, { $push: { a: "y" }}, { upsert: true });
assert.eq(1, t.find({ "k": "x", "a": "y" }).count(), "upsert (found) using object arg");

t.drop();

// Using upsert + multi, found

for (i=0; i<10; i++) {
t.save({ _id : i, k: "x", a: [] });
}

t.update({ k: "x" }, { $push: { a: "y" }}, { upsert: true, multi: true });
t.find({ k : "x" }).forEach(function(z) {
assert.eq([ "y" ], z.a, "multi + upsert (found) using object arg");
});

t.drop();

// Using upsert, not found

for (i=0; i<10; i++) {
t.save({ _id : i, k: "x", a: [] });
}

t.update({ k: "y" }, { $push: { a: "y" }}, { upsert: true });
assert.eq(1, t.find({ "k": "y", "a": "y" }).count(), "upsert (not found) using object arg");

t.drop();

// Without upsert, found

for (i=0; i<10; i++) {
t.save({ _id : i, k: "x", a: [] });
}

t.update({ k: "x" }, { $push: { a: "y" }}, { upsert: false });
assert.eq(1, t.find({ "a": "y" }).count(), "no upsert (found) using object arg");

t.drop();

// Without upsert, not found

for (i=0; i<10; i++) {
t.save({ _id : i, k: "x", a: [] });
}

t.update({ k: "y" }, { $push: { a: "y" }}, { upsert: false });
assert.eq(0, t.find({ "a": "y" }).count(), "no upsert (not found) using object arg");

t.drop();

0 comments on commit 7c59742

Please sign in to comment.