How to use the tomcatmanager.__main__.main function in tomcatmanager

To help you get started, we’ve selected a few tomcatmanager examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github tomcatmanager / tomcatmanager / tests / test_main.py View on Github external
def test_main_version_with_others(tomcat_manager_server, capsys):
    cmdline = '-v -q -u {user} -p {password} {url} list'.format(**tomcat_manager_server)
    argv = cmdline.split(' ')
    with pytest.raises(SystemExit) as exit_e:
        main(argv)
    out, err = capsys.readouterr()
    out = out.splitlines()
    assert exit_e.value.code == 0
    assert out[0] == tm.VERSION_STRING
    assert not err
github tomcatmanager / tomcatmanager / tests / test_main.py View on Github external
def test_main_quiet(tomcat_manager_server, capsys):
    cmdline = '-q -u {user} -p {password} {url} list'.format(**tomcat_manager_server)
    argv = cmdline.split(' ')
    exit_code = main(argv)
    out, err = capsys.readouterr()
    out = out.splitlines()
    assert exit_code == 0
    assert 'Path' in out[0]
    assert not err
github tomcatmanager / tomcatmanager / tests / test_main.py View on Github external
def test_main_user_password_url_command(tomcat_manager_server, capsys):
    cmdline = '-u {user} -p {password} {url} list'.format(**tomcat_manager_server)
    argv = cmdline.split(' ')
    exit_code = main(argv)
    out, err = capsys.readouterr()
    out = out.splitlines()
    err = err.splitlines()
    assert exit_code == 0
    assert 'Path' in out[0]
    assert 'Sessions' in out[0]
    assert '--connected to' in err[0]
github tomcatmanager / tomcatmanager / tests / test_main.py View on Github external
def test_main_echo(tomcat_manager_server, capsys):
    inio = io.StringIO('list\n')
    stdin = sys.stdin
    cmdline = '-e -u {user} -p {password} {url}'.format(**tomcat_manager_server)
    argv = cmdline.split(' ')
    try:
        sys.stdin = inio
        exit_code = main(argv)
    finally:
        sys.stdin = stdin

    out, err = capsys.readouterr()
    out = out.splitlines()
    err = err.splitlines()
    assert exit_code == 0
    assert ' list' in out[0]
    assert 'Path' in out[1]
    assert 'Sessions' in out[1]
    assert '--connected to' in err[0]
github tomcatmanager / tomcatmanager / tests / test_main.py View on Github external
def test_main_debug(tomcat_manager_server, capsys):
    cmdline = '-d -u {user} -p {password} {url} list'.format(**tomcat_manager_server)
    argv = cmdline.split(' ')
    exit_code = main(argv)
    out, err = capsys.readouterr()
    out = out.splitlines()
    assert exit_code == 0
    assert err
    assert 'Path' in out[0]
    assert 'Sessions' in out[0]
github tomcatmanager / tomcatmanager / tests / test_main.py View on Github external
def test_main_stdin(tomcat_manager_server, capsys):
    inio = io.StringIO('list\n')
    stdin = sys.stdin
    cmdline = '-u {user} -p {password} {url}'.format(**tomcat_manager_server)
    argv = cmdline.split(' ')
    try:
        sys.stdin = inio
        exit_code = main(argv)
    finally:
        sys.stdin = stdin

    out, err = capsys.readouterr()
    out = out.splitlines()
    err = err.splitlines()
    assert exit_code == 0
    assert 'Path' in out[0]
    assert 'Sessions' in out[0]
    assert '--connected to' in err[0]
github tomcatmanager / tomcatmanager / tests / test_main.py View on Github external
def test_main_status_to_stdout(tomcat_manager_server, capsys):
    cmdline = '-s -u {user} -p {password} {url} list'.format(**tomcat_manager_server)
    argv = cmdline.split(' ')
    exit_code = main(argv)
    out, _ = capsys.readouterr()
    out = out.splitlines()
    assert exit_code == 0
    assert '--connected to' in out[0]
    assert 'Path' in out[1]
    assert 'Sessions' in out[1]
github tomcatmanager / tomcatmanager / tests / test_main.py View on Github external
def test_main_noargs(mocker):
    mock_cmdloop = mocker.patch('cmd2.Cmd.cmdloop')
    argv = []
    main(argv)
    assert mock_cmdloop.call_count == 1
github tomcatmanager / tomcatmanager / tests / test_main.py View on Github external
def test_main_version(capsys):
    with pytest.raises(SystemExit) as exit_e:
        main(['--version'])
    out, err = capsys.readouterr()
    out = out.splitlines()
    assert exit_e.value.code == 0
    assert out[0] == tm.VERSION_STRING
    assert not err
github tomcatmanager / tomcatmanager / tests / test_main.py View on Github external
def test_main_help(capsys):
    with pytest.raises(SystemExit) as exit_e:
        main(['--help'])
    out, err = capsys.readouterr()
    out = out.splitlines()
    assert exit_e.value.code == 0
    assert 'usage' in out[0]
    assert not err