2017-07-02 20:46:35 +02:00
|
|
|
#include "test_fixture.hpp"
|
2017-06-18 22:49:38 +02:00
|
|
|
#include "gmock/gmock.h"
|
2017-07-02 20:46:35 +02:00
|
|
|
#include "test_driver.hpp"
|
2017-06-18 22:49:38 +02:00
|
|
|
#include "test_matrix.h"
|
|
|
|
#include "keyboard.h"
|
2017-07-01 21:25:06 +02:00
|
|
|
#include "action.h"
|
|
|
|
#include "action_tapping.h"
|
|
|
|
|
2017-12-15 00:15:52 +01:00
|
|
|
extern "C" {
|
2021-07-25 18:18:09 +02:00
|
|
|
#include "debug.h"
|
|
|
|
#include "eeconfig.h"
|
2017-12-15 00:15:52 +01:00
|
|
|
#include "action_layer.h"
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
void set_time(uint32_t t);
|
|
|
|
void advance_time(uint32_t ms);
|
2017-07-01 21:25:06 +02:00
|
|
|
}
|
2017-06-18 22:49:38 +02:00
|
|
|
|
|
|
|
using testing::_;
|
|
|
|
using testing::AnyNumber;
|
|
|
|
using testing::Between;
|
2019-08-30 20:19:03 +02:00
|
|
|
using testing::Return;
|
2017-06-18 22:49:38 +02:00
|
|
|
|
|
|
|
void TestFixture::SetUpTestCase() {
|
2021-07-25 18:18:09 +02:00
|
|
|
// The following is enough to bootstrap the values set in main
|
|
|
|
eeconfig_init_quantum();
|
|
|
|
eeconfig_update_debug(debug_config.raw);
|
|
|
|
|
2017-06-18 22:49:38 +02:00
|
|
|
TestDriver driver;
|
|
|
|
EXPECT_CALL(driver, send_keyboard_mock(_));
|
|
|
|
keyboard_init();
|
|
|
|
}
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
void TestFixture::TearDownTestCase() {}
|
2017-06-18 22:49:38 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
TestFixture::TestFixture() {}
|
2017-06-18 22:49:38 +02:00
|
|
|
|
|
|
|
TestFixture::~TestFixture() {
|
|
|
|
TestDriver driver;
|
|
|
|
// Run for a while to make sure all keys are completely released
|
|
|
|
EXPECT_CALL(driver, send_keyboard_mock(_)).Times(AnyNumber());
|
2020-03-13 19:09:38 +01:00
|
|
|
layer_clear();
|
|
|
|
clear_all_keys();
|
2017-07-01 21:25:06 +02:00
|
|
|
idle_for(TAPPING_TERM + 10);
|
2017-12-15 00:15:52 +01:00
|
|
|
testing::Mock::VerifyAndClearExpectations(&driver);
|
2017-06-18 22:49:38 +02:00
|
|
|
// Verify that the matrix really is cleared
|
2020-03-13 19:09:38 +01:00
|
|
|
EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport())).Times(0);
|
|
|
|
idle_for(TAPPING_TERM + 10);
|
2017-07-01 21:25:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void TestFixture::run_one_scan_loop() {
|
|
|
|
keyboard_task();
|
|
|
|
advance_time(1);
|
|
|
|
}
|
|
|
|
|
2017-07-11 18:41:04 +02:00
|
|
|
void TestFixture::idle_for(unsigned time) {
|
2019-08-30 20:19:03 +02:00
|
|
|
for (unsigned i = 0; i < time; i++) {
|
2017-07-01 21:25:06 +02:00
|
|
|
run_one_scan_loop();
|
|
|
|
}
|
2017-12-15 00:15:52 +01:00
|
|
|
}
|