summaryrefslogtreecommitdiff
path: root/jstests/core/dbhash2.js
blob: 85fd63f6362468b8cf621eec72cda040865bd3fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

mydb = db.getSisterDB("config");

t = mydb.foo;
t.drop();

t.insert({x: 1});
res1 = mydb.runCommand("dbhash");
res2 = mydb.runCommand("dbhash");
assert.eq(res1.collections.foo, res2.collections.foo);

t.insert({x: 2});
res3 = mydb.runCommand("dbhash");
assert.neq(res1.collections.foo, res3.collections.foo);

// Validate dbHash with an empty database does not trigger an fassert/invariant
assert.commandFailed(db.runCommand({"dbhash": ""}));