Files
zsa_qmk_firmware/tests/test_common/test_fixture.cpp
T

60 lines
1.4 KiB
C++
Raw Normal View History

#include "test_fixture.hpp"
2017-06-18 23:49:38 +03:00
#include "gmock/gmock.h"
#include "test_driver.hpp"
2017-06-18 23:49:38 +03:00
#include "test_matrix.h"
#include "keyboard.h"
2017-07-01 22:25:06 +03:00
#include "action.h"
#include "action_tapping.h"
extern "C" {
#include "debug.h"
#include "eeconfig.h"
#include "action_layer.h"
2019-08-30 11:19:03 -07:00
void set_time(uint32_t t);
void advance_time(uint32_t ms);
2017-07-01 22:25:06 +03:00
}
2017-06-18 23:49:38 +03:00
using testing::_;
using testing::AnyNumber;
using testing::Between;
2019-08-30 11:19:03 -07:00
using testing::Return;
2017-06-18 23:49:38 +03:00
void TestFixture::SetUpTestCase() {
// The following is enough to bootstrap the values set in main
eeconfig_init_quantum();
eeconfig_update_debug(debug_config.raw);
2017-06-18 23:49:38 +03:00
TestDriver driver;
EXPECT_CALL(driver, send_keyboard_mock(_));
keyboard_init();
}
2019-08-30 11:19:03 -07:00
void TestFixture::TearDownTestCase() {}
2017-06-18 23:49:38 +03:00
2019-08-30 11:19:03 -07:00
TestFixture::TestFixture() {}
2017-06-18 23:49:38 +03: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());
layer_clear();
clear_all_keys();
2017-07-01 22:25:06 +03:00
idle_for(TAPPING_TERM + 10);
testing::Mock::VerifyAndClearExpectations(&driver);
2017-06-18 23:49:38 +03:00
// Verify that the matrix really is cleared
EXPECT_CALL(driver, send_keyboard_mock(KeyboardReport())).Times(0);
idle_for(TAPPING_TERM + 10);
2017-07-01 22:25:06 +03:00
}
void TestFixture::run_one_scan_loop() {
keyboard_task();
advance_time(1);
}
void TestFixture::idle_for(unsigned time) {
2019-08-30 11:19:03 -07:00
for (unsigned i = 0; i < time; i++) {
2017-07-01 22:25:06 +03:00
run_one_scan_loop();
}
}