本文整理汇总了Python中ansibledebugger.interpreter.simple_interpreter.Interpreter.do_l方法的典型用法代码示例。如果您正苦于以下问题:Python Interpreter.do_l方法的具体用法?Python Interpreter.do_l怎么用?Python Interpreter.do_l使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ansibledebugger.interpreter.simple_interpreter.Interpreter
的用法示例。
在下文中一共展示了Interpreter.do_l方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_list
# 需要导入模块: from ansibledebugger.interpreter.simple_interpreter import Interpreter [as 别名]
# 或者: from ansibledebugger.interpreter.simple_interpreter.Interpreter import do_l [as 别名]
def test_list(self, mock_stdout):
task_name = 'test task'
task_mock = Mock(name=task_name)
module_name = 'test module'
module_args = 'ma_k=ma_v'
complex_args = {'ca_k': 'ca_v'}
complex_args_expect = 'ca_k: ca_v'
keyword = {'ignore_errors': False}
keyword_expect = 'ignore_errors: \'False\''
hostname = 'test_host'
actual_host_expect = 'actual_host'
conn_mock = Mock(host=actual_host_expect)
action_plugin_wrapper_info = Mock(conn=conn_mock)
optional_info = {'action_plugin_wrapper': action_plugin_wrapper_info}
groups = ['a', 'b']
groups_expect = 'a,b'
vars = {'inventory_hostname': hostname, 'group_names': groups}
vars.update(keyword)
interpreter = Interpreter(TaskInfo(module_name, module_args, vars, complex_args, task=task_mock),
ErrorInfo(), None, optional_info)
interpreter.do_l(None)
self.assertIn(task_name, mock_stdout.getvalue())
self.assertIn(module_name, mock_stdout.getvalue())
self.assertIn(module_args, mock_stdout.getvalue())
self.assertIn(complex_args_expect, mock_stdout.getvalue())
self.assertIn(keyword_expect, mock_stdout.getvalue())
self.assertIn(hostname, mock_stdout.getvalue())
self.assertIn(actual_host_expect, mock_stdout.getvalue())
self.assertIn(groups_expect, mock_stdout.getvalue())