-
Notifications
You must be signed in to change notification settings - Fork 22
/
pytest_subtests.py
256 lines (202 loc) · 7.26 KB
/
pytest_subtests.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
import sys
import time
from contextlib import contextmanager
import attr
import pytest
from _pytest._code import ExceptionInfo
from _pytest.capture import CaptureFixture
from _pytest.capture import FDCapture
from _pytest.capture import SysCapture
from _pytest.outcomes import OutcomeException
from _pytest.reports import TestReport
from _pytest.runner import CallInfo
from _pytest.runner import check_interactive_exception
from _pytest.unittest import TestCaseFunction
if sys.version_info[:2] < (3, 7):
@contextmanager
def nullcontext():
yield
else:
from contextlib import nullcontext
@attr.s
class SubTestContext:
msg = attr.ib()
kwargs = attr.ib()
@attr.s(init=False)
class SubTestReport(TestReport):
context = attr.ib()
@property
def count_towards_summary(self):
return not self.passed
@property
def head_line(self):
_, _, domain = self.location
return f"{domain} {self.sub_test_description()}"
def sub_test_description(self):
parts = []
if isinstance(self.context.msg, str):
parts.append(f"[{self.context.msg}]")
if self.context.kwargs:
params_desc = ", ".join(
f"{k}={v!r}" for (k, v) in sorted(self.context.kwargs.items())
)
parts.append(f"({params_desc})")
return " ".join(parts) or "(<subtest>)"
def _to_json(self):
data = super()._to_json()
del data["context"]
data["_report_type"] = "SubTestReport"
data["_subtest.context"] = attr.asdict(self.context)
return data
@classmethod
def _from_json(cls, reportdict):
report = super()._from_json(reportdict)
context_data = reportdict["_subtest.context"]
report.context = SubTestContext(
msg=context_data["msg"], kwargs=context_data["kwargs"]
)
return report
@classmethod
def _from_test_report(cls, test_report):
return super()._from_json(test_report._to_json())
def _addSubTest(self, test_case, test, exc_info):
if exc_info is not None:
msg = test._message if isinstance(test._message, str) else None
call_info = make_call_info(
ExceptionInfo(exc_info, _ispytest=True),
start=0,
stop=0,
duration=0,
when="call",
)
report = self.ihook.pytest_runtest_makereport(item=self, call=call_info)
sub_report = SubTestReport._from_test_report(report)
sub_report.context = SubTestContext(msg, dict(test.params))
self.ihook.pytest_runtest_logreport(report=sub_report)
if check_interactive_exception(call_info, sub_report):
self.ihook.pytest_exception_interact(
node=self, call=call_info, report=sub_report
)
def pytest_configure(config):
TestCaseFunction.addSubTest = _addSubTest
TestCaseFunction.failfast = False
def pytest_unconfigure():
if hasattr(TestCaseFunction, "_addSubTest"):
del TestCaseFunction.addSubTest
if hasattr(TestCaseFunction, "failfast"):
del TestCaseFunction.failfast
@pytest.fixture
def subtests(request):
capmam = request.node.config.pluginmanager.get_plugin("capturemanager")
if capmam is not None:
suspend_capture_ctx = capmam.global_and_fixture_disabled
else:
suspend_capture_ctx = nullcontext
yield SubTests(request.node.ihook, suspend_capture_ctx, request)
@attr.s
class SubTests:
ihook = attr.ib()
suspend_capture_ctx = attr.ib()
request = attr.ib()
@property
def item(self):
return self.request.node
@contextmanager
def _capturing_output(self):
option = self.request.config.getoption("capture", None)
# capsys or capfd are active, subtest should not capture
capman = self.request.config.pluginmanager.getplugin("capturemanager")
capture_fixture_active = getattr(capman, "_capture_fixture", None)
if option == "sys" and not capture_fixture_active:
with ignore_pytest_private_warning():
fixture = CaptureFixture(SysCapture, self.request)
elif option == "fd" and not capture_fixture_active:
with ignore_pytest_private_warning():
fixture = CaptureFixture(FDCapture, self.request)
else:
fixture = None
if fixture is not None:
fixture._start()
captured = Captured()
try:
yield captured
finally:
if fixture is not None:
out, err = fixture.readouterr()
fixture.close()
captured.out = out
captured.err = err
@contextmanager
def test(self, msg=None, **kwargs):
start = time.time()
precise_start = time.perf_counter()
exc_info = None
with self._capturing_output() as captured:
try:
yield
except (Exception, OutcomeException):
exc_info = ExceptionInfo.from_current()
precise_stop = time.perf_counter()
duration = precise_stop - precise_start
stop = time.time()
call_info = make_call_info(
exc_info, start=start, stop=stop, duration=duration, when="call"
)
report = self.ihook.pytest_runtest_makereport(item=self.item, call=call_info)
sub_report = SubTestReport._from_test_report(report)
sub_report.context = SubTestContext(msg, kwargs.copy())
captured.update_report(sub_report)
with self.suspend_capture_ctx():
self.ihook.pytest_runtest_logreport(report=sub_report)
if check_interactive_exception(call_info, sub_report):
self.ihook.pytest_exception_interact(
node=self.item, call=call_info, report=sub_report
)
def make_call_info(exc_info, *, start, stop, duration, when):
return CallInfo(
None,
exc_info,
start=start,
stop=stop,
duration=duration,
when=when,
_ispytest=True,
)
@contextmanager
def ignore_pytest_private_warning():
import warnings
with warnings.catch_warnings():
warnings.filterwarnings(
"ignore",
"A private pytest class or function was used.",
category=pytest.PytestDeprecationWarning,
)
yield
@attr.s
class Captured:
out = attr.ib(default="", type=str)
err = attr.ib(default="", type=str)
def update_report(self, report):
if self.out:
report.sections.append(("Captured stdout call", self.out))
if self.err:
report.sections.append(("Captured stderr call", self.err))
def pytest_report_to_serializable(report):
if isinstance(report, SubTestReport):
return report._to_json()
def pytest_report_from_serializable(data):
if data.get("_report_type") == "SubTestReport":
return SubTestReport._from_json(data)
@pytest.hookimpl(tryfirst=True)
def pytest_report_teststatus(report):
if report.when != "call" or not isinstance(report, SubTestReport):
return
if hasattr(report, "wasxfail"):
return None
outcome = report.outcome
if report.passed:
return outcome, ",", "SUBPASS"
elif report.skipped:
return outcome, "-", "SUBSKIP"
elif outcome == "failed":
return outcome, "u", "SUBFAIL"