2024-04-07 22:18:04 -04:00
|
|
|
// @tags: [requires_fastcount]
|
2009-12-11 12:33:16 -05:00
|
|
|
|
|
|
|
|
let t = db.pull2;
|
|
|
|
|
t.drop();
|
|
|
|
|
|
2016-03-09 12:17:50 -05:00
|
|
|
t.save({a: [{x: 1}, {x: 1, b: 2}]});
|
|
|
|
|
assert.eq(2, t.findOne().a.length, "A");
|
2009-12-11 12:33:16 -05:00
|
|
|
|
2016-03-09 12:17:50 -05:00
|
|
|
t.update({}, {$pull: {a: {x: 1}}});
|
|
|
|
|
assert.eq(0, t.findOne().a.length, "B");
|
2009-12-11 12:33:16 -05:00
|
|
|
|
2016-03-09 12:17:50 -05:00
|
|
|
assert.eq(1, t.find().count(), "C1");
|
2009-12-11 12:33:16 -05:00
|
|
|
|
2016-03-09 12:17:50 -05:00
|
|
|
t.update({}, {$push: {a: {x: 1}}});
|
|
|
|
|
t.update({}, {$push: {a: {x: 1, b: 2}}});
|
|
|
|
|
assert.eq(2, t.findOne().a.length, "C");
|
2009-12-11 12:33:16 -05:00
|
|
|
|
2016-03-09 12:17:50 -05:00
|
|
|
t.update({}, {$pullAll: {a: [{x: 1}]}});
|
|
|
|
|
assert.eq(1, t.findOne().a.length, "D");
|
2009-12-11 12:33:16 -05:00
|
|
|
|
2016-03-09 12:17:50 -05:00
|
|
|
t.update({}, {$push: {a: {x: 2, b: 2}}});
|
|
|
|
|
t.update({}, {$push: {a: {x: 3, b: 2}}});
|
|
|
|
|
t.update({}, {$push: {a: {x: 4, b: 2}}});
|
|
|
|
|
assert.eq(4, t.findOne().a.length, "E");
|
2009-12-11 12:33:16 -05:00
|
|
|
|
2016-03-09 12:17:50 -05:00
|
|
|
assert.eq(1, t.find().count(), "C2");
|
2009-12-11 12:33:16 -05:00
|
|
|
|
2016-03-09 12:17:50 -05:00
|
|
|
t.update({}, {$pull: {a: {x: {$lt: 3}}}});
|
|
|
|
|
assert.eq(2, t.findOne().a.length, "F");
|
2025-08-21 10:17:44 -07:00
|
|
|
assert.eq(
|
|
|
|
|
[3, 4],
|
|
|
|
|
t.findOne().a.map(function (z) {
|
|
|
|
|
return z.x;
|
|
|
|
|
}),
|
|
|
|
|
"G",
|
|
|
|
|
);
|