从函数内部创建的对象中模拟方法调用(python)

时间:2019-08-08 17:26:09

标签: python mocking python-mock

class Foo:
       def do_work:
          client = Client()
          client.widgets(self.widget_id).parts().get()``

我有上面的代码。 Client()类在另一个包中定义。 我正在尝试使用模拟对它进行单元测试,如下所示:

    magic_mock = MagicMock()
    api_client = Client()
    magic_mock.api_client.widgets().parts().get.return_value = self.generate_mock

不幸的是,它似乎不起作用。有什么更好的方法?

1 个答案:

答案 0 :(得分:1)

如果您的班级位于mymodule.py

# mymodule.py
from othermodule import Client

class Foo:
    def do_work():
        client = Client()
        return client.widgets(self.widget_id).parts().get()

然后,您的测试模块应类似于(generate_mock代替mocked_value的实现):

# test_mymodule.py
from unittest.mock import patch

import mymodule


@patch('mymodule.Client')
def test_client_widgets_parts_get_returned(mocked):
    mocked_value = "foo"
    mocked.return_value.widgets.return_value.parts.return_value.get.return_value = mocked_value
    returned = mymodule.Foo().do_work()
    assert returned == mocked_value

或者不更改您的do_work

@patch('mymodule.Client')
def test_client_widgets_parts_get_called(mocked):
    mymodule.Foo().do_work()
    mocked.return_value.widgets.return_value.parts.return_value.get.assert_called()

P.S。从底部添加堆叠的装饰器:

@patch('mymodule.Other')
@patch('mymodule.Client')
def test_client_widgets_parts_get_called(mocked_client, mocked_other):