Files
zsa_qmk_firmware/lib/python/qmk/tests/test_cli_commands.py
T

71 lines
2.0 KiB
Python
Raw Normal View History

2019-09-22 13:25:33 -07:00
import subprocess
2020-03-29 14:29:44 +02:00
from qmk.commands import run
2019-09-22 13:25:33 -07:00
def check_subcommand(command, *args):
cmd = ['bin/qmk', command] + list(args)
2020-03-29 14:29:44 +02:00
return run(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
2019-09-22 13:25:33 -07:00
def test_cformat():
2020-02-22 22:57:19 -06:00
result = check_subcommand('cformat', 'quantum/matrix.c')
assert result.returncode == 0
2019-09-22 13:25:33 -07:00
def test_compile():
assert check_subcommand('compile', '-kb', 'handwired/onekey/pytest', '-km', 'default').returncode == 0
2019-10-04 23:38:34 -07:00
def test_flash():
assert check_subcommand('flash', '-b').returncode == 1
assert check_subcommand('flash').returncode == 1
2019-09-22 13:25:33 -07:00
2019-09-22 13:25:33 -07:00
def test_config():
result = check_subcommand('config')
assert result.returncode == 0
assert 'general.color' in result.stdout
def test_kle2json():
assert check_subcommand('kle2json', 'kle.txt', '-f').returncode == 0
2019-09-22 13:25:33 -07:00
2019-09-22 13:25:33 -07:00
def test_doctor():
2020-02-08 12:43:55 +00:00
result = check_subcommand('doctor', '-n')
2019-09-22 13:25:33 -07:00
assert result.returncode == 0
assert 'QMK Doctor is checking your environment.' in result.stderr
assert 'QMK is ready to go' in result.stderr
def test_hello():
result = check_subcommand('hello')
assert result.returncode == 0
assert 'Hello,' in result.stderr
def test_pyformat():
result = check_subcommand('pyformat')
assert result.returncode == 0
assert 'Successfully formatted the python code' in result.stderr
2019-10-07 14:32:30 -04:00
def test_list_keyboards():
result = check_subcommand('list-keyboards')
2019-10-07 14:32:30 -04:00
assert result.returncode == 0
# check to see if a known keyboard is returned
# this will fail if handwired/onekey/pytest is removed
assert 'handwired/onekey/pytest' in result.stdout
2019-10-13 19:16:19 +02:00
2019-10-13 19:16:19 +02:00
def test_list_keymaps():
result = check_subcommand("list-keymaps", "-kb", "handwired/onekey/pytest")
2019-10-13 19:16:19 +02:00
assert result.returncode == 0
assert "default" and "test" in result.stdout
def test_list_keymaps_no_keyboard_found():
result = check_subcommand("list-keymaps", "-kb", "asdfghjkl")
assert result.returncode == 0
assert "does not exist" in result.stdout