2018-12-08 15:11:28 -08:00
|
|
|
/*
|
2024-04-30 13:07:05 -07:00
|
|
|
* test_executor.cpp
|
2018-12-08 15:11:28 -08:00
|
|
|
*
|
|
|
|
* @date Dec 8, 2018
|
2020-01-13 18:57:43 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2018-12-08 15:11:28 -08:00
|
|
|
*/
|
|
|
|
|
2021-08-03 19:05:01 -07:00
|
|
|
#include "pch.h"
|
2024-04-30 13:05:13 -07:00
|
|
|
#include "test_executor.h"
|
2018-12-08 15:11:28 -08:00
|
|
|
|
2024-04-26 02:02:49 -07:00
|
|
|
bool debugSignalExecutor = false;
|
2018-12-08 15:11:28 -08:00
|
|
|
|
2020-07-31 14:41:29 -07:00
|
|
|
TestExecutor::~TestExecutor() {
|
|
|
|
// Flush the queue and reset all scheduling_s at the end of a test's execution
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
2024-04-30 13:40:44 -07:00
|
|
|
int TestExecutor::executeAll(efitimeus_t nowUs) {
|
2024-04-30 14:01:27 -07:00
|
|
|
return schedulingQueue.executeAll(US2NT(nowUs));
|
2019-01-09 16:52:01 -08:00
|
|
|
}
|
2019-01-09 07:17:35 -08:00
|
|
|
|
|
|
|
void TestExecutor::clear() {
|
|
|
|
schedulingQueue.clear();
|
2019-01-08 21:53:54 -08:00
|
|
|
}
|
|
|
|
|
2019-01-09 07:36:35 -08:00
|
|
|
int TestExecutor::size() {
|
|
|
|
return schedulingQueue.size();
|
|
|
|
}
|
|
|
|
|
2020-07-20 09:45:26 -07:00
|
|
|
scheduling_s* TestExecutor::getHead() {
|
|
|
|
return schedulingQueue.getHead();
|
|
|
|
}
|
|
|
|
|
2019-01-09 13:42:34 -08:00
|
|
|
scheduling_s* TestExecutor::getForUnitTest(int index) {
|
2019-12-02 21:20:47 -08:00
|
|
|
return schedulingQueue.getElementAtIndexForUnitText(index);
|
2019-01-09 13:42:34 -08:00
|
|
|
}
|
|
|
|
|
2024-07-11 17:03:13 -07:00
|
|
|
void TestExecutor::schedule(const char *msg, scheduling_s* scheduling, efitick_t timeNt, action_s action) {
|
2020-05-14 04:44:32 -07:00
|
|
|
if (m_mockExecutor) {
|
2024-07-11 17:03:13 -07:00
|
|
|
m_mockExecutor->schedule(msg, scheduling, timeNt, action);
|
2020-05-14 04:44:32 -07:00
|
|
|
return;
|
|
|
|
}
|
2024-04-30 13:22:05 -07:00
|
|
|
// by the way we have loss of precision while converting NT to integer US
|
2024-07-15 06:59:06 -07:00
|
|
|
// technical debt: looks like our unit tests were all created with us precision?
|
|
|
|
efitimeus_t timeUs = NT2US(timeNt);
|
|
|
|
schedulingQueue.insertTask(scheduling, US2NT(timeUs), action);
|
2020-01-09 12:45:13 -08:00
|
|
|
}
|
2020-05-14 04:44:32 -07:00
|
|
|
|
2021-08-27 01:30:06 -07:00
|
|
|
void TestExecutor::cancel(scheduling_s* s) {
|
|
|
|
if (m_mockExecutor) {
|
|
|
|
m_mockExecutor->cancel(s);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
schedulingQueue.remove(s);
|
|
|
|
}
|
|
|
|
|
2024-07-11 17:03:13 -07:00
|
|
|
void TestExecutor::setMockExecutor(Scheduler* exec) {
|
2020-05-14 04:44:32 -07:00
|
|
|
m_mockExecutor = exec;
|
|
|
|
}
|