From ba65bf46d24ca29046a8459fdf30ec986da9acbe Mon Sep 17 00:00:00 2001 From: Michael Richters Date: Tue, 6 Apr 2021 19:10:01 -0500 Subject: [PATCH] Update testcases for TopsyTurvy plugin Signed-off-by: Michael Richters --- tests/plugins/TopsyTurvy/basic/basic.ino | 4 +- tests/plugins/TopsyTurvy/basic/test.ktest | 284 ++++++++++++++++++++++ 2 files changed, 286 insertions(+), 2 deletions(-) diff --git a/tests/plugins/TopsyTurvy/basic/basic.ino b/tests/plugins/TopsyTurvy/basic/basic.ino index ad1cb607..22af9114 100644 --- a/tests/plugins/TopsyTurvy/basic/basic.ino +++ b/tests/plugins/TopsyTurvy/basic/basic.ino @@ -25,8 +25,8 @@ KEYMAPS( ( TOPSY(1), TOPSY(2), ___, ___, ___, ___, ___, Key_A, Key_B, ___, ___, ___, ___, ___, - Key_LeftShift, ___, ___, ___, ___, ___, - ___, ___, ___, ___, ___, ___, ___, + Key_LeftShift, Key_RightShift, Key_LeftAlt, Key_Meh, ___, ___, + LSHIFT(Key_X), LCTRL(Key_Y), ___, ___, ___, ___, ___, ___, ___, ___, ___, ___, diff --git a/tests/plugins/TopsyTurvy/basic/test.ktest b/tests/plugins/TopsyTurvy/basic/test.ktest index a3ec293e..62780fc0 100644 --- a/tests/plugins/TopsyTurvy/basic/test.ktest +++ b/tests/plugins/TopsyTurvy/basic/test.ktest @@ -5,6 +5,11 @@ KEYSWITCH TOPSY_2 0 1 KEYSWITCH A 1 0 KEYSWITCH B 1 1 KEYSWITCH LSHIFT 2 0 +KEYSWITCH RSHIFT 2 1 +KEYSWITCH LALT 2 2 +KEYSWITCH MEH 2 3 +KEYSWITCH SHIFT_X 3 0 +KEYSWITCH CTRL_Y 3 1 # ============================================================================== NAME TopsyTurvy without shift @@ -41,3 +46,282 @@ RUN 5 ms RELEASE LSHIFT RUN 1 cycle EXPECT keyboard-report empty # Report should be empty + +# ============================================================================== +NAME TopsyTurvy rollover from shift + +RUN 5 ms +PRESS LSHIFT +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +RUN 5 ms +PRESS TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report empty # Report should be empty +EXPECT keyboard-report Key_1 # The report should contain only `1` +RUN 5 ms +RELEASE LSHIFT +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift Key_1 # The report should contain `shift` + `1` +RUN 5 ms +RELEASE TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report empty # Report should be empty + +# ============================================================================== +NAME TopsyTurvy rollover to shift + +RUN 5 ms +PRESS TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report Key_LeftShift Key_1 # The report should contain `shift` + `1` +RUN 5 ms +PRESS LSHIFT +RUN 1 cycle +EXPECT keyboard-report Key_1 # The report should contain only `1` +RUN 5 ms +RELEASE TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report empty # Report should be empty +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +RUN 5 ms +RELEASE LSHIFT +RUN 1 cycle +EXPECT keyboard-report empty # Report should be empty + +# ============================================================================== +NAME TopsyTurvy encompassing shift + +RUN 5 ms +PRESS TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report Key_LeftShift Key_1 # The report should contain `shift` + `1` +RUN 5 ms +PRESS LSHIFT +RUN 1 cycle +EXPECT keyboard-report Key_1 # The report should contain only `1` +RUN 5 ms +RELEASE LSHIFT +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift Key_1 # The report should contain `shift` + `1` +RUN 5 ms +RELEASE TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report empty # Report should be empty + +# ============================================================================== +NAME TopsyTurvy rollover from other + +RUN 5 ms +PRESS A +RUN 1 cycle +EXPECT keyboard-report Key_A # The report should contain `A` +RUN 5 ms +PRESS TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report empty # Report should be empty +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report Key_LeftShift Key_1 # The report should contain `shift` + `1` +RUN 5 ms +RELEASE A +RUN 1 cycle +RUN 5 ms +RELEASE TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report empty # Report should be empty + +# ============================================================================== +NAME TopsyTurvy rollover to other + +RUN 5 ms +PRESS TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report Key_LeftShift Key_1 # The report should contain `shift` + `1` +RUN 5 ms +PRESS A +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report empty # Report should be empty +EXPECT keyboard-report Key_A # The report should contain only `A` +RUN 5 ms +RELEASE TOPSY_1 +RUN 1 cycle +RUN 5 ms +RELEASE A +RUN 1 cycle +EXPECT keyboard-report empty # Report should be empty + +# ============================================================================== +NAME TopsyTurvy encompassing other + +RUN 5 ms +PRESS TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report Key_LeftShift Key_1 # The report should contain `shift` + `1` +RUN 5 ms +PRESS A +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report empty # Report should be empty +EXPECT keyboard-report Key_A # The report should contain only `A` +RUN 5 ms +RELEASE A +RUN 1 cycle +EXPECT keyboard-report empty # Report should be empty +RUN 5 ms +RELEASE TOPSY_1 +RUN 1 cycle + +# ============================================================================== +NAME TopsyTurvy encompassed by other + +RUN 5 ms +PRESS A +RUN 1 cycle +EXPECT keyboard-report Key_A # The report should contain `A` +RUN 5 ms +PRESS TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report empty # Report should be empty +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report Key_LeftShift Key_1 # The report should contain `shift` + `1` +RUN 5 ms +RELEASE TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report empty # Report should be empty +RUN 5 ms +RELEASE A +RUN 1 cycle + +# ============================================================================== +NAME TopsyTurvy rollover from other with shift + +RUN 5 ms +PRESS LSHIFT +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +RUN 5 ms +PRESS A +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift Key_A # The report should contain `shift` + `A` +RUN 5 ms +PRESS TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report empty # Report should be empty +EXPECT keyboard-report Key_1 # The report should contain only `1` +RUN 5 ms +RELEASE A +RUN 1 cycle +RUN 5 ms +RELEASE TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report empty # Report should be empty +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +RUN 5 ms +RELEASE LSHIFT +RUN 1 cycle +EXPECT keyboard-report empty # Report should be empty + +# ============================================================================== +NAME TopsyTurvy rollover to other with shift + +RUN 5 ms +PRESS LSHIFT +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +RUN 5 ms +PRESS TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report empty # Report should be empty +EXPECT keyboard-report Key_1 # The report should contain only `1` +RUN 5 ms +PRESS A +RUN 1 cycle +EXPECT keyboard-report empty # Report should be empty +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report Key_LeftShift Key_A # The report should contain `shift` + `A` +RUN 5 ms +RELEASE TOPSY_1 +RUN 1 cycle +RUN 5 ms +RELEASE A +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +RUN 5 ms +RELEASE LSHIFT +RUN 1 cycle +EXPECT keyboard-report empty # Report should be empty + +# ============================================================================== +NAME TopsyTurvy rollover to TopsyTurvy + +RUN 5 ms +PRESS TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report Key_LeftShift Key_1 # The report should contain `shift` + `1` +RUN 5 ms +PRESS TOPSY_2 +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift Key_2 # The report should contain `shift` + `2` +RUN 5 ms +RELEASE TOPSY_1 +RUN 1 cycle +RUN 5 ms +RELEASE TOPSY_2 +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report empty # Report should be empty + +# ============================================================================== +NAME TopsyTurvy rollover from other modifier + +RUN 5 ms +PRESS LALT +RUN 1 cycle +EXPECT keyboard-report Key_LeftAlt # The report should contain `alt` +RUN 5 ms +PRESS TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftAlt Key_LeftShift # The report should contain `alt` + `shift` +EXPECT keyboard-report Key_LeftAlt Key_LeftShift Key_1 # The report should contain `alt` + `shift` + `1` +RUN 5 ms +RELEASE LALT +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift Key_1 # The report should contain `shift` + `1` +RUN 5 ms +RELEASE TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftShift # The report should contain `shift` +EXPECT keyboard-report empty # Report should be empty + +# ============================================================================== +NAME TopsyTurvy with other modifier + +RUN 5 ms +PRESS LALT +RUN 1 cycle +EXPECT keyboard-report Key_LeftAlt # The report should contain `alt` +RUN 5 ms +PRESS TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftAlt Key_LeftShift # The report should contain `alt` + `shift` +EXPECT keyboard-report Key_LeftAlt Key_LeftShift Key_1 # The report should contain `alt` + `shift` + `1` +RUN 5 ms +RELEASE TOPSY_1 +RUN 1 cycle +EXPECT keyboard-report Key_LeftAlt Key_LeftShift # The report should contain `alt` + `shift` +EXPECT keyboard-report Key_LeftAlt # The report should contain `alt` +RUN 5 ms +RELEASE LALT +RUN 1 cycle +EXPECT keyboard-report empty # Report should be empty