Skip to content

Commit ec08669

Browse files
ajdavisEvergreen Agent
authored and
Evergreen Agent
committed
SERVER-50784 Restore cluster settings after all JS test fuzzer suites
1 parent 56de728 commit ec08669

13 files changed

+17
-13
lines changed

buildscripts/resmokeconfig/suites/jstestfuzz.yml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ executor:
1212
shell_options:
1313
readMode: commands
1414
hooks:
15+
- class: FuzzerRestoreSettings
1516
- class: ValidateCollections
1617
shell_options:
1718
global_vars:

buildscripts/resmokeconfig/suites/jstestfuzz_interrupt.yml

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ executor:
1616
eval: load('jstests/libs/jstestfuzz/check_for_interrupt_hook.js')
1717
readMode: commands
1818
hooks:
19+
- class: FuzzerRestoreSettings
1920
- class: ValidateCollections
2021
shell_options:
2122
global_vars:

buildscripts/resmokeconfig/suites/jstestfuzz_interrupt_replication.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ executor:
1818
eval: load('jstests/libs/jstestfuzz/check_for_interrupt_hook.js')
1919
readMode: commands
2020
hooks:
21-
- class: FuzzerRestoreClusterSettings
21+
- class: FuzzerRestoreSettings
2222
# The CheckReplDBHash hook waits until all operations have replicated to and have been applied
2323
# on the secondaries, so we run the ValidateCollections hook after it to ensure we're
2424
# validating the entire contents of the collection.

buildscripts/resmokeconfig/suites/jstestfuzz_replication.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ executor:
1818
# Other fuzzers test commands against replica sets with logical session ids.
1919
disableImplicitSessions: true
2020
hooks:
21-
- class: FuzzerRestoreClusterSettings
21+
- class: FuzzerRestoreSettings
2222
# The CheckReplDBHash hook waits until all operations have replicated to and have been applied
2323
# on the secondaries, so we run the ValidateCollections hook after it to ensure we're
2424
# validating the entire contents of the collection.

buildscripts/resmokeconfig/suites/jstestfuzz_replication_continuous_stepdown.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ executor:
1717
ignoreCommandsIncompatibleWithRollback: true
1818
hooks:
1919
- class: ContinuousStepdown
20-
- class: FuzzerRestoreClusterSettings
20+
- class: FuzzerRestoreSettings
2121
# The CheckReplDBHash hook waits until all operations have replicated to and have been applied
2222
# on the secondaries, so we run the ValidateCollections hook after it to ensure we're
2323
# validating the entire contents of the collection.

buildscripts/resmokeconfig/suites/jstestfuzz_replication_initsync.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ executor:
2121
global_vars:
2222
TestData:
2323
skipValidationOnInvalidViewDefinitions: true
24+
- class: FuzzerRestoreSettings
2425
fixture:
2526
class: ReplicaSetFixture
2627
mongod_options:

buildscripts/resmokeconfig/suites/jstestfuzz_replication_session.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ executor:
1515
eval: load("jstests/libs/override_methods/enable_sessions.js")
1616
readMode: commands
1717
hooks:
18-
- class: FuzzerRestoreClusterSettings
18+
- class: FuzzerRestoreSettings
1919
# The CheckReplDBHash hook waits until all operations have replicated to and have been applied
2020
# on the secondaries, so we run the ValidateCollections hook after it to ensure we're
2121
# validating the entire contents of the collection.

buildscripts/resmokeconfig/suites/jstestfuzz_sharded.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ executor:
1717
disableImplicitSessions: true
1818
readMode: commands
1919
hooks:
20-
- class: FuzzerRestoreClusterSettings
20+
- class: FuzzerRestoreSettings
2121
- class: CheckReplDBHash
2222
shell_options:
2323
global_vars:

buildscripts/resmokeconfig/suites/jstestfuzz_sharded_causal_consistency.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ executor:
1818
runningWithCausalConsistency: true
1919
usingReplicaSetShards: true
2020
hooks:
21-
- class: FuzzerRestoreClusterSettings
21+
- class: FuzzerRestoreSettings
2222
- class: CheckReplDBHash
2323
shell_options:
2424
global_vars:

buildscripts/resmokeconfig/suites/jstestfuzz_sharded_continuous_stepdown.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ executor:
2121
- class: ContinuousStepdown
2222
config_stepdown: true
2323
shard_stepdown: true
24-
- class: FuzzerRestoreClusterSettings
24+
- class: FuzzerRestoreSettings
2525
# The CheckReplDBHash hook waits until all operations have replicated to and have been applied
2626
# on the secondaries, so we run the ValidateCollections hook after it to ensure we're
2727
# validating the entire contents of the collection.

buildscripts/resmokeconfig/suites/jstestfuzz_sharded_session.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ executor:
1414
eval: load("jstests/libs/override_methods/enable_sessions.js")
1515
readMode: commands
1616
hooks:
17-
- class: FuzzerRestoreClusterSettings
17+
- class: FuzzerRestoreSettings
1818
- class: CheckReplDBHash
1919
shell_options:
2020
global_vars:

buildscripts/resmokelib/testing/hooks/fuzzer_restore_cluster_settings.py buildscripts/resmokelib/testing/hooks/fuzzer_restore_settings.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
from buildscripts.resmokelib.testing.hooks import jsfile
1010

1111

12-
class FuzzerRestoreClusterSettings(jsfile.JSHook):
12+
class FuzzerRestoreSettings(jsfile.JSHook):
1313
"""Cleans up unwanted changes from fuzzer."""
1414

1515
def __init__(self, hook_logger, fixture, shell_options=None):
1616
"""Run fuzzer cleanup."""
1717
description = "Clean up unwanted changes from fuzzer"
18-
js_filename = os.path.join("jstests", "hooks", "run_fuzzer_restore_cluster_settings.js")
18+
js_filename = os.path.join("jstests", "hooks", "run_fuzzer_restore_settings.js")
1919
jsfile.JSHook.__init__(self, hook_logger, fixture, js_filename, description,
2020
shell_options=shell_options)

jstests/hooks/run_fuzzer_restore_cluster_settings.js jstests/hooks/run_fuzzer_restore_settings.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@
44
assert.commandWorked(db.adminCommand({setParameter: 1, requireApiVersion: false, apiVersion: "1"}));
55

66
// Unsetting read/write settings. This command will also cause the server to refresh and get
7-
// the new settings.
8-
assert.commandWorked(db.adminCommand({
7+
// the new settings. A standalone or mongos will return an error; ignore it.
8+
const result = db.adminCommand({
99
setDefaultRWConcern: 1,
1010
defaultReadConcern: {},
1111
defaultWriteConcern: {},
1212
writeConcern: {w: 1}
13-
}));
13+
});
14+
assert.commandWorkedOrFailedWithCode(result, [51300, 51301]);
1415
})();

0 commit comments

Comments
 (0)