带有`From X IMPORT Y`的Python模拟

Python Mock with `from X import y`(带有`From X IMPORT Y`的Python模拟)
本文介绍了带有`From X IMPORT Y`的Python模拟的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正尝试在我的单元测试中使用Python的mock库,但我看到不一致的结果,这取决于我如何导入我试图修补的目标。我预计这两个print语句都应该返回False,但似乎只有第二个语句返回False

from requests import get
import requests

with mock.patch('requests.get') as get_mock:
    get_mock.return_value.ok = False
    print get('http://asdf.com').ok
    print requests.get('http://asdf.com').ok

推荐答案

根据Where to patchunittest.mock文档,您应该注意修补的内容。

使用

from requests import get
创建原始方法的本地引用(副本)。作者:

with mock.patch('requests.get') as get_mock:

您只修补了requests模块中提供给您的所谓不一致结果中的引用,因为from语句创建的本地引用保持不变。

可以通过patch.object(get)patch('__main__.get')修补本地引用。

这篇关于带有`From X IMPORT Y`的Python模拟的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)