forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Mod-Tap combo regression (qmk#20669)
* Add keyevent for combo keyrecord * Fix formatting * Update quantum/process_keycode/process_combo.c Co-authored-by: Sergey Vlasov <[email protected]> * Add combo unit-tests and hot-fix process_record_tap_hint ...as this function tries to lookup the combo keys passed in. This will be refactored in a later pr. --------- Co-authored-by: Sergey Vlasov <[email protected]> Co-authored-by: Stefan Kerkmann <[email protected]>
- Loading branch information
1 parent
6f2a1e4
commit 8a332e6
Showing
6 changed files
with
97 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// Copyright 2023 Stefan Kerkmann (@KarlK90) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#pragma once | ||
|
||
#include "test_common.h" | ||
|
||
#define TAPPING_TERM 200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Copyright 2023 Stefan Kerkmann (@KarlK90) | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
COMBO_ENABLE = yes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// Copyright 2023 Stefan Kerkmann (@KarlK90) | ||
// Copyright 2023 @filterpaper | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#include "keyboard_report_util.hpp" | ||
#include "quantum.h" | ||
#include "keycode.h" | ||
#include "test_common.h" | ||
#include "test_driver.hpp" | ||
#include "test_fixture.hpp" | ||
#include "test_keymap_key.hpp" | ||
|
||
extern "C" { | ||
enum combos { modtest, osmshift, COMBO_LENGTH }; | ||
uint16_t COMBO_LEN = COMBO_LENGTH; | ||
|
||
uint16_t const modtest_combo[] = {KC_Y, KC_U, COMBO_END}; | ||
uint16_t const osmshift_combo[] = {KC_Z, KC_X, COMBO_END}; | ||
|
||
// clang-format off | ||
combo_t key_combos[] = { | ||
[modtest] = COMBO(modtest_combo, RSFT_T(KC_SPACE)), | ||
[osmshift] = COMBO(osmshift_combo, OSM(MOD_LSFT)) | ||
}; | ||
// clang-format on | ||
} | ||
|
||
using testing::_; | ||
using testing::InSequence; | ||
|
||
class Combo : public TestFixture {}; | ||
|
||
TEST_F(Combo, combo_modtest_tapped) { | ||
TestDriver driver; | ||
KeymapKey key_y(0, 0, 1, KC_Y); | ||
KeymapKey key_u(0, 0, 2, KC_U); | ||
set_keymap({key_y, key_u}); | ||
|
||
EXPECT_REPORT(driver, (KC_SPACE)); | ||
EXPECT_EMPTY_REPORT(driver); | ||
tap_combo({key_y, key_u}); | ||
VERIFY_AND_CLEAR(driver); | ||
} | ||
|
||
TEST_F(Combo, combo_modtest_held_longer_than_tapping_term) { | ||
TestDriver driver; | ||
KeymapKey key_y(0, 0, 1, KC_Y); | ||
KeymapKey key_u(0, 0, 2, KC_U); | ||
set_keymap({key_y, key_u}); | ||
|
||
EXPECT_REPORT(driver, (KC_RIGHT_SHIFT)); | ||
EXPECT_EMPTY_REPORT(driver); | ||
tap_combo({key_y, key_u}, TAPPING_TERM + 1); | ||
VERIFY_AND_CLEAR(driver); | ||
} | ||
|
||
TEST_F(Combo, combo_osmshift_tapped) { | ||
TestDriver driver; | ||
KeymapKey key_z(0, 0, 1, KC_Z); | ||
KeymapKey key_x(0, 0, 2, KC_X); | ||
KeymapKey key_i(0, 0, 3, KC_I); | ||
set_keymap({key_z, key_x, key_i}); | ||
|
||
EXPECT_NO_REPORT(driver); | ||
tap_combo({key_z, key_x}); | ||
VERIFY_AND_CLEAR(driver); | ||
|
||
EXPECT_REPORT(driver, (KC_I, KC_LEFT_SHIFT)); | ||
EXPECT_EMPTY_REPORT(driver); | ||
tap_key(key_i); | ||
VERIFY_AND_CLEAR(driver); | ||
} |