File: test_cli.py

package info (click to toggle)
bumblebee-status 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,844 kB
  • sloc: python: 13,430; sh: 68; makefile: 29
file content (33 lines) | stat: -rw-r--r-- 709 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import pytest

import util.cli


def test_valid_command():
    assert util.cli.execute("echo test") == "test\n"


def test_utf_command():
    rv = util.cli.execute("echo ÖPmŧß")
    assert util.cli.execute("echo ÖPmŧß") == "ÖPmŧß\n"


def test_invalid_command():
    with pytest.raises(RuntimeError):
        util.cli.execute("i-do-not-exist")


def test_command_exit_code():
    with pytest.raises(RuntimeError):
        util.cli.execute("cat i-do-not-exist")


def test_command_exit_code_no_error():
    util.cli.execute("cat i-do-not-exist", ignore_errors=True)


def test_async():
    assert util.cli.execute("echo test", wait=False) == ""


# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4