61 lines
1.7 KiB
C++
61 lines
1.7 KiB
C++
|
#include <atomic>
|
||
|
#include <memory>
|
||
|
|
||
|
#include "gtest/gtest.h"
|
||
|
|
||
|
#include "utils/executioner.hpp"
|
||
|
|
||
|
TEST(Executioner, DontRun) {
|
||
|
std::atomic<int> count{0};
|
||
|
{
|
||
|
Executioner exec(std::chrono::seconds(0));
|
||
|
// Be sure executioner is sleeping.
|
||
|
std::this_thread::sleep_for(std::chrono::milliseconds(100));
|
||
|
|
||
|
exec.RegisterJob([&count]() { ++count; });
|
||
|
// Try to wait to test if executioner might somehow become awake and execute
|
||
|
// the job.
|
||
|
std::this_thread::sleep_for(std::chrono::milliseconds(500));
|
||
|
}
|
||
|
EXPECT_EQ(count, 0);
|
||
|
}
|
||
|
|
||
|
TEST(Executioner, Run) {
|
||
|
std::atomic<int> count{0};
|
||
|
{
|
||
|
Executioner exec(std::chrono::milliseconds(500));
|
||
|
// Be sure executioner is sleeping.
|
||
|
std::this_thread::sleep_for(std::chrono::milliseconds(100));
|
||
|
|
||
|
exec.RegisterJob([&count]() { ++count; });
|
||
|
exec.RegisterJob([&count]() { ++count; });
|
||
|
exec.RegisterJob([&count]() { ++count; });
|
||
|
|
||
|
// Be sure executioner execute thread is triggered
|
||
|
std::this_thread::sleep_for(std::chrono::milliseconds(500));
|
||
|
}
|
||
|
EXPECT_EQ(count, 3);
|
||
|
}
|
||
|
|
||
|
TEST(Executioner, RunUnregister) {
|
||
|
std::atomic<int> count1{0};
|
||
|
std::atomic<int> count2{0};
|
||
|
{
|
||
|
Executioner exec(std::chrono::milliseconds(500));
|
||
|
// Be sure executioner is sleeping.
|
||
|
std::this_thread::sleep_for(std::chrono::milliseconds(100));
|
||
|
auto job = exec.RegisterJob([&count1]() { ++count1; });
|
||
|
exec.RegisterJob([&count2]() { ++count2; });
|
||
|
|
||
|
// Be sure executioner execute thread is triggered
|
||
|
std::this_thread::sleep_for(std::chrono::milliseconds(500));
|
||
|
|
||
|
exec.UnRegisterJob(job);
|
||
|
|
||
|
// Be sure executioner execute thread is triggered
|
||
|
std::this_thread::sleep_for(std::chrono::milliseconds(500));
|
||
|
}
|
||
|
EXPECT_EQ(count1, 1);
|
||
|
EXPECT_EQ(count2, 2);
|
||
|
}
|