test_ok2/testing/test_monkeypatch.py

408 lines
10 KiB
Python
Raw Normal View History

from __future__ import absolute_import, division, print_function
import os
import sys
import textwrap
import six
import pytest
from _pytest.monkeypatch import MonkeyPatch
@pytest.fixture
def mp():
cwd = os.getcwd()
sys_path = list(sys.path)
yield MonkeyPatch()
sys.path[:] = sys_path
os.chdir(cwd)
def test_setattr():
class A(object):
x = 1
monkeypatch = MonkeyPatch()
pytest.raises(AttributeError, "monkeypatch.setattr(A, 'notexists', 2)")
2018-05-23 22:48:46 +08:00
monkeypatch.setattr(A, "y", 2, raising=False)
assert A.y == 2
monkeypatch.undo()
2018-05-23 22:48:46 +08:00
assert not hasattr(A, "y")
monkeypatch = MonkeyPatch()
2018-05-23 22:48:46 +08:00
monkeypatch.setattr(A, "x", 2)
assert A.x == 2
2018-05-23 22:48:46 +08:00
monkeypatch.setattr(A, "x", 3)
assert A.x == 3
monkeypatch.undo()
assert A.x == 1
A.x = 5
monkeypatch.undo() # double-undo makes no modification
assert A.x == 5
class TestSetattrWithImportPath(object):
def test_string_expression(self, monkeypatch):
monkeypatch.setattr("os.path.abspath", lambda x: "hello2")
assert os.path.abspath("123") == "hello2"
def test_string_expression_class(self, monkeypatch):
monkeypatch.setattr("_pytest.config.Config", 42)
import _pytest
2018-05-23 22:48:46 +08:00
assert _pytest.config.Config == 42
def test_unicode_string(self, monkeypatch):
monkeypatch.setattr("_pytest.config.Config", 42)
import _pytest
2018-05-23 22:48:46 +08:00
assert _pytest.config.Config == 42
monkeypatch.delattr("_pytest.config.Config")
def test_wrong_target(self, monkeypatch):
pytest.raises(TypeError, lambda: monkeypatch.setattr(None, None))
def test_unknown_import(self, monkeypatch):
2018-05-23 22:48:46 +08:00
pytest.raises(ImportError, lambda: monkeypatch.setattr("unkn123.classx", None))
def test_unknown_attr(self, monkeypatch):
2018-05-23 22:48:46 +08:00
pytest.raises(
AttributeError, lambda: monkeypatch.setattr("os.path.qweqwe", None)
)
def test_unknown_attr_non_raising(self, monkeypatch):
2015-06-16 05:28:31 +08:00
# https://github.com/pytest-dev/pytest/issues/746
2018-05-23 22:48:46 +08:00
monkeypatch.setattr("os.path.qweqwe", 42, raising=False)
assert os.path.qweqwe == 42
def test_delattr(self, monkeypatch):
monkeypatch.delattr("os.path.abspath")
assert not hasattr(os.path, "abspath")
monkeypatch.undo()
assert os.path.abspath
def test_delattr():
class A(object):
x = 1
monkeypatch = MonkeyPatch()
2018-05-23 22:48:46 +08:00
monkeypatch.delattr(A, "x")
assert not hasattr(A, "x")
monkeypatch.undo()
assert A.x == 1
monkeypatch = MonkeyPatch()
2018-05-23 22:48:46 +08:00
monkeypatch.delattr(A, "x")
pytest.raises(AttributeError, "monkeypatch.delattr(A, 'y')")
2018-05-23 22:48:46 +08:00
monkeypatch.delattr(A, "y", raising=False)
monkeypatch.setattr(A, "x", 5, raising=False)
assert A.x == 5
monkeypatch.undo()
assert A.x == 1
def test_setitem():
2018-05-23 22:48:46 +08:00
d = {"x": 1}
monkeypatch = MonkeyPatch()
2018-05-23 22:48:46 +08:00
monkeypatch.setitem(d, "x", 2)
monkeypatch.setitem(d, "y", 1700)
monkeypatch.setitem(d, "y", 1700)
assert d["x"] == 2
assert d["y"] == 1700
monkeypatch.setitem(d, "x", 3)
assert d["x"] == 3
monkeypatch.undo()
2018-05-23 22:48:46 +08:00
assert d["x"] == 1
assert "y" not in d
d["x"] = 5
monkeypatch.undo()
2018-05-23 22:48:46 +08:00
assert d["x"] == 5
2011-12-17 06:41:23 +08:00
def test_setitem_deleted_meanwhile():
d = {}
monkeypatch = MonkeyPatch()
2018-05-23 22:48:46 +08:00
monkeypatch.setitem(d, "x", 2)
del d["x"]
2011-12-17 06:41:23 +08:00
monkeypatch.undo()
assert not d
@pytest.mark.parametrize("before", [True, False])
def test_setenv_deleted_meanwhile(before):
key = "qwpeoip123"
if before:
os.environ[key] = "world"
2011-12-17 06:41:23 +08:00
monkeypatch = MonkeyPatch()
2018-05-23 22:48:46 +08:00
monkeypatch.setenv(key, "hello")
del os.environ[key]
2011-12-17 06:41:23 +08:00
monkeypatch.undo()
if before:
assert os.environ[key] == "world"
del os.environ[key]
else:
assert key not in os.environ
2011-12-17 06:41:23 +08:00
def test_delitem():
2018-05-23 22:48:46 +08:00
d = {"x": 1}
monkeypatch = MonkeyPatch()
2018-05-23 22:48:46 +08:00
monkeypatch.delitem(d, "x")
assert "x" not in d
monkeypatch.delitem(d, "y", raising=False)
pytest.raises(KeyError, "monkeypatch.delitem(d, 'y')")
assert not d
2018-05-23 22:48:46 +08:00
monkeypatch.setitem(d, "y", 1700)
assert d["y"] == 1700
d["hello"] = "world"
monkeypatch.setitem(d, "x", 1500)
assert d["x"] == 1500
monkeypatch.undo()
2018-05-23 22:48:46 +08:00
assert d == {"hello": "world", "x": 1}
def test_setenv():
monkeypatch = MonkeyPatch()
with pytest.warns(pytest.PytestWarning):
monkeypatch.setenv("XYZ123", 2)
import os
2018-05-23 22:48:46 +08:00
assert os.environ["XYZ123"] == "2"
monkeypatch.undo()
2018-05-23 22:48:46 +08:00
assert "XYZ123" not in os.environ
def test_delenv():
2018-05-23 22:48:46 +08:00
name = "xyz1234"
assert name not in os.environ
monkeypatch = MonkeyPatch()
pytest.raises(KeyError, "monkeypatch.delenv(%r, raising=True)" % name)
monkeypatch.delenv(name, raising=False)
monkeypatch.undo()
os.environ[name] = "1"
try:
monkeypatch = MonkeyPatch()
monkeypatch.delenv(name)
assert name not in os.environ
monkeypatch.setenv(name, "3")
assert os.environ[name] == "3"
monkeypatch.undo()
assert os.environ[name] == "1"
finally:
if name in os.environ:
del os.environ[name]
class TestEnvironWarnings(object):
"""
os.environ keys and values should be native strings, otherwise it will cause problems with other modules (notably
subprocess). On Python 2 os.environ accepts anything without complaining, while Python 3 does the right thing
and raises an error.
"""
VAR_NAME = u"PYTEST_INTERNAL_MY_VAR"
@pytest.mark.skipif(six.PY3, reason="Python 2 only test")
def test_setenv_unicode_key(self, monkeypatch):
with pytest.warns(
pytest.PytestWarning,
match="Environment variable name {!r} should be str".format(self.VAR_NAME),
):
monkeypatch.setenv(self.VAR_NAME, "2")
@pytest.mark.skipif(six.PY3, reason="Python 2 only test")
def test_delenv_unicode_key(self, monkeypatch):
with pytest.warns(
pytest.PytestWarning,
match="Environment variable name {!r} should be str".format(self.VAR_NAME),
):
monkeypatch.delenv(self.VAR_NAME, raising=False)
def test_setenv_non_str_warning(self, monkeypatch):
value = 2
msg = (
"Environment variable value {!r} should be str, converted to str implicitly"
)
with pytest.warns(pytest.PytestWarning, match=msg.format(value)):
monkeypatch.setenv(str(self.VAR_NAME), value)
def test_setenv_prepend():
import os
2018-05-23 22:48:46 +08:00
monkeypatch = MonkeyPatch()
with pytest.warns(pytest.PytestWarning):
monkeypatch.setenv("XYZ123", 2, prepend="-")
2018-05-23 22:48:46 +08:00
assert os.environ["XYZ123"] == "2"
with pytest.warns(pytest.PytestWarning):
monkeypatch.setenv("XYZ123", 3, prepend="-")
2018-05-23 22:48:46 +08:00
assert os.environ["XYZ123"] == "3-2"
monkeypatch.undo()
2018-05-23 22:48:46 +08:00
assert "XYZ123" not in os.environ
def test_monkeypatch_plugin(testdir):
2018-05-23 22:48:46 +08:00
reprec = testdir.inline_runsource(
"""
def test_method(monkeypatch):
assert monkeypatch.__class__.__name__ == "MonkeyPatch"
2018-05-23 22:48:46 +08:00
"""
)
res = reprec.countoutcomes()
assert tuple(res) == (1, 0, 0), res
def test_syspath_prepend(mp):
old = list(sys.path)
2018-05-23 22:48:46 +08:00
mp.syspath_prepend("world")
mp.syspath_prepend("hello")
assert sys.path[0] == "hello"
assert sys.path[1] == "world"
mp.undo()
assert sys.path == old
mp.undo()
assert sys.path == old
def test_syspath_prepend_double_undo(mp):
old_syspath = sys.path[:]
try:
mp.syspath_prepend("hello world")
mp.undo()
sys.path.append("more hello world")
mp.undo()
assert sys.path[-1] == "more hello world"
finally:
sys.path[:] = old_syspath
2012-01-04 19:43:19 +08:00
2012-01-04 19:43:19 +08:00
def test_chdir_with_path_local(mp, tmpdir):
mp.chdir(tmpdir)
assert os.getcwd() == tmpdir.strpath
2012-01-04 19:43:19 +08:00
def test_chdir_with_str(mp, tmpdir):
mp.chdir(tmpdir.strpath)
assert os.getcwd() == tmpdir.strpath
2012-01-04 19:43:19 +08:00
def test_chdir_undo(mp, tmpdir):
cwd = os.getcwd()
mp.chdir(tmpdir)
mp.undo()
assert os.getcwd() == cwd
2012-01-04 19:43:19 +08:00
def test_chdir_double_undo(mp, tmpdir):
mp.chdir(tmpdir.strpath)
mp.undo()
tmpdir.chdir()
mp.undo()
assert os.getcwd() == tmpdir.strpath
def test_issue185_time_breaks(testdir):
2018-05-23 22:48:46 +08:00
testdir.makepyfile(
"""
import time
def test_m(monkeypatch):
def f():
raise Exception
monkeypatch.setattr(time, "time", f)
2018-05-23 22:48:46 +08:00
"""
)
result = testdir.runpytest()
2018-05-23 22:48:46 +08:00
result.stdout.fnmatch_lines(
"""
*1 passed*
2018-05-23 22:48:46 +08:00
"""
)
def test_importerror(testdir):
p = testdir.mkpydir("package")
2018-05-23 22:48:46 +08:00
p.join("a.py").write(
textwrap.dedent(
"""\
import doesnotexist
x = 1
2018-05-23 22:48:46 +08:00
"""
)
)
testdir.tmpdir.join("test_importerror.py").write(
textwrap.dedent(
"""\
def test_importerror(monkeypatch):
monkeypatch.setattr('package.a.x', 2)
2018-05-23 22:48:46 +08:00
"""
)
)
result = testdir.runpytest()
2018-05-23 22:48:46 +08:00
result.stdout.fnmatch_lines(
"""
2016-01-24 02:31:17 +08:00
*import error in package.a: No module named {0}doesnotexist{0}*
2018-05-23 22:48:46 +08:00
""".format(
"'" if sys.version_info > (3, 0) else ""
)
)
class SampleNew(object):
@staticmethod
def hello():
return True
class SampleNewInherit(SampleNew):
pass
class SampleOld(object):
# oldstyle on python2
@staticmethod
def hello():
return True
class SampleOldInherit(SampleOld):
pass
2018-05-23 22:48:46 +08:00
@pytest.mark.parametrize(
"Sample",
[SampleNew, SampleNewInherit, SampleOld, SampleOldInherit],
ids=["new", "new-inherit", "old", "old-inherit"],
)
def test_issue156_undo_staticmethod(Sample):
monkeypatch = MonkeyPatch()
2018-05-23 22:48:46 +08:00
monkeypatch.setattr(Sample, "hello", None)
assert Sample.hello is None
monkeypatch.undo()
assert Sample.hello()
2016-01-24 02:12:10 +08:00
2016-01-24 02:12:10 +08:00
def test_issue1338_name_resolving():
2018-05-23 22:48:46 +08:00
pytest.importorskip("requests")
2016-01-24 02:12:10 +08:00
monkeypatch = MonkeyPatch()
try:
2018-05-23 22:48:46 +08:00
monkeypatch.delattr("requests.sessions.Session.request")
2016-01-24 02:12:10 +08:00
finally:
2016-07-21 09:05:49 +08:00
monkeypatch.undo()
2018-04-11 01:18:05 +08:00
2018-04-13 21:00:07 +08:00
def test_context():
monkeypatch = MonkeyPatch()
2018-04-11 01:18:05 +08:00
import functools
2018-04-13 21:00:07 +08:00
import inspect
2018-04-11 01:18:05 +08:00
2018-04-13 21:00:07 +08:00
with monkeypatch.context() as m:
m.setattr(functools, "partial", 3)
assert not inspect.isclass(functools.partial)
assert inspect.isclass(functools.partial)