本文整理汇总了Python中chaos_monkey.ChaosMonkey.get_all_commands方法的典型用法代码示例。如果您正苦于以下问题:Python ChaosMonkey.get_all_commands方法的具体用法?Python ChaosMonkey.get_all_commands怎么用?Python ChaosMonkey.get_all_commands使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类chaos_monkey.ChaosMonkey
的用法示例。
在下文中一共展示了ChaosMonkey.get_all_commands方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: filter_commands
# 需要导入模块: from chaos_monkey import ChaosMonkey [as 别名]
# 或者: from chaos_monkey.ChaosMonkey import get_all_commands [as 别名]
def filter_commands(self, include_group=None, exclude_group=None,
include_command=None, exclude_command=None):
"""Perform command selection and exclusion.
See random_chaos() for the description of the parameters.
"""
all_groups = ChaosMonkey.get_all_groups()
all_commands = ChaosMonkey.get_all_commands()
self.chaos_monkey.reset_command_selection()
# If any groups and any commands are not included, assume the intent
# is to include all groups and all commands.
if not include_group and not include_command:
self.chaos_monkey.include_group('all')
if include_group:
include_group = self._validate(include_group, all_groups)
self.chaos_monkey.include_group(include_group)
if exclude_group:
exclude_group = self._validate(exclude_group, all_groups)
self.chaos_monkey.exclude_group(exclude_group)
if include_command:
include_command = self._validate(
include_command, all_commands)
self.chaos_monkey.include_command(include_command)
if exclude_command:
exclude_command = self._validate(
exclude_command, all_commands)
self.chaos_monkey.exclude_command(exclude_command)
示例2: test_list_all_commands
# 需要导入模块: from chaos_monkey import ChaosMonkey [as 别名]
# 或者: from chaos_monkey.ChaosMonkey import get_all_commands [as 别名]
def test_list_all_commands(self):
cmd = Runner.list_all_commands()
self.assertItemsEqual(cmd.keys(), ChaosMonkey.get_all_groups())
all_commands = []
for commands in cmd.values():
for command in commands:
all_commands.extend(command)
self._assert_from_list(ChaosMonkey.get_all_commands(), all_commands)
示例3: test_get_all_commands
# 需要导入模块: from chaos_monkey import ChaosMonkey [as 别名]
# 或者: from chaos_monkey.ChaosMonkey import get_all_commands [as 别名]
def test_get_all_commands(self):
all_commands = ChaosMonkey.get_all_commands()
self.assertItemsEqual(all_commands, self._get_all_command_strings())
示例4: test_display_all_commands
# 需要导入模块: from chaos_monkey import ChaosMonkey [as 别名]
# 或者: from chaos_monkey.ChaosMonkey import get_all_commands [as 别名]
def test_display_all_commands(self):
cmd = display_all_commands()
self._assert_from_list(ChaosMonkey.get_all_groups(), cmd)
self._assert_from_list(ChaosMonkey.get_all_commands(), cmd)
示例5: test_validate_incorrect_command
# 需要导入模块: from chaos_monkey import ChaosMonkey [as 别名]
# 或者: from chaos_monkey.ChaosMonkey import get_all_commands [as 别名]
def test_validate_incorrect_command(self):
commands = "deny-all,monogd,deny-api-server"
all_commands = ChaosMonkey.get_all_commands()
with self.assertRaisesRegexp(
BadRequest, "Invalid value given on command line: monogd"):
Runner._validate(commands, all_commands)
示例6: test_validate_commands
# 需要导入模块: from chaos_monkey import ChaosMonkey [as 别名]
# 或者: from chaos_monkey.ChaosMonkey import get_all_commands [as 别名]
def test_validate_commands(self):
commands = "deny-all,{},deny-api-server".format(Kill.jujud_cmd)
all_commands = ChaosMonkey.get_all_commands()
commands = Runner._validate(commands, all_commands)
self.assertItemsEqual(
commands, ['deny-all', Kill.jujud_cmd, 'deny-api-server'])
示例7: test_validate_command
# 需要导入模块: from chaos_monkey import ChaosMonkey [as 别名]
# 或者: from chaos_monkey.ChaosMonkey import get_all_commands [as 别名]
def test_validate_command(self):
commands = "deny-all"
all_commands = ChaosMonkey.get_all_commands()
commands = Runner._validate(commands, all_commands)
self.assertItemsEqual(commands, ['deny-all'])