summaryrefslogtreecommitdiff
path: root/jstests
diff options
context:
space:
mode:
authorJohn Liu <john.m.liu2@gmail.com>2023-03-15 14:07:41 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-03-15 14:53:24 +0000
commitca31ca64604313d363ade31d3db52225b570ff18 (patch)
tree207a64eb64efad6c59bd5be142003b9eab8812de /jstests
parent56ff92ef5ceeccd0f174e33cde70cef99740ebbb (diff)
downloadmongo-ca31ca64604313d363ade31d3db52225b570ff18.tar.gz
SERVER-61359 remove driverOIDTest command
Diffstat (limited to 'jstests')
-rw-r--r--jstests/core/views/views_all_commands.js1
-rw-r--r--jstests/replsets/all_commands_downgrading_to_upgraded.js1
-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
-rw-r--r--jstests/sharding/libs/last_lts_mongod_commands.js1
-rw-r--r--jstests/sharding/libs/last_lts_mongos_commands.js1
-rw-r--r--jstests/sharding/read_write_concern_defaults_application.js1
-rw-r--r--jstests/sharding/safe_secondary_reads_drop_recreate.js1
-rw-r--r--jstests/sharding/safe_secondary_reads_single_migration_suspend_range_deletion.js1
-rw-r--r--jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js1
10 files changed, 2 insertions, 8 deletions
diff --git a/jstests/core/views/views_all_commands.js b/jstests/core/views/views_all_commands.js
index 7bee4ddc463..cf729f4d6c1 100644
--- a/jstests/core/views/views_all_commands.js
+++ b/jstests/core/views/views_all_commands.js
@@ -365,7 +365,6 @@ let viewsCommandTests = {
abortShardSplit: {skip: isUnrelated},
commitShardSplit: {skip: isUnrelated},
forgetShardSplit: {skip: isUnrelated},
- driverOIDTest: {skip: isUnrelated},
drop: {command: {drop: "view"}},
dropAllRolesFromDatabase: {skip: isUnrelated},
dropAllUsersFromDatabase: {skip: isUnrelated},
diff --git a/jstests/replsets/all_commands_downgrading_to_upgraded.js b/jstests/replsets/all_commands_downgrading_to_upgraded.js
index a545fa48e1a..787e6d76abe 100644
--- a/jstests/replsets/all_commands_downgrading_to_upgraded.js
+++ b/jstests/replsets/all_commands_downgrading_to_upgraded.js
@@ -534,7 +534,6 @@ const allCommands = {
abortShardSplit: {skip: isAnInternalCommand},
commitShardSplit: {skip: isAnInternalCommand},
forgetShardSplit: {skip: isAnInternalCommand},
- driverOIDTest: {skip: isAnInternalCommand},
drop: {
setUp: function(conn) {
assert.commandWorked(conn.getDB(dbName).runCommand({create: collName}));
diff --git a/jstests/replsets/db_reads_while_recovering_all_commands.js b/jstests/replsets/db_reads_while_recovering_all_commands.js
index 19f99f60cc4..57ffce062f9 100644
--- a/jstests/replsets/db_reads_while_recovering_all_commands.js
+++ b/jstests/replsets/db_reads_while_recovering_all_commands.js
@@ -230,7 +230,6 @@ const allCommands = {
abortShardSplit: {skip: isPrimaryOnly},
commitShardSplit: {skip: isPrimaryOnly},
forgetShardSplit: {skip: isPrimaryOnly},
- driverOIDTest: {skip: isNotAUserDataRead},
drop: {skip: isPrimaryOnly},
dropAllRolesFromDatabase: {skip: isPrimaryOnly},
dropAllUsersFromDatabase: {skip: isPrimaryOnly},
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 73777834b7a..b97a0b04d1b 100644
--- a/jstests/replsets/tenant_migration_concurrent_writes_on_donor_util.js
+++ b/jstests/replsets/tenant_migration_concurrent_writes_on_donor_util.js
@@ -456,7 +456,6 @@ export const TenantMigrationConcurrentWriteUtil = {
donorForgetMigration: {skip: isNotRunOnUserDatabase},
donorStartMigration: {skip: isNotRunOnUserDatabase},
donorWaitForMigrationToCommit: {skip: isNotRunOnUserDatabase},
- driverOIDTest: {skip: isNotRunOnUserDatabase},
drop: {
explicitlyCreateCollection: true,
command: function(dbName, collName) {
diff --git a/jstests/sharding/libs/last_lts_mongod_commands.js b/jstests/sharding/libs/last_lts_mongod_commands.js
index bba921f0e1e..18763fb5377 100644
--- a/jstests/sharding/libs/last_lts_mongod_commands.js
+++ b/jstests/sharding/libs/last_lts_mongod_commands.js
@@ -9,6 +9,7 @@ const commandsRemovedFromMongodSinceLastLTS = [
"mapreduce.shardedfinish",
"availableQueryOptions", // TODO SERVER-67689: remove this once 7.0 becomes last-lts
"getLastError",
+ "driverOIDTest",
];
// These commands were added in mongod since the last LTS version, so will not appear in the
// listCommands output of a last LTS version mongod. We will allow these commands to have a
diff --git a/jstests/sharding/libs/last_lts_mongos_commands.js b/jstests/sharding/libs/last_lts_mongos_commands.js
index b6e1dce31a5..5963e99ee06 100644
--- a/jstests/sharding/libs/last_lts_mongos_commands.js
+++ b/jstests/sharding/libs/last_lts_mongos_commands.js
@@ -9,6 +9,7 @@ const commandsRemovedFromMongosSinceLastLTS = [
"availableQueryOptions", // TODO SERVER-67689: remove this once 7.0 becomes last-lts
"getLastError",
"getnonce",
+ "driverOIDTest",
];
// These commands were added in mongos since the last LTS version, so will not appear in the
// listCommands output of a last LTS version mongos. We will allow these commands to have a test
diff --git a/jstests/sharding/read_write_concern_defaults_application.js b/jstests/sharding/read_write_concern_defaults_application.js
index baf4237a943..c42cbeffffc 100644
--- a/jstests/sharding/read_write_concern_defaults_application.js
+++ b/jstests/sharding/read_write_concern_defaults_application.js
@@ -398,7 +398,6 @@ let testCases = {
abortShardSplit: {skip: "internal command"},
commitShardSplit: {skip: "internal command"},
forgetShardSplit: {skip: "internal command"},
- driverOIDTest: {skip: "internal command"},
drop: {
setUp: function(conn) {
assert.commandWorked(conn.getDB(db).runCommand({create: coll, writeConcern: {w: 1}}));
diff --git a/jstests/sharding/safe_secondary_reads_drop_recreate.js b/jstests/sharding/safe_secondary_reads_drop_recreate.js
index b0e45780b98..10426916446 100644
--- a/jstests/sharding/safe_secondary_reads_drop_recreate.js
+++ b/jstests/sharding/safe_secondary_reads_drop_recreate.js
@@ -196,7 +196,6 @@ let testCases = {
},
behavior: "versioned"
},
- driverOIDTest: {skip: "does not return user data"},
drop: {skip: "primary only"},
dropAllRolesFromDatabase: {skip: "primary only"},
dropAllUsersFromDatabase: {skip: "primary only"},
diff --git a/jstests/sharding/safe_secondary_reads_single_migration_suspend_range_deletion.js b/jstests/sharding/safe_secondary_reads_single_migration_suspend_range_deletion.js
index e88245b9000..91fe194513f 100644
--- a/jstests/sharding/safe_secondary_reads_single_migration_suspend_range_deletion.js
+++ b/jstests/sharding/safe_secondary_reads_single_migration_suspend_range_deletion.js
@@ -210,7 +210,6 @@ let testCases = {
},
behavior: "versioned"
},
- driverOIDTest: {skip: "does not return user data"},
drop: {skip: "primary only"},
dropAllRolesFromDatabase: {skip: "primary only"},
dropAllUsersFromDatabase: {skip: "primary only"},
diff --git a/jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js b/jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js
index fea080bf2c4..8c545fb1868 100644
--- a/jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js
+++ b/jstests/sharding/safe_secondary_reads_single_migration_waitForDelete.js
@@ -204,7 +204,6 @@ let testCases = {
},
behavior: "versioned"
},
- driverOIDTest: {skip: "does not return user data"},
drop: {skip: "primary only"},
dropAllRolesFromDatabase: {skip: "primary only"},
dropAllUsersFromDatabase: {skip: "primary only"},