Add basic Escape-OneShot testcases

Signed-off-by: Michael Richters <gedankenexperimenter@gmail.com>
pull/986/head
Michael Richters 4 years ago
parent 6858c0b030
commit 56cafeb9fd
No known key found for this signature in database
GPG Key ID: 1288FD13E4EEF0C0

@ -0,0 +1,27 @@
// -*- mode: c++ -*-
/* Kaleidoscope - Firmware for computer input devices
* Copyright (C) 2020 Keyboard.io, Inc.
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <cstdint>
namespace kaleidoscope {
namespace testing {
} // namespace testing
} // namespace kaleidoscope

@ -0,0 +1,55 @@
/* -*- mode: c++ -*-
* Copyright (C) 2020 Keyboard.io, Inc.
*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include <Kaleidoscope.h>
#include <Kaleidoscope-OneShot.h>
#include <Kaleidoscope-Escape-OneShot.h>
#include "./common.h"
// *INDENT-OFF*
KEYMAPS(
[0] = KEYMAP_STACKED
(
OSM(LeftShift), OSM(LeftAlt), ___, ___, ___, ___, ___,
Key_Escape, ___, ___, ___, ___, ___, ___,
___, ___, ___, ___, ___, ___,
___, ___, ___, ___, ___, ___, ___,
___, ___, ___, ___,
___,
___, ___, ___, ___, ___, ___, ___,
___, ___, ___, ___, ___, ___, ___,
___, ___, ___, ___, ___, ___,
___, ___, ___, ___, ___, ___, ___,
___, ___, ___, ___,
___
),
)
// *INDENT-ON*
KALEIDOSCOPE_INIT_PLUGINS(OneShot, EscapeOneShot);
void setup() {
Kaleidoscope.setup();
OneShot.time_out = 50;
OneShot.hold_time_out = 20;
OneShot.double_tap_time_out = 20;
}
void loop() {
Kaleidoscope.loop();
}

@ -0,0 +1,48 @@
VERSION 1
KEYSWITCH OSM_0 0 0 # left shift
KEYSWITCH OSM_1 0 1 # left alt
KEYSWITCH ESC 1 0
# ==============================================================================
NAME EscapeOneShot cancel temporary
RUN 5 ms
PRESS OSM_0
RUN 1 cycle
EXPECT keyboard-report Key_LeftShift # The report should contain `shift`
RUN 5 ms
RELEASE OSM_0
RUN 10 ms
PRESS ESC
RUN 2 cycles
EXPECT keyboard-report empty # Report should be empty
RUN 5 ms
RELEASE ESC
RUN 1 cycle
# ==============================================================================
# The testcases below are commented out because they are currently failing.
# # ==============================================================================
# NAME EscapeOneShot cancel sticky
# RUN 5 ms
# PRESS OSM_0
# RUN 1 cycle
# EXPECT keyboard-report Key_LeftShift # The report should contain `shift`
# RUN 5 ms
# RELEASE OSM_0
# RUN 5 ms
# PRESS OSM_0
# RUN 5 ms
# RELEASE OSM_0
# RUN 50 ms
# PRESS ESC
# RUN 2 cycles
# EXPECT keyboard-report empty # Report should be empty
# RUN 5 ms
# RELEASE ESC
# RUN 1 cycle
Loading…
Cancel
Save