示例#1
0
 def test_hardcoded_tasks(self, doit_app):
     output = StringIO()
     cmd = TabCompletion(task_loader=FakeLoader(), outstream=output)
     cmd.doit_app = doit_app
     cmd.execute({'shell': 'zsh', 'hardcode_tasks': True}, [])
     got = output.getvalue()
     assert 't1' in got
示例#2
0
 def test_cmds_with_params(self, doit_app):
     output = StringIO()
     cmd = TabCompletion(task_loader=DodoTaskLoader(), outstream=output)
     cmd.doit_app = doit_app
     cmd.execute({'shell': 'zsh', 'hardcode_tasks': False}, [])
     got = output.getvalue()
     assert "tabcompletion: generate script" in got
示例#3
0
 def test_with_dodo__dinamic_tasks(self, doit_app):
     output = StringIO()
     cmd = TabCompletion(task_loader=DodoTaskLoader(), outstream=output)
     cmd.doit_app = doit_app
     cmd.execute({'shell': 'bash', 'hardcode_tasks': False}, [])
     got = output.getvalue()
     assert 'dodof' in got
     assert 't1' not in got
     assert 'tabcompletion' in got
示例#4
0
 def test_cmd_takes_file_args(self, doit_app):
     output = StringIO()
     cmd = TabCompletion(task_loader=FakeLoader(), outstream=output)
     cmd.doit_app = doit_app
     cmd.execute({'shell': 'bash', 'hardcode_tasks': False}, [])
     got = output.getvalue()
     assert """help)
         COMPREPLY=( $(compgen -W "${tasks} ${sub_cmds}" -- $cur) )
         return 0""" in got
     assert """tabcompletion)
         COMPREPLY=( $(compgen -f -- $cur) )
         return 0""" in got
示例#5
0
def test_invalid_shell_option(doit_app):
    cmd = TabCompletion()
    pytest.raises(InvalidCommand, cmd.execute, {
        'shell': 'another_shell',
        'hardcode_tasks': False
    }, [])
示例#6
0
def doit_app(request):
    app = DoitMain()
    app.sub_cmds['tabcompletion'] = TabCompletion()
    app.sub_cmds['help'] = Help()
    return app