test_qmk_keymap.py 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. import qmk.keymap
  2. def test_template_c_pytest_basic():
  3. templ = qmk.keymap.template_c('handwired/pytest/basic')
  4. assert templ == qmk.keymap.DEFAULT_KEYMAP_C
  5. def test_template_json_pytest_basic():
  6. templ = qmk.keymap.template_json('handwired/pytest/basic')
  7. assert templ == {'keyboard': 'handwired/pytest/basic'}
  8. def test_template_c_pytest_has_template():
  9. templ = qmk.keymap.template_c('handwired/pytest/has_template')
  10. assert templ == '#include QMK_KEYBOARD_H\nconst uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {__KEYMAP_GOES_HERE__};\n'
  11. def test_template_json_pytest_has_template():
  12. templ = qmk.keymap.template_json('handwired/pytest/has_template')
  13. assert templ == {'keyboard': 'handwired/pytest/has_template', "documentation": "This file is a keymap.json file for handwired/pytest/has_template"}
  14. def test_generate_c_pytest_has_template():
  15. templ = qmk.keymap.generate_c('handwired/pytest/has_template', 'LAYOUT', [['KC_A']])
  16. assert templ == '#include QMK_KEYBOARD_H\nconst uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {\t[0] = LAYOUT(KC_A)};\n'
  17. def test_generate_json_pytest_has_template():
  18. templ = qmk.keymap.generate_json('default', 'handwired/pytest/has_template', 'LAYOUT', [['KC_A']])
  19. 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"]]}
  20. def test_parse_keymap_c():
  21. parsed_keymap_c = qmk.keymap.parse_keymap_c('keyboards/handwired/pytest/basic/keymaps/default/keymap.c')
  22. assert parsed_keymap_c == {'layers': [{'name': '0', 'layout': 'LAYOUT_ortho_1x1', 'keycodes': ['KC_A']}]}
  23. # FIXME(skullydazed): Add a test for qmk.keymap.write that mocks up an FD.