-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathdetect_spawning_own_mongod.js
44 lines (39 loc) · 1.87 KB
/
detect_spawning_own_mongod.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
/**
* Define overrides to prevent any test from spawning its own test fixture since certain passthrough
* suites should not contain JS tests that start their own mongod/s.
*/
MongoRunner.runMongod = function() {
throw new Error("Detected MongoRunner.runMongod() call in js test from passthrough suite. " +
"Consider moving the test to one of the jstests/noPassthrough/, " +
"jstests/replsets/, or jstests/sharding/ directories.");
};
MongoRunner.runMongos = function() {
throw new Error("Detected MongoRunner.runMongos() call in js test from passthrough suite. " +
"Consider moving the test to one of the jstests/noPassthrough/, " +
"jstests/replsets/, or jstests/sharding/ directories.");
};
import {
ShardingTest,
kOverrideConstructor as kOverrideConstructorForST
} from "jstests/libs/shardingtest.js";
import {
ReplSetTest,
kOverrideConstructor as kOverrideConstructorForRST
} from "jstests/libs/replsettest.js";
ShardingTest[kOverrideConstructorForST] = class NoSpawnShardingTest extends ShardingTest {
constructor() {
throw new Error("Detected ShardingTest() call in js test from passthrough suite. " +
"Consider moving the test to one of the jstests/noPassthrough/, " +
"jstests/replsets/, or jstests/sharding/ directories.");
}
};
ReplSetTest[kOverrideConstructorForRST] = class NoSpawnReplSetTest extends ReplSetTest {
constructor(opts) {
if (typeof opts !== 'string' && !(opts instanceof String)) {
throw new Error("Detected ReplSetTest() call in js test from passthrough suite. " +
"Consider moving the test to one of the jstests/noPassthrough/, " +
"jstests/replsets/, or jstests/sharding/ directories.");
}
super(opts);
}
};