本文整理汇总了Python中otter.tap.api.HealthChecker类的典型用法代码示例。如果您正苦于以下问题:Python HealthChecker类的具体用法?Python HealthChecker怎么用?Python HealthChecker使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了HealthChecker类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_no_checks
def test_no_checks(self):
"""
If there are no checks, HealthChecker returns healthy
"""
checker = HealthChecker(self.clock)
d = checker.health_check()
self.assertEqual(self.successResultOf(d), {'healthy': True})
示例2: test_invalid_check
def test_invalid_check(self):
"""
If an invalid check is added, its health is unhealthy
"""
checker = HealthChecker(self.clock, {'invalid': None})
d = checker.health_check()
self.assertEqual(self.successResultOf(d), {
'healthy': False,
'invalid': {
'healthy': False,
'details': {'reason': mock.ANY}
}
})
示例3: test_synchronous_health_check
def test_synchronous_health_check(self):
"""
Synchronous health checks are supported
"""
checker = HealthChecker(self.clock, {'sync': mock.Mock(return_value=(True, {}))})
d = checker.health_check()
self.assertEqual(self.successResultOf(d), {
'healthy': True,
'sync': {
'healthy': True,
'details': {}
}
})
示例4: test_check_failure
def test_check_failure(self):
"""
If a check raises an exception, its health is unhealthy
"""
checker = HealthChecker(self.clock, {'fail': mock.Mock(side_effect=Exception)})
d = checker.health_check()
self.assertEqual(self.successResultOf(d), {
'healthy': False,
'fail': {
'healthy': False,
'details': {'reason': matches(Contains('Exception'))}
}
})
示例5: test_check_is_timed_out
def test_check_is_timed_out(self):
"""
Each health check is timed out after 15 seconds
"""
checker = HealthChecker(
self.clock, {'a': mock.Mock(return_value=defer.Deferred()),
'b': mock.Mock(return_value=defer.succeed((True, {})))})
d = checker.health_check()
self.assertNoResult(d)
self.clock.advance(16)
r = self.successResultOf(d)
self.assertEqual(r, {
'healthy': False,
'a': {'healthy': False, 'details': {'reason': mock.ANY}},
'b': {'healthy': True, 'details': {}}
})
self.assertIn('a health check timed out', r['a']['details']['reason'])
示例6: test_one_failed_health_fails_overall_health
def test_one_failed_health_fails_overall_health(self):
"""
All health checks must pass in order for the main check to be healthy
"""
checker = HealthChecker(self.clock, {
'healthy_thing': mock.Mock(return_value=(True, {})),
'unhealthy_thing': mock.Mock(return_value=(False, {}))
})
d = checker.health_check()
self.assertEqual(self.successResultOf(d), {
'healthy': False,
'healthy_thing': {
'healthy': True,
'details': {}
},
'unhealthy_thing': {
'healthy': False,
'details': {}
}
})
示例7: test_all_health_passes_means_overall_health_passes
def test_all_health_passes_means_overall_health_passes(self):
"""
When all health checks pass the overall check is healthy
"""
checker = HealthChecker(self.clock, dict([
("check{0}".format(i), mock.Mock(return_value=(True, {})))
for i in range(3)
]))
d = checker.health_check()
self.assertEqual(self.successResultOf(d), {
'healthy': True,
'check0': {
'healthy': True,
'details': {}
},
'check1': {
'healthy': True,
'details': {}
},
'check2': {
'healthy': True,
'details': {}
}
})