我正在为现有的库开发单元测试,我想测试一个函数的参数是否匹配某些条件。在我的情况下,要测试的功能是:
class ...
def function(self):
thing = self.method1(self.THING)
thing_obj = self.method2(thing)
self.method3(thing_obj, 1, 2, 3, 4)
对于单元测试,我按以下方式修改了方法1,2和3:
import unittest
from mock import patch, Mock
class ...
def setUp(self):
patcher1 = patch("x.x.x.method1")
self.object_method1_mock = patcher1.start()
self.addCleanup(patcher1.stop)
...
def test_funtion(self)
# ???
在单元测试中,我想提取参数1,2,3,4并比较它们,例如看第三个参数是否小于第四个参数(2 <3)。我将如何使用模拟或其他库继续进行此操作?
答案 0 :(得分:1)
您可以使用call_args
属性从模拟中获取最新的调用参数。如果你想比较self.method3()
调用的参数,那么你应该可以这样做:
def test_function(self):
# Call function under test etc.
...
# Extract the arguments for the last invocation of method3
arg1, arg2, arg3, arg4, arg5 = self.object_method3_mock.call_args[0]
# Perform assertions
self.assertLess(arg3, arg4)
call_args
以及call_args_list
上的更多信息here。