pmat 3.11.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
//! CommandDispatcher tests - Part 4: Additional command routing and property tests
//! Extracted for file health compliance (CB-040)

use super::*;

#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod additional_command_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"))
    }

    // Test: execute_show_metrics_command

    #[tokio::test]
    async fn test_show_metrics_no_trend_error() {
        let result = CommandDispatcher::execute_show_metrics_command(
            false, // trend=false should error
            30,
            None,
            OutputFormat::Table,
            false,
        )
        .await;
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn test_show_metrics_with_trend() {
        let result = CommandDispatcher::execute_show_metrics_command(
            true,
            30,
            None,
            OutputFormat::Table,
            false,
        )
        .await;
        // May fail if no metrics but routing works
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_show_metrics_json_output() {
        let result = CommandDispatcher::execute_show_metrics_command(
            true,
            7,
            Some("lint".to_string()),
            OutputFormat::Json,
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_show_metrics_failures_only() {
        let result = CommandDispatcher::execute_show_metrics_command(
            true,
            14,
            None,
            OutputFormat::Table,
            true, // failures_only
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: execute_record_metric_command

    #[tokio::test]
    async fn test_record_metric_basic() {
        let result = CommandDispatcher::execute_record_metric_command(
            "test-coverage".to_string(),
            85.5,
            None,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_record_metric_with_timestamp() {
        let ts = chrono::Utc::now().timestamp();
        let result = CommandDispatcher::execute_record_metric_command(
            "test-duration".to_string(),
            1000.0,
            Some(ts),
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: execute_memory_command variants

    #[tokio::test]
    async fn test_memory_stats_detailed() {
        use crate::cli::handlers::memory::MemoryCommand;
        let result = CommandDispatcher::execute_memory_command(MemoryCommand::Stats {
            detailed: true,
            format: "json".to_string(),
        })
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_memory_cleanup_command() {
        use crate::cli::handlers::memory::MemoryCommand;
        let result = CommandDispatcher::execute_memory_command(MemoryCommand::Cleanup {
            target_pressure: 0.5,
            verbose: true,
        })
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: execute_cache_command variants

    #[tokio::test]
    async fn test_cache_stats_with_history() {
        use crate::cli::handlers::cache::CacheCommand;
        let result = CommandDispatcher::execute_cache_command(CacheCommand::Stats {
            detailed: true,
            format: "json".to_string(),
            history: true,
        })
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: execute_scaffold_agent_command directly

    #[tokio::test]
    async fn test_scaffold_agent_with_features() {
        let result = CommandDispatcher::execute_scaffold_agent_command(
            "feature-agent".to_string(),
            "mcp-server".to_string(),
            vec!["logging".to_string(), "metrics".to_string()],
            "strict".to_string(),
            None,
            false,
            true, // dry_run
            false,
            false,
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_scaffold_agent_deterministic_probabilistic() {
        let result = CommandDispatcher::execute_scaffold_agent_command(
            "hybrid-agent".to_string(),
            "hybrid".to_string(),
            vec![],
            "standard".to_string(),
            None,
            false,
            true,
            false,
            true,  // deterministic_core
            true,  // probabilistic_wrapper
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: Commands routing - additional commands

    #[tokio::test]
    async fn test_search_command_routing() {
        let server = create_test_server();
        let command = Commands::Search {
            query: "function".to_string(),
            toolchain: Some("rust".to_string()),
            limit: 5,
        };
        let result = CommandDispatcher::execute_command(command, server).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_validate_command_routing() {
        let server = create_test_server();
        let command = Commands::Validate {
            uri: "template://test".to_string(),
            params: vec![("key".to_string(), serde_json::Value::String("value".to_string()))],
        };
        let result = CommandDispatcher::execute_command(command, server).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_context_command_routing() {
        use crate::cli::ContextFormat;
        use tempfile::TempDir;

        let server = create_test_server();
        let temp_dir = TempDir::new().expect("internal error");

        let command = Commands::Context {
            toolchain: Some("rust".to_string()),
            project_path: temp_dir.path().to_path_buf(),
            output: None,
            format: ContextFormat::Markdown,
            include_large_files: false,
            skip_expensive_metrics: true,
            language: None,
            languages: None,
        };
        let result = CommandDispatcher::execute_command(command, server).await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: execute_analyze_command routing

    #[tokio::test]
    async fn test_analyze_dead_code_routing() {
        use crate::cli::commands::AnalyzeCommands;
        use crate::cli::DeadCodeOutputFormat;

        let analyze_cmd = AnalyzeCommands::DeadCode {
            path: PathBuf::from("."),
            format: DeadCodeOutputFormat::Summary,
            top_files: None,
            include_unreachable: false,
            min_dead_lines: 10,
            include_tests: false,
            output: None,
            fail_on_violation: false,
            max_percentage: 15.0,
            timeout: 30,
            include: vec![],
            exclude: vec![],
            max_depth: 8,
        };
        let result = CommandDispatcher::execute_analyze_command(analyze_cmd).await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: execute_qdd_command routing

    #[tokio::test]
    async fn test_qdd_create_routing() {
        use crate::cli::commands::{QddCommands, QddCodeType, QddQualityProfile};

        let qdd_cmd = QddCommands::Create {
            code_type: QddCodeType::Function,
            name: "test_function".to_string(),
            purpose: "Test function for coverage".to_string(),
            profile: QddQualityProfile::Standard,
            input: vec![],
            output: "()".to_string(),
            output_file: None,
        };
        let result = CommandDispatcher::execute_qdd_command(qdd_cmd).await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: execute_refactor_command routing

    #[tokio::test]
    async fn test_refactor_status_routing() {
        use crate::cli::commands::RefactorCommands;
        use crate::cli::enums::RefactorOutputFormat;
        use tempfile::TempDir;

        let temp_dir = TempDir::new().expect("internal error");
        let checkpoint = temp_dir.path().join("refactor_state.json");

        let refactor_cmd = RefactorCommands::Status {
            checkpoint,
            format: RefactorOutputFormat::Json,
        };
        let result = CommandDispatcher::execute_refactor_command(refactor_cmd).await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: execute_roadmap_command routing

    #[tokio::test]
    async fn test_roadmap_init_routing() {
        use crate::cli::commands::RoadmapCommands;

        let roadmap_cmd = RoadmapCommands::Init {
            version: "v1.0.0".to_string(),
            title: "Test Sprint".to_string(),
            duration_days: 14,
            priority: "P0".to_string(),
        };
        let result = CommandDispatcher::execute_roadmap_command(roadmap_cmd).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_roadmap_status_routing() {
        use crate::cli::commands::RoadmapCommands;

        let roadmap_cmd = RoadmapCommands::Status {
            sprint: None,
            task: None,
            format: OutputFormat::Json,
        };
        let result = CommandDispatcher::execute_roadmap_command(roadmap_cmd).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_roadmap_validate_routing() {
        use crate::cli::commands::RoadmapCommands;

        let roadmap_cmd = RoadmapCommands::Validate {
            sprint: "sprint-1".to_string(),
            strict: true,
        };
        let result = CommandDispatcher::execute_roadmap_command(roadmap_cmd).await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: execute_test_command routing with different suites

    #[tokio::test]
    #[ignore = "Times out in coverage runs - property tests run too long"]
    async fn test_test_command_property_suite() {
        use crate::cli::commands::TestSuite;

        let result = CommandDispatcher::execute_test_command(
            TestSuite::Property,
            1,
            false,
            false,
            false,
            5, // short timeout
            None,
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_test_command_integration_suite() {
        use crate::cli::commands::TestSuite;

        let result = CommandDispatcher::execute_test_command(
            TestSuite::Integration,
            1,
            false,
            false,
            false,
            5,
            None,
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: CommandHandler trait bounds (compile-time verification)

    #[test]
    fn test_command_handler_trait_is_send_sync() {
        fn assert_send_sync<T: Send + Sync>() {}
        // This is a compile-time check that the trait has correct bounds
        // The actual handlers that implement this trait need to be Send + Sync
    }

    // Test: quality gate check type conversions

    #[tokio::test]
    async fn test_quality_gate_unknown_check_filtered() {
        use tempfile::TempDir;
        let temp_dir = TempDir::new().expect("internal error");

        // Unknown check types should be filtered out
        let result = CommandDispatcher::execute_quality_gate_command(
            Some(temp_dir.path().to_path_buf()),
            None,
            OutputFormat::Table,
            false,
            vec!["unknown_check_type".to_string(), "complexity".to_string()],
            None,
            None,
            None,
            false,
            None,
            false,
        )
        .await;
        // Should still work with just "complexity"
        assert!(result.is_ok() || result.is_err());
    }

    // Test: report analysis type conversions with hyphen variants

    #[tokio::test]
    async fn test_report_analysis_hyphen_variants() {
        use tempfile::TempDir;
        let temp_dir = TempDir::new().expect("internal error");
        let test_file = temp_dir.path().join("test.rs");
        std::fs::write(&test_file, "fn main() {}").expect("internal error");

        // Test hyphen variants
        let result = CommandDispatcher::execute_report_command(
            Some(temp_dir.path().to_path_buf()),
            OutputFormat::Table,
            false,
            false,
            false,
            vec!["dead-code".to_string(), "technical-debt".to_string(), "big-o".to_string()],
            None,
            None,
            false,
            false,
            false,
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: handle_spec_command variants

    #[tokio::test]
    #[ignore = "Calls process::exit"]
    async fn test_spec_score_command() {
        use crate::cli::commands::{SpecCommands, SpecOutputFormat};
        use tempfile::NamedTempFile;

        let temp_file = NamedTempFile::new().expect("internal error");
        std::fs::write(temp_file.path(), "# Test Spec\n\n## Overview\nTest content").expect("internal error");

        let command = SpecCommands::Score {
            spec: temp_file.path().to_path_buf(),
            format: SpecOutputFormat::Text,
            output: None,
            verbose: true,
        };
        let result = CommandDispatcher::handle_spec_command(command).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_spec_comply_dry_run() {
        use crate::cli::commands::{SpecCommands, SpecOutputFormat};
        use tempfile::NamedTempFile;

        let temp_file = NamedTempFile::new().expect("internal error");
        std::fs::write(temp_file.path(), "# Spec\n\n## Details").expect("internal error");

        let command = SpecCommands::Comply {
            spec: temp_file.path().to_path_buf(),
            dry_run: true,
            format: SpecOutputFormat::Json,
        };
        let result = CommandDispatcher::handle_spec_command(command).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_spec_create_command() {
        use crate::cli::commands::SpecCommands;
        use tempfile::TempDir;

        let temp_dir = TempDir::new().expect("internal error");

        let command = SpecCommands::Create {
            name: "new-feature".to_string(),
            issue: Some("GH-456".to_string()),
            epic: None,
            output: Some(temp_dir.path().to_path_buf()),
        };
        let result = CommandDispatcher::handle_spec_command(command).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_spec_list_command() {
        use crate::cli::commands::{SpecCommands, SpecOutputFormat};
        use tempfile::TempDir;

        let temp_dir = TempDir::new().expect("internal error");

        let command = SpecCommands::List {
            path: temp_dir.path().to_path_buf(),
            min_score: Some(70),
            failing_only: false,
            format: SpecOutputFormat::Text,
        };
        let result = CommandDispatcher::handle_spec_command(command).await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: execute_work_command variants

    #[tokio::test]
    async fn test_work_init_with_github() {
        use crate::cli::commands::WorkCommands;
        use tempfile::TempDir;

        let temp_dir = TempDir::new().expect("internal error");

        let command = WorkCommands::Init {
            github_repo: Some("user/repo".to_string()),
            no_github: false,
            path: Some(temp_dir.path().to_path_buf()),
        };
        let result = CommandDispatcher::execute_work_command(&command).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_work_start_with_spec() {
        use crate::cli::commands::WorkCommands;
        use tempfile::TempDir;

        let temp_dir = TempDir::new().expect("internal error");

        let command = WorkCommands::Start {
            id: "GH-123".to_string(),
            with_spec: true,
            epic: true,
            path: Some(temp_dir.path().to_path_buf()),
            create_github: false,
            profile: None,
            without: None,
            iteration: 1,
        };
        let result = CommandDispatcher::execute_work_command(&command).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_work_sync_directions() {
        use crate::cli::commands::{SyncDirection, WorkCommands};
        use tempfile::TempDir;

        let temp_dir = TempDir::new().expect("internal error");

        for direction in [SyncDirection::Full, SyncDirection::YamlToGithub, SyncDirection::GithubToYaml] {
            let command = WorkCommands::Sync {
                direction,
                path: Some(temp_dir.path().to_path_buf()),
                dry_run: true,
            };
            let result = CommandDispatcher::execute_work_command(&command).await;
            assert!(result.is_ok() || result.is_err());
        }
    }

    #[tokio::test]
    async fn test_work_validate_with_fix() {
        use crate::cli::commands::WorkCommands;
        use tempfile::TempDir;

        let temp_dir = TempDir::new().expect("internal error");

        let command = WorkCommands::Validate {
            path: Some(temp_dir.path().to_path_buf()),
            verbose: false,
            fix: true,
        };
        let result = CommandDispatcher::execute_work_command(&command).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_work_migrate_with_backup() {
        use crate::cli::commands::WorkCommands;
        use tempfile::TempDir;

        let temp_dir = TempDir::new().expect("internal error");

        let command = WorkCommands::Migrate {
            path: Some(temp_dir.path().to_path_buf()),
            dry_run: false,
            backup: true,
        };
        let result = CommandDispatcher::execute_work_command(&command).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_work_list_statuses() {
        use crate::cli::commands::WorkCommands;

        let command = WorkCommands::ListStatuses;
        let result = CommandDispatcher::execute_work_command(&command).await;
        assert!(result.is_ok());
    }
}

#[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);
        }
    }
}