pmat 3.15.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
// Search engine tests - included by search_engine.rs

#[cfg(test)]
mod tests {
    use super::*;
    use crate::services::git_history::{ChangeType, FileChange};

    fn create_test_index() -> GitHistoryIndex {
        let mut index = GitHistoryIndex::in_memory().unwrap();

        let commits = vec![
            CommitInfo {
                hash: "a".repeat(40),
                message_subject: "Fix null pointer exception in parser".to_string(),
                message_body: Some("Handle edge case when input is empty".to_string()),
                author_name: "Alice".to_string(),
                author_email: "alice@example.com".to_string(),
                timestamp: 1700000000,
                is_merge: false,
                is_fix: true,
                is_feat: false,
                issue_refs: vec!["#123".to_string()],
                files: vec![FileChange {
                    path: "src/parser.rs".to_string(),
                    change_type: ChangeType::Modified,
                    lines_added: 5,
                    lines_deleted: 2,
                }],
            },
            CommitInfo {
                hash: "b".repeat(40),
                message_subject: "Add dark mode support to UI".to_string(),
                message_body: Some("Users can now toggle dark mode in settings".to_string()),
                author_name: "Bob".to_string(),
                author_email: "bob@example.com".to_string(),
                timestamp: 1700100000,
                is_merge: false,
                is_fix: false,
                is_feat: true,
                issue_refs: vec!["#456".to_string()],
                files: vec![FileChange {
                    path: "src/ui/theme.rs".to_string(),
                    change_type: ChangeType::Modified,
                    lines_added: 100,
                    lines_deleted: 10,
                }],
            },
            CommitInfo {
                hash: "c".repeat(40),
                message_subject: "Fix memory leak in cache".to_string(),
                message_body: Some("Clear expired entries from cache".to_string()),
                author_name: "Alice".to_string(),
                author_email: "alice@example.com".to_string(),
                timestamp: 1700200000,
                is_merge: false,
                is_fix: true,
                is_feat: false,
                issue_refs: vec![],
                files: vec![FileChange {
                    path: "src/cache.rs".to_string(),
                    change_type: ChangeType::Modified,
                    lines_added: 20,
                    lines_deleted: 5,
                }],
            },
            CommitInfo {
                hash: "d".repeat(40),
                message_subject: "Refactor error handling module".to_string(),
                message_body: None,
                author_name: "Charlie".to_string(),
                author_email: "charlie@example.com".to_string(),
                timestamp: 1700300000,
                is_merge: false,
                is_fix: false,
                is_feat: false,
                issue_refs: vec![],
                files: vec![FileChange {
                    path: "src/parser.rs".to_string(),
                    change_type: ChangeType::Modified,
                    lines_added: 50,
                    lines_deleted: 30,
                }],
            },
        ];

        index.insert_commits(&commits).unwrap();
        index
    }

    #[test]
    fn test_search_basic() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        let results = engine
            .search("fix bug error", GitSearchOptions::default())
            .unwrap();

        assert!(!results.is_empty(), "Should find commits about fixing bugs");

        // Fix commits should rank higher
        let first = &results[0];
        assert!(
            first.commit.message_subject.to_lowercase().contains("fix")
                || first
                    .commit
                    .message_subject
                    .to_lowercase()
                    .contains("error"),
            "Top result should be about fixing errors"
        );
    }

    #[test]
    fn test_search_filters_by_author() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        let options = GitSearchOptions {
            author_email: Some("alice@example.com".to_string()),
            ..Default::default()
        };

        let results = engine.search("fix", options).unwrap();

        for r in &results {
            assert_eq!(r.commit.author_email, "alice@example.com");
        }
    }

    #[test]
    fn test_search_only_fixes() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        let options = GitSearchOptions {
            only_fixes: true,
            ..Default::default()
        };

        let results = engine.search("bug", options).unwrap();

        for r in &results {
            assert!(r.commit.is_fix, "All results should be fix commits");
        }
    }

    #[test]
    fn test_search_only_features() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        let options = GitSearchOptions {
            only_features: true,
            ..Default::default()
        };

        let results = engine.search("add new", options).unwrap();

        for r in &results {
            assert!(r.commit.is_feat, "All results should be feature commits");
        }
    }

    #[test]
    fn test_search_by_file() {
        let index = create_test_index();
        let engine = GitHistorySearchEngine::new(&index);

        let results = engine.search_by_file("src/parser.rs", 10).unwrap();

        assert_eq!(results.len(), 2, "Two commits touched parser.rs");
    }

    #[test]
    fn test_search_returns_files() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        let results = engine
            .search("dark mode", GitSearchOptions::default())
            .unwrap();

        if !results.is_empty() {
            assert!(!results[0].files.is_empty(), "Results should include files");
        }
    }

    #[test]
    fn test_search_empty_query() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        // Even empty query should return something (all candidates)
        let results = engine.search("", GitSearchOptions::default()).unwrap();

        // With empty query, TF-IDF won't find meaningful matches
        // but should not error
        assert!(results.len() <= 4); // At most all commits
    }

    #[test]
    fn test_search_no_results() {
        let index = GitHistoryIndex::in_memory().unwrap();
        let mut engine = GitHistorySearchEngine::new(&index);

        let results = engine
            .search("anything", GitSearchOptions::default())
            .unwrap();

        assert!(results.is_empty());
    }

    #[test]
    fn test_search_limit() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        let options = GitSearchOptions {
            limit: 2,
            ..Default::default()
        };

        let results = engine.search("commit", options).unwrap();

        assert!(results.len() <= 2);
    }

    #[test]
    fn test_search_timestamp_filter() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        let options = GitSearchOptions {
            since_timestamp: Some(1700100000),
            ..Default::default()
        };

        let results = engine.search("fix", options).unwrap();

        for r in &results {
            assert!(r.commit.timestamp >= 1700100000);
        }
    }

    #[test]
    fn test_search_until_timestamp_filter() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        let options = GitSearchOptions {
            until_timestamp: Some(1700100000),
            ..Default::default()
        };

        let results = engine.search("fix", options).unwrap();

        for r in &results {
            assert!(r.commit.timestamp <= 1700100000);
        }
    }

    #[test]
    fn test_search_author_and_since_filter() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        let options = GitSearchOptions {
            author_email: Some("alice@example.com".to_string()),
            since_timestamp: Some(1700100000),
            ..Default::default()
        };

        let results = engine.search("fix cache memory", options).unwrap();

        for r in &results {
            assert_eq!(r.commit.author_email, "alice@example.com");
            assert!(r.commit.timestamp >= 1700100000);
        }
        // Verifies SQL filter worked; TF-IDF may or may not return results from tiny corpus
    }

    #[test]
    fn test_search_author_and_until_filter() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        let options = GitSearchOptions {
            author_email: Some("alice@example.com".to_string()),
            until_timestamp: Some(1700050000),
            ..Default::default()
        };

        let results = engine.search("fix null pointer", options).unwrap();

        for r in &results {
            assert_eq!(r.commit.author_email, "alice@example.com");
            assert!(r.commit.timestamp <= 1700050000);
        }
        // Verifies SQL filter worked; TF-IDF may or may not return results from tiny corpus
    }

    #[test]
    fn test_search_since_and_until_filter() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        let options = GitSearchOptions {
            since_timestamp: Some(1700050000),
            until_timestamp: Some(1700250000),
            ..Default::default()
        };

        let results = engine.search("dark mode cache", options).unwrap();

        for r in &results {
            assert!(r.commit.timestamp >= 1700050000);
            assert!(r.commit.timestamp <= 1700250000);
        }
        // Commits "b" (ts=1700100000) and "c" (ts=1700200000) should match
    }

    #[test]
    fn test_search_all_three_filters() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        let options = GitSearchOptions {
            author_email: Some("alice@example.com".to_string()),
            since_timestamp: Some(1700050000),
            until_timestamp: Some(1700250000),
            ..Default::default()
        };

        let results = engine.search("fix cache memory", options).unwrap();

        for r in &results {
            assert_eq!(r.commit.author_email, "alice@example.com");
            assert!(r.commit.timestamp >= 1700050000);
            assert!(r.commit.timestamp <= 1700250000);
        }
        // Verifies all three SQL filters applied correctly
    }

    #[test]
    fn test_search_file_path_filter() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        let options = GitSearchOptions {
            file_path: Some("src/parser.rs".to_string()),
            ..Default::default()
        };

        // file_path in GitSearchOptions isn't used in get_candidates SQL
        // but search_by_file provides this functionality
        let results = engine.search("error refactor", options).unwrap();
        // Should still return results (file_path isn't filtered in get_candidates)
        assert!(results.len() <= 4);
    }

    #[test]
    fn test_cosine_similarity_zero_vectors() {
        assert_eq!(cosine_similarity(&[0.0, 0.0], &[1.0, 2.0]), 0.0);
        assert_eq!(cosine_similarity(&[1.0, 2.0], &[0.0, 0.0]), 0.0);
        assert_eq!(cosine_similarity(&[0.0, 0.0], &[0.0, 0.0]), 0.0);
    }

    #[test]
    fn test_cosine_similarity_identical() {
        let v = vec![1.0, 2.0, 3.0];
        let sim = cosine_similarity(&v, &v);
        assert!((sim - 1.0).abs() < 1e-6);
    }

    #[test]
    fn test_cosine_similarity_orthogonal() {
        let a = vec![1.0, 0.0];
        let b = vec![0.0, 1.0];
        let sim = cosine_similarity(&a, &b);
        assert!(sim.abs() < 1e-6);
    }

    // Falsification Test F2 (partial): Semantic clustering
    #[test]
    fn test_fix_commits_cluster_together() {
        let index = create_test_index();
        let mut engine = GitHistorySearchEngine::new(&index);

        // Search for "fix" should rank fix commits higher than feature commits
        let results = engine
            .search("fix bug error crash", GitSearchOptions::default())
            .unwrap();

        if results.len() >= 2 {
            // Fix commits should have higher relevance for this query
            let fix_scores: Vec<f32> = results
                .iter()
                .filter(|r| r.commit.is_fix)
                .map(|r| r.relevance_score)
                .collect();

            let non_fix_scores: Vec<f32> = results
                .iter()
                .filter(|r| !r.commit.is_fix)
                .map(|r| r.relevance_score)
                .collect();

            if !fix_scores.is_empty() && !non_fix_scores.is_empty() {
                let avg_fix = fix_scores.iter().sum::<f32>() / fix_scores.len() as f32;
                let avg_non_fix = non_fix_scores.iter().sum::<f32>() / non_fix_scores.len() as f32;

                // Fix commits should have higher average score for fix-related query
                // This is a weak test since TF-IDF has limitations
                println!(
                    "Avg fix score: {}, Avg non-fix score: {}",
                    avg_fix, avg_non_fix
                );
            }
        }
    }
}