-
Notifications
You must be signed in to change notification settings - Fork 23
/
plugin.py
420 lines (340 loc) · 12.9 KB
/
plugin.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
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
from __future__ import annotations
import sys
import time
from contextlib import contextmanager
from contextlib import ExitStack
from contextlib import nullcontext
from typing import Any
from typing import Callable
from typing import ContextManager
from typing import Generator
from typing import Iterator
from typing import Mapping
from typing import TYPE_CHECKING
from unittest import TestCase
import attr
import pluggy
import pytest
from _pytest._code import ExceptionInfo
from _pytest.capture import CaptureFixture
from _pytest.capture import FDCapture
from _pytest.capture import SysCapture
from _pytest.fixtures import SubRequest
from _pytest.logging import catching_logs
from _pytest.logging import LogCaptureHandler
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 TYPE_CHECKING:
from types import TracebackType
if sys.version_info < (3, 8):
from typing_extensions import Literal
else:
from typing import Literal
def pytest_addoption(parser: pytest.Parser) -> None:
group = parser.getgroup("subtests")
group.addoption(
"--no-subtests-shortletter",
action="store_true",
dest="no_subtests_shortletter",
default=False,
help="Disables subtest output 'dots' in non-verbose mode (EXPERIMENTAL)",
)
@attr.s
class SubTestContext:
msg: str | None = attr.ib()
kwargs: dict[str, Any] = attr.ib()
@attr.s(init=False)
class SubTestReport(TestReport): # type: ignore[misc]
context: SubTestContext = attr.ib()
@property
def head_line(self) -> str:
_, _, domain = self.location
return f"{domain} {self.sub_test_description()}"
def sub_test_description(self) -> str:
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) -> dict:
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: dict[str, Any]) -> SubTestReport:
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: TestReport) -> SubTestReport:
return super()._from_json(test_report._to_json())
def _addSubTest(
self: TestCaseFunction,
test_case: Any,
test: TestCase,
exc_info: tuple[type[BaseException], BaseException, TracebackType] | None,
) -> None:
if exc_info is not None:
msg = test._message if isinstance(test._message, str) else None # type: ignore[attr-defined]
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)) # type: ignore[attr-defined]
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: pytest.Config) -> None:
TestCaseFunction.addSubTest = _addSubTest # type: ignore[attr-defined]
TestCaseFunction.failfast = False # type: ignore[attr-defined]
# Hack (#86): the terminal does not know about the "subtests"
# status, so it will by default turn the output to yellow.
# This forcibly adds the new 'subtests' status.
import _pytest.terminal
new_types = tuple(
f"subtests {outcome}" for outcome in ("passed", "failed", "skipped")
)
# We need to check if we are not re-adding because we run our own tests
# with pytester in-process mode, so this will be called multiple times.
if new_types[0] not in _pytest.terminal.KNOWN_TYPES:
_pytest.terminal.KNOWN_TYPES = _pytest.terminal.KNOWN_TYPES + new_types # type: ignore[assignment]
_pytest.terminal._color_for_type.update(
{
f"subtests {outcome}": _pytest.terminal._color_for_type[outcome]
for outcome in ("passed", "failed", "skipped")
if outcome in _pytest.terminal._color_for_type
}
)
def pytest_unconfigure() -> None:
if hasattr(TestCaseFunction, "addSubTest"):
del TestCaseFunction.addSubTest
if hasattr(TestCaseFunction, "failfast"):
del TestCaseFunction.failfast
@pytest.fixture
def subtests(request: SubRequest) -> Generator[SubTests, None, None]:
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: pluggy.HookRelay = attr.ib()
suspend_capture_ctx: Callable[[], ContextManager] = attr.ib()
request: SubRequest = attr.ib()
@property
def item(self) -> pytest.Item:
return self.request.node
def test(
self,
msg: str | None = None,
**kwargs: Any,
) -> _SubTestContextManager:
"""
Context manager for subtests, capturing exceptions raised inside the subtest scope and handling
them through the pytest machinery.
Usage:
.. code-block:: python
with subtests.test(msg="subtest"):
assert 1 == 1
"""
return _SubTestContextManager(
self.ihook,
msg,
kwargs,
request=self.request,
suspend_capture_ctx=self.suspend_capture_ctx,
)
@attr.s(auto_attribs=True)
class _SubTestContextManager:
"""
Context manager for subtests, capturing exceptions raised inside the subtest scope and handling
them through the pytest machinery.
Note: initially this logic was implemented directly in SubTests.test() as a @contextmanager, however
it is not possible to control the output fully when exiting from it due to an exception when
in --exitfirst mode, so this was refactored into an explicit context manager class (#134).
"""
ihook: pluggy.HookRelay
msg: str | None
kwargs: dict[str, Any]
suspend_capture_ctx: Callable[[], ContextManager]
request: SubRequest
def __enter__(self) -> None:
__tracebackhide__ = True
self._start = time.time()
self._precise_start = time.perf_counter()
self._exc_info = None
self._exit_stack = ExitStack()
self._captured_output = self._exit_stack.enter_context(
capturing_output(self.request)
)
self._captured_logs = self._exit_stack.enter_context(
capturing_logs(self.request)
)
def __exit__(
self,
exc_type: type[Exception] | None,
exc_val: Exception | None,
exc_tb: TracebackType | None,
) -> bool:
__tracebackhide__ = True
try:
if exc_val is not None:
if self.request.session.shouldfail:
return False
exc_info = ExceptionInfo.from_exception(exc_val)
else:
exc_info = None
finally:
self._exit_stack.close()
precise_stop = time.perf_counter()
duration = precise_stop - self._precise_start
stop = time.time()
call_info = make_call_info(
exc_info, start=self._start, stop=stop, duration=duration, when="call"
)
report = self.ihook.pytest_runtest_makereport(
item=self.request.node, call=call_info
)
sub_report = SubTestReport._from_test_report(report)
sub_report.context = SubTestContext(self.msg, self.kwargs.copy())
self._captured_output.update_report(sub_report)
self._captured_logs.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.request.node, call=call_info, report=sub_report
)
return True
def make_call_info(
exc_info: ExceptionInfo[BaseException] | None,
*,
start: float,
stop: float,
duration: float,
when: Literal["collect", "setup", "call", "teardown"],
) -> CallInfo:
return CallInfo(
None,
exc_info,
start=start,
stop=stop,
duration=duration,
when=when,
_ispytest=True,
)
@contextmanager
def capturing_output(request: SubRequest) -> Iterator[Captured]:
option = request.config.getoption("capture", None)
# capsys or capfd are active, subtest should not capture.
capman = 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, request)
elif option == "fd" and not capture_fixture_active:
with ignore_pytest_private_warning():
fixture = CaptureFixture(FDCapture, 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 capturing_logs(
request: SubRequest,
) -> Iterator[CapturedLogs | NullCapturedLogs]:
logging_plugin = request.config.pluginmanager.getplugin("logging-plugin")
if logging_plugin is None:
yield NullCapturedLogs()
else:
handler = LogCaptureHandler()
handler.setFormatter(logging_plugin.formatter)
captured_logs = CapturedLogs(handler)
with catching_logs(handler):
yield captured_logs
@contextmanager
def ignore_pytest_private_warning() -> Generator[None, None, None]:
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: pytest.TestReport) -> None:
if self.out:
report.sections.append(("Captured stdout call", self.out))
if self.err:
report.sections.append(("Captured stderr call", self.err))
class CapturedLogs:
def __init__(self, handler: LogCaptureHandler) -> None:
self._handler = handler
def update_report(self, report: pytest.TestReport) -> None:
report.sections.append(("Captured log call", self._handler.stream.getvalue()))
class NullCapturedLogs:
def update_report(self, report: pytest.TestReport) -> None:
pass
def pytest_report_to_serializable(report: pytest.TestReport) -> dict[str, Any] | None:
if isinstance(report, SubTestReport):
return report._to_json()
return None
def pytest_report_from_serializable(data: dict[str, Any]) -> SubTestReport | None:
if data.get("_report_type") == "SubTestReport":
return SubTestReport._from_json(data)
return None
@pytest.hookimpl(tryfirst=True)
def pytest_report_teststatus(
report: pytest.TestReport,
config: pytest.Config,
) -> tuple[str, str, str | Mapping[str, bool]] | None:
if report.when != "call" or not isinstance(report, SubTestReport):
return None
if hasattr(report, "wasxfail"):
return None
outcome = report.outcome
description = report.sub_test_description()
if report.passed:
short = "" if config.option.no_subtests_shortletter else ","
return f"subtests {outcome}", short, f"{description} SUBPASS"
elif report.skipped:
short = "" if config.option.no_subtests_shortletter else "-"
return outcome, short, f"{description} SUBSKIP"
elif outcome == "failed":
short = "" if config.option.no_subtests_shortletter else "u"
return outcome, short, f"{description} SUBFAIL"
return None