本文整理汇总了Python中chaos_monkey.ChaosMonkey.get_all_chaos方法的典型用法代码示例。如果您正苦于以下问题:Python ChaosMonkey.get_all_chaos方法的具体用法?Python ChaosMonkey.get_all_chaos怎么用?Python ChaosMonkey.get_all_chaos使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类chaos_monkey.ChaosMonkey
的用法示例。
在下文中一共展示了ChaosMonkey.get_all_chaos方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: list_all_commands
# 需要导入模块: from chaos_monkey import ChaosMonkey [as 别名]
# 或者: from chaos_monkey.ChaosMonkey import get_all_chaos [as 别名]
def list_all_commands():
"""List all available commands."""
all_chaos, _ = ChaosMonkey.get_all_chaos()
all_groups = ChaosMonkey.get_all_groups()
commands = {}
for group in all_groups:
commands[group] = [[c.command_str, c.description]
for c in all_chaos if c.group == group]
return commands
示例2: test_find_command_wrong_command
# 需要导入模块: from chaos_monkey import ChaosMonkey [as 别名]
# 或者: from chaos_monkey.ChaosMonkey import get_all_chaos [as 别名]
def test_find_command_wrong_command(self):
all_chaos, _ = ChaosMonkey.get_all_chaos()
command = ChaosMonkey._find_command(all_chaos, 'foo')
self.assertEqual(command, None)
示例3: test_find_command
# 需要导入模块: from chaos_monkey import ChaosMonkey [as 别名]
# 或者: from chaos_monkey.ChaosMonkey import get_all_chaos [as 别名]
def test_find_command(self):
all_chaos, _ = ChaosMonkey.get_all_chaos()
command = ChaosMonkey._find_command(all_chaos, 'deny-all')
self.assertEqual(command.command_str, 'deny-all')
示例4: verify_equals_to_all_chaos
# 需要导入模块: from chaos_monkey import ChaosMonkey [as 别名]
# 或者: from chaos_monkey.ChaosMonkey import get_all_chaos [as 别名]
def verify_equals_to_all_chaos(self, chaos):
all_chaos, _ = ChaosMonkey.get_all_chaos()
self.assertEqual(
sorted(all_chaos, key=lambda k: k.command_str),
sorted(chaos, key=lambda k: k.command_str))