qubit-thread-pool 0.7.1

Dynamic and fixed thread pool executor services for Qubit Rust libraries
Documentation
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026 Haixing Hu.
 *
 *    SPDX-License-Identifier: Apache-2.0
 *
 *    Licensed under the Apache License, Version 2.0.
 *
 ******************************************************************************/
//! Tests for [`qubit_thread_pool::ThreadPoolStats`].

use qubit_thread_pool::{
    ExecutorService,
    ExecutorServiceLifecycle,
    ThreadPool,
    ThreadPoolStats,
};

#[test]
fn test_thread_pool_stats_default_uses_empty_running_snapshot() {
    let stats = ThreadPoolStats::default();

    assert_eq!(stats.lifecycle, ExecutorServiceLifecycle::Running);
    assert_eq!(stats.core_pool_size, 0);
    assert_eq!(stats.maximum_pool_size, 0);
    assert_eq!(stats.live_workers, 0);
    assert_eq!(stats.idle_workers, 0);
    assert_eq!(stats.queued_tasks, 0);
    assert_eq!(stats.running_tasks, 0);
    assert_eq!(stats.submitted_tasks, 0);
    assert_eq!(stats.completed_tasks, 0);
    assert_eq!(stats.cancelled_tasks, 0);
    assert!(!stats.terminated);
}

#[test]
fn test_thread_pool_stats_reflect_configuration() {
    let pool = ThreadPool::builder()
        .core_pool_size(1)
        .maximum_pool_size(3)
        .queue_capacity(2)
        .build()
        .expect("thread pool should be created");

    let s = pool.stats();
    assert_eq!(s.core_pool_size, 1);
    assert_eq!(s.maximum_pool_size, 3);
    assert_eq!(s.queued_tasks, 0);
    assert_eq!(s.lifecycle, ExecutorServiceLifecycle::Running);
    assert!(!s.terminated);

    pool.shutdown();
    pool.wait_termination();
    let s = pool.stats();
    assert_eq!(s.lifecycle, ExecutorServiceLifecycle::Terminated);
    assert!(s.terminated);
}