我正在嘲笑一种方法。我想在第一次调用时引发异常,但是在异常时,我再次使用不同的参数调用该方法,所以我希望第二次调用正常处理。我需要做什么?
with patch('xblock.runtime.Runtime.construct_xblock_from_class', Mock(side_effect=Exception)):
with patch('xblock.runtime.Runtime.construct_xblock_from_class', Mock(side_effect=[Exception, some_method])):
在第二次调用时,some_method
按原样返回,并且不会使用不同的参数处理数据。
答案 0 :(得分:2)
class Foo(object):
def Method1(self, arg):
pass
def Method2(self, arg):
if not arg:
raise
self.Method1(arg)
def Method3(self, arg):
try:
self.Method2(arg)
except:
self.Method2('some default value')
class FooTest(unittest.TestCase):
def SetUp(self):
self.helper = Foo()
def TestFooMethod3(self):
with mock.patch.object(self.helper, 'Method2',
side_effect=[Exception,self.helper.Method1]
) as mock_object:
self.helper.Method3('fake_arg')
mock_object.assert_has_calls([mock.call('fake_arg'),
mock.call('some default value')])