File: formatter.rerun.feature

package info (click to toggle)
behave 1.2.6-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,160 kB
  • sloc: python: 19,857; makefile: 137; sh: 18
file content (296 lines) | stat: -rw-r--r-- 9,694 bytes parent folder | download | duplicates (3)
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
@sequential
Feature: Rerun Formatter

    To simplify to run the scenarios that have failed during the last test run
    As a tester
    I want that behave generates the necessary information for me.

    . SOLUTION:
    .
    .   Put RerunFormatter into "behave.ini" configuration file:
    .
    .       # -- file:behave.ini
    .       [behave]
    .       format   = rerun
    .       outfiles = rerun.txt
    .
    .   Then a "rerun.txt" file is generated during each test run
    .   that contains the file locations of the failing scenarios, like:
    .
    .       # -- file:rerun.txt
    .       # RERUN: Failing scenarios during last test run.
    .       features/alice.feature:10
    .       features/alice.feature:42
    .
    .   To rerun the failing scenarios of the last test run, use:
    .
    .       behave @rerun.txt


    @setup
    Scenario: Feature Setup
        Given a new working directory
        And a file named "features/steps/steps.py" with:
            """
            from behave import step

            @step('a step passes')
            def step_passes(context):
                pass

            @step('a step fails')
            def step_fails(context):
                assert False, "XFAIL-STEP"
            """
        And a file named "features/alice.feature" with:
            """
            Feature: Alice

              Scenario: Passing
                Given a step passes
                When a step passes
                Then a step passes

              @xfail
              Scenario: When-step fails
                Given a step passes
                When a step fails
                Then a step passes

              @xfail
              Scenario: Then-step fails
                Given a step passes
                When a step passes
                Then a step fails
            """
        And a file named "features/bob.feature" with:
            """
            Feature: Bob

              @xfail
              Scenario: Failing early
                Given a step fails
                When a step passes
                Then a step fails

              Scenario: Passing
                Given a step passes

              @xfail
              Scenario: Failing
                When a step passes
                Then a step fails
            """

    @usecase.step1
    Scenario: Rerun file is generated when failures occur
        When I run "behave -f rerun -o rerun.txt -f plain -T features/"
        Then it should fail with:
            """
            0 features passed, 2 failed, 0 skipped
            2 scenarios passed, 4 failed, 0 skipped
            """
        And the command output should contain:
            """
            Failing scenarios:
              features/alice.feature:9  When-step fails
              features/alice.feature:15  Then-step fails
              features/bob.feature:4  Failing early
              features/bob.feature:13  Failing
            """
        And the file "rerun.txt" should contain:
            """
            # -- RERUN: 4 failing scenarios during last test run.
            features/alice.feature:9
            features/alice.feature:15
            features/bob.feature:4
            features/bob.feature:13
            """

    @usecase.step2
    Scenario: Use rerun file during next test run to test only failing scenarios
        Given a file named "rerun.txt" with:
            """
            # -- RERUN: 4 failing scenarios during last test run.
            features/alice.feature:9
            features/alice.feature:15
            features/bob.feature:4
            features/bob.feature:13
            """
        When I run "behave -f plain -T --no-skipped @rerun.txt"
        Then it should fail with:
            """
            0 features passed, 2 failed, 0 skipped
            0 scenarios passed, 4 failed, 2 skipped
            """
        And the command output should contain:
            """
            Feature: Alice

              Scenario: When-step fails
                Given a step passes ... passed
                When a step fails ... failed
            Assertion Failed: XFAIL-STEP

              Scenario: Then-step fails
                Given a step passes ... passed
                When a step passes ... passed
                Then a step fails ... failed
            Assertion Failed: XFAIL-STEP

            Feature: Bob

              Scenario: Failing early
                Given a step fails ... failed
            Assertion Failed: XFAIL-STEP

              Scenario: Failing
                When a step passes ... passed
                Then a step fails ... failed
            Assertion Failed: XFAIL-STEP
            """
        And the command output should contain:
            """
            Failing scenarios:
              features/alice.feature:9  When-step fails
              features/alice.feature:15  Then-step fails
              features/bob.feature:4  Failing early
              features/bob.feature:13  Failing
            """


    Scenario: Rerun file is deleted when no failures occur

      The rerun output file should be deleted
      if the test run was successful and no failures occurred.

        Given an empty file named "rerun.txt"
        When I run "behave -f rerun -o rerun.txt -f plain -T --no-skipped --tags=~@xfail features/"
        Then it should pass with:
            """
            2 features passed, 0 failed, 0 skipped
            2 scenarios passed, 0 failed, 4 skipped
            """
        And a file named "rerun.txt" should not exist


    Scenario: Use RerunFormatter with output=stdout
        When I run "behave -f rerun -f plain -T --no-skipped features/"
        Then it should fail with:
            """
            0 features passed, 2 failed, 0 skipped
            2 scenarios passed, 4 failed, 0 skipped
                 """
        And the command output should contain:
            """
            # -- RERUN: 4 failing scenarios during last test run.
            features/alice.feature:9
            features/alice.feature:15
            features/bob.feature:4
            features/bob.feature:13
            """


    @with.behave_configfile
    Scenario: Use rerun file with RerunFormatter in behave configuration file
        Given a file named "behave.ini" with:
            """
            [behave]
            format   = rerun
            outfiles = rerun.txt
            show_timings = false
            show_skipped = false
            """
        When I run "behave -f plain features/"
        Then it should fail with:
            """
            0 features passed, 2 failed, 0 skipped
            2 scenarios passed, 4 failed, 0 skipped
            """
        And the file "rerun.txt" should contain:
            """
            # -- RERUN: 4 failing scenarios during last test run.
            features/alice.feature:9
            features/alice.feature:15
            features/bob.feature:4
            features/bob.feature:13
            """
        When I run "behave -f plain @rerun.txt"
        Then it should fail with:
            """
            0 features passed, 2 failed, 0 skipped
            0 scenarios passed, 4 failed, 2 skipped
            """
        And the command output should contain:
            """
            Feature: Alice

              Scenario: When-step fails
                Given a step passes ... passed
                When a step fails ... failed
            Assertion Failed: XFAIL-STEP

              Scenario: Then-step fails
                Given a step passes ... passed
                When a step passes ... passed
                Then a step fails ... failed
            Assertion Failed: XFAIL-STEP

            Feature: Bob

              Scenario: Failing early
                Given a step fails ... failed
            Assertion Failed: XFAIL-STEP

              Scenario: Failing
                When a step passes ... passed
                Then a step fails ... failed
            Assertion Failed: XFAIL-STEP
            """
        And the file "rerun.txt" should contain:
            """
            # -- RERUN: 4 failing scenarios during last test run.
            features/alice.feature:9
            features/alice.feature:15
            features/bob.feature:4
            features/bob.feature:13
            """

    @sad.case
    @with.behave_configfile
    Scenario: Two RerunFormatter use same output file
        Given a file named "behave.ini" with:
            """
            [behave]
            format   = rerun
            outfiles = rerun.txt
            """
        When I run "behave -f rerun -o rerun.txt -f plain features/"
        Then it should fail with:
            """
            0 features passed, 2 failed, 0 skipped
            2 scenarios passed, 4 failed, 0 skipped
            """
        And the file "rerun.txt" should contain:
            """
            # -- RERUN: 4 failing scenarios during last test run.
            features/alice.feature:9
            features/alice.feature:15
            features/bob.feature:4
            features/bob.feature:13
            """
        But the file "rerun.txt" should not contain:
            """
            # -- RERUN: 4 failing scenarios during last test run.
            features/alice.feature:9
            features/alice.feature:15
            features/bob.feature:4
            features/bob.feature:13

            # -- RERUN: 4 failing scenarios during last test run.
            features/alice.feature:9
            features/alice.feature:15
            features/bob.feature:4
            features/bob.feature:13
            """
        And note that "the second RerunFormatter overwrites the output of the first one"