def test_retryable_without_timeout(self, mock_time, mock_exc_to_code):
mock_time.return_value = 0
mock_exc_to_code.side_effect = lambda e: e.code
to_attempt = 3
mock_call = mock.Mock()
mock_call.side_effect = ([CustomException('', _FAKE_STATUS_CODE_1)] *
(to_attempt - 1) + [mock.DEFAULT])
mock_call.return_value = 1729
retry_options = RetryOptions(
[_FAKE_STATUS_CODE_1],
BackoffSettings(0, 0, 0, None, None, None, None))
my_callable = retry.retryable(mock_call, retry_options)
self.assertEqual(my_callable(None), 1729)
self.assertEqual(to_attempt, mock_call.call_count)
评论列表
文章目录