diff options
| author | Fred Sundvik <fsundvik@gmail.com> | 2017-07-01 22:25:06 +0300 |
|---|---|---|
| committer | Jack Humbert <jack.humb@gmail.com> | 2017-07-08 21:59:51 -0400 |
| commit | 4e69a8bda6c4003c6b9e33de7db89fe073c970f5 (patch) | |
| tree | 8a01b6dde0195d574686fdd2f9cd1da61b3aa8dc /tests/basic | |
| parent | a62f4496599d4a1880adc5f272f97f81be0586cb (diff) | |
| download | qmk_firmware-4e69a8bda6c4003c6b9e33de7db89fe073c970f5.tar.gz qmk_firmware-4e69a8bda6c4003c6b9e33de7db89fe073c970f5.zip | |
Add basic timing support, and SFT_T tests
Also expose some bugs...
Diffstat (limited to 'tests/basic')
| -rw-r--r-- | tests/basic/config.h | 1 | ||||
| -rw-r--r-- | tests/basic/keymap.c | 10 | ||||
| -rw-r--r-- | tests/basic/keypress.cpp | 9 | ||||
| -rw-r--r-- | tests/basic/tapping.cpp | 96 |
4 files changed, 102 insertions, 14 deletions
diff --git a/tests/basic/config.h b/tests/basic/config.h index a52d8a4fa..e5d018a32 100644 --- a/tests/basic/config.h +++ b/tests/basic/config.h | |||
| @@ -20,5 +20,4 @@ | |||
| 20 | #define MATRIX_ROWS 4 | 20 | #define MATRIX_ROWS 4 |
| 21 | #define MATRIX_COLS 10 | 21 | #define MATRIX_COLS 10 |
| 22 | 22 | ||
| 23 | |||
| 24 | #endif /* TESTS_BASIC_CONFIG_H_ */ | 23 | #endif /* TESTS_BASIC_CONFIG_H_ */ |
diff --git a/tests/basic/keymap.c b/tests/basic/keymap.c index e3a60ccc4..358cbdb59 100644 --- a/tests/basic/keymap.c +++ b/tests/basic/keymap.c | |||
| @@ -23,10 +23,10 @@ | |||
| 23 | 23 | ||
| 24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | 24 | const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
| 25 | [0] = { | 25 | [0] = { |
| 26 | // 0 1 2 3 4 5 6 7 8 9 | 26 | // 0 1 2 3 4 5 6 7 8 9 |
| 27 | {KC_A, KC_B, KC_NO, KC_LSFT, KC_RSFT, KC_LCTL, COMBO1, KC_NO, KC_NO, KC_NO}, | 27 | {KC_A, KC_B, KC_NO, KC_LSFT, KC_RSFT, KC_LCTL, COMBO1, SFT_T(KC_P), KC_NO, KC_NO}, |
| 28 | {KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO}, | 28 | {KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO}, |
| 29 | {KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO}, | 29 | {KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO}, |
| 30 | {KC_C, KC_D, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO}, | 30 | {KC_C, KC_D, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO, KC_NO}, |
| 31 | }, | 31 | }, |
| 32 | }; | 32 | }; |
diff --git a/tests/basic/keypress.cpp b/tests/basic/keypress.cpp index 2bb029d88..2323b7cb4 100644 --- a/tests/basic/keypress.cpp +++ b/tests/basic/keypress.cpp | |||
| @@ -14,14 +14,7 @@ | |||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | 16 | ||
| 17 | #include "gtest/gtest.h" | 17 | #include "test_common.h" |
| 18 | #include "gmock/gmock.h" | ||
| 19 | |||
| 20 | #include "quantum.h" | ||
| 21 | #include "test_driver.h" | ||
| 22 | #include "test_matrix.h" | ||
| 23 | #include "keyboard_report_util.h" | ||
| 24 | #include "test_fixture.h" | ||
| 25 | 18 | ||
| 26 | using testing::_; | 19 | using testing::_; |
| 27 | using testing::Return; | 20 | using testing::Return; |
diff --git a/tests/basic/tapping.cpp b/tests/basic/tapping.cpp new file mode 100644 index 000000000..c158e1718 --- /dev/null +++ b/tests/basic/tapping.cpp | |||
| @@ -0,0 +1,96 @@ | |||
| 1 | /* Copyright 2017 Fred Sundvik | ||
| 2 | * | ||
| 3 | * This program is free software: you can redistribute it and/or modify | ||
| 4 | * it under the terms of the GNU General Public License as published by | ||
| 5 | * the Free Software Foundation, either version 2 of the License, or | ||
| 6 | * (at your option) any later version. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | * You should have received a copy of the GNU General Public License | ||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include "test_common.h" | ||
| 18 | #include "action_tapping.h" | ||
| 19 | |||
| 20 | using testing::_; | ||
| 21 | using testing::InSequence; | ||
| 22 | |||
| 23 | class Tapping : public TestFixture {}; | ||
| 24 | |||
| 25 | TEST_F(Tapping, TapA_SHFT_T_KeyReportsKey) { | ||
| 26 | TestDriver driver; | ||
| 27 | InSequence s; | ||
| 28 | |||
| 29 | press_key(7, 0); | ||
| 30 | // Tapping keys does nothing on press | ||
| 31 | EXPECT_CALL(driver, send_keyboard_mock(_)).Times(0); | ||
| 32 | run_one_scan_loop(); | ||
| 33 | release_key(7, 0); | ||
| 34 | // First we get the key press | ||
| 35 | EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_P))); | ||
| 36 | // Then the release | ||
| 37 | EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport())); | ||
| 38 | run_one_scan_loop(); | ||
| 39 | } | ||
| 40 | |||
| 41 | TEST_F(Tapping, HoldA_SHFT_T_KeyReportsShift) { | ||
| 42 | TestDriver driver; | ||
| 43 | InSequence s; | ||
| 44 | |||
| 45 | press_key(7, 0); | ||
| 46 | // Tapping keys does nothing on press | ||
| 47 | EXPECT_CALL(driver, send_keyboard_mock(_)).Times(0); | ||
| 48 | idle_for(TAPPING_TERM); | ||
| 49 | EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_LSFT))); | ||
| 50 | run_one_scan_loop(); | ||
| 51 | } | ||
| 52 | |||
| 53 | TEST_F(Tapping, ANewTapWithinTappingTermIsBuggy) { | ||
| 54 | TestDriver driver; | ||
| 55 | InSequence s; | ||
| 56 | |||
| 57 | press_key(7, 0); | ||
| 58 | // Tapping keys does nothing on press | ||
| 59 | EXPECT_CALL(driver, send_keyboard_mock(_)).Times(0); | ||
| 60 | run_one_scan_loop(); | ||
| 61 | release_key(7, 0); | ||
| 62 | // First we get the key press | ||
| 63 | EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_P))); | ||
| 64 | // Then the release | ||
| 65 | EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport())); | ||
| 66 | run_one_scan_loop(); | ||
| 67 | |||
| 68 | // This sends KC_P, even if it should do nothing | ||
| 69 | press_key(7, 0); | ||
| 70 | // This test should not succed if everything works correctly | ||
| 71 | EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_P))); | ||
| 72 | run_one_scan_loop(); | ||
| 73 | release_key(7, 0); | ||
| 74 | EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport())); | ||
| 75 | idle_for(TAPPING_TERM + 1); | ||
| 76 | |||
| 77 | // On the other hand, nothing is sent if we are outside the tapping term | ||
| 78 | press_key(7, 0); | ||
| 79 | EXPECT_CALL(driver, send_keyboard_mock(_)).Times(0); | ||
| 80 | run_one_scan_loop(); | ||
| 81 | release_key(7, 0); | ||
| 82 | |||
| 83 | // First we get the key press | ||
| 84 | EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_P))); | ||
| 85 | // Then the release | ||
| 86 | EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport())); | ||
| 87 | idle_for(TAPPING_TERM + 1); | ||
| 88 | |||
| 89 | // Now we are geting into strange territory, as the hold registers too early here | ||
| 90 | // But the stranges part is: | ||
| 91 | // If TAPPING_TERM + 1 above is changed to TAPPING_TERM or TAPPING_TERM + 2 it doesn't | ||
| 92 | press_key(7, 0); | ||
| 93 | // Shouldn't be called here really | ||
| 94 | EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_LSFT))).Times(1); | ||
| 95 | idle_for(TAPPING_TERM); | ||
| 96 | } | ||
