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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
//! Simple service tests - Part 1
//! Helper functions and analyze_complexity/satd/dead_code/tdg tests

use super::*;
use std::path::PathBuf;
use tempfile::TempDir;

// Helper function to create a valid temp directory for tests
pub(super) fn create_temp_dir() -> TempDir {
    tempfile::tempdir().expect("Failed to create temp directory")
}

// Helper function to create a valid temp file for tests
pub(super) fn create_temp_file(dir: &TempDir, name: &str) -> PathBuf {
    let file_path = dir.path().join(name);
    std::fs::write(&file_path, "fn main() {}").expect("Failed to write temp file");
    file_path
}

// === SimpleContractService::new tests ===

#[test]
fn test_service_new_succeeds() {
    let service = SimpleContractService::new();
    assert!(service.is_ok());
}

// === analyze_complexity tests ===

#[tokio::test]
async fn test_analyze_complexity_success() {
    let service = SimpleContractService::new().unwrap();
    let temp_dir = create_temp_dir();

    let contract = AnalyzeComplexityContract {
        base: BaseAnalysisContract {
            path: temp_dir.path().to_path_buf(),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 60,
        },
        max_cyclomatic: Some(20),
        max_cognitive: Some(15),
        max_halstead: Some(10.0),
    };

    let result = service.analyze_complexity(contract).await;
    assert!(result.is_ok());

    let value = result.unwrap();
    assert!(value.get("results").is_some());
    assert!(value.get("summary").is_some());
    assert!(value.get("metadata").is_some());

    // Verify metadata structure
    let metadata = value.get("metadata").unwrap();
    assert!(metadata.get("path").is_some());
    assert!(metadata.get("format").is_some());
    assert!(metadata.get("include_tests").is_some());
    assert!(metadata.get("timeout").is_some());
    assert!(metadata.get("timestamp").is_some());
}

#[tokio::test]
async fn test_analyze_complexity_with_invalid_path() {
    let service = SimpleContractService::new().unwrap();

    let contract = AnalyzeComplexityContract {
        base: BaseAnalysisContract {
            path: PathBuf::from("/nonexistent/path/that/does/not/exist"),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 60,
        },
        max_cyclomatic: None,
        max_cognitive: None,
        max_halstead: None,
    };

    let result = service.analyze_complexity(contract).await;
    assert!(result.is_err());
}

#[tokio::test]
async fn test_analyze_complexity_with_invalid_halstead() {
    let service = SimpleContractService::new().unwrap();
    let temp_dir = create_temp_dir();

    let contract = AnalyzeComplexityContract {
        base: BaseAnalysisContract {
            path: temp_dir.path().to_path_buf(),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 60,
        },
        max_cyclomatic: None,
        max_cognitive: None,
        max_halstead: Some(-1.0), // Invalid - must be positive
    };

    let result = service.analyze_complexity(contract).await;
    assert!(result.is_err());
}

#[tokio::test]
async fn test_analyze_complexity_with_zero_timeout() {
    let service = SimpleContractService::new().unwrap();
    let temp_dir = create_temp_dir();

    let contract = AnalyzeComplexityContract {
        base: BaseAnalysisContract {
            path: temp_dir.path().to_path_buf(),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 0, // Invalid timeout
        },
        max_cyclomatic: None,
        max_cognitive: None,
        max_halstead: None,
    };

    let result = service.analyze_complexity(contract).await;
    assert!(result.is_err());
}

#[tokio::test]
async fn test_analyze_complexity_with_too_many_files() {
    let service = SimpleContractService::new().unwrap();
    let temp_dir = create_temp_dir();

    let contract = AnalyzeComplexityContract {
        base: BaseAnalysisContract {
            path: temp_dir.path().to_path_buf(),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(2000), // Too many files
            include_tests: false,
            timeout: 60,
        },
        max_cyclomatic: None,
        max_cognitive: None,
        max_halstead: None,
    };

    let result = service.analyze_complexity(contract).await;
    assert!(result.is_err());
}

// === analyze_satd tests ===

#[tokio::test]
async fn test_analyze_satd_success() {
    let service = SimpleContractService::new().unwrap();
    let temp_dir = create_temp_dir();

    let contract = AnalyzeSatdContract {
        base: BaseAnalysisContract {
            path: temp_dir.path().to_path_buf(),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 60,
        },
        severity: Some(SatdSeverity::Medium),
        critical_only: false,
        strict: true,
        fail_on_violation: false,
    };

    let result = service.analyze_satd(contract).await;
    assert!(result.is_ok());

    let value = result.unwrap();
    assert!(value.get("results").is_some());
    assert!(value.get("summary").is_some());

    // Check summary includes strict mode info
    let summary = value.get("summary").unwrap().as_str().unwrap();
    assert!(summary.contains("strict mode: true"));
}

#[tokio::test]
async fn test_analyze_satd_not_strict() {
    let service = SimpleContractService::new().unwrap();
    let temp_dir = create_temp_dir();

    let contract = AnalyzeSatdContract {
        base: BaseAnalysisContract {
            path: temp_dir.path().to_path_buf(),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 60,
        },
        severity: None,
        critical_only: true,
        strict: false,
        fail_on_violation: true,
    };

    let result = service.analyze_satd(contract).await;
    assert!(result.is_ok());

    let value = result.unwrap();
    let summary = value.get("summary").unwrap().as_str().unwrap();
    assert!(summary.contains("strict mode: false"));
}

#[tokio::test]
async fn test_analyze_satd_with_invalid_path() {
    let service = SimpleContractService::new().unwrap();

    let contract = AnalyzeSatdContract {
        base: BaseAnalysisContract {
            path: PathBuf::from("/nonexistent/path"),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 60,
        },
        severity: None,
        critical_only: false,
        strict: false,
        fail_on_violation: false,
    };

    let result = service.analyze_satd(contract).await;
    assert!(result.is_err());
}

// === analyze_dead_code tests ===

#[tokio::test]
async fn test_analyze_dead_code_success() {
    let service = SimpleContractService::new().unwrap();
    let temp_dir = create_temp_dir();

    let contract = AnalyzeDeadCodeContract {
        base: BaseAnalysisContract {
            path: temp_dir.path().to_path_buf(),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 60,
        },
        include_unreachable: true,
        min_dead_lines: 5,
        max_percentage: 50.0,
        fail_on_violation: false,
    };

    let result = service.analyze_dead_code(contract).await;
    assert!(result.is_ok());

    let value = result.unwrap();
    let results = value.get("results").unwrap().as_array().unwrap();
    assert_eq!(results.len(), 1);

    // Check unreachable blocks are included
    let first_result = &results[0];
    let unreachable_blocks = first_result
        .get("unreachable_blocks")
        .unwrap()
        .as_u64()
        .unwrap();
    assert_eq!(unreachable_blocks, 2); // include_unreachable is true
}

#[tokio::test]
async fn test_analyze_dead_code_without_unreachable() {
    let service = SimpleContractService::new().unwrap();
    let temp_dir = create_temp_dir();

    let contract = AnalyzeDeadCodeContract {
        base: BaseAnalysisContract {
            path: temp_dir.path().to_path_buf(),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 60,
        },
        include_unreachable: false,
        min_dead_lines: 0,
        max_percentage: 100.0,
        fail_on_violation: false,
    };

    let result = service.analyze_dead_code(contract).await;
    assert!(result.is_ok());

    let value = result.unwrap();
    let results = value.get("results").unwrap().as_array().unwrap();
    let first_result = &results[0];
    let unreachable_blocks = first_result
        .get("unreachable_blocks")
        .unwrap()
        .as_u64()
        .unwrap();
    assert_eq!(unreachable_blocks, 0); // include_unreachable is false
}

#[tokio::test]
async fn test_analyze_dead_code_invalid_percentage() {
    let service = SimpleContractService::new().unwrap();
    let temp_dir = create_temp_dir();

    let contract = AnalyzeDeadCodeContract {
        base: BaseAnalysisContract {
            path: temp_dir.path().to_path_buf(),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 60,
        },
        include_unreachable: false,
        min_dead_lines: 0,
        max_percentage: 150.0, // Invalid - must be 0-100
        fail_on_violation: false,
    };

    let result = service.analyze_dead_code(contract).await;
    assert!(result.is_err());
}

#[tokio::test]
async fn test_analyze_dead_code_negative_percentage() {
    let service = SimpleContractService::new().unwrap();
    let temp_dir = create_temp_dir();

    let contract = AnalyzeDeadCodeContract {
        base: BaseAnalysisContract {
            path: temp_dir.path().to_path_buf(),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 60,
        },
        include_unreachable: false,
        min_dead_lines: 0,
        max_percentage: -10.0, // Invalid - must be >= 0
        fail_on_violation: false,
    };

    let result = service.analyze_dead_code(contract).await;
    assert!(result.is_err());
}

// === analyze_tdg tests ===

#[tokio::test]
async fn test_analyze_tdg_success_with_components() {
    let service = SimpleContractService::new().unwrap();
    let temp_dir = create_temp_dir();

    let contract = AnalyzeTdgContract {
        base: BaseAnalysisContract {
            path: temp_dir.path().to_path_buf(),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 60,
        },
        threshold: 1.0,
        include_components: true,
        critical_only: false,
    };

    let result = service.analyze_tdg(contract).await;
    assert!(result.is_ok());

    let value = result.unwrap();
    let results = value.get("results").unwrap().as_array().unwrap();
    let first_result = &results[0];

    // Components should be present
    assert!(first_result.get("components").is_some());
    let components = first_result.get("components").unwrap();
    assert!(components.get("complexity").is_some());
    assert!(components.get("churn").is_some());
    assert!(components.get("coverage").is_some());
}

#[tokio::test]
async fn test_analyze_tdg_success_without_components() {
    let service = SimpleContractService::new().unwrap();
    let temp_dir = create_temp_dir();

    let contract = AnalyzeTdgContract {
        base: BaseAnalysisContract {
            path: temp_dir.path().to_path_buf(),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 60,
        },
        threshold: 2.0,
        include_components: false,
        critical_only: true,
    };

    let result = service.analyze_tdg(contract).await;
    assert!(result.is_ok());

    let value = result.unwrap();
    let results = value.get("results").unwrap().as_array().unwrap();
    let first_result = &results[0];

    // Components should be null
    assert!(first_result.get("components").unwrap().is_null());
}

#[tokio::test]
async fn test_analyze_tdg_invalid_threshold() {
    let service = SimpleContractService::new().unwrap();
    let temp_dir = create_temp_dir();

    let contract = AnalyzeTdgContract {
        base: BaseAnalysisContract {
            path: temp_dir.path().to_path_buf(),
            format: OutputFormat::Json,
            output: None,
            top_files: Some(10),
            include_tests: false,
            timeout: 60,
        },
        threshold: -1.0, // Invalid - must be non-negative
        include_components: false,
        critical_only: false,
    };

    let result = service.analyze_tdg(contract).await;
    assert!(result.is_err());
}