2017-03-17 09:21:30 +08:00
|
|
|
from __future__ import absolute_import, division, print_function
|
2015-07-29 07:01:11 +08:00
|
|
|
import warnings
|
2016-12-20 20:36:57 +08:00
|
|
|
import re
|
2015-07-29 07:01:11 +08:00
|
|
|
import py
|
2017-05-30 05:59:34 +08:00
|
|
|
import sys
|
|
|
|
|
2015-07-29 07:01:11 +08:00
|
|
|
import pytest
|
2015-08-05 06:27:13 +08:00
|
|
|
from _pytest.recwarn import WarningsRecorder
|
2015-07-29 07:01:11 +08:00
|
|
|
|
2009-09-06 22:59:39 +08:00
|
|
|
|
|
|
|
def test_recwarn_functional(testdir):
|
|
|
|
reprec = testdir.inline_runsource("""
|
|
|
|
import warnings
|
|
|
|
def test_method(recwarn):
|
|
|
|
warnings.warn("hello")
|
|
|
|
warn = recwarn.pop()
|
|
|
|
assert isinstance(warn.message, UserWarning)
|
|
|
|
""")
|
|
|
|
res = reprec.countoutcomes()
|
2017-03-14 06:52:35 +08:00
|
|
|
assert tuple(res) == (1, 0, 0), res
|
2010-07-27 03:15:15 +08:00
|
|
|
|
2015-07-29 07:01:11 +08:00
|
|
|
|
|
|
|
class TestWarningsRecorderChecker(object):
|
2017-03-14 06:52:35 +08:00
|
|
|
def test_recording(self):
|
2015-07-29 07:01:11 +08:00
|
|
|
rec = WarningsRecorder()
|
|
|
|
with rec:
|
|
|
|
assert not rec.list
|
|
|
|
py.std.warnings.warn_explicit("hello", UserWarning, "xyz", 13)
|
|
|
|
assert len(rec.list) == 1
|
|
|
|
py.std.warnings.warn(DeprecationWarning("hello"))
|
|
|
|
assert len(rec.list) == 2
|
|
|
|
warn = rec.pop()
|
|
|
|
assert str(warn.message) == "hello"
|
|
|
|
l = rec.list
|
|
|
|
rec.clear()
|
|
|
|
assert len(rec.list) == 0
|
|
|
|
assert l is rec.list
|
|
|
|
pytest.raises(AssertionError, "rec.pop()")
|
|
|
|
|
|
|
|
def test_typechecking(self):
|
2015-08-05 06:27:13 +08:00
|
|
|
from _pytest.recwarn import WarningsChecker
|
2015-07-29 07:01:11 +08:00
|
|
|
with pytest.raises(TypeError):
|
|
|
|
WarningsChecker(5)
|
|
|
|
with pytest.raises(TypeError):
|
|
|
|
WarningsChecker(('hi', RuntimeWarning))
|
|
|
|
with pytest.raises(TypeError):
|
|
|
|
WarningsChecker([DeprecationWarning, RuntimeWarning])
|
|
|
|
|
|
|
|
def test_invalid_enter_exit(self):
|
|
|
|
# wrap this test in WarningsRecorder to ensure warning state gets reset
|
|
|
|
with WarningsRecorder():
|
|
|
|
with pytest.raises(RuntimeError):
|
|
|
|
rec = WarningsRecorder()
|
|
|
|
rec.__exit__(None, None, None) # can't exit before entering
|
|
|
|
|
|
|
|
with pytest.raises(RuntimeError):
|
|
|
|
rec = WarningsRecorder()
|
|
|
|
with rec:
|
|
|
|
with rec:
|
|
|
|
pass # can't enter twice
|
|
|
|
|
2009-09-06 22:59:39 +08:00
|
|
|
|
2015-11-27 02:27:20 +08:00
|
|
|
class TestDeprecatedCall(object):
|
|
|
|
"""test pytest.deprecated_call()"""
|
2009-09-06 22:59:39 +08:00
|
|
|
|
2015-12-09 08:40:05 +08:00
|
|
|
def dep(self, i, j=None):
|
2015-11-27 02:27:20 +08:00
|
|
|
if i == 0:
|
2015-12-09 08:40:05 +08:00
|
|
|
py.std.warnings.warn("is deprecated", DeprecationWarning,
|
|
|
|
stacklevel=1)
|
2015-11-27 02:27:20 +08:00
|
|
|
return 42
|
2009-09-06 22:59:39 +08:00
|
|
|
|
2015-11-27 02:27:20 +08:00
|
|
|
def dep_explicit(self, i):
|
|
|
|
if i == 0:
|
|
|
|
py.std.warnings.warn_explicit("dep_explicit", category=DeprecationWarning,
|
|
|
|
filename="hello", lineno=3)
|
2015-09-21 21:18:29 +08:00
|
|
|
|
2015-07-29 07:01:11 +08:00
|
|
|
def test_deprecated_call_raises(self):
|
2015-11-27 02:27:20 +08:00
|
|
|
with pytest.raises(AssertionError) as excinfo:
|
2015-12-09 08:40:05 +08:00
|
|
|
pytest.deprecated_call(self.dep, 3, 5)
|
2015-07-29 07:01:11 +08:00
|
|
|
assert str(excinfo).find("did not produce") != -1
|
|
|
|
|
|
|
|
def test_deprecated_call(self):
|
2015-12-09 08:40:05 +08:00
|
|
|
pytest.deprecated_call(self.dep, 0, 5)
|
2015-07-29 07:01:11 +08:00
|
|
|
|
|
|
|
def test_deprecated_call_ret(self):
|
2015-11-27 02:27:20 +08:00
|
|
|
ret = pytest.deprecated_call(self.dep, 0)
|
2015-07-29 07:01:11 +08:00
|
|
|
assert ret == 42
|
|
|
|
|
|
|
|
def test_deprecated_call_preserves(self):
|
|
|
|
onceregistry = py.std.warnings.onceregistry.copy()
|
|
|
|
filters = py.std.warnings.filters[:]
|
|
|
|
warn = py.std.warnings.warn
|
|
|
|
warn_explicit = py.std.warnings.warn_explicit
|
|
|
|
self.test_deprecated_call_raises()
|
|
|
|
self.test_deprecated_call()
|
|
|
|
assert onceregistry == py.std.warnings.onceregistry
|
|
|
|
assert filters == py.std.warnings.filters
|
|
|
|
assert warn is py.std.warnings.warn
|
|
|
|
assert warn_explicit is py.std.warnings.warn_explicit
|
|
|
|
|
|
|
|
def test_deprecated_explicit_call_raises(self):
|
2015-11-27 02:27:20 +08:00
|
|
|
with pytest.raises(AssertionError):
|
|
|
|
pytest.deprecated_call(self.dep_explicit, 3)
|
2015-07-29 07:01:11 +08:00
|
|
|
|
|
|
|
def test_deprecated_explicit_call(self):
|
2015-11-27 02:27:20 +08:00
|
|
|
pytest.deprecated_call(self.dep_explicit, 0)
|
|
|
|
pytest.deprecated_call(self.dep_explicit, 0)
|
2015-07-29 07:01:11 +08:00
|
|
|
|
2015-09-21 21:18:29 +08:00
|
|
|
def test_deprecated_call_as_context_manager_no_warning(self):
|
2017-02-01 20:37:13 +08:00
|
|
|
with pytest.raises(pytest.fail.Exception, matches='^DID NOT WARN'):
|
2015-09-21 21:18:29 +08:00
|
|
|
with pytest.deprecated_call():
|
2015-12-09 03:08:33 +08:00
|
|
|
self.dep(1)
|
2015-09-21 21:18:29 +08:00
|
|
|
|
2017-05-30 09:46:15 +08:00
|
|
|
@pytest.mark.parametrize('warning_type', [PendingDeprecationWarning, DeprecationWarning])
|
|
|
|
@pytest.mark.parametrize('mode', ['context_manager', 'call'])
|
|
|
|
def test_deprecated_call_modes(self, warning_type, mode):
|
2015-11-27 02:27:20 +08:00
|
|
|
def f():
|
2017-05-30 09:46:15 +08:00
|
|
|
warnings.warn(warning_type("hi"))
|
|
|
|
|
|
|
|
if mode == 'call':
|
|
|
|
pytest.deprecated_call(f)
|
|
|
|
else:
|
|
|
|
with pytest.deprecated_call():
|
|
|
|
f()
|
2015-09-29 00:09:44 +08:00
|
|
|
|
2015-09-29 00:24:20 +08:00
|
|
|
def test_deprecated_call_specificity(self):
|
|
|
|
other_warnings = [Warning, UserWarning, SyntaxWarning, RuntimeWarning,
|
|
|
|
FutureWarning, ImportWarning, UnicodeWarning]
|
|
|
|
for warning in other_warnings:
|
2015-11-27 02:27:20 +08:00
|
|
|
def f():
|
|
|
|
py.std.warnings.warn(warning("hi"))
|
2015-09-29 00:24:20 +08:00
|
|
|
with pytest.raises(AssertionError):
|
|
|
|
pytest.deprecated_call(f)
|
|
|
|
|
2015-11-27 02:27:20 +08:00
|
|
|
def test_deprecated_function_already_called(self, testdir):
|
|
|
|
"""deprecated_call should be able to catch a call to a deprecated
|
|
|
|
function even if that function has already been called in the same
|
|
|
|
module. See #1190.
|
|
|
|
"""
|
|
|
|
testdir.makepyfile("""
|
|
|
|
import warnings
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
def deprecated_function():
|
|
|
|
warnings.warn("deprecated", DeprecationWarning)
|
|
|
|
|
|
|
|
def test_one():
|
|
|
|
deprecated_function()
|
|
|
|
|
|
|
|
def test_two():
|
|
|
|
pytest.deprecated_call(deprecated_function)
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest()
|
2017-05-30 05:59:34 +08:00
|
|
|
# for some reason in py26 catch_warnings manages to catch the deprecation warning
|
|
|
|
# from deprecated_function(), even with default filters active (which ignore deprecation
|
|
|
|
# warnings)
|
|
|
|
py26 = sys.version_info[:2] == (2, 6)
|
|
|
|
expected = '*=== 2 passed in *===' if not py26 else '*=== 2 passed, 1 warnings in *==='
|
|
|
|
result.stdout.fnmatch_lines(expected)
|
2015-11-27 02:27:20 +08:00
|
|
|
|
2015-07-29 07:01:11 +08:00
|
|
|
|
|
|
|
class TestWarns(object):
|
|
|
|
def test_strings(self):
|
|
|
|
# different messages, b/c Python suppresses multiple identical warnings
|
|
|
|
source1 = "warnings.warn('w1', RuntimeWarning)"
|
|
|
|
source2 = "warnings.warn('w2', RuntimeWarning)"
|
|
|
|
source3 = "warnings.warn('w3', RuntimeWarning)"
|
|
|
|
pytest.warns(RuntimeWarning, source1)
|
|
|
|
pytest.raises(pytest.fail.Exception,
|
|
|
|
lambda: pytest.warns(UserWarning, source2))
|
|
|
|
pytest.warns(RuntimeWarning, source3)
|
|
|
|
|
|
|
|
def test_function(self):
|
|
|
|
pytest.warns(SyntaxWarning,
|
|
|
|
lambda msg: warnings.warn(msg, SyntaxWarning), "syntax")
|
|
|
|
|
|
|
|
def test_warning_tuple(self):
|
|
|
|
pytest.warns((RuntimeWarning, SyntaxWarning),
|
|
|
|
lambda: warnings.warn('w1', RuntimeWarning))
|
|
|
|
pytest.warns((RuntimeWarning, SyntaxWarning),
|
|
|
|
lambda: warnings.warn('w2', SyntaxWarning))
|
|
|
|
pytest.raises(pytest.fail.Exception,
|
|
|
|
lambda: pytest.warns(
|
|
|
|
(RuntimeWarning, SyntaxWarning),
|
|
|
|
lambda: warnings.warn('w3', UserWarning)))
|
|
|
|
|
|
|
|
def test_as_contextmanager(self):
|
|
|
|
with pytest.warns(RuntimeWarning):
|
|
|
|
warnings.warn("runtime", RuntimeWarning)
|
|
|
|
|
2016-12-20 20:36:57 +08:00
|
|
|
with pytest.warns(UserWarning):
|
|
|
|
warnings.warn("user", UserWarning)
|
|
|
|
|
|
|
|
with pytest.raises(pytest.fail.Exception) as excinfo:
|
2015-07-29 07:01:11 +08:00
|
|
|
with pytest.warns(RuntimeWarning):
|
|
|
|
warnings.warn("user", UserWarning)
|
2016-12-20 20:36:57 +08:00
|
|
|
excinfo.match(r"DID NOT WARN. No warnings of type \(.+RuntimeWarning.+,\) was emitted. "
|
|
|
|
r"The list of emitted warnings is: \[UserWarning\('user',\)\].")
|
2015-07-29 07:01:11 +08:00
|
|
|
|
2016-12-20 20:36:57 +08:00
|
|
|
with pytest.raises(pytest.fail.Exception) as excinfo:
|
2015-07-29 07:01:11 +08:00
|
|
|
with pytest.warns(UserWarning):
|
|
|
|
warnings.warn("runtime", RuntimeWarning)
|
2016-12-20 20:36:57 +08:00
|
|
|
excinfo.match(r"DID NOT WARN. No warnings of type \(.+UserWarning.+,\) was emitted. "
|
|
|
|
r"The list of emitted warnings is: \[RuntimeWarning\('runtime',\)\].")
|
|
|
|
|
|
|
|
with pytest.raises(pytest.fail.Exception) as excinfo:
|
|
|
|
with pytest.warns(UserWarning):
|
|
|
|
pass
|
|
|
|
excinfo.match(r"DID NOT WARN. No warnings of type \(.+UserWarning.+,\) was emitted. "
|
|
|
|
r"The list of emitted warnings is: \[\].")
|
|
|
|
|
|
|
|
warning_classes = (UserWarning, FutureWarning)
|
|
|
|
with pytest.raises(pytest.fail.Exception) as excinfo:
|
|
|
|
with pytest.warns(warning_classes) as warninfo:
|
|
|
|
warnings.warn("runtime", RuntimeWarning)
|
|
|
|
warnings.warn("import", ImportWarning)
|
|
|
|
|
|
|
|
message_template = ("DID NOT WARN. No warnings of type {0} was emitted. "
|
|
|
|
"The list of emitted warnings is: {1}.")
|
|
|
|
excinfo.match(re.escape(message_template.format(warning_classes,
|
|
|
|
[each.message for each in warninfo])))
|
2015-07-29 07:01:11 +08:00
|
|
|
|
|
|
|
def test_record(self):
|
|
|
|
with pytest.warns(UserWarning) as record:
|
|
|
|
warnings.warn("user", UserWarning)
|
|
|
|
|
|
|
|
assert len(record) == 1
|
|
|
|
assert str(record[0].message) == "user"
|
|
|
|
|
|
|
|
def test_record_only(self):
|
|
|
|
with pytest.warns(None) as record:
|
|
|
|
warnings.warn("user", UserWarning)
|
|
|
|
warnings.warn("runtime", RuntimeWarning)
|
2009-09-06 22:59:39 +08:00
|
|
|
|
2015-07-29 07:01:11 +08:00
|
|
|
assert len(record) == 2
|
|
|
|
assert str(record[0].message) == "user"
|
|
|
|
assert str(record[1].message) == "runtime"
|
2015-08-07 03:05:01 +08:00
|
|
|
|
2016-12-20 21:57:48 +08:00
|
|
|
def test_record_by_subclass(self):
|
|
|
|
with pytest.warns(Warning) as record:
|
|
|
|
warnings.warn("user", UserWarning)
|
|
|
|
warnings.warn("runtime", RuntimeWarning)
|
|
|
|
|
|
|
|
assert len(record) == 2
|
|
|
|
assert str(record[0].message) == "user"
|
|
|
|
assert str(record[1].message) == "runtime"
|
|
|
|
|
2016-12-29 16:34:21 +08:00
|
|
|
class MyUserWarning(UserWarning): pass
|
2016-12-29 17:18:33 +08:00
|
|
|
|
2016-12-29 16:34:21 +08:00
|
|
|
class MyRuntimeWarning(RuntimeWarning): pass
|
|
|
|
|
|
|
|
with pytest.warns((UserWarning, RuntimeWarning)) as record:
|
|
|
|
warnings.warn("user", MyUserWarning)
|
|
|
|
warnings.warn("runtime", MyRuntimeWarning)
|
|
|
|
|
|
|
|
assert len(record) == 2
|
|
|
|
assert str(record[0].message) == "user"
|
|
|
|
assert str(record[1].message) == "runtime"
|
|
|
|
|
2016-12-20 21:57:48 +08:00
|
|
|
|
2015-08-07 09:30:01 +08:00
|
|
|
def test_double_test(self, testdir):
|
2015-08-07 03:05:01 +08:00
|
|
|
"""If a test is run again, the warning should still be raised"""
|
2015-08-07 09:30:01 +08:00
|
|
|
testdir.makepyfile('''
|
|
|
|
import pytest
|
|
|
|
import warnings
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('run', [1, 2])
|
|
|
|
def test(run):
|
|
|
|
with pytest.warns(RuntimeWarning):
|
|
|
|
warnings.warn("runtime", RuntimeWarning)
|
|
|
|
''')
|
|
|
|
result = testdir.runpytest()
|
|
|
|
result.stdout.fnmatch_lines(['*2 passed in*'])
|