summaryrefslogtreecommitdiff
path: root/jstests/core/collection_truncate.js
blob: 66b6d44db597180b2dcba0447bc99925ad5a1b87 (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
// @tags: [
//   requires_collstats,
//   requires_non_retryable_commands,
//   uses_testing_only_commands,
// ]

// SERVER-15033 truncate on a regular collection

var t = db.getCollection('collection_truncate');
t.drop();

function truncate() {
    // Until SERVER-15274 is implemented, this is the only way to truncate a collection.
    assert.commandWorked(t.runCommand('emptycapped'));  // works on non-capped as well.
}

function assertEmpty() {
    var stats = t.stats();

    assert.eq(stats.count, 0);
    assert.eq(stats.size, 0);

    if ('numExtents' in stats) {
        assert.lte(stats.numExtents, 1);
    }

    assert.eq(t.count(), 0);
    assert.eq(t.find().itcount(), 0);

    var res = t.validate({full: true});
    assert.commandWorked(res);
    assert(res.valid, "failed validate(): " + tojson(res));
}

// Single record case.
t.insert({a: 1});
truncate();
assertEmpty();

// Multi-extent case.
var initialStorageSize = t.stats().storageSize;
while (t.stats().storageSize == initialStorageSize) {
    t.insert({a: 1});
}
truncate();
assertEmpty();

// Already empty case.
truncate();
assertEmpty();