summaryrefslogtreecommitdiff
path: root/jstests/core/doc_validation_options.js
blob: 8a96685e48f44ba7b41a6d69f25d870c5e3f6f9b (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
51
52
53
54
(function() {
    "use strict";

    function assertFailsValidation(res) {
        var DocumentValidationFailure = 121;
        assert.writeError(res);
        assert.eq(res.getWriteError().code, DocumentValidationFailure);
    }

    var t = db.doc_validation_options;
    t.drop();

    assert.commandWorked(db.createCollection(t.getName(), {validator: {a: 1}}));

    assertFailsValidation(t.insert({a: 2}));
    t.insert({a: 1});
    assert.eq(1, t.count());

    // test default to strict
    assertFailsValidation(t.update({}, {$set: {a: 2}}));
    assert.eq(1, t.find({a: 1}).itcount());

    // check we can do a bad update in warn mode
    assert.commandWorked(t.runCommand("collMod", {validationAction: "warn"}));
    t.update({}, {$set: {a: 2}});
    assert.eq(1, t.find({a: 2}).itcount());

    // TODO: check log for message?

    // make sure persisted
    var info = db.getCollectionInfos({name: t.getName()})[0];
    assert.eq("warn", info.options.validationAction, tojson(info));

    // check we can go back to enforce strict
    assert.commandWorked(
        t.runCommand("collMod", {validationAction: "error", validationLevel: "strict"}));
    assertFailsValidation(t.update({}, {$set: {a: 3}}));
    assert.eq(1, t.find({a: 2}).itcount());

    // check bad -> bad is ok
    assert.commandWorked(t.runCommand("collMod", {validationLevel: "moderate"}));
    t.update({}, {$set: {a: 3}});
    assert.eq(1, t.find({a: 3}).itcount());

    // test create
    t.drop();
    assert.commandWorked(
        db.createCollection(t.getName(), {validator: {a: 1}, validationAction: "warn"}));

    t.insert({a: 2});
    t.insert({a: 1});
    assert.eq(2, t.count());

})();