-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathretry.feature
600 lines (517 loc) · 17.1 KB
/
retry.feature
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
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
Feature: Retry flaky tests
Using the `--retry` flag will retry failing tests for the specified number of times
Additionally using the `--retry-tag-filter` flag will re-run only tests matching the tag expression
@spawn
Scenario: running Cucumber JS with --retry-tag-filter but no positive --retry will fail
When I run cucumber-js with `--retry-tag-filter @flaky`
Then the error output contains the text:
"""
Error: a positive `retry` count must be specified when setting `retryTagFilter`
"""
And it fails
Scenario: running Cucumber JS with negative --retry will fail
When I run cucumber-js with `--retry -1`
Then the error output contains the text:
"""
Error: --retry must be a non negative integer
"""
And it fails
Scenario: running Cucumber JS with --retry 0 will let a failing test fail and not retry
Given a file named "features/a.feature" with:
"""
Feature:
Scenario: Failing
Given a failing step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
Given(/^a failing step$/, function() { throw 'fail' })
"""
When I run cucumber-js with `--retry 0`
Then scenario "Failing" step "Given a failing step" failed with:
"""
fail
"""
And it fails
Scenario: running Cucumber JS without --retry will let a failing test fail and not retry
Given a file named "features/a.feature" with:
"""
Feature:
Scenario: Failing
Given a failing step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
Given(/^a failing step$/, function() { throw 'fail' })
"""
When I run cucumber-js
Then scenario "Failing" step "Given a failing step" failed with:
"""
fail
"""
And it fails
Scenario: retrying a flaky test will eventually make it pass
Given a file named "features/a.feature" with:
"""
Feature:
Scenario: Flaky
Given a flaky step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
let willPass = false
Given(/^a flaky step$/, function() {
if (willPass) {
return
}
willPass = true
throw 'fail'
})
"""
When I run cucumber-js with `--retry 1`
Then it outputs the text:
"""
F.
Warnings:
1) Scenario: Flaky (attempt 1, retried) # features/a.feature:2
✖ Given a flaky step # features/step_definitions/cucumber_steps.js:5
fail
1 scenario (1 passed)
1 step (1 passed)
<duration-stat>
"""
And scenario "Flaky" attempt 0 step "Given a flaky step" has status "failed"
And scenario "Flaky" attempt 1 step "Given a flaky step" has status "passed"
And it passes
Scenario: retrying a flaky test will eventually make it pass (parallel)
Given a file named "features/a.feature" with:
"""
Feature:
Scenario: Flaky
Given a flaky step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
let willPass = false
Given(/^a flaky step$/, function() {
if (willPass) {
return
}
willPass = true
throw 'fail'
})
"""
When I run cucumber-js with `--retry 1 --parallel 2`
Then it outputs the text:
"""
F.
Warnings:
1) Scenario: Flaky (attempt 1, retried) # features/a.feature:2
✖ Given a flaky step # features/step_definitions/cucumber_steps.js:5
fail
1 scenario (1 passed)
1 step (1 passed)
<duration-stat>
"""
And scenario "Flaky" attempt 0 step "Given a flaky step" has status "failed"
And scenario "Flaky" attempt 1 step "Given a flaky step" has status "passed"
And it passes
Scenario: Out of two tests one is a flaky test (containing only one flaky step), retrying will eventually make it pass
Given a file named "features/a.feature" with:
"""
Feature:
Scenario: Flaky
Given a flaky step
Scenario: Good
Given a good step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
let willPass = false
Given(/^a flaky step$/, function() {
if (willPass) {
return
}
willPass = true
throw 'fail'
})
Given(/^a good step$/, function() {
return
})
"""
When I run cucumber-js with `--retry 1`
Then the output contains the text:
"""
F..
Warnings:
1) Scenario: Flaky (attempt 1, retried) # features/a.feature:2
✖ Given a flaky step # features/step_definitions/cucumber_steps.js:5
fail
2 scenarios (2 passed)
2 steps (2 passed)
<duration-stat>
"""
And scenario "Flaky" attempt 0 step "Given a flaky step" has status "failed"
And scenario "Flaky" attempt 1 step "Given a flaky step" has status "passed"
And scenario "Good" step "Given a good step" has status "passed"
And it passes
Scenario: Out of two tests one test has one flaky step, retrying will eventually make it pass
Given a file named "features/a.feature" with:
"""
Feature:
Scenario: Flaky
Given a flaky step
And a good step
Scenario: Good
Given a good step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
let willPass = false
Given(/^a flaky step$/, function() {
if (willPass) {
return
}
willPass = true
throw 'fail'
})
Given(/^a good step$/, function() {
return
})
"""
When I run cucumber-js with `--retry 1`
Then it outputs the text:
"""
F-...
Warnings:
1) Scenario: Flaky (attempt 1, retried) # features/a.feature:2
✖ Given a flaky step # features/step_definitions/cucumber_steps.js:5
fail
- And a good step # features/step_definitions/cucumber_steps.js:13
2 scenarios (2 passed)
3 steps (3 passed)
<duration-stat>
"""
And scenario "Flaky" attempt 0 step "Given a flaky step" has status "failed"
And scenario "Flaky" attempt 1 step "Given a flaky step" has status "passed"
And it passes
Scenario: Out of three tests one passes, one is flaky and one fails, retrying the flaky test will eventually make it pass
Given a file named "features/a.feature" with:
"""
Feature:
Scenario: Flaky
Given a flaky step
Scenario: Good
Given a good step
Scenario: Bad
Given a bad step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
let willPass = false
Given(/^a flaky step$/, function() {
if (willPass) {
return
}
willPass = true
throw 'fail'
})
Given(/^a good step$/, function() {
return
})
Given(/^a bad step$/, function() {
throw 'fail'
})
"""
When I run cucumber-js with `--retry 1`
Then it outputs the text:
"""
F..FF
Failures:
1) Scenario: Bad (attempt 2) # features/a.feature:6
✖ Given a bad step # features/step_definitions/cucumber_steps.js:17
fail
Warnings:
1) Scenario: Flaky (attempt 1, retried) # features/a.feature:2
✖ Given a flaky step # features/step_definitions/cucumber_steps.js:5
fail
2) Scenario: Bad (attempt 1, retried) # features/a.feature:6
✖ Given a bad step # features/step_definitions/cucumber_steps.js:17
fail
3 scenarios (1 failed, 2 passed)
3 steps (1 failed, 2 passed)
<duration-stat>
"""
And scenario "Flaky" attempt 0 step "Given a flaky step" has status "failed"
And scenario "Flaky" attempt 1 step "Given a flaky step" has status "passed"
And scenario "Bad" step "Given a bad step" has status "failed"
And it fails
Scenario: retrying a genuinely failing test won't make it pass
Given a file named "features/a.feature" with:
"""
Feature:
Scenario: Failing
Given a failing step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
Given(/^a failing step$/, function() { throw 'fail' })
"""
When I run cucumber-js with `--retry 1`
Then scenario "Failing" attempt 0 step "Given a failing step" failed with:
"""
fail
"""
And scenario "Failing" attempt 1 step "Given a failing step" failed with:
"""
fail
"""
And it fails
Scenario: retrying a flaky test matching --retry-tag-filter will eventually make it pass
Given a file named "features/a.feature" with:
"""
Feature:
@flaky
Scenario: Flaky
Given a flaky step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
let willPass = false
Given(/^a flaky step$/, function() {
if (willPass) {
return
}
willPass = true
throw 'fail'
})
"""
When I run cucumber-js with `--retry 1 --retry-tag-filter '@flaky'`
Then scenario "Flaky" attempt 0 step "Given a flaky step" has status "failed"
Then scenario "Flaky" attempt 1 step "Given a flaky step" has status "passed"
And it passes
Scenario: a flaky test not matching --retry-tag-filter won't re-run and just fail
Given a file named "features/a.feature" with:
"""
Feature:
@flaky
Scenario: Flaky
Given a flaky step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
let willPass = false
Given(/^a flaky step$/, function() {
if (willPass) {
return
}
willPass = true
throw 'fail'
})
"""
When I run cucumber-js with `--retry 1 --retry-tag-filter '@not_flaky'`
Then scenario "Flaky" step "Given a flaky step" has status "failed"
And it fails
Scenario: retrying a flaky test matching --retry-tag-filter will eventually make it pass but not-matching will not be retried (AND operator between tags)
Given a file named "features/a.feature" with:
"""
Feature:
@flaky @anOtherTag @oneMoreTag
Scenario: Flaky
Given a flaky step
@flaky @oneMoreTag
Scenario: Also Flaky
Given an other flaky step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
let willPass = false
Given(/^a flaky step$/, function() {
if (willPass) {
return
}
willPass = true
throw 'fail'
})
let willPass2 = false
Given(/^an other flaky step$/, function() {
if (willPass2) {
return
}
willPass2 = true
throw 'fail'
})
"""
When I run cucumber-js with `--retry 1 --retry-tag-filter '@flaky and @anOtherTag'`
Then scenario "Flaky" attempt 0 step "Given a flaky step" has status "failed"
Then scenario "Flaky" attempt 1 step "Given a flaky step" has status "passed"
And scenario "Also Flaky" step "Given an other flaky step" has status "failed"
And it fails
Scenario: retrying a flaky test matching --retry-tag-filter will eventually make it pass but not-matching will not be retried (OR operator between tags)
Given a file named "features/a.feature" with:
"""
Feature:
@flaky @anOtherTag @oneMoreTag
Scenario: Flaky
Given a flaky step
@flaky @oneMoreTag
Scenario: Also Flaky
Given an other flaky step
@flaky
Scenario: Third Flaky
Given one more flaky step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
let willPass = false
Given(/^a flaky step$/, function() {
if (willPass) {
return
}
willPass = true
throw 'fail'
})
let willPass2 = false
Given(/^an other flaky step$/, function() {
if (willPass2) {
return
}
willPass2 = true
throw 'fail'
})
let willPass3 = false
Given(/^one more flaky step$/, function() {
if (willPass3) {
return
}
willPass3 = true
throw 'fail'
})
"""
When I run cucumber-js with `--retry 1 --retry-tag-filter '@anOtherTag or @oneMoreTag'`
Then scenario "Flaky" attempt 0 step "Given a flaky step" has status "failed"
And scenario "Flaky" attempt 1 step "Given a flaky step" has status "passed"
And scenario "Also Flaky" attempt 0 step "Given an other flaky step" has status "failed"
And scenario "Also Flaky" attempt 1 step "Given an other flaky step" has status "passed"
And scenario "Third Flaky" step "Given one more flaky step" has status "failed"
And it fails
Scenario: retrying a flaky test will use a fresh World instance
Given a file named "features/a.feature" with:
"""
Feature:
Scenario: Flaky
Given a flaky step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Before, After, Given, setWorldConstructor} = require('@cucumber/cucumber')
Before(function() {
this.usedCount++
})
After(function() {
if (this.usedCount > 1) {
throw 'World was used in more than 1 test case run'
}
})
let willPass = false
Given(/^a flaky step$/, function() {
if (willPass) {
return
}
willPass = true
throw 'fail'
})
class CustomWorld {
constructor() {
this.usedCount = 0
}
}
setWorldConstructor(CustomWorld)
"""
When I run cucumber-js with `--retry 1`
Then it passes
Rule: using retry in combination with fail-fast will exhaust retries before failing test run
Scenario: a flaky scenario that passes on the second attempt, set to fail fast
Given a file named "features/a.feature" with:
"""
Feature:
Scenario: Flaky
Given a flaky step
Scenario: Passing
Given a passing step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
let willPass = false
Given(/^a flaky step$/, function() {
if (willPass) {
return
}
willPass = true
throw 'fail'
})
Given(/^a passing step$/, function() {})
"""
When I run cucumber-js with `--retry 1 --fail-fast`
Then it passes
And scenario "Flaky" attempt 0 step "Given a flaky step" has status "failed"
And scenario "Flaky" attempt 1 step "Given a flaky step" has status "passed"
And scenario "Passing" step "Given a passing step" has status "passed"
Scenario: a scenario that fails every allotted attempt, set to fail fast
Given a file named "features/a.feature" with:
"""
Feature:
Scenario: Failing
Given a failing step
Scenario: Passing
Given a passing step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
Given(/^a failing step$/, function() { throw 'fail' })
Given(/^a passing step$/, function() {})
"""
When I run cucumber-js with `--retry 1 --fail-fast`
Then it fails
And scenario "Failing" attempt 0 step "Given a failing step" has status "failed"
And scenario "Failing" attempt 1 step "Given a failing step" has status "failed"
And scenario "Passing" step "Given a passing step" has status "skipped"
Scenario: RerunFormatter does not report attempts that are retried
Given a file named "features/a.feature" with:
"""
Feature:
Scenario: Flaky
Given a flaky step
"""
And a file named "features/step_definitions/cucumber_steps.js" with:
"""
const {Given} = require('@cucumber/cucumber')
let attemptCountdown = 2
Given(/^a flaky step$/, function() {
if (attemptCountdown == 0) {
return
}
attemptCountdown = attemptCountdown - 1
throw 'fail'
})
"""
When I run cucumber-js with `--retry 1 --format rerun`
Then it outputs the text:
"""
features/a.feature:2
"""
And it fails