summaryrefslogtreecommitdiff
path: root/jstests/core/remove2.js
blob: d01c1e2e58c9c0aafc34e41945e9145d17b99cce (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
// @tags: [requires_non_retryable_writes]

// remove2.js
// a unit test for db remove
(function() {
"use strict";

const t = db.removetest2;

function f() {
    t.save({
        x: [3, 3, 3, 3, 3, 3, 3, 3, 4, 5, 6],
        z: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
    });
    t.save({x: 9});
    t.save({x: 1});

    t.remove({x: 3});

    assert(t.findOne({x: 3}) == null);
    assert(t.validate().valid);
}

function g() {
    t.save({x: [3, 4, 5, 6], z: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"});
    t.save({x: [7, 8, 9], z: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"});

    const res = t.remove({x: {$gte: 3}});

    assert.commandWorked(res);
    assert(t.findOne({x: 3}) == null);
    assert(t.findOne({x: 8}) == null);
    assert(t.validate().valid);
}

t.drop();
f();
t.drop();
g();

t.ensureIndex({x: 1});
t.remove({});
f();
t.drop();
t.ensureIndex({x: 1});
g();
})();