summaryrefslogtreecommitdiff
path: root/jstests/replsets
diff options
context:
space:
mode:
authorAlyssa Wagenmaker <alyssa.wagenmaker@mongodb.com>2023-01-26 22:02:07 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-01-26 23:15:42 +0000
commitce266d98b7dda26421bf29e31e6e79556e5d9535 (patch)
tree113eb6cdcf1ee47442e7c1353c87931596fa946b /jstests/replsets
parente83a498b51136ffa8fabf64b8063b80712d99ec4 (diff)
downloadmongo-ce266d98b7dda26421bf29e31e6e79556e5d9535.tar.gz
SERVER-72833 implement setProfilingFilterGlobally command
Diffstat (limited to 'jstests/replsets')
-rw-r--r--jstests/replsets/all_commands_downgrading_to_upgraded.js3
-rw-r--r--jstests/replsets/db_reads_while_recovering_all_commands.js1
-rw-r--r--jstests/replsets/tenant_migration_concurrent_writes_on_donor_util.js1
3 files changed, 5 insertions, 0 deletions
diff --git a/jstests/replsets/all_commands_downgrading_to_upgraded.js b/jstests/replsets/all_commands_downgrading_to_upgraded.js
index eba66979eea..322f9198f42 100644
--- a/jstests/replsets/all_commands_downgrading_to_upgraded.js
+++ b/jstests/replsets/all_commands_downgrading_to_upgraded.js
@@ -22,6 +22,8 @@ const fullNs = dbName + "." + collName;
// Pre-written reasons for skipping a test.
const isAnInternalCommand = "internal command";
const isDeprecated = "deprecated command";
+// TODO SERVER-69753 some commands we didn't have time for. Other commands are new in recent
+// releases and don't make sense to test here.
const isNotImplementedYet = "not implemented yet";
let _lsid = UUID();
@@ -1112,6 +1114,7 @@ const allCommands = {
setIndexCommitQuorum: {skip: isNotImplementedYet},
setFeatureCompatibilityVersion: {skip: isNotImplementedYet},
setFreeMonitoring: {skip: isNotImplementedYet},
+ setProfilingFilterGlobally: {skip: isNotImplementedYet},
setParameter: {skip: isNotImplementedYet},
setShardVersion: {skip: isNotImplementedYet},
setChangeStreamState: {skip: isNotImplementedYet},
diff --git a/jstests/replsets/db_reads_while_recovering_all_commands.js b/jstests/replsets/db_reads_while_recovering_all_commands.js
index 756579c593c..8e04bdfd7c0 100644
--- a/jstests/replsets/db_reads_while_recovering_all_commands.js
+++ b/jstests/replsets/db_reads_while_recovering_all_commands.js
@@ -376,6 +376,7 @@ const allCommands = {
setIndexCommitQuorum: {skip: isPrimaryOnly},
setFeatureCompatibilityVersion: {skip: isPrimaryOnly},
setFreeMonitoring: {skip: isPrimaryOnly},
+ setProfilingFilterGlobally: {skip: isNotAUserDataRead},
setParameter: {skip: isNotAUserDataRead},
setShardVersion: {skip: isNotAUserDataRead},
setChangeStreamState: {skip: isNotAUserDataRead},
diff --git a/jstests/replsets/tenant_migration_concurrent_writes_on_donor_util.js b/jstests/replsets/tenant_migration_concurrent_writes_on_donor_util.js
index 74a90d36aca..2d70311da2b 100644
--- a/jstests/replsets/tenant_migration_concurrent_writes_on_donor_util.js
+++ b/jstests/replsets/tenant_migration_concurrent_writes_on_donor_util.js
@@ -653,6 +653,7 @@ export const TenantMigrationConcurrentWriteUtil = {
setDefaultRWConcern: {skip: isNotRunOnUserDatabase},
setFeatureCompatibilityVersion: {skip: isNotRunOnUserDatabase},
setFreeMonitoring: {skip: isNotRunOnUserDatabase},
+ setProfilingFilterGlobally: {skip: isNotRunOnUserDatabase},
setIndexCommitQuorum: {skip: isNotRunOnUserDatabase},
setParameter: {skip: isNotRunOnUserDatabase},
setShardVersion: {skip: isNotRunOnUserDatabase},