pmat 3.11.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
//! CommandDispatcher Tests
//!
//! Extracted from command_dispatcher.rs for file health compliance (CB-040).
//! Split into include files for file health compliance (CB-040).

use super::*;

#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod tests {
    use super::*;
    use crate::cli::commands::{Commands, ScaffoldCommands};
    use crate::stateless_server::StatelessTemplateServer;
    use std::sync::Arc;

    fn create_test_server() -> Arc<StatelessTemplateServer> {
        Arc::new(StatelessTemplateServer::new().expect("internal error"))
    }

    // --- Basic command routing tests (Generate, List, Scaffold, QualityGate, Report, Config) ---
    // --- Test config creation, performance summary, write results ---
    include!("tests_command_routing.rs");

    // --- Metric recommendations, demo protocol conversion, demo args creation ---
    include!("tests_metric_and_demo.rs");

    // --- Scaffold/memory/cache routing, quality gate check types ---
    include!("tests_scaffold_quality_gate.rs");

    // --- Report format variants, show/record metrics, metric edge cases ---
    include!("tests_report_and_metrics.rs");

    // --- Extended demo args, config variants, memory/cache/scaffold extended ---
    include!("tests_config_extended.rs");

    // --- Search, validate, context, analyze, qdd, refactor, roadmap, test, spec, work commands ---
    include!("tests_spec_and_work.rs");
}

#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod property_tests {
    use proptest::prelude::*;

    proptest! {
        #[test]
        fn basic_property_stability(_input in ".*") {
            // Basic property test for coverage
            prop_assert!(true);
        }

        #[test]
        fn module_consistency_check(_x in 0u32..1000) {
            // Module consistency verification
            prop_assert!(_x < 1001);
        }
    }
}