-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathdbcheck_detects_missing_id_index.js
74 lines (58 loc) · 2.2 KB
/
dbcheck_detects_missing_id_index.js
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/**
* Tests that dbCheck reports an error when the _id index is missing in a collection.
*
* @tags: [
* requires_fcv_80
* ]
*/
import {configureFailPoint} from "jstests/libs/fail_point_util.js";
import {ReplSetTest} from "jstests/libs/replsettest.js";
import {
checkHealthLog,
clearHealthLog,
logEveryBatch,
logQueries,
resetAndInsert,
runDbCheck
} from "jstests/replsets/libs/dbcheck_utils.js";
// Skipping data consistency checks because secondary will be missing _id index.
TestData.skipCollectionAndIndexValidation = true;
TestData.skipCheckDBHashes = true;
const rst = new ReplSetTest({
nodes: 2,
});
rst.startSet();
rst.initiate();
rst.awaitReplication();
const primary = rst.getPrimary();
const secondary = rst.getSecondary();
const dbName = "test";
const db = primary.getDB(dbName);
const collName = "testColl";
const primaryHealthLog = primary.getDB('local').system.healthlog;
const secondaryHealthLog = secondary.getDB('local').system.healthlog;
logEveryBatch(rst);
const skipIdIndexFp = configureFailPoint(secondary, "skipIdIndex");
resetAndInsert(rst, db, collName, 100);
skipIdIndexFp.off();
runDbCheck(rst, db, collName, {}, true /* awaitCompletion */);
// Verify that secondary logs an error with missing _id index.
checkHealthLog(primaryHealthLog, logQueries.allErrorsOrWarningsQuery, 0);
checkHealthLog(secondaryHealthLog, logQueries.missingIdIndex, 1);
checkHealthLog(secondaryHealthLog, logQueries.allErrorsOrWarningsQuery, 1);
// Clear healthlog entries.
clearHealthLog(rst);
// Step up secondary.
rst.stepUp(secondary);
rst.awaitNodesAgreeOnPrimary();
rst.awaitReplication();
const newPrimary = secondary;
const newSecondary = primary;
const newPrimaryHealthLog = newPrimary.getDB("local").system.healthlog;
const newSecondaryHealthLog = newSecondary.getDB("local").system.healthlog;
runDbCheck(rst, newPrimary.getDB(dbName), collName, {}, true /* awaitCompletion */);
// Verify that the new primary logs an error with missing _id index.
checkHealthLog(newSecondaryHealthLog, logQueries.allErrorsOrWarningsQuery, 0);
checkHealthLog(newPrimaryHealthLog, logQueries.missingIdIndex, 1);
checkHealthLog(newPrimaryHealthLog, logQueries.allErrorsOrWarningsQuery, 1);
rst.stopSet();