-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathcheck_for_interrupt_hook.js
44 lines (35 loc) · 1.52 KB
/
check_for_interrupt_hook.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
// Hook to disable the failpoint that creates random interrupts on a particular thread. We disable
// the failpoint for the duration of the serverInfo section of the fuzzer's preamble.
import {defineFuzzerHooks} from "jstests/libs/jstestfuzz/hook_utils.js";
(function() {
let threadName;
const disableCheckForInterruptFailFP = function() {
// There is no synchronization between fuzzer clients so this hook cannot run with the
// concurrent fuzzer.
assert.eq(TestData.numTestClients,
1,
'Cannot run the check for interrupt hook when there is more than 1 client');
const myUriRes = assert.commandWorked(db.runCommand({whatsmyuri: 1}));
const myUri = myUriRes.you;
const curOpRes = assert.commandWorked(db.adminCommand({currentOp: 1, client: myUri}));
threadName = curOpRes.inprog[0].desc;
assert.commandWorked(db.adminCommand({
configureFailPoint: 'checkForInterruptFail',
mode: 'off',
}));
};
const enableCheckForInterruptFailFP = function() {
const chance = TestData.checkForInterruptFailpointChance;
assert.gte(chance, 0, "checkForInterruptFailpointChance must be >= 0");
assert.lte(chance, 1, "checkForInterruptFailpointChance must be <= 1");
assert.commandWorked(db.adminCommand({
configureFailPoint: 'checkForInterruptFail',
mode: 'alwaysOn',
data: {threadName, chance},
}));
};
defineFuzzerHooks({
beforeServerInfo: disableCheckForInterruptFailFP,
afterServerInfo: enableCheckForInterruptFailFP,
});
})();