-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathserver_parameter_helpers.js
115 lines (103 loc) · 5.04 KB
/
server_parameter_helpers.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/**
* Contains helper functions for testing server parameters on start up and via get/setParameter.
*/
/**
* Takes a server connection 'conn' and server parameter 'field' and calls getParameter on the
* connection to retrieve the current setting of that server parameter.
*/
export function getParameter(conn, field) {
var q = {getParameter: 1};
q[field] = 1;
var ret = assert.commandWorked(conn.getDB("admin").runCommand(q));
return ret[field];
}
/**
* Calls setParameter on 'conn' server connection, setting server parameter 'field' to 'value'.
*/
export function setParameter(conn, field, value) {
var cmd = {setParameter: 1};
cmd[field] = value;
return conn.adminCommand(cmd);
}
export function setParameterOnAllHosts(hostList, field, value) {
for (let host of hostList) {
const conn = new Mongo(host);
assert.commandWorked(setParameter(conn, field, value));
}
}
/**
* Helper for validation testing of server parameters with numeric values.
*
* Tests server parameter 'parameterName'. Will run startup tests if 'isStartupParameter' is true;
* and setParameter tests if 'isRuntimeParameter' is true. Tests lower and upper bound of the server
* parameter if 'hasLowerBound' and 'hasUpperBound' are true, respectively; otherwise
* 'lowerOutOfBounds' and 'upperOutOfBounds' are ignored. 'defaultValue' is checked on startup.
* 'nonDefaultValidValue' defines a safe setting to ensure a non-default setting is successful.
*
* 'lowerOutOfBounds' and 'upperOutOfBounds' should be the invalid values below and above the lowest
* and highest valid values, respectively.
*/
export function testNumericServerParameter(parameterName,
isStartupParameter,
isRuntimeParameter,
defaultValue,
nonDefaultValidValue,
hasLowerBound,
lowerOutOfBounds,
hasUpperBound,
upperOutOfBounds) {
jsTest.log("Checking that '" + parameterName + "' defaults to '" + defaultValue +
"' on startup");
let conn1 = MongoRunner.runMongod({});
assert(conn1);
assert.eq(getParameter(conn1, parameterName), defaultValue);
if (isRuntimeParameter) {
jsTest.log("Checking that '" + parameterName + "' can be set at runtime to '" +
nonDefaultValidValue + "'");
assert.commandWorked(setParameter(conn1, parameterName, nonDefaultValidValue));
assert.eq(getParameter(conn1, parameterName), nonDefaultValidValue);
if (hasLowerBound) {
jsTest.log("Checking that '" + parameterName + "' cannot be set below bounds to '" +
lowerOutOfBounds + "'");
assert.commandFailedWithCode(setParameter(conn1, parameterName, lowerOutOfBounds),
ErrorCodes.BadValue);
assert.eq(getParameter(conn1, parameterName), nonDefaultValidValue);
}
if (hasUpperBound) {
jsTest.log("Checking that '" + parameterName + "' cannot be set above bounds to '" +
upperOutOfBounds + "'");
assert.commandFailedWithCode(setParameter(conn1, parameterName, upperOutOfBounds),
ErrorCodes.BadValue);
assert.eq(getParameter(conn1, parameterName), nonDefaultValidValue);
}
}
MongoRunner.stopMongod(conn1);
if (isStartupParameter) {
jsTest.log("Checking that '" + parameterName + "' can be set to '" + nonDefaultValidValue +
"' on startup");
let conn2 =
MongoRunner.runMongod({setParameter: parameterName + "=" + nonDefaultValidValue});
assert(conn2);
assert.eq(getParameter(conn2, parameterName), nonDefaultValidValue);
MongoRunner.stopMongod(conn2);
if (hasLowerBound) {
jsTest.log("Checking that '" + parameterName + "' cannot be set below bounds to '" +
lowerOutOfBounds + "' on startup");
assert.throws(
() => MongoRunner.runMongod({setParameter: parameterName + "=" + lowerOutOfBounds}),
[],
"expected mongod to fail to startup with an invalid '" + parameterName + "'" +
" server parameter setting '" + lowerOutOfBounds + "'.");
}
if (hasUpperBound) {
jsTest.log("Checking that '" + parameterName + "' cannot be set above bounds to '" +
upperOutOfBounds + "' on startup");
let conn4 =
MongoRunner.runMongod({setParameter: parameterName + "=" + upperOutOfBounds});
assert.eq(null,
conn4,
"expected mongod to fail to startup with an invalid '" + parameterName + "'" +
" server parameter setting '" + upperOutOfBounds + "'.");
}
}
}