Merge pull request #987 from gedankenexperimenter/t/redial.rollover

Add testcases for Redial with rollover
pull/982/head
Jesse Vincent 4 years ago committed by GitHub
commit 7a7e969517
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -21,21 +21,19 @@
KEYMAPS( KEYMAPS(
[0] = KEYMAP_STACKED [0] = KEYMAP_STACKED
( (
Key_NoKey, Key_1, Key_2, Key_3, Key_4, Key_5, Key_NoKey, Key_A, Key_Redial, Key_X, ___, ___, ___, ___,
Key_Backtick, Key_Q, Key_W, Key_E, Key_R, Key_T, Key_Tab, ___, ___, ___, ___, ___, ___, ___,
Key_PageUp, Key_A, Key_S, Key_D, Key_F, Key_G, ___, ___, ___, ___, ___, ___,
Key_PageDown, Key_Z, Key_X, Key_C, Key_V, Key_B, Key_Escape, ___, ___, ___, ___, ___, ___, ___,
___, ___, ___, ___,
Key_LeftControl, Key_Backspace, Key_LeftGui, Key_LeftShift, ___,
XXX,
___, ___, ___, ___, ___, ___, ___,
Key_Redial, Key_6, Key_7, Key_8, Key_9, Key_0, Key_skip, ___, ___, ___, ___, ___, ___, ___,
Key_Enter, Key_Y, Key_U, Key_I, Key_O, Key_P, Key_Equals, ___, ___, ___, ___, ___, ___,
Key_H, Key_J, Key_K, Key_L, Key_Semicolon, Key_Quote, ___, ___, ___, ___, ___, ___, ___,
Key_skip, Key_N, Key_M, Key_Comma, Key_Period, Key_Slash, Key_Minus, ___, ___, ___, ___,
___
Key_RightShift, Key_RightAlt, Key_Spacebar, Key_RightControl,
XXX
), ),
) )
// *INDENT-ON* // *INDENT-ON*

@ -1,74 +1,105 @@
VERSION 1 VERSION 1
KEYSWITCH Redial 0 9 KEYSWITCH Redial 0 1
KEYSWITCH A 2 1 KEYSWITCH A 0 0
KEYSWITCH X 3 2 KEYSWITCH X 0 2
# ==============================================================================
NAME Redial with no prior keypress NAME Redial with no prior keypress
RUN 10 ms RUN 5 ms
PRESS Redial PRESS Redial
RUN 25ms
RELEASE Redial
RUN 10 ms RUN 10 ms
RELEASE Redial
RUN 5 ms
EXPECT no keyboard-reports # There should be no HID report without a prior keypress" EXPECT no keyboard-reports # There should be no HID report without a prior keypress"
# ==============================================================================
NAME RedialFirstKey NAME RedialFirstKey
RUN 10 ms RUN 5 ms
PRESS A PRESS A
RUN 1 cycle RUN 1 cycle
EXPECT keyboard-report Key_A # Report should contain only an A EXPECT keyboard-report Key_A # Report should contain only an A
RUN 25 ms RUN 10 ms
RELEASE A RELEASE A
RUN 1 cycle RUN 1 cycle
EXPECT keyboard-report empty # Report should be empty EXPECT keyboard-report empty # Report should be empty
RUN 10ms RUN 10 ms
PRESS Redial PRESS Redial
RUN 1 cycle RUN 1 cycle
EXPECT keyboard-report Key_A # Report should contain only an A EXPECT keyboard-report Key_A # Report should contain only an A
RUN 25 ms RUN 10 ms
RELEASE Redial RELEASE Redial
RUN 1 cycle RUN 1 cycle
EXPECT keyboard-report empty # keyboard report should be empty EXPECT keyboard-report empty # keyboard report should be empty
# ==============================================================================
NAME Redial next key NAME Redial next key
RUN 10 ms RUN 10 ms
PRESS X PRESS X
RUN 1 cycle RUN 1 cycle
EXPECT keyboard-report Key_X # Report should contain only an X EXPECT keyboard-report Key_X # Report should contain only an X
RUN 25 ms RUN 10 ms
RELEASE X RELEASE X
RUN 1 cycle
EXPECT keyboard-report empty # keyboard report should be empty
RUN 10 ms
PRESS Redial
RUN 1 cycle
EXPECT keyboard-report Key_X # Report should contain only an X
RUN 10 ms
RELEASE Redial
RUN 1 cycle RUN 1 cycle
EXPECT keyboard-report empty # keyboard report should be empty EXPECT keyboard-report empty # keyboard report should be empty
# ==============================================================================
NAME Redial rollover
RUN 10 ms
PRESS A
RUN 1 cycle
EXPECT keyboard-report Key_A # Report should contain only an A
RUN 10 ms RUN 10 ms
PRESS Redial PRESS Redial
RUN 1 cycle
EXPECT keyboard-report empty # Report should be empty
EXPECT keyboard-report Key_A # Report should contain only an A
RUN 10 ms
RELEASE A
RUN 10 ms
RELEASE Redial
RUN 1 cycle
EXPECT keyboard-report empty # keyboard report should be empty
# ==============================================================================
NAME Redial rollover right to left
RUN 10 ms
PRESS X
RUN 1 cycle RUN 1 cycle
EXPECT keyboard-report Key_X # Report should contain only an X EXPECT keyboard-report Key_X # Report should contain only an X
RUN 25 ms RUN 10 ms
RELEASE Redial PRESS Redial
RUN 1 cycle
EXPECT keyboard-report empty # Report should be empty
EXPECT keyboard-report Key_X # Report should contain only an X
RUN 10 ms
RELEASE X
RUN 10 ms
RELEASE Redial
RUN 1 cycle RUN 1 cycle
EXPECT keyboard-report empty # keyboard report should be empty EXPECT keyboard-report empty # keyboard report should be empty

Loading…
Cancel
Save