diff options
| author | Zach White <skullydazed@gmail.com> | 2020-10-25 14:48:44 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-25 14:48:44 -0700 |
| commit | 0c42f91f4ccf98a37f055afb777ed491da56335e (patch) | |
| tree | 547344d80fe7bf75ff3f348eefbc19dbdd346a8a /lib/python/qmk/tests | |
| parent | 8ef82c466e73e555fd74107d4c57e678d7152ecc (diff) | |
| download | qmk_firmware-0c42f91f4ccf98a37f055afb777ed491da56335e.tar.gz qmk_firmware-0c42f91f4ccf98a37f055afb777ed491da56335e.zip | |
Generate api data on each push (#10609)
* add new qmk generate-api command, to generate a complete set of API data.
* Generate api data and push it to the keyboard repo
* fix typo
* Apply suggestions from code review
Co-authored-by: Joel Challis <git@zvecr.com>
* fixup api workflow
* remove file-changes-action
* use a more mainstream github action
* fix yaml error
* Apply suggestions from code review
Co-authored-by: Erovia <Erovia@users.noreply.github.com>
* more uniform date handling
* make flake8 happy
* Update lib/python/qmk/decorators.py
Co-authored-by: Erovia <Erovia@users.noreply.github.com>
Co-authored-by: Joel Challis <git@zvecr.com>
Co-authored-by: Erovia <Erovia@users.noreply.github.com>
Diffstat (limited to 'lib/python/qmk/tests')
| -rw-r--r-- | lib/python/qmk/tests/test_qmk_keymap.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/lib/python/qmk/tests/test_qmk_keymap.py b/lib/python/qmk/tests/test_qmk_keymap.py index 7ef708e0d..f1ecf2937 100644 --- a/lib/python/qmk/tests/test_qmk_keymap.py +++ b/lib/python/qmk/tests/test_qmk_keymap.py | |||
| @@ -1,33 +1,33 @@ | |||
| 1 | import qmk.keymap | 1 | import qmk.keymap |
| 2 | 2 | ||
| 3 | 3 | ||
| 4 | def test_template_onekey_proton_c(): | 4 | def test_template_c_onekey_proton_c(): |
| 5 | templ = qmk.keymap.template('handwired/onekey/proton_c') | 5 | templ = qmk.keymap.template_c('handwired/onekey/proton_c') |
| 6 | assert templ == qmk.keymap.DEFAULT_KEYMAP_C | 6 | assert templ == qmk.keymap.DEFAULT_KEYMAP_C |
| 7 | 7 | ||
| 8 | 8 | ||
| 9 | def test_template_onekey_proton_c_json(): | 9 | def test_template_json_onekey_proton_c(): |
| 10 | templ = qmk.keymap.template('handwired/onekey/proton_c', type='json') | 10 | templ = qmk.keymap.template_json('handwired/onekey/proton_c') |
| 11 | assert templ == {'keyboard': 'handwired/onekey/proton_c'} | 11 | assert templ == {'keyboard': 'handwired/onekey/proton_c'} |
| 12 | 12 | ||
| 13 | 13 | ||
| 14 | def test_template_onekey_pytest(): | 14 | def test_template_c_onekey_pytest(): |
| 15 | templ = qmk.keymap.template('handwired/onekey/pytest') | 15 | templ = qmk.keymap.template_c('handwired/onekey/pytest') |
| 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 | ||
| 19 | def test_template_onekey_pytest_json(): | 19 | def test_template_json_onekey_pytest(): |
| 20 | templ = qmk.keymap.template('handwired/onekey/pytest', type='json') | 20 | templ = qmk.keymap.template_json('handwired/onekey/pytest') |
| 21 | assert templ == {'keyboard': 'handwired/onekey/pytest', "documentation": "This file is a keymap.json file for handwired/onekey/pytest"} | 21 | assert templ == {'keyboard': 'handwired/onekey/pytest', "documentation": "This file is a keymap.json file for handwired/onekey/pytest"} |
| 22 | 22 | ||
| 23 | 23 | ||
| 24 | def test_generate_onekey_pytest(): | 24 | def test_generate_c_onekey_pytest(): |
| 25 | templ = qmk.keymap.generate('handwired/onekey/pytest', 'LAYOUT', [['KC_A']]) | 25 | templ = qmk.keymap.generate_c('handwired/onekey/pytest', '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 | ||
| 29 | def test_generate_onekey_pytest_json(): | 29 | def test_generate_json_onekey_pytest(): |
| 30 | templ = qmk.keymap.generate('handwired/onekey/pytest', 'LAYOUT', [['KC_A']], type='json', keymap='default') | 30 | templ = qmk.keymap.generate_json('default', 'handwired/onekey/pytest', '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/onekey/pytest", "documentation": "This file is a keymap.json file for handwired/onekey/pytest", "keymap": "default", "layout": "LAYOUT", "layers": [["KC_A"]]} |
| 32 | 32 | ||
| 33 | 33 | ||
