-
Notifications
You must be signed in to change notification settings - Fork 225
/
Copy pathtest_report.py
354 lines (314 loc) · 9.88 KB
/
test_report.py
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
"""Test scenario reporting."""
import textwrap
import pytest
class equals_any(object):
"""Helper object comparison to which is always 'equal'."""
def __init__(self, type=None):
self.type = type
def __eq__(self, other):
return isinstance(other, self.type) if self.type else True
def __cmp__(self, other):
return 0 if (isinstance(other, self.type) if self.type else False) else -1
string = type(u"")
def test_step_trace(testdir):
"""Test step trace."""
testdir.makefile(
".ini",
pytest=textwrap.dedent(
"""
[pytest]
markers =
feature-tag
scenario-passing-tag
scenario-failing-tag
"""
),
)
feature = testdir.makefile(
".feature",
test=textwrap.dedent(
"""
@feature-tag
Feature: One passing scenario, one failing scenario
@scenario-passing-tag
Scenario: Passing
Given a passing step
And some other passing step
@scenario-failing-tag
Scenario: Failing
Given a passing step
And a failing step
Scenario Outline: Outlined
Given there are <start> cucumbers
When I eat <eat> cucumbers
Then I should have <left> cucumbers
Examples:
| start | eat | left |
| 12 | 5 | 7 |
| 5 | 4 | 1 |
"""
),
)
relpath = feature.relto(testdir.tmpdir.dirname)
testdir.makepyfile(
textwrap.dedent(
"""
import pytest
from pytest_bdd import given, when, then, scenarios
@given('a passing step')
def a_passing_step():
return 'pass'
@given('some other passing step')
def some_other_passing_step():
return 'pass'
@given('a failing step')
def a_failing_step():
raise Exception('Error')
@given('there are <start> cucumbers')
def start_cucumbers(start):
assert isinstance(start, int)
return dict(start=start)
@when('I eat <eat> cucumbers')
def eat_cucumbers(start_cucumbers, eat):
assert isinstance(eat, float)
start_cucumbers['eat'] = eat
@then('I should have <left> cucumbers')
def should_have_left_cucumbers(start_cucumbers, start, eat, left):
assert isinstance(left, str)
assert start - eat == int(left)
assert start_cucumbers['start'] == start
assert start_cucumbers['eat'] == eat
scenarios('test.feature', example_converters=dict(start=int, eat=float, left=str))
"""
)
)
result = testdir.inline_run("-vvl")
assert result.ret
report = result.matchreport("test_passing", when="call").scenario
expected = {
"feature": {
"description": u"",
"filename": feature.strpath,
"line_number": 2,
"name": u"One passing scenario, one failing scenario",
"rel_filename": relpath,
"tags": [u"feature-tag"],
},
"line_number": 5,
"name": u"Passing",
"steps": [
{
"duration": equals_any(float),
"embeddings": [],
"failed": False,
"keyword": "Given",
"line_number": 6,
"name": u"a passing step",
"type": "given",
},
{
"duration": equals_any(float),
"embeddings": [],
"failed": False,
"keyword": "And",
"line_number": 7,
"name": u"some other passing step",
"type": "given",
},
],
"tags": [u"scenario-passing-tag"],
"examples": [],
"example_kwargs": {},
}
assert report == expected
report = result.matchreport("test_failing", when="call").scenario
expected = {
"feature": {
"description": u"",
"filename": feature.strpath,
"line_number": 2,
"name": u"One passing scenario, one failing scenario",
"rel_filename": relpath,
"tags": [u"feature-tag"],
},
"line_number": 10,
"name": u"Failing",
"steps": [
{
"duration": equals_any(float),
"embeddings": [],
"failed": False,
"keyword": "Given",
"line_number": 11,
"name": u"a passing step",
"type": "given",
},
{
"duration": equals_any(float),
"embeddings": [],
"failed": True,
"keyword": "And",
"line_number": 12,
"name": u"a failing step",
"type": "given",
},
],
"tags": [u"scenario-failing-tag"],
"examples": [],
"example_kwargs": {},
}
assert report == expected
report = result.matchreport("test_outlined[12-5.0-7]", when="call").scenario
expected = {
"feature": {
"description": u"",
"filename": feature.strpath,
"line_number": 2,
"name": u"One passing scenario, one failing scenario",
"rel_filename": relpath,
"tags": [u"feature-tag"],
},
"line_number": 14,
"name": u"Outlined",
"steps": [
{
"duration": equals_any(float),
"embeddings": [],
"failed": False,
"keyword": "Given",
"line_number": 15,
"name": u"there are <start> cucumbers",
"type": "given",
},
{
"duration": equals_any(float),
"embeddings": [],
"failed": False,
"keyword": "When",
"line_number": 16,
"name": u"I eat <eat> cucumbers",
"type": "when",
},
{
"duration": equals_any(float),
"embeddings": [],
"failed": False,
"keyword": "Then",
"line_number": 17,
"name": u"I should have <left> cucumbers",
"type": "then",
},
],
"tags": [],
"examples": [
{
"line_number": 19,
"name": None,
"row_index": 0,
"rows": [["start", "eat", "left"], [[12, 5.0, "7"], [5, 4.0, "1"]]],
}
],
"example_kwargs": {"eat": "5.0", "left": "7", "start": "12"},
}
assert report == expected
report = result.matchreport("test_outlined[5-4.0-1]", when="call").scenario
expected = {
"feature": {
"description": u"",
"filename": feature.strpath,
"line_number": 2,
"name": u"One passing scenario, one failing scenario",
"rel_filename": relpath,
"tags": [u"feature-tag"],
},
"line_number": 14,
"name": u"Outlined",
"steps": [
{
"duration": equals_any(float),
"embeddings": [],
"failed": False,
"keyword": "Given",
"line_number": 15,
"name": u"there are <start> cucumbers",
"type": "given",
},
{
"duration": equals_any(float),
"embeddings": [],
"failed": False,
"keyword": "When",
"line_number": 16,
"name": u"I eat <eat> cucumbers",
"type": "when",
},
{
"duration": equals_any(float),
"embeddings": [],
"failed": False,
"keyword": "Then",
"line_number": 17,
"name": u"I should have <left> cucumbers",
"type": "then",
},
],
"tags": [],
"examples": [
{
"line_number": 19,
"name": None,
"row_index": 1,
"rows": [["start", "eat", "left"], [[12, 5.0, "7"], [5, 4.0, "1"]]],
}
],
"example_kwargs": {"eat": "4.0", "left": "1", "start": "5"},
}
assert report == expected
def test_complex_types(testdir):
"""Test serialization of the complex types."""
try:
import execnet.gateway_base
except ImportError:
pytest.skip("Execnet not installed")
testdir.makefile(
".feature",
test=textwrap.dedent(
"""
Feature: Report serialization containing parameters of complex types
Scenario: Complex
Given there is a coordinate <point>
Examples:
| point |
| 10,20 |
"""
),
)
testdir.makepyfile(
textwrap.dedent(
"""
import pytest
from pytest_bdd import given, when, then, scenario
class Point(object):
def __init__(self, x, y):
self.x = x
self.y = y
@classmethod
def parse(cls, value):
return cls(*(int(x) for x in value.split(',')))
class Alien(object):
pass
@given('there is a coordinate <point>')
def point(point):
assert isinstance(point, Point)
return point
@pytest.mark.parametrize('alien', [Alien()])
@scenario('test.feature', 'Complex', example_converters=dict(point=Point.parse))
def test_complex(alien):
pass
"""
)
)
result = testdir.inline_run("-vvl")
report = result.matchreport("test_complex[point0-alien0]", when="call")
assert execnet.gateway_base.dumps(report.item)
assert execnet.gateway_base.dumps(report.scenario)