mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.1 KiB
Python
55 lines
1.1 KiB
Python
# TODO: header
|
|
|
|
from ansible.playbook.task import Task
|
|
import unittest
|
|
|
|
basic_shell_task = dict(
|
|
name = 'Test Task',
|
|
shell = 'echo hi'
|
|
)
|
|
|
|
class TestTask(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def test_construct_empty_task(self):
|
|
t = Task()
|
|
|
|
def test_construct_task_with_role(self):
|
|
pass
|
|
|
|
def test_construct_task_with_block(self):
|
|
pass
|
|
|
|
def test_construct_task_with_role_and_block(self):
|
|
pass
|
|
|
|
def test_load_simple_task(self):
|
|
t = Task.load(basic_shell_task)
|
|
assert t is not None
|
|
assert t.name == basic_shell_task['name']
|
|
assert t.action == 'shell'
|
|
assert t.args == 'echo hi'
|
|
|
|
def test_can_load_action_kv_form(self):
|
|
pass
|
|
|
|
def test_can_load_action_complex_form(self):
|
|
pass
|
|
|
|
def test_can_load_module_complex_form(self):
|
|
pass
|
|
|
|
def test_local_action_implies_delegate(self):
|
|
pass
|
|
|
|
def test_local_action_conflicts_with_delegate(self):
|
|
pass
|
|
|
|
def test_delegate_to_parses(self):
|
|
pass
|