pmat 3.16.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
//! Server tests part 2 - Demo feature tests (serve_* handlers)
//! Extracted for file health compliance (CB-040)

#[allow(unused_imports)]
use super::*;

// =============================================================================
// Helper Function Tests (cfg(feature = "demo"))
// =============================================================================

#[cfg(feature = "demo")]
pub mod demo_feature_tests {
    use super::*;
    use parking_lot::RwLock;

    /// Create test state.
    pub fn create_test_state() -> Arc<RwLock<DemoState>> {
        Arc::new(RwLock::new(DemoState {
            repository: std::path::PathBuf::from("."),
            analysis_results: AnalysisResults {
                files_analyzed: 25,
                avg_complexity: 7.5,
                tech_debt_hours: 12,
                complexity_report: Default::default(),
                churn_analysis: Default::default(),
                dependency_graph: server_tests_part1::create_test_dag(),
                tdg_summary: None,
            },
            mermaid_cache: Arc::new(DashMap::new()),
            system_diagram: Some("graph TD\n    A --> B".to_string()),
        }))
    }

    /// Create state with tdg summary.
    pub fn create_state_with_tdg_summary() -> Arc<RwLock<DemoState>> {
        Arc::new(RwLock::new(DemoState {
            repository: std::path::PathBuf::from("."),
            analysis_results: AnalysisResults {
                files_analyzed: 30,
                avg_complexity: 8.0,
                tech_debt_hours: 15,
                complexity_report: Default::default(),
                churn_analysis: Default::default(),
                dependency_graph: DependencyGraph::default(),
                tdg_summary: Some(crate::models::tdg::TDGSummary {
                    total_files: 30,
                    critical_files: 5,
                    warning_files: 10,
                    average_tdg: 1.8,
                    p95_tdg: 2.5,
                    p99_tdg: 3.0,
                    estimated_debt_hours: 48.0,
                    hotspots: vec![],
                }),
            },
            mermaid_cache: Arc::new(DashMap::new()),
            system_diagram: None,
        }))
    }

    /// Create state with complexity data.
    pub fn create_state_with_complexity_data() -> Arc<RwLock<DemoState>> {
        use crate::services::complexity::{
            ComplexityMetrics, ComplexityReport, ComplexitySummary, FileComplexityMetrics,
            FunctionComplexity,
        };

        let complexity_report = ComplexityReport {
            summary: ComplexitySummary {
                total_files: 3,
                total_functions: 10,
                median_cyclomatic: 5.0,
                median_cognitive: 8.0,
                max_cyclomatic: 25,
                max_cognitive: 30,
                p90_cyclomatic: 15,
                p90_cognitive: 20,
                technical_debt_hours: 5.0,
            },
            violations: vec![],
            hotspots: vec![],
            files: vec![FileComplexityMetrics {
                path: "./server/src/demo/server.rs".to_string(),
                functions: vec![
                    FunctionComplexity {
                        name: "serve_dashboard".to_string(),
                        line_start: 285,
                        line_end: 327,
                        metrics: ComplexityMetrics::new(10, 15, 3, 50),
                    },
                    FunctionComplexity {
                        name: "handle_connection".to_string(),
                        line_start: 203,
                        line_end: 219,
                        metrics: ComplexityMetrics::new(8, 12, 2, 30),
                    },
                ],
                total_complexity: ComplexityMetrics::new(18, 27, 3, 80),
                classes: vec![],
            }],
        };

        Arc::new(RwLock::new(DemoState {
            repository: std::path::PathBuf::from("."),
            analysis_results: AnalysisResults {
                files_analyzed: 3,
                avg_complexity: 9.0,
                tech_debt_hours: 5,
                complexity_report,
                churn_analysis: Default::default(),
                dependency_graph: server_tests_part1::create_test_dag(),
                tdg_summary: None,
            },
            mermaid_cache: Arc::new(DashMap::new()),
            system_diagram: None,
        }))
    }

    /// Create state with churn data.
    pub fn create_state_with_churn_data() -> Arc<RwLock<DemoState>> {
        use crate::models::churn::{ChurnSummary, CodeChurnAnalysis, FileChurnMetrics};
        use chrono::Utc;
        use std::path::PathBuf;

        let churn_analysis = CodeChurnAnalysis {
            generated_at: Utc::now(),
            period_days: 30,
            repository_root: PathBuf::from("."),
            files: vec![FileChurnMetrics {
                path: PathBuf::from("./server/src/demo/server.rs"),
                relative_path: "./server/src/demo/server.rs".to_string(),
                commit_count: 15,
                unique_authors: vec!["dev1".to_string(), "dev2".to_string()],
                additions: 500,
                deletions: 200,
                churn_score: 7.5,
                last_modified: Utc::now(),
                first_seen: Utc::now(),
            }],
            summary: ChurnSummary {
                total_commits: 50,
                total_files_changed: 20,
                hotspot_files: vec![PathBuf::from("server.rs")],
                stable_files: vec![],
                author_contributions: {
                    let mut map = std::collections::HashMap::new();
                    map.insert("dev1".to_string(), 30);
                    map.insert("dev2".to_string(), 20);
                    map
                },
                mean_churn_score: 5.0,
                variance_churn_score: 2.0,
                stddev_churn_score: 1.4,
            },
        };

        Arc::new(RwLock::new(DemoState {
            repository: std::path::PathBuf::from("."),
            analysis_results: AnalysisResults {
                files_analyzed: 20,
                avg_complexity: 6.0,
                tech_debt_hours: 8,
                complexity_report: Default::default(),
                churn_analysis,
                dependency_graph: Default::default(),
                tdg_summary: None,
            },
            mermaid_cache: Arc::new(DashMap::new()),
            system_diagram: None,
        }))
    }

    // -------------------------------------------------------------------------
    // serve_dashboard Tests
    // -------------------------------------------------------------------------

    #[test]
    fn test_serve_dashboard_returns_html() {
        let state = create_test_state();
        let response = serve_dashboard(&state);

        assert_eq!(response.status(), http::StatusCode::OK);

        let content_type = response.headers().get("Content-Type").unwrap();
        assert_eq!(content_type, "text/html; charset=utf-8");

        let body = response.body();
        let body_str = std::str::from_utf8(body).unwrap();
        assert!(body_str.contains("<!DOCTYPE html>") || body_str.contains("<html"));
    }

    #[test]
    fn test_serve_dashboard_cache_control() {
        let state = create_test_state();
        let response = serve_dashboard(&state);

        let cache = response.headers().get("Cache-Control").unwrap();
        assert_eq!(cache, "no-cache");
    }

    #[test]
    fn test_serve_dashboard_contains_metrics() {
        let state = create_test_state();
        let response = serve_dashboard(&state);

        let body_str = std::str::from_utf8(response.body()).unwrap();
        // Should contain the analyzed files count
        assert!(body_str.contains("25") || body_str.len() > 0);
    }

    // -------------------------------------------------------------------------
    // serve_static_asset Tests
    // -------------------------------------------------------------------------

    #[test]
    fn test_serve_static_asset_not_found() {
        let response = serve_static_asset("/nonexistent/path.js");

        assert_eq!(response.status(), http::StatusCode::NOT_FOUND);
        let body_str = std::str::from_utf8(response.body()).unwrap();
        assert!(body_str.contains("404") || body_str.contains("Not Found"));
    }

    // -------------------------------------------------------------------------
    // serve_summary_json Tests
    // -------------------------------------------------------------------------

    #[test]
    fn test_serve_summary_json_structure() {
        let state = create_test_state();
        let response = serve_summary_json(&state);

        assert_eq!(response.status(), http::StatusCode::OK);

        let content_type = response.headers().get("Content-Type").unwrap();
        assert_eq!(content_type, "application/json");

        let body: serde_json::Value = serde_json::from_slice(response.body()).unwrap();
        assert!(body.get("files_analyzed").is_some());
        assert!(body.get("avg_complexity").is_some());
        assert!(body.get("tech_debt_hours").is_some());
    }

    #[test]
    fn test_serve_summary_json_values() {
        let state = create_test_state();
        let response = serve_summary_json(&state);

        let body: serde_json::Value = serde_json::from_slice(response.body()).unwrap();
        assert_eq!(body["files_analyzed"], 25);
        assert_eq!(body["time_context"], 100);
        assert_eq!(body["time_complexity"], 150);
        assert_eq!(body["time_dag"], 200);
        assert_eq!(body["time_churn"], 250);
    }

    // -------------------------------------------------------------------------
    // serve_metrics_json Tests
    // -------------------------------------------------------------------------

    #[test]
    fn test_serve_metrics_json_structure() {
        let state = create_test_state();
        let response = serve_metrics_json(&state);

        assert_eq!(response.status(), http::StatusCode::OK);

        let body: serde_json::Value = serde_json::from_slice(response.body()).unwrap();
        assert!(body.get("files_analyzed").is_some());
        assert!(body.get("avg_complexity").is_some());
        assert!(body.get("tech_debt_hours").is_some());
    }

    #[test]
    fn test_serve_metrics_json_values() {
        let state = create_test_state();
        let response = serve_metrics_json(&state);

        let body: serde_json::Value = serde_json::from_slice(response.body()).unwrap();
        assert_eq!(body["files_analyzed"], 25);
        assert!((body["avg_complexity"].as_f64().unwrap() - 7.5).abs() < 0.001);
        assert_eq!(body["tech_debt_hours"], 12);
    }

    // -------------------------------------------------------------------------
    // serve_hotspots_table Tests
    // -------------------------------------------------------------------------

    #[test]
    fn test_serve_hotspots_table_fallback() {
        let state = create_test_state();
        let response = serve_hotspots_table(&state);

        assert_eq!(response.status(), http::StatusCode::OK);

        let content_type = response.headers().get("Content-Type").unwrap();
        assert_eq!(content_type, "application/json");

        let body: Vec<serde_json::Value> = serde_json::from_slice(response.body()).unwrap();
        // Should have fallback data when no complexity files
        assert!(!body.is_empty());
    }

    #[test]
    fn test_serve_hotspots_table_with_data() {
        let state = create_state_with_complexity_data();
        let response = serve_hotspots_table(&state);

        let body: Vec<serde_json::Value> = serde_json::from_slice(response.body()).unwrap();

        // Should have hotspots from complexity data
        assert!(!body.is_empty());

        // First entry should have highest complexity
        let first = &body[0];
        assert!(first.get("rank").is_some());
        assert!(first.get("function").is_some());
        assert!(first.get("complexity").is_some());
        assert!(first.get("path").is_some());
    }

    #[test]
    fn test_serve_hotspots_table_sorting() {
        let state = create_state_with_complexity_data();
        let response = serve_hotspots_table(&state);

        let body: Vec<serde_json::Value> = serde_json::from_slice(response.body()).unwrap();

        // Verify sorted by complexity descending
        for i in 0..body.len().saturating_sub(1) {
            let current = body[i]["complexity"].as_u64().unwrap();
            let next = body[i + 1]["complexity"].as_u64().unwrap();
            assert!(current >= next);
        }
    }

    #[test]
    fn test_serve_hotspots_table_cache_control() {
        let state = create_test_state();
        let response = serve_hotspots_table(&state);

        let cache = response.headers().get("Cache-Control").unwrap();
        assert_eq!(cache, "max-age=60");
    }

    // -------------------------------------------------------------------------
    // serve_dag_mermaid Tests
    // -------------------------------------------------------------------------

    #[test]
    fn test_serve_dag_mermaid_fallback() {
        let state = Arc::new(RwLock::new(DemoState {
            repository: std::path::PathBuf::from("."),
            analysis_results: AnalysisResults {
                files_analyzed: 0,
                avg_complexity: 0.0,
                tech_debt_hours: 0,
                complexity_report: Default::default(),
                churn_analysis: Default::default(),
                dependency_graph: Default::default(),
                tdg_summary: None,
            },
            mermaid_cache: Arc::new(DashMap::new()),
            system_diagram: None,
        }));

        let response = serve_dag_mermaid(&state);

        assert_eq!(response.status(), http::StatusCode::OK);

        let content_type = response.headers().get("Content-Type").unwrap();
        assert_eq!(content_type, "text/plain");

        let body_str = std::str::from_utf8(response.body()).unwrap();
        assert!(body_str.contains("graph TD"));
    }

    #[test]
    fn test_serve_dag_mermaid_with_tdg() {
        let state = create_state_with_tdg_summary();
        let response = serve_dag_mermaid(&state);

        let body_str = std::str::from_utf8(response.body()).unwrap();
        assert!(body_str.contains("graph TD") || body_str.contains("graph"));
    }

    #[test]
    fn test_serve_dag_mermaid_with_graph_data() {
        let state = create_test_state();
        let response = serve_dag_mermaid(&state);

        let body_str = std::str::from_utf8(response.body()).unwrap();
        assert!(body_str.contains("graph"));
    }

    // -------------------------------------------------------------------------
    // serve_system_diagram_mermaid Tests
    // -------------------------------------------------------------------------

    #[test]
    fn test_serve_system_diagram_with_data() {
        let state = create_test_state();
        let response = serve_system_diagram_mermaid(&state);

        assert_eq!(response.status(), http::StatusCode::OK);

        let body_str = std::str::from_utf8(response.body()).unwrap();
        assert!(body_str.contains("graph TD"));
        assert!(body_str.contains("A --> B"));
    }

    #[test]
    fn test_serve_system_diagram_fallback() {
        let state = Arc::new(RwLock::new(DemoState {
            repository: std::path::PathBuf::from("."),
            analysis_results: AnalysisResults {
                files_analyzed: 0,
                avg_complexity: 0.0,
                tech_debt_hours: 0,
                complexity_report: Default::default(),
                churn_analysis: Default::default(),
                dependency_graph: Default::default(),
                tdg_summary: None,
            },
            mermaid_cache: Arc::new(DashMap::new()),
            system_diagram: None,
        }));

        let response = serve_system_diagram_mermaid(&state);

        let body_str = std::str::from_utf8(response.body()).unwrap();
        assert!(body_str.contains("AST Context Analysis"));
        assert!(body_str.contains("Code Complexity"));
    }
}