如何模拟同名模块内部函数中调用的函数?

时间:2018-09-14 03:26:22

标签: python mocking python-unittest

我正在尝试使用unittest.mock,但出现错误:

  

AttributeError:没有属性'get_pledge_frequency'

我具有以下文件结构:

pledges/views/
├── __init__.py
├── util.py
└── user_profile.py
pledges/tests/unit/profile
├── __init__.py
└── test_user.py

pledges/views/__init___.py里面,我有

from .views import *
from .account import account
from .splash import splash
from .preferences import preferences
from .user_profile import user_profile

在内部,user_profile.py有一个名为user_profile的函数,该函数在util.py内部的一个名为get_pledge_frequency的函数中如下调用:

def user_profile(request, user_id):
    # some logic

    # !!!!!!!!!!!!!!!!
    a, b = get_pledge_frequency(parameter) # this is the function I want to mock

    # more logic

    return some_value

我在test_user.py内部进行了如下测试:

def test_name():
    with mock.patch(
        "pledges.views.user_profile.get_pledge_frequency"
    ) as get_pledge_frequency:
        get_pledge_frequency.return_value = ([], [])
        response = c.get(
            reverse("pledges:user_profile", kwargs={"user_id": user.id})
            ) # this calls the function user_profile inside pledges.user_profile

     # some asserts to verify functionality

我已经检查了其他问题,但是当有一个称为模块的函数被导入到__init__文件中时,答案并没有涵盖。

那么,有什么办法可以解决这个问题?我基本上已经将文件user_profile.py重命名为profile,然后更改了测试以引用此模块中的函数,但是我想知道是否可以将函数和模块保持相同名称。

1 个答案:

答案 0 :(得分:3)

事实证明,可以在同一个模块内的函数中模拟具有相同名称的函数。 围绕unittest.mock.patch()进行小的包装可以使这种情况发生:

代码:

from unittest import mock
import importlib

def module_patch(*args):
    target = args[0]
    components = target.split('.')
    for i in range(len(components), 0, -1):
        try:
            # attempt to import the module
            imported = importlib.import_module('.'.join(components[:i]))

            # module was imported, let's use it in the patch
            patch = mock.patch(*args)
            patch.getter = lambda: imported
            patch.attribute = '.'.join(components[i:])
            return patch
        except Exception as exc:
            pass

    # did not find a module, just return the default mock
    return mock.patch(*args)

要使用:

代替:

mock.patch("module.a.b")

您需要:

module_patch("module.a.b")

这是如何工作的?

基本思想是尝试从尽可能长的模块路径向最短路径开始的模块导入,如果导入成功,则将该模块用作修补对象。

测试代码:

import module

print('module.a(): ', module.a())
print('module.b(): ', module.b())
print('--')

with module_patch("module.a.b") as module_a_b:
    module_a_b.return_value = 'new_b'
    print('module.a(): ', module.a())
    print('module.b(): ', module.b())

try:
    mock.patch("module.a.b").__enter__()
    assert False, "Attribute error was not raised, test case is broken"
except AttributeError:
    pass

测试module中的文件

# __init__.py
from .a import a
from .a import b


# a.py
def a():
    return b()

def b():
    return 'b'

结果:

module.a():  b
module.b():  b
--
module.a():  new_b
module.b():  b