This testcase checks for any changes to existing values in Kaleidoscope-Ranges, with the goal of preventing backwards-incompatible changes that will affect existing EEPROM keymaps configured via Chrysalis. Signed-off-by: Michael Richters <gedankenexperimenter@gmail.com>pull/1012/head
parent
1a5934ef61
commit
d0c34ad707
@ -0,0 +1,46 @@
|
||||
/* -*- mode: c++ -*-
|
||||
* Copyright (C) 2021 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>
|
||||
|
||||
// *INDENT-OFF*
|
||||
KEYMAPS(
|
||||
[0] = KEYMAP_STACKED
|
||||
(
|
||||
___, ___, ___, ___, ___, ___, ___,
|
||||
___, ___, ___, ___, ___, ___, ___,
|
||||
___, ___, ___, ___, ___, ___,
|
||||
___, ___, ___, ___, ___, ___, ___,
|
||||
___, ___, ___, ___,
|
||||
___,
|
||||
|
||||
___, ___, ___, ___, ___, ___, ___,
|
||||
___, ___, ___, ___, ___, ___, ___,
|
||||
___, ___, ___, ___, ___, ___,
|
||||
___, ___, ___, ___, ___, ___, ___,
|
||||
___, ___, ___, ___,
|
||||
___
|
||||
),
|
||||
)
|
||||
// *INDENT-ON*
|
||||
|
||||
void setup() {
|
||||
Kaleidoscope.setup();
|
||||
}
|
||||
|
||||
void loop() {
|
||||
Kaleidoscope.loop();
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
{
|
||||
"cpu": {
|
||||
"fqbn": "keyboardio:virtual:model01",
|
||||
"port": ""
|
||||
}
|
||||
}
|
@ -0,0 +1,141 @@
|
||||
/* -*- mode: c++ -*-
|
||||
* Copyright (C) 2021 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 "testing/setup-googletest.h"
|
||||
|
||||
#include "Kaleidoscope-Ranges/src/Kaleidoscope-Ranges.h"
|
||||
|
||||
SETUP_GOOGLETEST();
|
||||
|
||||
namespace kaleidoscope {
|
||||
namespace testing {
|
||||
|
||||
class Issue1010 : public ::testing::Test {
|
||||
public:
|
||||
enum : uint16_t {
|
||||
MACRO_FIRST = (SYNTHETIC | 0b00100000) << 8,
|
||||
MACRO_LAST = MACRO_FIRST + 255,
|
||||
|
||||
FIRST = 0xc000,
|
||||
KALEIDOSCOPE_FIRST = FIRST,
|
||||
OS_FIRST,
|
||||
OSM_FIRST = OS_FIRST,
|
||||
OSM_LAST = OSM_FIRST + 7,
|
||||
OSL_FIRST,
|
||||
OSL_LAST = OSL_FIRST + 7,
|
||||
OS_LAST = OSL_LAST,
|
||||
DU_FIRST,
|
||||
DUM_FIRST = DU_FIRST,
|
||||
DUM_LAST = DUM_FIRST + (8 << 8),
|
||||
DUL_FIRST,
|
||||
DUL_LAST = DUL_FIRST + (8 << 8),
|
||||
DU_LAST = DUL_LAST,
|
||||
TD_FIRST,
|
||||
TD_LAST = TD_FIRST + 15,
|
||||
LEAD_FIRST,
|
||||
LEAD_LAST = LEAD_FIRST + 7,
|
||||
CYCLE,
|
||||
SYSTER,
|
||||
TT_FIRST,
|
||||
TT_LAST = TT_FIRST + 255,
|
||||
STENO_FIRST,
|
||||
STENO_LAST = STENO_FIRST + 42,
|
||||
SC_FIRST,
|
||||
SC_LAST,
|
||||
REDIAL,
|
||||
TURBO,
|
||||
DYNAMIC_MACRO_FIRST,
|
||||
DYNAMIC_MACRO_LAST = DYNAMIC_MACRO_FIRST + 31,
|
||||
|
||||
SAFE_START,
|
||||
KALEIDOSCOPE_SAFE_START = SAFE_START
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
TEST_F(Issue1010, RangesHaveNotChanged) {
|
||||
ASSERT_EQ(uint16_t(Issue1010::MACRO_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::MACRO_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::MACRO_LAST),
|
||||
uint16_t(kaleidoscope::ranges::MACRO_LAST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::FIRST),
|
||||
uint16_t(kaleidoscope::ranges::FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::KALEIDOSCOPE_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::KALEIDOSCOPE_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::OS_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::OS_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::OSM_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::OSM_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::OSM_LAST),
|
||||
uint16_t(kaleidoscope::ranges::OSM_LAST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::OSL_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::OSL_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::OSL_LAST),
|
||||
uint16_t(kaleidoscope::ranges::OSL_LAST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::OS_LAST),
|
||||
uint16_t(kaleidoscope::ranges::OS_LAST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::DU_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::DU_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::DUM_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::DUM_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::DUM_LAST),
|
||||
uint16_t(kaleidoscope::ranges::DUM_LAST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::DUL_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::DUL_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::DUL_LAST),
|
||||
uint16_t(kaleidoscope::ranges::DUL_LAST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::DU_LAST),
|
||||
uint16_t(kaleidoscope::ranges::DU_LAST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::TD_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::TD_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::TD_LAST),
|
||||
uint16_t(kaleidoscope::ranges::TD_LAST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::LEAD_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::LEAD_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::LEAD_LAST),
|
||||
uint16_t(kaleidoscope::ranges::LEAD_LAST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::CYCLE),
|
||||
uint16_t(kaleidoscope::ranges::CYCLE));
|
||||
ASSERT_EQ(uint16_t(Issue1010::SYSTER),
|
||||
uint16_t(kaleidoscope::ranges::SYSTER));
|
||||
ASSERT_EQ(uint16_t(Issue1010::TT_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::TT_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::TT_LAST),
|
||||
uint16_t(kaleidoscope::ranges::TT_LAST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::STENO_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::STENO_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::STENO_LAST),
|
||||
uint16_t(kaleidoscope::ranges::STENO_LAST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::SC_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::SC_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::SC_LAST),
|
||||
uint16_t(kaleidoscope::ranges::SC_LAST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::REDIAL),
|
||||
uint16_t(kaleidoscope::ranges::REDIAL));
|
||||
ASSERT_EQ(uint16_t(Issue1010::TURBO),
|
||||
uint16_t(kaleidoscope::ranges::TURBO));
|
||||
ASSERT_EQ(uint16_t(Issue1010::DYNAMIC_MACRO_FIRST),
|
||||
uint16_t(kaleidoscope::ranges::DYNAMIC_MACRO_FIRST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::DYNAMIC_MACRO_LAST),
|
||||
uint16_t(kaleidoscope::ranges::DYNAMIC_MACRO_LAST));
|
||||
ASSERT_EQ(uint16_t(Issue1010::SAFE_START),
|
||||
uint16_t(kaleidoscope::ranges::SAFE_START));
|
||||
ASSERT_EQ(uint16_t(Issue1010::KALEIDOSCOPE_SAFE_START),
|
||||
uint16_t(kaleidoscope::ranges::KALEIDOSCOPE_SAFE_START));
|
||||
}
|
||||
|
||||
} // namespace testing
|
||||
} // namespace kaleidoscope
|
Loading…
Reference in new issue