gpt4 book ai didi

Python 全局模拟函数有效,但本地模拟失败

转载 作者:行者123 更新时间:2023-12-04 16:46:10 24 4
gpt4 key购买 nike

我在“testing_print”目录下有一个简单的源文件“hello.py”,在“Tests”目录下有一个单元测试用例“test_hello.py”。这两个目录都在“test_hello_files”目录下。

我正在尝试为“hello.py”文件编写一个单元测试用例“test_hello.py”,并向它添加一个模拟来伪造“sample_greet1”函数。

如果我全局添加模拟,则测试用例通过,但如果模拟是在本地定义的,则测试用例失败。

你好.py

from import_file import sample_greet1

def greet1():
s = 'hi'
greet=sample_greet1(s)
return greet

test_hello.py
import sys
import pytest
from mock import Mock

impo_class=sys.modules['import_file'] = Mock()
impo_class.sample_greet1 = Mock(return_value = "Prasad") #Test case passes if the mock is here

from testing_print import hello

def test_greet1():
print('impo_class.sample_greet1 ----', impo_class.sample_greet1())
impo_class.sample_greet1 = Mock(return_value = "Prasad") #Test case fails if the mock is here

s = hello.greet1()
assert s == 'Prasad'

我想在函数内部使用本地模拟。请让我知道我做错了什么。

最佳答案

我建议使用补丁装饰器。它将自动用 Mock 对象替换该函数,因此您不必手动导入和更改它。

模拟将作为参数传递给装饰测试 abd 它将是本地的。一旦该功能结束,Mock 将被移除并恢复原始功能。

from unittest.mock import patch
from testing_print import hello

@patch('testing_print.hello.sample_greet1', return_value='Prasad')
def test_greet1(mock):
s = hello.greet1()
assert s == 'Prasad'

关于Python 全局模拟函数有效,但本地模拟失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57953909/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com