forked from mongodb/specifications
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailable-awaitData.yml
More file actions
322 lines (309 loc) · 9.78 KB
/
tailable-awaitData.yml
File metadata and controls
322 lines (309 loc) · 9.78 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
description: "timeoutMS behaves correctly for tailable awaitData cursors"
schemaVersion: "1.9"
runOnRequirements:
- minServerVersion: "4.4"
serverless: forbid # Capped collections are not allowed for serverless.
createEntities:
- client:
id: &failPointClient failPointClient
useMultipleMongoses: false
- client:
id: &client client
uriOptions:
timeoutMS: 200
useMultipleMongoses: false
observeEvents:
- commandStartedEvent
- database:
id: &database database
client: *client
databaseName: &databaseName test
- collection:
id: &collection collection
database: *database
collectionName: &collectionName coll
initialData:
- collectionName: *collectionName
databaseName: *databaseName
createOptions:
capped: true
size: 500
documents:
- { _id: 0 }
- { _id: 1 }
tests:
- description: "error if timeoutMode is cursor_lifetime"
operations:
- name: find
object: *collection
arguments:
filter: {}
timeoutMode: cursorLifetime
cursorType: tailableAwait
expectError:
isClientError: true
- description: "error if maxAwaitTimeMS is greater than timeoutMS"
operations:
- name: find
object: *collection
arguments:
filter: {}
cursorType: tailableAwait
timeoutMS: 5
maxAwaitTimeMS: 10
expectError:
isClientError: true
- description: "error if maxAwaitTimeMS is equal to timeoutMS"
operations:
- name: find
object: *collection
arguments:
filter: {}
cursorType: tailableAwait
timeoutMS: 5
maxAwaitTimeMS: 5
expectError:
isClientError: true
- description: "timeoutMS applied to find"
operations:
- name: failPoint
object: testRunner
arguments:
client: *failPointClient
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["find"]
blockConnection: true
blockTimeMS: 300
- name: find
object: *collection
arguments:
filter: {}
cursorType: tailableAwait
expectError:
isTimeoutError: true
expectEvents:
- client: *client
events:
- commandStartedEvent:
commandName: find
databaseName: *databaseName
command:
find: *collectionName
tailable: true
awaitData: true
maxTimeMS: { $$exists: true }
# If maxAwaitTimeMS is not set, timeoutMS should be refreshed for the getMore and the getMore should not have a
# maxTimeMS field.
- description: "timeoutMS is refreshed for getMore if maxAwaitTimeMS is not set"
operations:
- name: failPoint
object: testRunner
arguments:
client: *failPointClient
failPoint:
configureFailPoint: failCommand
mode: { times: 2 }
data:
failCommands: ["find", "getMore"]
blockConnection: true
blockTimeMS: 150
- name: createFindCursor
object: *collection
arguments:
filter: {}
cursorType: tailableAwait
timeoutMS: 250
batchSize: 1
saveResultAsEntity: &tailableCursor tailableCursor
# Iterate twice to force a getMore. The first iteration will return the document from the first batch and the
# second will do a getMore.
- name: iterateUntilDocumentOrError
object: *tailableCursor
- name: iterateUntilDocumentOrError
object: *tailableCursor
expectEvents:
- client: *client
events:
- commandStartedEvent:
commandName: find
databaseName: *databaseName
command:
find: *collectionName
tailable: true
awaitData: true
maxTimeMS: { $$exists: true }
- commandStartedEvent:
commandName: getMore
databaseName: *databaseName
command:
getMore: { $$type: ["int", "long"] }
collection: *collectionName
maxTimeMS: { $$exists: false }
# If maxAwaitTimeMS is set for the initial command, timeoutMS should still be refreshed for the getMore and the
# getMore command should have a maxTimeMS field.
- description: "timeoutMS is refreshed for getMore if maxAwaitTimeMS is set"
operations:
- name: failPoint
object: testRunner
arguments:
client: *failPointClient
failPoint:
configureFailPoint: failCommand
mode: { times: 2 }
data:
failCommands: ["find", "getMore"]
blockConnection: true
blockTimeMS: 150
- name: createFindCursor
object: *collection
arguments:
filter: {}
cursorType: tailableAwait
timeoutMS: 250
batchSize: 1
maxAwaitTimeMS: 1
saveResultAsEntity: &tailableCursor tailableCursor
# Iterate twice to force a getMore.
- name: iterateUntilDocumentOrError
object: *tailableCursor
- name: iterateUntilDocumentOrError
object: *tailableCursor
expectEvents:
- client: *client
events:
- commandStartedEvent:
commandName: find
databaseName: *databaseName
command:
find: *collectionName
tailable: true
awaitData: true
maxTimeMS: { $$exists: true }
- commandStartedEvent:
commandName: getMore
databaseName: *databaseName
command:
getMore: { $$type: ["int", "long"] }
collection: *collectionName
maxTimeMS: 1
# The timeoutMS value should be refreshed for getMore's. This is a failure test. The find inherits timeoutMS=200 from
# the collection and the getMore blocks for 250ms, causing iteration to fail with a timeout error.
- description: "timeoutMS is refreshed for getMore - failure"
operations:
- name: failPoint
object: testRunner
arguments:
client: *failPointClient
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["getMore"]
blockConnection: true
blockTimeMS: 250
- name: createFindCursor
object: *collection
arguments:
filter: {}
cursorType: tailableAwait
batchSize: 1
saveResultAsEntity: &tailableCursor tailableCursor
# Iterate twice to force a getMore.
- name: iterateUntilDocumentOrError
object: *tailableCursor
- name: iterateUntilDocumentOrError
object: *tailableCursor
expectError:
isTimeoutError: true
expectEvents:
- client: *client
events:
- commandStartedEvent:
commandName: find
databaseName: *databaseName
command:
find: *collectionName
tailable: true
awaitData: true
maxTimeMS: { $$exists: true }
- commandStartedEvent:
commandName: getMore
databaseName: *databaseName
command:
getMore: { $$type: ["int", "long"] }
collection: *collectionName
- description: "apply remaining timeoutMS if less than maxAwaitTimeMS"
operations:
- name: createFindCursor
object: *collection
arguments:
filter: { _id: 1 }
cursorType: tailableAwait
batchSize: 1
maxAwaitTimeMS: 100
timeoutMS: 200
saveResultAsEntity: &tailableCursor tailableCursor
- name: iterateOnce
object: *tailableCursor
- name: iterateUntilDocumentOrError
object: *tailableCursor
expectError:
isTimeoutError: true
expectEvents:
- client: *client
ignoreExtraEvents: true
events:
- commandStartedEvent:
commandName: find
databaseName: *databaseName
- commandStartedEvent:
commandName: getMore
databaseName: *databaseName
command:
maxTimeMS: { $$lte: 100 }
- commandStartedEvent:
commandName: getMore
databaseName: *databaseName
command:
maxTimeMS: { $$lte: 99 }
- description: "apply maxAwaitTimeMS if less than remaining timeout"
operations:
- name: failPoint
object: testRunner
arguments:
client: *failPointClient
failPoint:
configureFailPoint: failCommand
mode: { times: 1 }
data:
failCommands: ["getMore"]
blockConnection: true
blockTimeMS: 30
- name: createFindCursor
object: *collection
arguments:
filter: {}
cursorType: tailableAwait
batchSize: 1
maxAwaitTimeMS: 100
timeoutMS: 200
saveResultAsEntity: &tailableCursor tailableCursor
# Iterate twice to force a getMore.
- name: iterateOnce
object: *tailableCursor
- name: iterateOnce
object: *tailableCursor
expectEvents:
- client: *client
events:
- commandStartedEvent:
commandName: find
databaseName: *databaseName
- commandStartedEvent:
commandName: getMore
databaseName: *databaseName
command:
maxTimeMS: { $$lte: 100 }