2023-07-01 07:23:18 +08:00
|
|
|
import sys
|
|
|
|
|
2020-11-14 05:47:19 +08:00
|
|
|
from _pytest.pytester import Pytester
|
|
|
|
import pytest
|
2024-02-01 04:12:33 +08:00
|
|
|
|
2020-11-14 05:47:19 +08:00
|
|
|
|
2023-07-01 07:23:18 +08:00
|
|
|
PYPY = hasattr(sys, "pypy_version_info")
|
|
|
|
|
2020-11-14 05:47:19 +08:00
|
|
|
|
2023-07-01 11:33:12 +08:00
|
|
|
@pytest.mark.skipif(PYPY, reason="garbage-collection differences make this flaky")
|
2021-05-04 20:27:21 +08:00
|
|
|
@pytest.mark.filterwarnings("default::pytest.PytestUnraisableExceptionWarning")
|
2020-11-14 05:47:19 +08:00
|
|
|
def test_unraisable(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2023-07-01 11:33:12 +08:00
|
|
|
test_it="""
|
2020-11-14 05:47:19 +08:00
|
|
|
class BrokenDel:
|
|
|
|
def __del__(self):
|
|
|
|
raise ValueError("del is broken")
|
|
|
|
|
|
|
|
def test_it():
|
|
|
|
obj = BrokenDel()
|
|
|
|
del obj
|
|
|
|
|
|
|
|
def test_2(): pass
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = pytester.runpytest()
|
|
|
|
assert result.ret == 0
|
|
|
|
assert result.parseoutcomes() == {"passed": 2, "warnings": 1}
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*= warnings summary =*",
|
|
|
|
"test_it.py::test_it",
|
|
|
|
" * PytestUnraisableExceptionWarning: Exception ignored in: <function BrokenDel.__del__ at *>",
|
|
|
|
" ",
|
|
|
|
" Traceback (most recent call last):",
|
|
|
|
" ValueError: del is broken",
|
|
|
|
" ",
|
|
|
|
" warnings.warn(pytest.PytestUnraisableExceptionWarning(msg))",
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2023-07-01 11:33:12 +08:00
|
|
|
@pytest.mark.skipif(PYPY, reason="garbage-collection differences make this flaky")
|
2021-05-04 20:27:21 +08:00
|
|
|
@pytest.mark.filterwarnings("default::pytest.PytestUnraisableExceptionWarning")
|
2020-11-14 05:47:19 +08:00
|
|
|
def test_unraisable_in_setup(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2023-07-01 11:33:12 +08:00
|
|
|
test_it="""
|
2020-11-14 05:47:19 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
class BrokenDel:
|
|
|
|
def __del__(self):
|
|
|
|
raise ValueError("del is broken")
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def broken_del():
|
|
|
|
obj = BrokenDel()
|
|
|
|
del obj
|
|
|
|
|
|
|
|
def test_it(broken_del): pass
|
|
|
|
def test_2(): pass
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = pytester.runpytest()
|
|
|
|
assert result.ret == 0
|
|
|
|
assert result.parseoutcomes() == {"passed": 2, "warnings": 1}
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*= warnings summary =*",
|
|
|
|
"test_it.py::test_it",
|
|
|
|
" * PytestUnraisableExceptionWarning: Exception ignored in: <function BrokenDel.__del__ at *>",
|
|
|
|
" ",
|
|
|
|
" Traceback (most recent call last):",
|
|
|
|
" ValueError: del is broken",
|
|
|
|
" ",
|
|
|
|
" warnings.warn(pytest.PytestUnraisableExceptionWarning(msg))",
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2023-07-01 11:33:12 +08:00
|
|
|
@pytest.mark.skipif(PYPY, reason="garbage-collection differences make this flaky")
|
2021-05-04 20:27:21 +08:00
|
|
|
@pytest.mark.filterwarnings("default::pytest.PytestUnraisableExceptionWarning")
|
2020-11-14 05:47:19 +08:00
|
|
|
def test_unraisable_in_teardown(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2023-07-01 11:33:12 +08:00
|
|
|
test_it="""
|
2020-11-14 05:47:19 +08:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
class BrokenDel:
|
|
|
|
def __del__(self):
|
|
|
|
raise ValueError("del is broken")
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def broken_del():
|
|
|
|
yield
|
|
|
|
obj = BrokenDel()
|
|
|
|
del obj
|
|
|
|
|
|
|
|
def test_it(broken_del): pass
|
|
|
|
def test_2(): pass
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = pytester.runpytest()
|
|
|
|
assert result.ret == 0
|
|
|
|
assert result.parseoutcomes() == {"passed": 2, "warnings": 1}
|
|
|
|
result.stdout.fnmatch_lines(
|
|
|
|
[
|
|
|
|
"*= warnings summary =*",
|
|
|
|
"test_it.py::test_it",
|
|
|
|
" * PytestUnraisableExceptionWarning: Exception ignored in: <function BrokenDel.__del__ at *>",
|
|
|
|
" ",
|
|
|
|
" Traceback (most recent call last):",
|
|
|
|
" ValueError: del is broken",
|
|
|
|
" ",
|
|
|
|
" warnings.warn(pytest.PytestUnraisableExceptionWarning(msg))",
|
|
|
|
]
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.filterwarnings("error::pytest.PytestUnraisableExceptionWarning")
|
|
|
|
def test_unraisable_warning_error(pytester: Pytester) -> None:
|
|
|
|
pytester.makepyfile(
|
2023-07-01 07:23:18 +08:00
|
|
|
test_it=f"""
|
2020-11-14 05:47:19 +08:00
|
|
|
class BrokenDel:
|
|
|
|
def __del__(self) -> None:
|
|
|
|
raise ValueError("del is broken")
|
|
|
|
|
|
|
|
def test_it() -> None:
|
|
|
|
obj = BrokenDel()
|
|
|
|
del obj
|
2023-07-01 07:23:18 +08:00
|
|
|
{"import gc; gc.collect()" * PYPY}
|
2020-11-14 05:47:19 +08:00
|
|
|
|
|
|
|
def test_2(): pass
|
|
|
|
"""
|
|
|
|
)
|
|
|
|
result = pytester.runpytest()
|
|
|
|
assert result.ret == pytest.ExitCode.TESTS_FAILED
|
|
|
|
assert result.parseoutcomes() == {"passed": 1, "failed": 1}
|