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
// cargo_mutants_backend_tests.rs — included from cargo_mutants_backend.rs
// Tests for cargo-mutants backend handler

#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod tests {
    use super::*;

    // =========================================================================
    // CargoMutantsConfig Tests
    // =========================================================================

    #[test]
    fn test_config_creation_minimal() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/test/project"),
            output: None,
            timeout: 60,
            jobs: None,
            features: None,
            all_features: false,
            no_default_features: false,
            no_shuffle: false,
        };

        assert_eq!(config.path, PathBuf::from("/test/project"));
        assert!(config.output.is_none());
        assert_eq!(config.timeout, 60);
    }

    #[test]
    fn test_config_creation_with_output() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/test/project"),
            output: Some(PathBuf::from("/test/output")),
            timeout: 120,
            jobs: None,
            features: None,
            all_features: false,
            no_default_features: false,
            no_shuffle: false,
        };

        assert_eq!(config.output.unwrap(), PathBuf::from("/test/output"));
    }

    #[test]
    fn test_config_with_jobs() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/test/project"),
            output: None,
            timeout: 60,
            jobs: Some(8),
            features: None,
            all_features: false,
            no_default_features: false,
            no_shuffle: false,
        };

        assert_eq!(config.jobs, Some(8));
    }

    #[test]
    fn test_config_with_features() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/test/project"),
            output: None,
            timeout: 60,
            jobs: None,
            features: Some(vec!["foo".to_string(), "bar".to_string()]),
            all_features: false,
            no_default_features: false,
            no_shuffle: false,
        };

        let features = config.features.unwrap();
        assert_eq!(features.len(), 2);
        assert!(features.contains(&"foo".to_string()));
        assert!(features.contains(&"bar".to_string()));
    }

    #[test]
    fn test_config_all_features() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/test/project"),
            output: None,
            timeout: 60,
            jobs: None,
            features: None,
            all_features: true,
            no_default_features: false,
            no_shuffle: false,
        };

        assert!(config.all_features);
    }

    #[test]
    fn test_config_no_default_features() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/test/project"),
            output: None,
            timeout: 60,
            jobs: None,
            features: None,
            all_features: false,
            no_default_features: true,
            no_shuffle: false,
        };

        assert!(config.no_default_features);
    }

    #[test]
    fn test_config_no_shuffle() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/test/project"),
            output: None,
            timeout: 60,
            jobs: None,
            features: None,
            all_features: false,
            no_default_features: false,
            no_shuffle: true,
        };

        assert!(config.no_shuffle);
    }

    #[test]
    fn test_config_clone() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/test/project"),
            output: Some(PathBuf::from("/output")),
            timeout: 120,
            jobs: Some(4),
            features: Some(vec!["feature1".to_string()]),
            all_features: true,
            no_default_features: false,
            no_shuffle: true,
        };

        let cloned = config.clone();
        assert_eq!(cloned.path, config.path);
        assert_eq!(cloned.timeout, config.timeout);
        assert_eq!(cloned.jobs, config.jobs);
        assert_eq!(cloned.all_features, config.all_features);
        assert_eq!(cloned.no_shuffle, config.no_shuffle);
    }

    #[test]
    fn test_config_debug() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/test/project"),
            output: None,
            timeout: 60,
            jobs: None,
            features: None,
            all_features: false,
            no_default_features: false,
            no_shuffle: false,
        };

        let debug_str = format!("{:?}", config);
        assert!(debug_str.contains("CargoMutantsConfig"));
        assert!(debug_str.contains("/test/project"));
    }

    #[test]
    fn test_config_features_join() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/test"),
            output: None,
            timeout: 60,
            jobs: None,
            features: Some(vec![
                "feat1".to_string(),
                "feat2".to_string(),
                "feat3".to_string(),
            ]),
            all_features: false,
            no_default_features: false,
            no_shuffle: false,
        };

        let features = config.features.unwrap();
        let joined = features.join(",");
        assert_eq!(joined, "feat1,feat2,feat3");
    }

    #[test]
    fn test_config_default_output_path() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/test/project"),
            output: None,
            timeout: 60,
            jobs: None,
            features: None,
            all_features: false,
            no_default_features: false,
            no_shuffle: false,
        };

        // When output is None, default should be path.join("mutants.out")
        let expected = config.path.join("mutants.out");
        assert_eq!(expected, PathBuf::from("/test/project/mutants.out"));
    }

    // =========================================================================
    // Display Statistics Tests (with mock reports)
    // =========================================================================

    #[test]
    fn test_display_statistics_empty_report() {
        use crate::services::mutation::json_parser::CargoMutantsReport;

        let report = CargoMutantsReport::default();
        // This just tests that display_statistics doesn't panic with empty report
        display_statistics(&report);
    }

    // =========================================================================
    // Execute Function Error Path Tests
    // =========================================================================

    #[test]
    fn test_execute_nonexistent_path() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/nonexistent/path/that/does/not/exist"),
            output: None,
            timeout: 60,
            jobs: None,
            features: None,
            all_features: false,
            no_default_features: false,
            no_shuffle: false,
        };

        // This will fail because cargo-mutants won't be installed or path doesn't exist
        let result = execute(config);
        assert!(result.is_err());
    }

    #[test]
    fn test_output_dir_determination_with_output() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/project"),
            output: Some(PathBuf::from("/custom/output")),
            timeout: 60,
            jobs: None,
            features: None,
            all_features: false,
            no_default_features: false,
            no_shuffle: false,
        };

        // Test output dir logic
        let output_dir = if let Some(ref output) = config.output {
            output.clone()
        } else {
            config.path.join("mutants.out")
        };

        assert_eq!(output_dir, PathBuf::from("/custom/output"));
    }

    #[test]
    fn test_output_dir_determination_without_output() {
        let config = CargoMutantsConfig {
            path: PathBuf::from("/project"),
            output: None,
            timeout: 60,
            jobs: None,
            features: None,
            all_features: false,
            no_default_features: false,
            no_shuffle: false,
        };

        // Test output dir logic
        let output_dir = if let Some(ref output) = config.output {
            output.clone()
        } else {
            config.path.join("mutants.out")
        };

        assert_eq!(output_dir, PathBuf::from("/project/mutants.out"));
    }

    // =========================================================================
    // Command Building Logic Tests
    // =========================================================================

    #[test]
    fn test_jobs_to_string() {
        let jobs: Option<usize> = Some(4);
        if let Some(j) = jobs {
            let str = j.to_string();
            assert_eq!(str, "4");
        }
    }

    #[test]
    fn test_timeout_to_string() {
        let timeout: u64 = 120;
        let str = timeout.to_string();
        assert_eq!(str, "120");
    }

    #[test]
    fn test_features_empty_vec() {
        let features: Vec<String> = vec![];
        let joined = features.join(",");
        assert_eq!(joined, "");
    }

    #[test]
    fn test_features_single_item() {
        let features = vec!["single".to_string()];
        let joined = features.join(",");
        assert_eq!(joined, "single");
    }

    // =========================================================================
    // Exit Code Handling Tests
    // =========================================================================

    #[test]
    fn test_exit_code_success() {
        let exit_code = 0;
        let should_continue = exit_code == 0 || exit_code == 2;
        assert!(should_continue);
    }

    #[test]
    fn test_exit_code_missed_mutants() {
        let exit_code = 2;
        let should_continue = exit_code == 0 || exit_code == 2;
        assert!(should_continue);
    }

    #[test]
    fn test_exit_code_failure() {
        let exit_code = 1;
        let should_fail = exit_code != 0 && exit_code != 2;
        assert!(should_fail);
    }

    #[test]
    fn test_exit_code_negative() {
        let exit_code = -1;
        let should_fail = exit_code != 0 && exit_code != 2;
        assert!(should_fail);
    }

    // =========================================================================
    // Mutation Score Quality Assessment Tests
    // =========================================================================

    #[test]
    fn test_quality_excellent() {
        let score = 95.0;
        let is_excellent = score >= 90.0;
        assert!(is_excellent);
    }

    #[test]
    fn test_quality_good() {
        let score = 80.0;
        let is_good = score >= 75.0 && score < 90.0;
        assert!(is_good);
    }

    #[test]
    fn test_quality_moderate() {
        let score = 60.0;
        let is_moderate = score >= 50.0 && score < 75.0;
        assert!(is_moderate);
    }

    #[test]
    fn test_quality_low() {
        let score = 40.0;
        let is_low = score < 50.0;
        assert!(is_low);
    }

    // =========================================================================
    // Percentage Calculation Tests
    // =========================================================================

    #[test]
    fn test_percentage_calculation() {
        let caught = 80;
        let total = 100;
        let pct = (caught as f64 / total as f64) * 100.0;
        assert!((pct - 80.0).abs() < 0.001);
    }

    #[test]
    fn test_percentage_calculation_zero_total() {
        let total = 0;
        // In real code, we skip percentage display if total == 0
        let should_skip = total == 0;
        assert!(should_skip);
    }

    #[test]
    fn test_percentage_calculation_all_caught() {
        let caught = 100;
        let total = 100;
        let pct = (caught as f64 / total as f64) * 100.0;
        assert!((pct - 100.0).abs() < 0.001);
    }

    #[test]
    fn test_percentage_calculation_none_caught() {
        let caught = 0;
        let total = 100;
        let pct = (caught as f64 / total as f64) * 100.0;
        assert!((pct - 0.0).abs() < 0.001);
    }
}