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.
- Loading branch information
1 parent
7c7c630
commit 124bfd2
Showing
29 changed files
with
917 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// Copyright 2024 Dasky (@daskygit) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#pragma once | ||
|
||
#include "test_common.h" |
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 @@ | ||
MOUSEKEY_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,109 @@ | ||
// Copyright 2024 Dasky (@daskygit) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#include "gtest/gtest.h" | ||
#include "mouse_report_util.hpp" | ||
#include "test_common.hpp" | ||
|
||
using testing::_; | ||
|
||
struct MouseKeyExpectations { | ||
int16_t x; | ||
int16_t y; | ||
int16_t h; | ||
int16_t v; | ||
uint16_t button_mask; | ||
}; | ||
|
||
class Mousekey : public TestFixture {}; | ||
class MousekeyParametrized : public ::testing::WithParamInterface<std::pair<KeymapKey, MouseKeyExpectations>>, public Mousekey {}; | ||
|
||
TEST_F(Mousekey, SendMouseNotCalledWhenNoKeyIsPressed) { | ||
TestDriver driver; | ||
EXPECT_NO_MOUSE_REPORT(driver); | ||
run_one_scan_loop(); | ||
} | ||
|
||
TEST_F(Mousekey, PressAndHoldCursorUpIsCorrectlyReported) { | ||
TestDriver driver; | ||
KeymapKey mouse_key = KeymapKey{0, 0, 0, QK_MOUSE_CURSOR_UP}; | ||
|
||
set_keymap({mouse_key}); | ||
|
||
EXPECT_MOUSE_REPORT(driver, (0, -8, 0, 0, 0)); | ||
mouse_key.press(); | ||
run_one_scan_loop(); | ||
|
||
EXPECT_MOUSE_REPORT(driver, (0, -2, 0, 0, 0)); | ||
idle_for(MOUSEKEY_INTERVAL); | ||
|
||
EXPECT_EMPTY_MOUSE_REPORT(driver); | ||
mouse_key.release(); | ||
run_one_scan_loop(); | ||
|
||
VERIFY_AND_CLEAR(driver); | ||
} | ||
|
||
TEST_F(Mousekey, PressAndHoldButtonOneCorrectlyReported) { | ||
TestDriver driver; | ||
KeymapKey mouse_key = KeymapKey{0, 0, 0, QK_MOUSE_BUTTON_1}; | ||
|
||
set_keymap({mouse_key}); | ||
|
||
EXPECT_MOUSE_REPORT(driver, (0, 0, 0, 0, 1)); | ||
mouse_key.press(); | ||
run_one_scan_loop(); | ||
|
||
idle_for(MOUSEKEY_INTERVAL); | ||
|
||
EXPECT_EMPTY_MOUSE_REPORT(driver); | ||
mouse_key.release(); | ||
run_one_scan_loop(); | ||
|
||
VERIFY_AND_CLEAR(driver); | ||
} | ||
|
||
TEST_P(MousekeyParametrized, PressAndReleaseIsCorrectlyReported) { | ||
TestDriver driver; | ||
KeymapKey mouse_key = GetParam().first; | ||
MouseKeyExpectations expectations = GetParam().second; | ||
|
||
set_keymap({mouse_key}); | ||
|
||
EXPECT_MOUSE_REPORT(driver, (expectations.x, expectations.y, expectations.h, expectations.v, expectations.button_mask)); | ||
mouse_key.press(); | ||
run_one_scan_loop(); | ||
|
||
EXPECT_EMPTY_MOUSE_REPORT(driver); | ||
mouse_key.release(); | ||
run_one_scan_loop(); | ||
|
||
EXPECT_NO_MOUSE_REPORT(driver); | ||
run_one_scan_loop(); | ||
|
||
VERIFY_AND_CLEAR(driver); | ||
} | ||
// clang-format off | ||
INSTANTIATE_TEST_CASE_P( | ||
Keys, | ||
MousekeyParametrized, | ||
::testing::Values( | ||
// Key , X, Y, H, V, Buttons Mask | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_BUTTON_1}, MouseKeyExpectations{ 0, 0, 0, 0, 1}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_BUTTON_2}, MouseKeyExpectations{ 0, 0, 0, 0, 2}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_BUTTON_3}, MouseKeyExpectations{ 0, 0, 0, 0, 4}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_BUTTON_4}, MouseKeyExpectations{ 0, 0, 0, 0, 8}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_BUTTON_5}, MouseKeyExpectations{ 0, 0, 0, 0, 16}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_BUTTON_6}, MouseKeyExpectations{ 0, 0, 0, 0, 32}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_BUTTON_7}, MouseKeyExpectations{ 0, 0, 0, 0, 64}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_BUTTON_8}, MouseKeyExpectations{ 0, 0, 0, 0, 128}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_CURSOR_UP}, MouseKeyExpectations{ 0,-8, 0, 0, 0}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_CURSOR_DOWN}, MouseKeyExpectations{ 0, 8, 0, 0, 0}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_CURSOR_LEFT}, MouseKeyExpectations{-8, 0, 0, 0, 0}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_CURSOR_RIGHT}, MouseKeyExpectations{ 8, 0, 0, 0, 0}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_WHEEL_UP}, MouseKeyExpectations{ 0, 0, 0, 1, 0}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_WHEEL_DOWN}, MouseKeyExpectations{ 0, 0, 0,-1, 0}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_WHEEL_LEFT}, MouseKeyExpectations{ 0, 0,-1, 0, 0}), | ||
std::make_pair(KeymapKey{0, 0, 0, QK_MOUSE_WHEEL_RIGHT}, MouseKeyExpectations{ 0, 0, 1, 0, 0}) | ||
)); | ||
// clang-format on |
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,6 @@ | ||
// Copyright 2024 Dasky (@daskygit) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#pragma once | ||
|
||
#include "test_common.h" |
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,9 @@ | ||
// Copyright 2024 Dasky (@daskygit) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#pragma once | ||
|
||
#include "test_common.h" | ||
|
||
#define POINTING_DEVICE_INVERT_X | ||
#define POINTING_DEVICE_ROTATION_90 |
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,2 @@ | ||
POINTING_DEVICE_ENABLE = yes | ||
POINTING_DEVICE_DRIVER = custom |
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,59 @@ | ||
// Copyright 2024 Dasky (@daskygit) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#include "gtest/gtest.h" | ||
#include "mouse_report_util.hpp" | ||
#include "test_common.hpp" | ||
#include "test_pointing_device_driver.h" | ||
|
||
using testing::_; | ||
|
||
struct SimpleReport { | ||
int16_t x; | ||
int16_t y; | ||
int16_t h; | ||
int16_t v; | ||
}; | ||
|
||
class Pointing : public TestFixture {}; | ||
class PointingInvertAndRotateParametrized : public ::testing::WithParamInterface<std::pair<SimpleReport, SimpleReport>>, public Pointing {}; | ||
|
||
TEST_P(PointingInvertAndRotateParametrized, PointingInvertAndRotateOrder) { | ||
TestDriver driver; | ||
SimpleReport input = GetParam().first; | ||
SimpleReport expectations = GetParam().second; | ||
|
||
pd_set_x(input.x); | ||
pd_set_y(input.y); | ||
pd_set_h(input.h); | ||
pd_set_v(input.v); | ||
|
||
EXPECT_MOUSE_REPORT(driver, (expectations.x, expectations.y, expectations.h, expectations.v, 0)); | ||
run_one_scan_loop(); | ||
|
||
// EXPECT_EMPTY_MOUSE_REPORT(driver); | ||
pd_clear_movement(); | ||
run_one_scan_loop(); | ||
|
||
EXPECT_NO_MOUSE_REPORT(driver); | ||
run_one_scan_loop(); | ||
|
||
VERIFY_AND_CLEAR(driver); | ||
} | ||
// clang-format off | ||
INSTANTIATE_TEST_CASE_P( | ||
InvertAndRotate, | ||
PointingInvertAndRotateParametrized, | ||
::testing::Values( | ||
// Input Expected // Actual Result - Rotate 90 then Invert X | ||
std::make_pair(SimpleReport{ -1, 0, 0, 0}, SimpleReport{ 0, 1, 0, 0}), // LEFT - DOWN | ||
std::make_pair(SimpleReport{ 0, -1, 0, 0}, SimpleReport{ 1, 0, 0, 0}), // UP - RIGHT | ||
std::make_pair(SimpleReport{ 1, 0, 0, 0}, SimpleReport{ 0, -1, 0, 0}), // RIGHT - UP | ||
std::make_pair(SimpleReport{ 0, 1, 0, 0}, SimpleReport{ -1, 0, 0, 0}) // DOWN - LEFT | ||
// Input Expected // Invert X then Rotate 90 | ||
// std::make_pair(SimpleReport{ -1, 0, 0, 0}, SimpleReport{ 0, -1, 0, 0}), // LEFT - UP | ||
// std::make_pair(SimpleReport{ 0, -1, 0, 0}, SimpleReport{ -1, 0, 0, 0}), // UP - LEFT | ||
// std::make_pair(SimpleReport{ 1, 0, 0, 0}, SimpleReport{ 0, 1, 0, 0}), // RIGHT - DOWN | ||
// std::make_pair(SimpleReport{ 0, 1, 0, 0}, SimpleReport{ 1, 0, 0, 0}) // DOWN - RIGHT | ||
)); | ||
// clang-format on |
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,9 @@ | ||
// Copyright 2024 Dasky (@daskygit) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#pragma once | ||
|
||
#include "test_common.h" | ||
|
||
#define POINTING_DEVICE_INVERT_X | ||
#define POINTING_DEVICE_INVERT_Y |
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,2 @@ | ||
POINTING_DEVICE_ENABLE = yes | ||
POINTING_DEVICE_DRIVER = custom |
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,53 @@ | ||
// Copyright 2024 Dasky (@daskygit) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#include "gtest/gtest.h" | ||
#include "mouse_report_util.hpp" | ||
#include "test_common.hpp" | ||
#include "test_pointing_device_driver.h" | ||
|
||
using testing::_; | ||
|
||
struct SimpleReport { | ||
int16_t x; | ||
int16_t y; | ||
int16_t h; | ||
int16_t v; | ||
}; | ||
|
||
class Pointing : public TestFixture {}; | ||
class PointingInvertXYParametrized : public ::testing::WithParamInterface<std::pair<SimpleReport, SimpleReport>>, public Pointing {}; | ||
|
||
TEST_P(PointingInvertXYParametrized, PointingInvertXY) { | ||
TestDriver driver; | ||
SimpleReport input = GetParam().first; | ||
SimpleReport expectations = GetParam().second; | ||
|
||
pd_set_x(input.x); | ||
pd_set_y(input.y); | ||
pd_set_h(input.h); | ||
pd_set_v(input.v); | ||
|
||
EXPECT_MOUSE_REPORT(driver, (expectations.x, expectations.y, expectations.h, expectations.v, 0)); | ||
run_one_scan_loop(); | ||
|
||
// EXPECT_EMPTY_MOUSE_REPORT(driver); | ||
pd_clear_movement(); | ||
run_one_scan_loop(); | ||
|
||
EXPECT_NO_MOUSE_REPORT(driver); | ||
run_one_scan_loop(); | ||
|
||
VERIFY_AND_CLEAR(driver); | ||
} | ||
// clang-format off | ||
INSTANTIATE_TEST_CASE_P( | ||
X_Y_XY, | ||
PointingInvertXYParametrized, | ||
::testing::Values( | ||
// Input Expected | ||
std::make_pair(SimpleReport{ 33, 0, 0, 0}, SimpleReport{ -33, 0, 0, 0}), | ||
std::make_pair(SimpleReport{ 0, -127, 0, 0}, SimpleReport{ 0, 127, 0, 0}), | ||
std::make_pair(SimpleReport{ 10, -20, 0, 0}, SimpleReport{ -10, 20, 0, 0}) | ||
)); | ||
// clang-format on |
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 2024 Dasky (@daskygit) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#pragma once | ||
|
||
#include "test_common.h" | ||
|
||
#define POINTING_DEVICE_ROTATION_180 |
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,2 @@ | ||
POINTING_DEVICE_ENABLE = yes | ||
POINTING_DEVICE_DRIVER = custom |
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,55 @@ | ||
// Copyright 2024 Dasky (@daskygit) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#include "gtest/gtest.h" | ||
#include "mouse_report_util.hpp" | ||
#include "test_common.hpp" | ||
#include "test_pointing_device_driver.h" | ||
|
||
using testing::_; | ||
|
||
struct SimpleReport { | ||
int16_t x; | ||
int16_t y; | ||
int16_t h; | ||
int16_t v; | ||
}; | ||
|
||
class Pointing : public TestFixture {}; | ||
class PointingRotateParametrized : public ::testing::WithParamInterface<std::pair<SimpleReport, SimpleReport>>, public Pointing {}; | ||
|
||
TEST_P(PointingRotateParametrized, PointingRotateXY) { | ||
TestDriver driver; | ||
SimpleReport input = GetParam().first; | ||
SimpleReport expectations = GetParam().second; | ||
|
||
pd_set_x(input.x); | ||
pd_set_y(input.y); | ||
pd_set_h(input.h); | ||
pd_set_v(input.v); | ||
|
||
EXPECT_MOUSE_REPORT(driver, (expectations.x, expectations.y, expectations.h, expectations.v, 0)); | ||
run_one_scan_loop(); | ||
|
||
// EXPECT_EMPTY_MOUSE_REPORT(driver); | ||
pd_clear_movement(); | ||
run_one_scan_loop(); | ||
|
||
EXPECT_NO_MOUSE_REPORT(driver); | ||
run_one_scan_loop(); | ||
|
||
VERIFY_AND_CLEAR(driver); | ||
} | ||
// clang-format off | ||
INSTANTIATE_TEST_CASE_P( | ||
Rotate180, | ||
PointingRotateParametrized, | ||
::testing::Values( | ||
// Input Expected | ||
// Rotate Clockwise | ||
std::make_pair(SimpleReport{ 0,-1, 0, 0}, SimpleReport{ 0, 1, 0, 0}), // UP - DOWN | ||
std::make_pair(SimpleReport{ 0, 1, 0, 0}, SimpleReport{ 0,-1, 0, 0}), // DOWN - UP | ||
std::make_pair(SimpleReport{ 1, 0, 0, 0}, SimpleReport{-1, 0, 0, 0}), // RIGHT - LEFT | ||
std::make_pair(SimpleReport{ -1, 0, 0, 0}, SimpleReport{ 1, 0, 0, 0}) // LEFT - RIGHT | ||
)); | ||
// clang-format on |
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 2024 Dasky (@daskygit) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
#pragma once | ||
|
||
#include "test_common.h" | ||
|
||
#define POINTING_DEVICE_ROTATION_270 |
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,2 @@ | ||
POINTING_DEVICE_ENABLE = yes | ||
POINTING_DEVICE_DRIVER = custom |
Oops, something went wrong.