你如何用mock模拟只读属性?
我试过:
setattr(obj.__class__, 'property_to_be_mocked', mock.Mock())
但问题是它随后适用于类的所有实例......这打破了我的测试。
你还有别的想法吗?我不想模拟整个对象,只模拟这个特定的属性。
你如何用mock模拟只读属性?
我试过:
setattr(obj.__class__, 'property_to_be_mocked', mock.Mock())
但问题是它随后适用于类的所有实例......这打破了我的测试。
你还有别的想法吗?我不想模拟整个对象,只模拟这个特定的属性。
我认为更好的方法是将属性模拟为PropertyMock
,而不是__get__
直接模拟方法。
它在文档中说明,搜索unittest.mock.PropertyMock
:旨在用作类的属性或其他描述符的模拟。PropertyMock
提供__get__
和__set__
方法,以便您可以在获取时指定返回值。
方法如下:
class MyClass:
@property
def last_transaction(self):
# an expensive and complicated DB query here
pass
def test(unittest.TestCase):
with mock.patch('MyClass.last_transaction', new_callable=PropertyMock) as mock_last_transaction:
mock_last_transaction.return_value = Transaction()
myclass = MyClass()
print myclass.last_transaction
mock_last_transaction.assert_called_once_with()
实际上,答案是(像往常一样)在文档中,只是当我按照他们的示例时,我将补丁应用于实例而不是类。
这是如何做到的:
class MyClass:
@property
def last_transaction(self):
# an expensive and complicated DB query here
pass
在测试套件中:
def test():
# Make sure you patch on MyClass, not on a MyClass instance, otherwise
# you'll get an AttributeError, because mock is using settattr and
# last_transaction is a readonly property so there's no setter.
with mock.patch(MyClass, 'last_transaction') as mock_last_transaction:
mock_last_transaction.__get__ = mock.Mock(return_value=Transaction())
myclass = MyClass()
print myclass.last_transaction
如果要覆盖其属性的对象是模拟对象,则不必使用patch
.
相反,可以创建一个PropertyMock
然后覆盖模拟类型上的属性。例如,要覆盖mock_rows.pages
要返回的属性(mock_page, mock_page,)
:
mock_page = mock.create_autospec(reader.ReadRowsPage)
# TODO: set up mock_page.
mock_pages = mock.PropertyMock(return_value=(mock_page, mock_page,))
type(mock_rows).pages = mock_pages
可能是风格问题,但如果您更喜欢测试中的装饰器,@jamescastlefield 的答案可以更改为:
class MyClass:
@property
def last_transaction(self):
# an expensive and complicated DB query here
pass
class Test(unittest.TestCase):
@mock.patch('MyClass.last_transaction', new_callable=PropertyMock)
def test(self, mock_last_transaction):
mock_last_transaction.return_value = Transaction()
myclass = MyClass()
print myclass.last_transaction
mock_last_transaction.assert_called_once_with()
如果您使用pytest
with pytest-mock
,您可以简化代码并避免使用上下文管理器,即with
语句如下:
def test_name(mocker): # mocker is a fixture included in pytest-mock
mocked_property = mocker.patch(
'MyClass.property_to_be_mocked',
new_callable=mocker.PropertyMock,
return_value='any desired value'
)
o = MyClass()
print(o.property_to_be_mocked) # this will print: any desired value
mocked_property.assert_called_once_with()
如果你需要你的 mocked@property
依赖于原来的__get__
,你可以创建你的自定义MockProperty
class PropertyMock(mock.Mock):
def __get__(self, obj, obj_type=None):
return self(obj, obj_type)
用法:
class A:
@property
def f(self):
return 123
original_get = A.f.__get__
def new_get(self, obj_type=None):
return f'mocked result: {original_get(self, obj_type)}'
with mock.patch('__main__.A.f', new_callable=PropertyMock) as mock_foo:
mock_foo.side_effect = new_get
print(A().f) # mocked result: 123
print(mock_foo.call_count) # 1
如果您不想测试是否访问了模拟属性,您可以简单地使用预期的return_value
.
with mock.patch(MyClass, 'last_transaction', Transaction()):
...
我被引导到这个问题,因为我想在测试中模拟 Python 版本。不确定这是否与这个问题非常相关,但sys.version
显然是只读的(......虽然技术上是“属性”而不是“属性”,我想)。
所以,在仔细阅读了这个地方并尝试了一些愚蠢复杂的东西之后,我意识到答案本身就是简单的:
with mock.patch('sys.version', version_tried):
if version_tried == '2.5.2':
with pytest.raises(SystemExit):
import core.__main__
_, err = capsys.readouterr()
assert 'FATAL' in err and 'too old' in err
...可能会帮助某人。
模拟对象属性的另一种方法是:
import mock
mocked_object = mock.Mock()
mocked_object.some_property = "Property value"
print(mocked_object.some_property)