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 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
description: "timeoutMS behaves correctly when closing cursors"
schemaVersion: "1.9"
runOnRequirements:
- minServerVersion: "4.4"
createEntities:
- client:
id: &failPointClient failPointClient
useMultipleMongoses: false
- client:
id: &client client
useMultipleMongoses: false
observeEvents:
- commandStartedEvent
- commandSucceededEvent
- commandFailedEvent
- database:
id: &database database
client: *client
databaseName: &databaseName test
- collection:
id: &collection collection
database: *database
collectionName: &collectionName coll
initialData:
- collectionName: *collectionName
databaseName: *databaseName
documents:
- { _id: 0 }
- { _id: 1 }
- { _id: 2 }
tests:
- description: "timeoutMS is refreshed for close"
operations:
- name: failPoint
object: testRunner
arguments:
client: *failPointClient
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["getMore"]
blockConnection: true
blockTimeMS: 50
- name: createFindCursor
object: *collection
arguments:
filter: {}
batchSize: 2
timeoutMS: 20
saveResultAsEntity: &cursor cursor
# Iterate the cursor three times. The third should do a getMore, which should fail with a timeout error.
- name: iterateUntilDocumentOrError
object: *cursor
- name: iterateUntilDocumentOrError
object: *cursor
- name: iterateUntilDocumentOrError
object: *cursor
expectError:
isTimeoutError: true
# All errors from close() are ignored, so we close the cursor here but assert that killCursors was executed
# successfully via command monitoring expectations below.
- name: close
object: *cursor
expectEvents:
- client: *client
events:
- commandStartedEvent:
commandName: find
- commandSucceededEvent:
commandName: find
- commandStartedEvent:
commandName: getMore
- commandFailedEvent:
commandName: getMore
- commandStartedEvent:
command:
killCursors: *collectionName
# The close() operation should inherit timeoutMS from the initial find().
maxTimeMS: { $$type: ["int", "long"] }
commandName: killCursors
- commandSucceededEvent:
commandName: killCursors
- description: "timeoutMS can be overridden for close"
operations:
- name: failPoint
object: testRunner
arguments:
client: *client
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["killCursors"]
blockConnection: true
blockTimeMS: 30
- name: createFindCursor
object: *collection
arguments:
filter: {}
batchSize: 2
timeoutMS: 20
saveResultAsEntity: &cursor cursor
- name: close
object: *cursor
arguments:
# timeoutMS: 40
# Increase timeout
timeoutMS: 50
expectEvents:
- client: *client
events:
- commandStartedEvent:
commandName: find
- commandSucceededEvent:
commandName: find
- commandStartedEvent:
command:
killCursors: *collectionName
maxTimeMS: { $$type: ["int", "long"] }
commandName: killCursors
- commandSucceededEvent:
commandName: killCursors
|