6

我在嘲笑一种方法。我想在第一次调用时引发异常,但是在异常时,我再次使用不同的参数调用该方法,所以我希望第二次调用能够正常处理。我需要做什么?

代码

试试 1

with patch('xblock.runtime.Runtime.construct_xblock_from_class', Mock(side_effect=Exception)):

试试 2

with patch('xblock.runtime.Runtime.construct_xblock_from_class', Mock(side_effect=[Exception, some_method])):

在第二次调用时,some_method按原样返回,并且不使用不同的参数处理数据。

4

1 回答 1

4
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')])
于 2015-12-07T15:15:19.247 回答