summaryrefslogtreecommitdiff
path: root/tests/basic/test_tapping.cpp
diff options
context:
space:
mode:
authorPascal Getreuer <50221757+getreuer@users.noreply.github.com>2022-06-05 00:14:02 -0700
committerGitHub <noreply@github.com>2022-06-05 09:14:02 +0200
commit95d20e6d8bb1ffaf3024af793daf789ee0b75727 (patch)
tree95d0bb0c179d6f42a3dafa1952caf8a4299b67ac /tests/basic/test_tapping.cpp
parent787165718de4ba532417fb3e04b321c950279237 (diff)
Fix and add unit tests for Caps Word to work with Unicode Map, Auto Shift, Retro Shift. (#17284)
* Fix Caps Word and Unicode Map * Tests for Caps Word + Auto Shift and Unicode Map. * Fix formatting * Add additional keyboard report expectation macros This commit defines five test utilities, EXPECT_REPORT, EXPECT_UNICODE, EXPECT_EMPTY_REPORT, EXPECT_ANY_REPORT and EXPECT_NO_REPORT for use with TestDriver. EXPECT_REPORT sets a gmock expectation that a given keyboard report will be sent. For instance, EXPECT_REPORT(driver, (KC_LSFT, KC_A)); is shorthand for EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_LSFT, KC_A))); EXPECT_UNICODE sets a gmock expectation that a given Unicode code point will be sent using UC_LNX input mode. For instance for U+2013, EXPECT_UNICODE(driver, 0x2013); expects the sequence of keys: "Ctrl+Shift+U, 2, 0, 1, 3, space". EXPECT_EMPTY_REPORT sets a gmock expectation that a given keyboard report will be sent. For instance EXPECT_EMPTY_REPORT(driver); expects a single report without keypresses or modifiers. EXPECT_ANY_REPORT sets a gmock expectation that a arbitrary keyboard report will be sent, without matching its contents. For instance EXPECT_ANY_REPORT(driver).Times(1); expects a single arbitrary keyboard report will be sent. EXPECT_NO_REPORT sets a gmock expectation that no keyboard report will be sent at all. * Add tap_key() and tap_keys() to TestFixture. This commit adds a `tap_key(key)` method to TestFixture that taps a given KeymapKey, optionally with a specified delay between press and release. Similarly, the method `tap_keys(key_a, key_b, key_c)` taps a sequence of KeymapKeys. * Use EXPECT_REPORT, tap_keys, etc. in most tests. This commit uses EXPECT_REPORT, EXPECT_UNICODE, EXPECT_EMPTY_REPORT, EXPECT_NO_REPORT, tap_key() and tap_keys() test utilities from the previous two commits in most tests. Particularly the EXPECT_REPORT macro is frequently useful and makes a nice reduction in boilerplate needed to express many tests. Co-authored-by: David Kosorin <david@kosorin.net>
Diffstat (limited to 'tests/basic/test_tapping.cpp')
-rw-r--r--tests/basic/test_tapping.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/tests/basic/test_tapping.cpp b/tests/basic/test_tapping.cpp
index e4a7e4a9f3..6ff9cfe22b 100644
--- a/tests/basic/test_tapping.cpp
+++ b/tests/basic/test_tapping.cpp
@@ -34,15 +34,15 @@ TEST_F(Tapping, TapA_SHFT_T_KeyReportsKey) {
34 34
35 // Tapping keys does nothing on press 35 // Tapping keys does nothing on press
36 key_shift_hold_p_tap.press(); 36 key_shift_hold_p_tap.press();
37 EXPECT_CALL(driver, send_keyboard_mock(_)).Times(0); 37 EXPECT_NO_REPORT(driver);
38 run_one_scan_loop(); 38 run_one_scan_loop();
39 39
40 // First we get the key press 40 // First we get the key press
41 key_shift_hold_p_tap.release(); 41 key_shift_hold_p_tap.release();
42 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_P))); 42 EXPECT_REPORT(driver, (KC_P));
43 43
44 // Then the release 44 // Then the release
45 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport())); 45 EXPECT_EMPTY_REPORT(driver);
46 run_one_scan_loop(); 46 run_one_scan_loop();
47} 47}
48 48
@@ -56,13 +56,13 @@ TEST_F(Tapping, HoldA_SHFT_T_KeyReportsShift) {
56 mod_tap_hold_key.press(); 56 mod_tap_hold_key.press();
57 57
58 // Tapping keys does nothing on press 58 // Tapping keys does nothing on press
59 EXPECT_CALL(driver, send_keyboard_mock(_)).Times(0); 59 EXPECT_NO_REPORT(driver);
60 idle_for(TAPPING_TERM); 60 idle_for(TAPPING_TERM);
61 61
62 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_LSFT))); 62 EXPECT_REPORT(driver, (KC_LSFT));
63 run_one_scan_loop(); 63 run_one_scan_loop();
64 64
65 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport())); 65 EXPECT_EMPTY_REPORT(driver);
66 mod_tap_hold_key.release(); 66 mod_tap_hold_key.release();
67 run_one_scan_loop(); 67 run_one_scan_loop();
68} 68}
@@ -77,36 +77,36 @@ TEST_F(Tapping, ANewTapWithinTappingTermIsBuggy) {
77 77
78 // Tapping keys does nothing on press 78 // Tapping keys does nothing on press
79 key_shift_hold_p_tap.press(); 79 key_shift_hold_p_tap.press();
80 EXPECT_CALL(driver, send_keyboard_mock(_)).Times(0); 80 EXPECT_NO_REPORT(driver);
81 run_one_scan_loop(); 81 run_one_scan_loop();
82 key_shift_hold_p_tap.release(); 82 key_shift_hold_p_tap.release();
83 83
84 // First we get the key press 84 // First we get the key press
85 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_P))); 85 EXPECT_REPORT(driver, (KC_P));
86 // Then the release 86 // Then the release
87 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport())); 87 EXPECT_EMPTY_REPORT(driver);
88 run_one_scan_loop(); 88 run_one_scan_loop();
89 89
90 // This sends KC_P, even if it should do nothing 90 // This sends KC_P, even if it should do nothing
91 key_shift_hold_p_tap.press(); 91 key_shift_hold_p_tap.press();
92 // This test should not succed if everything works correctly 92 // This test should not succed if everything works correctly
93 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_P))); 93 EXPECT_REPORT(driver, (KC_P));
94 run_one_scan_loop(); 94 run_one_scan_loop();
95 95
96 key_shift_hold_p_tap.release(); 96 key_shift_hold_p_tap.release();
97 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport())); 97 EXPECT_EMPTY_REPORT(driver);
98 idle_for(TAPPING_TERM + 1); 98 idle_for(TAPPING_TERM + 1);
99 99
100 // On the other hand, nothing is sent if we are outside the tapping term 100 // On the other hand, nothing is sent if we are outside the tapping term
101 key_shift_hold_p_tap.press(); 101 key_shift_hold_p_tap.press();
102 EXPECT_CALL(driver, send_keyboard_mock(_)).Times(0); 102 EXPECT_NO_REPORT(driver);
103 run_one_scan_loop(); 103 run_one_scan_loop();
104 key_shift_hold_p_tap.release(); 104 key_shift_hold_p_tap.release();
105 105
106 // First we get the key press 106 // First we get the key press
107 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_P))); 107 EXPECT_REPORT(driver, (KC_P));
108 // Then the release 108 // Then the release
109 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport())); 109 EXPECT_EMPTY_REPORT(driver);
110 idle_for(TAPPING_TERM + 1); 110 idle_for(TAPPING_TERM + 1);
111 111
112 // Now we are geting into strange territory, as the hold registers too early here 112 // Now we are geting into strange territory, as the hold registers too early here
@@ -114,10 +114,10 @@ TEST_F(Tapping, ANewTapWithinTappingTermIsBuggy) {
114 // If TAPPING_TERM + 1 above is changed to TAPPING_TERM or TAPPING_TERM + 2 it doesn't 114 // If TAPPING_TERM + 1 above is changed to TAPPING_TERM or TAPPING_TERM + 2 it doesn't
115 key_shift_hold_p_tap.press(); 115 key_shift_hold_p_tap.press();
116 // Shouldn't be called here really 116 // Shouldn't be called here really
117 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport(KC_LEFT_SHIFT))).Times(1); 117 EXPECT_REPORT(driver, (KC_LEFT_SHIFT)).Times(1);
118 idle_for(TAPPING_TERM); 118 idle_for(TAPPING_TERM);
119 119
120 EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport())); 120 EXPECT_EMPTY_REPORT(driver);
121 key_shift_hold_p_tap.release(); 121 key_shift_hold_p_tap.release();
122 run_one_scan_loop(); 122 run_one_scan_loop();
123} \ No newline at end of file 123}