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
//! CommandDispatcher tests - Part 3: Scaffold, quality gate, and report tests
//! Extracted for file health compliance (CB-040)

use super::*;

#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod scaffold_quality_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_scaffold_command routing (all variants)

    #[tokio::test]
    async fn test_scaffold_project_routing() {
        let server = create_test_server();
        let command = Commands::Scaffold {
            command: ScaffoldCommands::Project {
                toolchain: "rust".to_string(),
                templates: vec!["basic".to_string()],
                params: vec![],
                parallel: 1,
            },
        };
        // May fail due to missing templates but routing works
        let result = CommandDispatcher::execute_command(command, server).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_scaffold_agent_routing() {
        let server = create_test_server();
        let command = Commands::Scaffold {
            command: ScaffoldCommands::Agent {
                name: "test-agent".to_string(),
                template: "mcp-server".to_string(),
                features: vec![],
                quality: "standard".to_string(),
                output: None,
                force: false,
                dry_run: true,
                interactive: false,
                deterministic_core: None,
                probabilistic_wrapper: None,
            },
        };
        let result = CommandDispatcher::execute_command(command, server).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_scaffold_wasm_routing() {
        let server = create_test_server();
        let command = Commands::Scaffold {
            command: ScaffoldCommands::Wasm {
                name: "test-wasm".to_string(),
                framework: "wasm-labs".to_string(),
                features: vec![],
                quality: "standard".to_string(),
                output: None,
                force: false,
                dry_run: true,
            },
        };
        let result = CommandDispatcher::execute_command(command, server).await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    #[ignore = "Calls process::exit"]
    async fn test_scaffold_validate_template_routing() {
        let server = create_test_server();
        let command = Commands::Scaffold {
            command: ScaffoldCommands::ValidateTemplate {
                path: PathBuf::from("/nonexistent/template.yaml"),
            },
        };
        // Should fail due to nonexistent path
        let result = CommandDispatcher::execute_command(command, server).await;
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn test_scaffold_list_subagents_routing() {
        let server = create_test_server();
        let command = Commands::Scaffold {
            command: ScaffoldCommands::ListSubagents { all: false },
        };
        let result = CommandDispatcher::execute_command(command, server).await;
        assert!(result.is_ok());
    }

    #[tokio::test]
    async fn test_scaffold_show_tool_mapping_routing() {
        let server = create_test_server();
        let command = Commands::Scaffold {
            command: ScaffoldCommands::ShowToolMapping { agent: None },
        };
        let result = CommandDispatcher::execute_command(command, server).await;
        assert!(result.is_ok());
    }

    // Test: execute_quality_gate_command with various check types

    #[tokio::test]
    async fn test_quality_gate_dead_code_check() {
        use tempfile::TempDir;
        let temp_dir = TempDir::new().expect("internal error");
        let result = CommandDispatcher::execute_quality_gate_command(
            Some(temp_dir.path().to_path_buf()),
            None,
            OutputFormat::Json,
            false,
            vec!["dead_code".to_string()],
            Some(0.2),
            None,
            None,
            false,
            None,
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_quality_gate_complexity_check() {
        use tempfile::TempDir;
        let temp_dir = TempDir::new().expect("internal error");
        let result = CommandDispatcher::execute_quality_gate_command(
            Some(temp_dir.path().to_path_buf()),
            None,
            OutputFormat::Table,
            true, // fail_on_violation
            vec!["complexity".to_string()],
            None,
            None,
            Some(15),
            false,
            None,
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_quality_gate_entropy_check() {
        use tempfile::TempDir;
        let temp_dir = TempDir::new().expect("internal error");
        let result = CommandDispatcher::execute_quality_gate_command(
            Some(temp_dir.path().to_path_buf()),
            None,
            OutputFormat::Yaml,
            false,
            vec!["entropy".to_string()],
            None,
            Some(0.8),
            None,
            false,
            None,
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_quality_gate_all_checks() {
        use tempfile::TempDir;
        let temp_dir = TempDir::new().expect("internal error");
        let result = CommandDispatcher::execute_quality_gate_command(
            Some(temp_dir.path().to_path_buf()),
            None,
            OutputFormat::Json,
            false,
            vec!["all".to_string()],
            None,
            None,
            None,
            true, // include_provability
            None,
            true, // perf
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_quality_gate_with_file_filter() {
        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");

        let result = CommandDispatcher::execute_quality_gate_command(
            Some(temp_dir.path().to_path_buf()),
            Some(test_file),
            OutputFormat::Table,
            false,
            vec!["complexity".to_string()],
            None,
            None,
            None,
            false,
            None,
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_quality_gate_with_output_file() {
        use tempfile::TempDir;
        let temp_dir = TempDir::new().expect("internal error");
        let output_file = temp_dir.path().join("output.json");

        let result = CommandDispatcher::execute_quality_gate_command(
            Some(temp_dir.path().to_path_buf()),
            None,
            OutputFormat::Json,
            false,
            vec!["complexity".to_string()],
            None,
            None,
            None,
            false,
            Some(output_file),
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: execute_report_command with various analysis types

    #[tokio::test]
    async fn test_report_dead_code_analysis() {
        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() {} fn unused() {}").expect("internal error");

        let result = CommandDispatcher::execute_report_command(
            Some(temp_dir.path().to_path_buf()),
            OutputFormat::Json,
            false,
            false,
            false,
            vec!["dead_code".to_string()],
            None,
            None,
            false,
            false,
            false,
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_report_with_visualizations() {
        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");

        let result = CommandDispatcher::execute_report_command(
            Some(temp_dir.path().to_path_buf()),
            OutputFormat::Table,
            true, // include_visualizations
            true, // include_executive_summary
            true, // include_recommendations
            vec!["complexity".to_string()],
            Some(0.9),
            None,
            false,
            false,
            false,
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_report_text_format() {
        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");

        let result = CommandDispatcher::execute_report_command(
            Some(temp_dir.path().to_path_buf()),
            OutputFormat::Table,
            false,
            false,
            false,
            vec!["complexity".to_string()],
            None,
            None,
            false,
            true, // text
            false,
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_report_markdown_format() {
        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");

        let result = CommandDispatcher::execute_report_command(
            Some(temp_dir.path().to_path_buf()),
            OutputFormat::Table,
            false,
            false,
            false,
            vec!["complexity".to_string()],
            None,
            None,
            false,
            false,
            true, // markdown
            false,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_report_csv_format() {
        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");

        let result = CommandDispatcher::execute_report_command(
            Some(temp_dir.path().to_path_buf()),
            OutputFormat::Table,
            false,
            false,
            false,
            vec!["complexity".to_string()],
            None,
            None,
            false,
            false,
            false,
            true, // csv
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    // Test: execute_config_command variants

    #[tokio::test]
    async fn test_config_validate() {
        let result = CommandDispatcher::execute_config_command(
            false, false, true, false, None, None, None,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_config_with_section() {
        let result = CommandDispatcher::execute_config_command(
            true,
            false,
            false,
            false,
            Some("quality".to_string()),
            None,
            None,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }

    #[tokio::test]
    async fn test_config_with_set_values() {
        let result = CommandDispatcher::execute_config_command(
            false,
            false,
            false,
            false,
            None,
            Some(vec!["test.key=value".to_string()]),
            None,
        )
        .await;
        assert!(result.is_ok() || result.is_err());
    }
}