Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -3743,16 +3743,17 @@ tests:
failCommands: ["dropIndexes"]
blockConnection: true
blockTimeMS: 5
- name: createIndex
object: *collection
arguments:
keys: { x: 1 }
timeoutMS: 100000
name: "x_1"
- name: dropIndex
object: *collection
arguments:
timeoutMS: 100000
name: "x_1"

expectError:
isClientError: false
isTimeoutError: false

- description: "wTimeoutMS is ignored if timeoutMS is set - dropIndex on collection"
operations:
- name: createEntities
Expand Down Expand Up @@ -3781,18 +3782,24 @@ tests:
- session:
id: &session session
client: *client
- name: createIndex
object: *collection
arguments:
keys: { x: 1 }
timeoutMS: 100000
name: "x_1"
- name: dropIndex
object: *collection
arguments:
timeoutMS: 100000
name: "x_1"

expectError:
isClientError: false
isTimeoutError: false
expectEvents:
- client: *client
events:
- commandStartedEvent:
commandName: createIndexes
databaseName: *databaseName

- commandStartedEvent:
commandName: dropIndexes
databaseName: *databaseName
Expand Down Expand Up @@ -3828,19 +3835,24 @@ tests:
- session:
id: &session session
client: *client
- name: createIndex
object: *collection
arguments:
keys: { x: 1 }
name: "x_1"
- name: dropIndex
object: *collection
arguments:
timeoutMS: &timeoutMS 1000
maxTimeMS: 5000
name: "x_1"

expectError:
isClientError: false
isTimeoutError: false
expectEvents:
- client: *client
events:
- commandStartedEvent:
commandName: createIndexes
databaseName: *databaseName

- commandStartedEvent:
commandName: dropIndexes
databaseName: *databaseName
Expand Down Expand Up @@ -3884,6 +3896,11 @@ tests:
failCommands: ["dropIndexes"]
blockConnection: true
blockTimeMS: 5
- name: createIndex
object: *collection
arguments:
keys: { x: 1 }
name: "x_1"
- name: dropIndexes
object: *collection
arguments:
Expand Down Expand Up @@ -3979,4 +3996,4 @@ tests:
command:
dropIndexes: *collectionName
maxTimeMS: { $$lte: *timeoutMS }


Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -3120,17 +3120,22 @@ tests:
failCommands: ["dropIndexes"]
blockConnection: true
blockTimeMS: 15
- name: createIndex
object: *collection
arguments:
keys: { x: 1 }
name: "x_1"
- name: dropIndex
object: *collection
arguments:
name: "x_1"

expectError:
isClientError: false
isTimeoutError: false
expectEvents:
- client: *client
events:
- commandStartedEvent:
commandName: createIndexes
databaseName: *databaseName

- commandStartedEvent:
commandName: dropIndexes
databaseName: *databaseName
Expand Down Expand Up @@ -3233,4 +3238,4 @@ tests:
command:
dropIndexes: *collectionName
maxTimeMS: { $$exists: false }


Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading