Exemplo n.º 1
0
def test_no_argument():
    """ Test no argument command"""
    adhoc_cli = AdHocCLI(['/bin/assible', '-m', 'command', 'localhost'])
    adhoc_cli.parse()
    with pytest.raises(AssibleOptionsError) as exec_info:
        adhoc_cli.run()
    assert 'No argument passed to command module' == str(exec_info.value)
Exemplo n.º 2
0
def test_simple_command():
    """ Test valid command and its run"""
    adhoc_cli = AdHocCLI(
        ['/bin/assible', '-m', 'command', 'localhost', '-a', 'echo "hi"'])
    adhoc_cli.parse()
    ret = adhoc_cli.run()
    assert ret == 0
Exemplo n.º 3
0
def test_play_ds_with_include_role():
    """ Test include_role command with poll"""
    adhoc_cli = AdHocCLI(
        args=['/bin/assible', 'localhost', '-m', 'include_role'])
    adhoc_cli.parse()
    ret = adhoc_cli._play_ds('include_role', None, 2)
    assert ret['name'] == 'Assible Ad-Hoc'
    assert ret['gather_facts'] == 'no'
Exemplo n.º 4
0
def test_did_you_mean_playbook():
    """ Test adhoc with yml file as argument parameter"""
    adhoc_cli = AdHocCLI(['/bin/assible', '-m', 'command', 'localhost.yml'])
    adhoc_cli.parse()
    with pytest.raises(AssibleOptionsError) as exec_info:
        adhoc_cli.run()
    assert 'No argument passed to command module (did you mean to run assible-playbook?)' == str(
        exec_info.value)
Exemplo n.º 5
0
def test_with_command():
    """ Test simple adhoc command"""
    module_name = 'command'
    adhoc_cli = AdHocCLI(
        args=['assible', '-m', module_name, '-vv', 'localhost'])
    adhoc_cli.parse()
    assert context.CLIARGS['module_name'] == module_name
    assert display.verbosity == 2
Exemplo n.º 6
0
def test_parse():
    """ Test adhoc parse"""
    with pytest.raises(ValueError,
                       match='A non-empty list for args is required'):
        adhoc_cli = AdHocCLI([])

    adhoc_cli = AdHocCLI(['assibletest'])
    with pytest.raises(SystemExit):
        adhoc_cli.parse()
Exemplo n.º 7
0
def test_run_import_playbook():
    """ Test import_playbook which is not allowed with ad-hoc command"""
    import_playbook = 'import_playbook'
    adhoc_cli = AdHocCLI(
        args=['/bin/assible', '-m', import_playbook, 'localhost'])
    adhoc_cli.parse()
    with pytest.raises(AssibleOptionsError) as exec_info:
        adhoc_cli.run()
    assert context.CLIARGS['module_name'] == import_playbook
    assert "'%s' is not a valid action for ad-hoc commands" % import_playbook == str(
        exec_info.value)
Exemplo n.º 8
0
def test_play_ds_positive():
    """ Test _play_ds"""
    adhoc_cli = AdHocCLI(args=['/bin/assible', 'localhost', '-m', 'command'])
    adhoc_cli.parse()
    ret = adhoc_cli._play_ds('command', 10, 2)
    assert ret['name'] == 'Assible Ad-Hoc'
    assert ret['tasks'] == [{
        'action': {
            'module': 'command',
            'args': {}
        },
        'async_val': 10,
        'poll': 2
    }]
Exemplo n.º 9
0
def test_run_no_extra_vars():
    adhoc_cli = AdHocCLI(args=['/bin/assible', 'localhost', '-e'])
    with pytest.raises(SystemExit) as exec_info:
        adhoc_cli.parse()
    assert exec_info.value.code == 2