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
    // 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::{QddCodeType, QddCommands, 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());
    }