|
|
@@ -142,9 +142,34 @@ def test_list_keymaps_no_keyboard_found():
|
|
|
|
|
|
|
|
|
def test_json2c():
|
|
|
- result = check_subcommand('json2c', 'keyboards/handwired/pytest/has_template/keymaps/default_json/keymap.json')
|
|
|
+ result = check_subcommand('json2c', 'keyboards/handwired/pytest/basic/keymaps/default_json/keymap.json')
|
|
|
check_returncode(result)
|
|
|
- assert result.stdout == '#include QMK_KEYBOARD_H\nconst uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {\t[0] = LAYOUT_ortho_1x1(KC_A)};\n\n\n'
|
|
|
+ assert result.stdout == """#include QMK_KEYBOARD_H
|
|
|
+#if __has_include("keymap.h")
|
|
|
+# include "keymap.h"
|
|
|
+#endif
|
|
|
+
|
|
|
+
|
|
|
+/* THIS FILE WAS GENERATED!
|
|
|
+ *
|
|
|
+ * This file was generated by qmk json2c. You may or may not want to
|
|
|
+ * edit it directly.
|
|
|
+ */
|
|
|
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
|
+\t[0] = LAYOUT_ortho_1x1(KC_A)
|
|
|
+};
|
|
|
+
|
|
|
+#if defined(ENCODER_ENABLE) && defined(ENCODER_MAP_ENABLE)
|
|
|
+const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
|
|
|
+
|
|
|
+};
|
|
|
+#endif // defined(ENCODER_ENABLE) && defined(ENCODER_MAP_ENABLE)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+"""
|
|
|
|
|
|
|
|
|
def test_json2c_macros():
|
|
|
@@ -156,9 +181,34 @@ def test_json2c_macros():
|
|
|
|
|
|
|
|
|
def test_json2c_stdin():
|
|
|
- result = check_subcommand_stdin('keyboards/handwired/pytest/has_template/keymaps/default_json/keymap.json', 'json2c', '-')
|
|
|
+ result = check_subcommand_stdin('keyboards/handwired/pytest/basic/keymaps/default_json/keymap.json', 'json2c', '-')
|
|
|
check_returncode(result)
|
|
|
- assert result.stdout == '#include QMK_KEYBOARD_H\nconst uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {\t[0] = LAYOUT_ortho_1x1(KC_A)};\n\n\n'
|
|
|
+ assert result.stdout == """#include QMK_KEYBOARD_H
|
|
|
+#if __has_include("keymap.h")
|
|
|
+# include "keymap.h"
|
|
|
+#endif
|
|
|
+
|
|
|
+
|
|
|
+/* THIS FILE WAS GENERATED!
|
|
|
+ *
|
|
|
+ * This file was generated by qmk json2c. You may or may not want to
|
|
|
+ * edit it directly.
|
|
|
+ */
|
|
|
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
|
|
+\t[0] = LAYOUT_ortho_1x1(KC_A)
|
|
|
+};
|
|
|
+
|
|
|
+#if defined(ENCODER_ENABLE) && defined(ENCODER_MAP_ENABLE)
|
|
|
+const uint16_t PROGMEM encoder_map[][NUM_ENCODERS][NUM_DIRECTIONS] = {
|
|
|
+
|
|
|
+};
|
|
|
+#endif // defined(ENCODER_ENABLE) && defined(ENCODER_MAP_ENABLE)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+"""
|
|
|
|
|
|
|
|
|
def test_json2c_wrong_json():
|
|
|
@@ -223,27 +273,15 @@ def test_info_matrix_render():
|
|
|
|
|
|
|
|
|
def test_c2json():
|
|
|
- result = check_subcommand("c2json", "-kb", "handwired/pytest/has_template", "-km", "default", "keyboards/handwired/pytest/has_template/keymaps/default/keymap.c")
|
|
|
+ result = check_subcommand("c2json", "-kb", "handwired/pytest/basic", "-km", "default", "keyboards/handwired/pytest/basic/keymaps/default/keymap.c")
|
|
|
check_returncode(result)
|
|
|
- assert result.stdout.strip() == '{"keyboard": "handwired/pytest/has_template", "documentation": "This file is a keymap.json file for handwired/pytest/has_template", "keymap": "default", "layout": "LAYOUT_ortho_1x1", "layers": [["KC_A"]]}'
|
|
|
-
|
|
|
-
|
|
|
-def test_c2json_nocpp():
|
|
|
- result = check_subcommand("c2json", "--no-cpp", "-kb", "handwired/pytest/has_template", "-km", "default", "keyboards/handwired/pytest/has_template/keymaps/nocpp/keymap.c")
|
|
|
- check_returncode(result)
|
|
|
- assert result.stdout.strip() == '{"keyboard": "handwired/pytest/has_template", "documentation": "This file is a keymap.json file for handwired/pytest/has_template", "keymap": "default", "layout": "LAYOUT", "layers": [["KC_ENTER"]]}'
|
|
|
+ assert result.stdout.strip() == '{"keyboard": "handwired/pytest/basic", "keymap": "default", "layout": "LAYOUT_ortho_1x1", "layers": [["KC_A"]]}'
|
|
|
|
|
|
|
|
|
def test_c2json_stdin():
|
|
|
- result = check_subcommand_stdin("keyboards/handwired/pytest/has_template/keymaps/default/keymap.c", "c2json", "-kb", "handwired/pytest/has_template", "-km", "default", "-")
|
|
|
- check_returncode(result)
|
|
|
- assert result.stdout.strip() == '{"keyboard": "handwired/pytest/has_template", "documentation": "This file is a keymap.json file for handwired/pytest/has_template", "keymap": "default", "layout": "LAYOUT_ortho_1x1", "layers": [["KC_A"]]}'
|
|
|
-
|
|
|
-
|
|
|
-def test_c2json_nocpp_stdin():
|
|
|
- result = check_subcommand_stdin("keyboards/handwired/pytest/has_template/keymaps/nocpp/keymap.c", "c2json", "--no-cpp", "-kb", "handwired/pytest/has_template", "-km", "default", "-")
|
|
|
+ result = check_subcommand_stdin("keyboards/handwired/pytest/basic/keymaps/default/keymap.c", "c2json", "-kb", "handwired/pytest/basic", "-km", "default", "-")
|
|
|
check_returncode(result)
|
|
|
- assert result.stdout.strip() == '{"keyboard": "handwired/pytest/has_template", "documentation": "This file is a keymap.json file for handwired/pytest/has_template", "keymap": "default", "layout": "LAYOUT", "layers": [["KC_ENTER"]]}'
|
|
|
+ assert result.stdout.strip() == '{"keyboard": "handwired/pytest/basic", "keymap": "default", "layout": "LAYOUT_ortho_1x1", "layers": [["KC_A"]]}'
|
|
|
|
|
|
|
|
|
def test_clean():
|