Update tests for re-emitted warnings
This commit is contained in:
parent
a1b37022af
commit
7022fb455d
|
@ -135,7 +135,8 @@ def warns( # noqa: F811
|
||||||
>>> with pytest.warns(UserWarning, match=r'must be \d+$'):
|
>>> with pytest.warns(UserWarning, match=r'must be \d+$'):
|
||||||
... warnings.warn("value must be 42", UserWarning)
|
... warnings.warn("value must be 42", UserWarning)
|
||||||
|
|
||||||
>>> with pytest.warns(UserWarning, match=r'must be \d+$'):
|
>>> with pytest.warns(UserWarning): # catch re-emitted warning
|
||||||
|
... with pytest.warns(UserWarning, match=r'must be \d+$'):
|
||||||
... warnings.warn("this is not here", UserWarning)
|
... warnings.warn("this is not here", UserWarning)
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
...
|
...
|
||||||
|
@ -327,7 +328,7 @@ class WarningsChecker(WarningsRecorder):
|
||||||
if not self.matches(w):
|
if not self.matches(w):
|
||||||
warnings.warn_explicit(
|
warnings.warn_explicit(
|
||||||
str(w.message),
|
str(w.message),
|
||||||
w.message.__class__,
|
w.message.__class__, # type: ignore
|
||||||
w.filename,
|
w.filename,
|
||||||
w.lineno,
|
w.lineno,
|
||||||
module=w.__module__,
|
module=w.__module__,
|
||||||
|
|
|
@ -203,6 +203,7 @@ class TestDeprecatedCall:
|
||||||
def f():
|
def f():
|
||||||
warnings.warn(warning("hi"))
|
warnings.warn(warning("hi"))
|
||||||
|
|
||||||
|
with pytest.warns(warning):
|
||||||
with pytest.raises(pytest.fail.Exception):
|
with pytest.raises(pytest.fail.Exception):
|
||||||
pytest.deprecated_call(f)
|
pytest.deprecated_call(f)
|
||||||
with pytest.raises(pytest.fail.Exception):
|
with pytest.raises(pytest.fail.Exception):
|
||||||
|
@ -213,7 +214,8 @@ class TestDeprecatedCall:
|
||||||
with pytest.deprecated_call(match=r"must be \d+$"):
|
with pytest.deprecated_call(match=r"must be \d+$"):
|
||||||
warnings.warn("value must be 42", DeprecationWarning)
|
warnings.warn("value must be 42", DeprecationWarning)
|
||||||
|
|
||||||
with pytest.raises(pytest.fail.Exception):
|
with pytest.deprecated_call():
|
||||||
|
with pytest.raises(pytest.fail.Exception, match="DID NOT WARN"):
|
||||||
with pytest.deprecated_call(match=r"must be \d+$"):
|
with pytest.deprecated_call(match=r"must be \d+$"):
|
||||||
warnings.warn("this is not here", DeprecationWarning)
|
warnings.warn("this is not here", DeprecationWarning)
|
||||||
|
|
||||||
|
@ -227,6 +229,7 @@ class TestWarns:
|
||||||
def test_several_messages(self) -> None:
|
def test_several_messages(self) -> None:
|
||||||
# different messages, b/c Python suppresses multiple identical warnings
|
# different messages, b/c Python suppresses multiple identical warnings
|
||||||
pytest.warns(RuntimeWarning, lambda: warnings.warn("w1", RuntimeWarning))
|
pytest.warns(RuntimeWarning, lambda: warnings.warn("w1", RuntimeWarning))
|
||||||
|
with pytest.warns(RuntimeWarning):
|
||||||
with pytest.raises(pytest.fail.Exception):
|
with pytest.raises(pytest.fail.Exception):
|
||||||
pytest.warns(UserWarning, lambda: warnings.warn("w2", RuntimeWarning))
|
pytest.warns(UserWarning, lambda: warnings.warn("w2", RuntimeWarning))
|
||||||
pytest.warns(RuntimeWarning, lambda: warnings.warn("w3", RuntimeWarning))
|
pytest.warns(RuntimeWarning, lambda: warnings.warn("w3", RuntimeWarning))
|
||||||
|
@ -243,6 +246,7 @@ class TestWarns:
|
||||||
pytest.warns(
|
pytest.warns(
|
||||||
(RuntimeWarning, SyntaxWarning), lambda: warnings.warn("w2", SyntaxWarning)
|
(RuntimeWarning, SyntaxWarning), lambda: warnings.warn("w2", SyntaxWarning)
|
||||||
)
|
)
|
||||||
|
with pytest.warns():
|
||||||
pytest.raises(
|
pytest.raises(
|
||||||
pytest.fail.Exception,
|
pytest.fail.Exception,
|
||||||
lambda: pytest.warns(
|
lambda: pytest.warns(
|
||||||
|
@ -258,20 +262,22 @@ class TestWarns:
|
||||||
with pytest.warns(UserWarning):
|
with pytest.warns(UserWarning):
|
||||||
warnings.warn("user", UserWarning)
|
warnings.warn("user", UserWarning)
|
||||||
|
|
||||||
|
with pytest.warns():
|
||||||
with pytest.raises(pytest.fail.Exception) as excinfo:
|
with pytest.raises(pytest.fail.Exception) as excinfo:
|
||||||
with pytest.warns(RuntimeWarning):
|
with pytest.warns(RuntimeWarning):
|
||||||
warnings.warn("user", UserWarning)
|
warnings.warn("user", UserWarning)
|
||||||
excinfo.match(
|
excinfo.match(
|
||||||
r"DID NOT WARN. No warnings of type \(.+RuntimeWarning.+,\) were emitted.\n"
|
r"DID NOT WARN. No warnings of type \(.+RuntimeWarning.+,\) were emitted.\n"
|
||||||
r"The list of emitted warnings is: \[UserWarning\('user',?\)\]."
|
r" Emitted warnings: \[UserWarning\('user',?\)\]."
|
||||||
)
|
)
|
||||||
|
|
||||||
|
with pytest.warns():
|
||||||
with pytest.raises(pytest.fail.Exception) as excinfo:
|
with pytest.raises(pytest.fail.Exception) as excinfo:
|
||||||
with pytest.warns(UserWarning):
|
with pytest.warns(UserWarning):
|
||||||
warnings.warn("runtime", RuntimeWarning)
|
warnings.warn("runtime", RuntimeWarning)
|
||||||
excinfo.match(
|
excinfo.match(
|
||||||
r"DID NOT WARN. No warnings of type \(.+UserWarning.+,\) were emitted.\n"
|
r"DID NOT WARN. No warnings of type \(.+UserWarning.+,\) were emitted.\n"
|
||||||
r"The list of emitted warnings is: \[RuntimeWarning\('runtime',?\)]."
|
r" Emitted warnings: \[RuntimeWarning\('runtime',?\)]."
|
||||||
)
|
)
|
||||||
|
|
||||||
with pytest.raises(pytest.fail.Exception) as excinfo:
|
with pytest.raises(pytest.fail.Exception) as excinfo:
|
||||||
|
@ -279,10 +285,11 @@ class TestWarns:
|
||||||
pass
|
pass
|
||||||
excinfo.match(
|
excinfo.match(
|
||||||
r"DID NOT WARN. No warnings of type \(.+UserWarning.+,\) were emitted.\n"
|
r"DID NOT WARN. No warnings of type \(.+UserWarning.+,\) were emitted.\n"
|
||||||
r"The list of emitted warnings is: \[\]."
|
r" Emitted warnings: \[\]."
|
||||||
)
|
)
|
||||||
|
|
||||||
warning_classes = (UserWarning, FutureWarning)
|
warning_classes = (UserWarning, FutureWarning)
|
||||||
|
with pytest.warns():
|
||||||
with pytest.raises(pytest.fail.Exception) as excinfo:
|
with pytest.raises(pytest.fail.Exception) as excinfo:
|
||||||
with pytest.warns(warning_classes) as warninfo:
|
with pytest.warns(warning_classes) as warninfo:
|
||||||
warnings.warn("runtime", RuntimeWarning)
|
warnings.warn("runtime", RuntimeWarning)
|
||||||
|
@ -291,7 +298,7 @@ class TestWarns:
|
||||||
messages = [each.message for each in warninfo]
|
messages = [each.message for each in warninfo]
|
||||||
expected_str = (
|
expected_str = (
|
||||||
f"DID NOT WARN. No warnings of type {warning_classes} were emitted.\n"
|
f"DID NOT WARN. No warnings of type {warning_classes} were emitted.\n"
|
||||||
f"The list of emitted warnings is: {messages}."
|
f" Emitted warnings: {messages}."
|
||||||
)
|
)
|
||||||
|
|
||||||
assert str(excinfo.value) == expected_str
|
assert str(excinfo.value) == expected_str
|
||||||
|
@ -367,15 +374,18 @@ class TestWarns:
|
||||||
with pytest.warns(UserWarning, match=r"must be \d+$"):
|
with pytest.warns(UserWarning, match=r"must be \d+$"):
|
||||||
warnings.warn("value must be 42", UserWarning)
|
warnings.warn("value must be 42", UserWarning)
|
||||||
|
|
||||||
|
with pytest.warns():
|
||||||
with pytest.raises(pytest.fail.Exception):
|
with pytest.raises(pytest.fail.Exception):
|
||||||
with pytest.warns(UserWarning, match=r"must be \d+$"):
|
with pytest.warns(UserWarning, match=r"must be \d+$"):
|
||||||
warnings.warn("this is not here", UserWarning)
|
warnings.warn("this is not here", UserWarning)
|
||||||
|
|
||||||
|
with pytest.warns():
|
||||||
with pytest.raises(pytest.fail.Exception):
|
with pytest.raises(pytest.fail.Exception):
|
||||||
with pytest.warns(FutureWarning, match=r"must be \d+$"):
|
with pytest.warns(FutureWarning, match=r"must be \d+$"):
|
||||||
warnings.warn("value must be 42", UserWarning)
|
warnings.warn("value must be 42", UserWarning)
|
||||||
|
|
||||||
def test_one_from_multiple_warns(self) -> None:
|
def test_one_from_multiple_warns(self) -> None:
|
||||||
|
with pytest.warns():
|
||||||
with pytest.raises(pytest.fail.Exception, match="DID NOT WARN"):
|
with pytest.raises(pytest.fail.Exception, match="DID NOT WARN"):
|
||||||
with pytest.warns(UserWarning, match=r"aaa"):
|
with pytest.warns(UserWarning, match=r"aaa"):
|
||||||
with pytest.warns(UserWarning, match=r"aaa"):
|
with pytest.warns(UserWarning, match=r"aaa"):
|
||||||
|
@ -384,6 +394,7 @@ class TestWarns:
|
||||||
warnings.warn("aaaaaaaaaa", UserWarning)
|
warnings.warn("aaaaaaaaaa", UserWarning)
|
||||||
|
|
||||||
def test_none_of_multiple_warns(self) -> None:
|
def test_none_of_multiple_warns(self) -> None:
|
||||||
|
with pytest.warns():
|
||||||
with pytest.raises(pytest.fail.Exception, match="DID NOT WARN"):
|
with pytest.raises(pytest.fail.Exception, match="DID NOT WARN"):
|
||||||
with pytest.warns(UserWarning, match=r"aaa"):
|
with pytest.warns(UserWarning, match=r"aaa"):
|
||||||
warnings.warn("bbbbbbbbbb", UserWarning)
|
warnings.warn("bbbbbbbbbb", UserWarning)
|
||||||
|
|
Loading…
Reference in New Issue