Release Readt
Some checks failed
CI / build-linux-and-wasm (x64-linux) (push) Has been cancelled

This commit is contained in:
2026-01-25 22:08:16 +05:30
parent 601b573983
commit ebde7c7e66
19 changed files with 51 additions and 567 deletions

View File

@ -20,44 +20,28 @@
using namespace IACore;
// -----------------------------------------------------------------------------
// Helper: RAII Scheduler Guard
// -----------------------------------------------------------------------------
// Ensures the scheduler is terminated at the end of a test scope,
// preventing state pollution between tests.
struct SchedulerGuard {
SchedulerGuard(u8 worker_count = 2) {
// We ignore the result here as we assume the test environment is clean.
// Specific initialization tests will check the result manually.
(void)AsyncOps::initialize_scheduler(worker_count);
}
~SchedulerGuard() { AsyncOps::terminate_scheduler(); }
};
// -----------------------------------------------------------------------------
// Test Block Definition
// -----------------------------------------------------------------------------
IAT_BEGIN_BLOCK(Core, AsyncOps)
// -------------------------------------------------------------------------
// 1. Initialization and Termination
// -------------------------------------------------------------------------
auto test_initialization() -> bool {
// Ensure clean state
AsyncOps::terminate_scheduler();
// Initialize with specific worker countB
const auto res = AsyncOps::initialize_scheduler(4);
IAT_CHECK(res.has_value());
IAT_CHECK_EQ(AsyncOps::get_worker_count(), static_cast<u16>(4));
// Terminate
AsyncOps::terminate_scheduler();
// Verify we can re-initialize
const auto res2 = AsyncOps::initialize_scheduler(1);
IAT_CHECK(res2.has_value());
IAT_CHECK_EQ(AsyncOps::get_worker_count(), static_cast<u16>(1));
@ -66,20 +50,15 @@ auto test_initialization() -> bool {
return true;
}
// -------------------------------------------------------------------------
// 2. Basic Task Execution
// -------------------------------------------------------------------------
auto test_basic_execution() -> bool {
SchedulerGuard guard(2);
AsyncOps::Schedule schedule;
std::atomic<i32> run_count{0};
// Schedule a simple task
AsyncOps::schedule_task([&](AsyncOps::WorkerId) { run_count++; }, 0,
&schedule);
// Wait for it to finish
AsyncOps::wait_for_schedule_completion(&schedule);
IAT_CHECK_EQ(run_count.load(), 1);
@ -87,9 +66,6 @@ auto test_basic_execution() -> bool {
return true;
}
// -------------------------------------------------------------------------
// 3. Concurrency and Load
// -------------------------------------------------------------------------
auto test_concurrency() -> bool {
SchedulerGuard guard(4);
@ -100,7 +76,6 @@ auto test_concurrency() -> bool {
for (i32 i = 0; i < total_tasks; ++i) {
AsyncOps::schedule_task(
[&](AsyncOps::WorkerId) {
// Simulate a tiny bit of work to encourage thread switching
std::this_thread::sleep_for(std::chrono::microseconds(10));
run_count++;
},
@ -114,19 +89,12 @@ auto test_concurrency() -> bool {
return true;
}
// -------------------------------------------------------------------------
// 4. Priorities
// -------------------------------------------------------------------------
auto test_priorities() -> bool {
SchedulerGuard guard(2);
AsyncOps::Schedule schedule;
std::atomic<i32> high_priority_ran{0};
std::atomic<i32> normal_priority_ran{0};
// Verify API accepts priorities and executes them.
// Note: Deterministic priority testing is difficult in unit tests without
// mocking, so we primarily ensure the API functions correctly.
AsyncOps::schedule_task([&](AsyncOps::WorkerId) { high_priority_ran++; }, 0,
&schedule, AsyncOps::Priority::High);
@ -141,18 +109,13 @@ auto test_priorities() -> bool {
return true;
}
// -------------------------------------------------------------------------
// 5. Fire-and-Forget Tasks
// -------------------------------------------------------------------------
auto test_run_task_fire_and_forget() -> bool {
SchedulerGuard guard(2);
std::atomic<bool> executed{false};
// run_task doesn't use a Schedule object, so we must sync manually
AsyncOps::run_task([&]() { executed = true; });
// Busy wait with timeout (max 1 second)
for (int i = 0; i < 100; ++i) {
if (executed.load())
break;
@ -164,34 +127,25 @@ auto test_run_task_fire_and_forget() -> bool {
return true;
}
// -------------------------------------------------------------------------
// 6. Cancellation Safety
// -------------------------------------------------------------------------
auto test_cancellation_safety() -> bool {
SchedulerGuard guard(2);
// 1. Cancel non-existent tag (Should be safe)
AsyncOps::cancel_tasks_of_tag(999);
AsyncOps::Schedule schedule;
std::atomic<i32> counter{0};
// 2. Schedule a task, wait for it
AsyncOps::schedule_task([&](AsyncOps::WorkerId) { counter++; }, 10,
&schedule);
AsyncOps::wait_for_schedule_completion(&schedule);
IAT_CHECK_EQ(counter.load(), 1);
// 3. Cancel tag 10 (already done, should be safe)
AsyncOps::cancel_tasks_of_tag(10);
return true;
}
// -------------------------------------------------------------------------
// Registration
// -------------------------------------------------------------------------
IAT_BEGIN_TEST_LIST()
IAT_ADD_TEST(test_initialization);
IAT_ADD_TEST(test_basic_execution);