aboutsummaryrefslogtreecommitdiff
path: root/lib/python/qmk/tests/test_qmk_keymap.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/qmk/tests/test_qmk_keymap.py')
-rw-r--r--lib/python/qmk/tests/test_qmk_keymap.py32
1 files changed, 16 insertions, 16 deletions
diff --git a/lib/python/qmk/tests/test_qmk_keymap.py b/lib/python/qmk/tests/test_qmk_keymap.py
index f1ecf2937..b9e80df67 100644
--- a/lib/python/qmk/tests/test_qmk_keymap.py
+++ b/lib/python/qmk/tests/test_qmk_keymap.py
@@ -1,38 +1,38 @@
1import qmk.keymap 1import qmk.keymap
2 2
3 3
4def test_template_c_onekey_proton_c(): 4def test_template_c_pytest_basic():
5 templ = qmk.keymap.template_c('handwired/onekey/proton_c') 5 templ = qmk.keymap.template_c('handwired/pytest/basic')
6 assert templ == qmk.keymap.DEFAULT_KEYMAP_C 6 assert templ == qmk.keymap.DEFAULT_KEYMAP_C
7 7
8 8
9def test_template_json_onekey_proton_c(): 9def test_template_json_pytest_basic():
10 templ = qmk.keymap.template_json('handwired/onekey/proton_c') 10 templ = qmk.keymap.template_json('handwired/pytest/basic')
11 assert templ == {'keyboard': 'handwired/onekey/proton_c'} 11 assert templ == {'keyboard': 'handwired/pytest/basic'}
12 12
13 13
14def test_template_c_onekey_pytest(): 14def test_template_c_pytest_has_template():
15 templ = qmk.keymap.template_c('handwired/onekey/pytest') 15 templ = qmk.keymap.template_c('handwired/pytest/has_template')
16 assert templ == '#include QMK_KEYBOARD_H\nconst uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {__KEYMAP_GOES_HERE__};\n' 16 assert templ == '#include QMK_KEYBOARD_H\nconst uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {__KEYMAP_GOES_HERE__};\n'
17 17
18 18
19def test_template_json_onekey_pytest(): 19def test_template_json_pytest_has_template():
20 templ = qmk.keymap.template_json('handwired/onekey/pytest') 20 templ = qmk.keymap.template_json('handwired/pytest/has_template')
21 assert templ == {'keyboard': 'handwired/onekey/pytest', "documentation": "This file is a keymap.json file for handwired/onekey/pytest"} 21 assert templ == {'keyboard': 'handwired/pytest/has_template', "documentation": "This file is a keymap.json file for handwired/pytest/has_template"}
22 22
23 23
24def test_generate_c_onekey_pytest(): 24def test_generate_c_pytest_has_template():
25 templ = qmk.keymap.generate_c('handwired/onekey/pytest', 'LAYOUT', [['KC_A']]) 25 templ = qmk.keymap.generate_c('handwired/pytest/has_template', 'LAYOUT', [['KC_A']])
26 assert templ == '#include QMK_KEYBOARD_H\nconst uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {\t[0] = LAYOUT(KC_A)};\n' 26 assert templ == '#include QMK_KEYBOARD_H\nconst uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {\t[0] = LAYOUT(KC_A)};\n'
27 27
28 28
29def test_generate_json_onekey_pytest(): 29def test_generate_json_pytest_has_template():
30 templ = qmk.keymap.generate_json('default', 'handwired/onekey/pytest', 'LAYOUT', [['KC_A']]) 30 templ = qmk.keymap.generate_json('default', 'handwired/pytest/has_template', 'LAYOUT', [['KC_A']])
31 assert templ == {"keyboard": "handwired/onekey/pytest", "documentation": "This file is a keymap.json file for handwired/onekey/pytest", "keymap": "default", "layout": "LAYOUT", "layers": [["KC_A"]]} 31 assert templ == {"keyboard": "handwired/pytest/has_template", "documentation": "This file is a keymap.json file for handwired/pytest/has_template", "keymap": "default", "layout": "LAYOUT", "layers": [["KC_A"]]}
32 32
33 33
34def test_parse_keymap_c(): 34def test_parse_keymap_c():
35 parsed_keymap_c = qmk.keymap.parse_keymap_c('keyboards/handwired/onekey/keymaps/default/keymap.c') 35 parsed_keymap_c = qmk.keymap.parse_keymap_c('keyboards/handwired/pytest/basic/keymaps/default/keymap.c')
36 assert parsed_keymap_c == {'layers': [{'name': '0', 'layout': 'LAYOUT_ortho_1x1', 'keycodes': ['KC_A']}]} 36 assert parsed_keymap_c == {'layers': [{'name': '0', 'layout': 'LAYOUT_ortho_1x1', 'keycodes': ['KC_A']}]}
37 37
38 38