logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

test_tapping.cpp (5781B)


  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. #include "keyboard_report_util.hpp"
  17. #include "keycode.h"
  18. #include "test_common.hpp"
  19. #include "action_tapping.h"
  20. #include "test_keymap_key.hpp"
  21. using testing::_;
  22. using testing::InSequence;
  23. class Tapping : public TestFixture {};
  24. TEST_F(Tapping, TapA_SHFT_T_KeyReportsKey) {
  25. TestDriver driver;
  26. InSequence s;
  27. auto key_shift_hold_p_tap = KeymapKey(0, 7, 0, SFT_T(KC_P));
  28. set_keymap({key_shift_hold_p_tap});
  29. // Tapping keys does nothing on press
  30. key_shift_hold_p_tap.press();
  31. EXPECT_NO_REPORT(driver);
  32. run_one_scan_loop();
  33. // First we get the key press
  34. key_shift_hold_p_tap.release();
  35. EXPECT_REPORT(driver, (KC_P));
  36. // Then the release
  37. EXPECT_EMPTY_REPORT(driver);
  38. run_one_scan_loop();
  39. }
  40. TEST_F(Tapping, HoldA_SHFT_T_KeyReportsShift) {
  41. TestDriver driver;
  42. InSequence s;
  43. auto mod_tap_hold_key = KeymapKey(0, 7, 0, SFT_T(KC_P));
  44. set_keymap({mod_tap_hold_key});
  45. mod_tap_hold_key.press();
  46. // Tapping keys does nothing on press
  47. EXPECT_NO_REPORT(driver);
  48. idle_for(TAPPING_TERM);
  49. EXPECT_REPORT(driver, (KC_LSFT));
  50. run_one_scan_loop();
  51. EXPECT_EMPTY_REPORT(driver);
  52. mod_tap_hold_key.release();
  53. run_one_scan_loop();
  54. }
  55. TEST_F(Tapping, ANewTapWithinTappingTermIsBuggy) {
  56. // See issue #1478 for more information
  57. TestDriver driver;
  58. InSequence s;
  59. auto key_shift_hold_p_tap = KeymapKey(0, 7, 0, SFT_T(KC_P));
  60. set_keymap({key_shift_hold_p_tap});
  61. // Tapping keys does nothing on press
  62. key_shift_hold_p_tap.press();
  63. EXPECT_NO_REPORT(driver);
  64. run_one_scan_loop();
  65. key_shift_hold_p_tap.release();
  66. // First we get the key press
  67. EXPECT_REPORT(driver, (KC_P));
  68. // Then the release
  69. EXPECT_EMPTY_REPORT(driver);
  70. run_one_scan_loop();
  71. // This sends KC_P, even if it should do nothing
  72. key_shift_hold_p_tap.press();
  73. // This test should not succed if everything works correctly
  74. EXPECT_REPORT(driver, (KC_P));
  75. run_one_scan_loop();
  76. key_shift_hold_p_tap.release();
  77. EXPECT_EMPTY_REPORT(driver);
  78. idle_for(TAPPING_TERM + 1);
  79. // On the other hand, nothing is sent if we are outside the tapping term
  80. key_shift_hold_p_tap.press();
  81. EXPECT_NO_REPORT(driver);
  82. run_one_scan_loop();
  83. key_shift_hold_p_tap.release();
  84. // First we get the key press
  85. EXPECT_REPORT(driver, (KC_P));
  86. // Then the release
  87. EXPECT_EMPTY_REPORT(driver);
  88. idle_for(TAPPING_TERM + 1);
  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. key_shift_hold_p_tap.press();
  93. // Shouldn't be called here really
  94. EXPECT_REPORT(driver, (KC_LEFT_SHIFT)).Times(1);
  95. idle_for(TAPPING_TERM);
  96. EXPECT_EMPTY_REPORT(driver);
  97. key_shift_hold_p_tap.release();
  98. run_one_scan_loop();
  99. }
  100. TEST_F(Tapping, TapA_CTL_T_KeyWhileReleasingShift) {
  101. TestDriver driver;
  102. InSequence s;
  103. auto shift_key = KeymapKey(0, 7, 0, KC_LSFT);
  104. auto mod_tap_hold_key = KeymapKey(0, 8, 0, CTL_T(KC_P));
  105. set_keymap({shift_key, mod_tap_hold_key});
  106. shift_key.press();
  107. // Shift is reported
  108. EXPECT_REPORT(driver, (KC_LSFT));
  109. run_one_scan_loop();
  110. VERIFY_AND_CLEAR(driver);
  111. mod_tap_hold_key.press();
  112. // Tapping keys does nothing on press
  113. EXPECT_NO_REPORT(driver);
  114. run_one_scan_loop();
  115. shift_key.release();
  116. // Releasing shift is delayed while tapping is in progress
  117. EXPECT_NO_REPORT(driver);
  118. run_one_scan_loop();
  119. VERIFY_AND_CLEAR(driver);
  120. mod_tap_hold_key.release();
  121. // Releasing mod-tap key reports the tap and releases shift
  122. EXPECT_REPORT(driver, (KC_LSFT, KC_P));
  123. EXPECT_REPORT(driver, (KC_P));
  124. EXPECT_EMPTY_REPORT(driver);
  125. run_one_scan_loop();
  126. VERIFY_AND_CLEAR(driver);
  127. }
  128. TEST_F(Tapping, TapA_CTL_T_KeyWhileReleasingLayer) {
  129. TestDriver driver;
  130. InSequence s;
  131. auto layer_key = KeymapKey(0, 7, 0, MO(1));
  132. auto trans_key = KeymapKey(1, 7, 0, KC_TRNS);
  133. auto mod_tap_hold_key0 = KeymapKey(0, 8, 0, CTL_T(KC_P));
  134. auto mod_tap_hold_key1 = KeymapKey(1, 8, 0, CTL_T(KC_Q));
  135. set_keymap({layer_key, trans_key, mod_tap_hold_key0, mod_tap_hold_key1});
  136. layer_key.press();
  137. // Pressing the layer key does nothing
  138. EXPECT_NO_REPORT(driver);
  139. run_one_scan_loop();
  140. mod_tap_hold_key1.press();
  141. // Tapping layer 1 mod-tap key does nothing on press
  142. EXPECT_NO_REPORT(driver);
  143. run_one_scan_loop();
  144. layer_key.release();
  145. // Releasing layer is delayed while tapping is in progress
  146. EXPECT_NO_REPORT(driver);
  147. run_one_scan_loop();
  148. VERIFY_AND_CLEAR(driver);
  149. mod_tap_hold_key1.release();
  150. // Releasing mod-tap key reports the tap of the layer 1 key
  151. // If delayed layer release is broken, this reports the layer 0 key
  152. EXPECT_REPORT(driver, (KC_Q));
  153. EXPECT_EMPTY_REPORT(driver);
  154. run_one_scan_loop();
  155. VERIFY_AND_CLEAR(driver);
  156. }