You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.9 KiB

  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. keymap_json = {
  16. 'keyboard': 'handwired/pytest/has_template',
  17. 'layout': 'LAYOUT',
  18. 'layers': [['KC_A']],
  19. 'macros': None,
  20. }
  21. templ = qmk.keymap.generate_c(keymap_json)
  22. assert templ == '#include QMK_KEYBOARD_H\nconst uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {\t[0] = LAYOUT(KC_A)};\n'
  23. def test_generate_json_pytest_has_template():
  24. templ = qmk.keymap.generate_json('default', 'handwired/pytest/has_template', 'LAYOUT', [['KC_A']])
  25. 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"]]}
  26. def test_parse_keymap_c():
  27. parsed_keymap_c = qmk.keymap.parse_keymap_c('keyboards/handwired/pytest/basic/keymaps/default/keymap.c')
  28. assert parsed_keymap_c == {'layers': [{'name': '0', 'layout': 'LAYOUT_ortho_1x1', 'keycodes': ['KC_A']}]}
  29. # FIXME(skullydazed): Add a test for qmk.keymap.write that mocks up an FD.