Mocking the super class calls on python(在 python 上模拟超类调用)
问题描述
我正在做一些单元测试,在某些时候我需要模拟一个 super
调用来引发错误,例如:
I am doing some unit testing and at some point I need to mock a super
call to throw an error, for example:
@classmethod
def myfunc(cls, *args, **kwargs)
try:
super(MyClass, cls).my_function(args, kwargs)
except MyException as e:
#...
我正在使用 mocker 库来模拟我的对象,但我还没有找到模拟这个的方法.
I am using the mocker library to mock my objects in general but I haven't found a way to mock this.
推荐答案
我找到了一种方法,有点 hacky 但它有效,我会用我的例子来解释,这是基于 这个响应非常感谢@kindall:
I found a way, sort of hacky but it works, I'll explain with my example, this is based on this response so thanks @kindall:
def my_test(self):
import __builtin__
from mocker import Mocker, KWARGS, ARGS
mymocker = mocker.mock()
mymocker.my_function(ARGS, KWARGS)
mocker.throw(MyException)
def mysuper(*args, **kwargs):
if args and issubclass(MyClass, args[0]):
return mymocker
return original_super(*args, **kwargs)
__builtin__.original_super = super
__builtin__.super = mysuper
with mocker:
MyClass.myfunc()
所以基本上我要做的是检查 super
调用是否来自我要模拟的类,否则只需执行普通的 super
.
so essentially what I do is check if the super
call is from the class I want to mock, else just do a normal super
.
希望这可以帮助某人:)
Hope this helps someone :)
这篇关于在 python 上模拟超类调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 python 上模拟超类调用
基础教程推荐
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 筛选NumPy数组 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01