summaryrefslogtreecommitdiff
path: root/jstests/core/dbhash2.js
blob: 39860cc225b90da868562a50a6d4be24cdc2e1f2 (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
// @tags: [
//   assumes_superuser_permissions,
//   # dbhash command is not available on embedded
//   incompatible_with_embedded,
// ]

mydb = db.getSisterDB("config");

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

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

assert.commandWorked(t.insert({x: 2}));
res3 = mydb.runCommand("dbhash");
assert.commandWorked(res3);
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": ""}));