如何在`moock.Mock().call_args`中获取`self`实例?

How to get `self` instance in `mock.Mock().call_args`?(如何在`moock.Mock().call_args`中获取`self`实例?)
本文介绍了如何在`moock.Mock().call_args`中获取`self`实例?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在修补伪类时观察到不一致的行为:

class A:

  def f(self, *args, **kwargs):
    pass

如果我手动修补函数:

call_args_list = []
def mock_fn(*args, **kwargs):
  call_args_list.append(mock.call(*args, **kwargs))

with mock.patch.object(A, 'f', mock_fn):
  A().f(1, 2)

print(call_args_list)  # [call(<__main__.A object at 0x7f0da0c08b50>, 1, 2)]

正如预期的那样,使用self参数(mock_fn(self, 1, 2))调用mock_fn

但是,如果我使用mock.Mock对象,self参数将从调用中删除:

mock_obj = mock.Mock()

with mock.patch.object(A, 'f', mock_obj):
  A().f(1, 2)

print(mock_obj.call_args_list)  # [call(1, 2)]

这感觉不一致。mock_obj称为mock_obj(self, 1, 2),但mock_obj.call_args == call(1, 2)。它从call_args中删除self参数。如何访问绑定方法实例?

推荐答案

with mock.patch.object(A, 'f', autospec=True) as mock_obj:
    A().f(1, 2)

print(mock_obj.call_args_list)  # [call(<__main__.A object at 0x7fb2908fc880>, 1, 2)]

发件人the documentation:

如果您通过autospec=True[...]如果被模拟的函数是从实例中获取的,则它将被转换为绑定方法。它将self作为第一个参数[...]

传入

这篇关于如何在`moock.Mock().call_args`中获取`self`实例?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

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

相关文档推荐

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中安全地调用随机文件上的类型?)