tokmd-analysis 1.14.0

Analysis logic and enrichers for tokmd receipts.
Documentation
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
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
//! Wave-42 deep tests for near-duplicate detection.
//!
//! Tests various similarity thresholds, exact duplicates, unique codebases,
//! edge cases (empty files, one-line files), scope isolation, and serde.

use crate::near_dup::{NearDupLimits, build_near_dup_report};
use std::io::Write;
use tempfile::TempDir;
use tokmd_analysis_types::NearDupScope;
use tokmd_types::{ChildIncludeMode, ExportData, FileKind, FileRow};

// ── Helpers ─────────────────────────────────────────────────────

fn make_row(path: &str, module: &str, lang: &str, code: usize, bytes: usize) -> FileRow {
    FileRow {
        path: path.to_string(),
        module: module.to_string(),
        lang: lang.to_string(),
        kind: FileKind::Parent,
        code,
        comments: 0,
        blanks: 0,
        lines: code,
        bytes,
        tokens: code * 5,
    }
}

fn make_export(rows: Vec<FileRow>) -> ExportData {
    ExportData {
        rows,
        module_roots: vec![],
        module_depth: 1,
        children: ChildIncludeMode::Separate,
    }
}

fn write_file(dir: &TempDir, rel: &str, content: &str) {
    let path = dir.path().join(rel);
    if let Some(parent) = path.parent() {
        std::fs::create_dir_all(parent).unwrap();
    }
    let mut f = std::fs::File::create(&path).unwrap();
    f.write_all(content.as_bytes()).unwrap();
}

fn long_source(n: usize, seed: usize) -> String {
    (0..n)
        .map(|i| format!("token_{seed}_{i}"))
        .collect::<Vec<_>>()
        .join(" + ")
}

fn limits() -> NearDupLimits {
    NearDupLimits {
        max_bytes: None,
        max_file_bytes: Some(1_000_000),
    }
}

// ── 1. Exact duplicate files produce similarity ~1.0 ────────────

#[test]
fn exact_duplicates_similarity_near_one() {
    let dir = TempDir::new().unwrap();
    let content = long_source(150, 0);
    write_file(&dir, "a.rs", &content);
    write_file(&dir, "b.rs", &content);

    let rows = vec![
        make_row("a.rs", "mod", "Rust", 150, content.len()),
        make_row("b.rs", "mod", "Rust", 150, content.len()),
    ];
    let export = make_export(rows);
    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Global,
        0.5,
        100,
        None,
        &limits(),
        &[],
    )
    .unwrap();

    assert_eq!(report.pairs.len(), 1);
    assert!(
        report.pairs[0].similarity >= 0.99,
        "exact dups should be ~1.0, got {}",
        report.pairs[0].similarity
    );
}

// ── 2. Completely unique files produce no pairs ─────────────────

#[test]
fn unique_files_no_pairs() {
    let dir = TempDir::new().unwrap();
    write_file(&dir, "a.rs", &long_source(100, 1));
    write_file(&dir, "b.rs", &long_source(100, 2));
    write_file(&dir, "c.rs", &long_source(100, 3));

    let rows = vec![
        make_row("a.rs", "mod", "Rust", 100, 500),
        make_row("b.rs", "mod", "Rust", 100, 500),
        make_row("c.rs", "mod", "Rust", 100, 500),
    ];
    let export = make_export(rows);
    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Global,
        0.5,
        100,
        None,
        &limits(),
        &[],
    )
    .unwrap();

    assert!(
        report.pairs.is_empty(),
        "unique files should produce no pairs, got {}",
        report.pairs.len()
    );
}

// ── 3. Empty files produce no fingerprints (no pairs) ───────────

#[test]
fn empty_files_no_pairs() {
    let dir = TempDir::new().unwrap();
    write_file(&dir, "empty1.rs", "");
    write_file(&dir, "empty2.rs", "");

    let rows = vec![
        make_row("empty1.rs", "mod", "Rust", 0, 0),
        make_row("empty2.rs", "mod", "Rust", 0, 0),
    ];
    let export = make_export(rows);
    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Global,
        0.1,
        100,
        None,
        &limits(),
        &[],
    )
    .unwrap();

    assert!(
        report.pairs.is_empty(),
        "empty files should produce no pairs"
    );
}

// ── 4. One-line files too short for k-gram ──────────────────────

#[test]
fn one_line_files_too_short_for_fingerprinting() {
    let dir = TempDir::new().unwrap();
    write_file(&dir, "short1.rs", "fn main() {}");
    write_file(&dir, "short2.rs", "fn main() {}");

    let rows = vec![
        make_row("short1.rs", "mod", "Rust", 1, 13),
        make_row("short2.rs", "mod", "Rust", 1, 13),
    ];
    let export = make_export(rows);
    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Global,
        0.1,
        100,
        None,
        &limits(),
        &[],
    )
    .unwrap();

    // Files with fewer than K=25 tokens produce no fingerprints
    assert!(
        report.pairs.is_empty(),
        "short files should produce no pairs"
    );
}

// ── 5. High threshold filters out moderate duplicates ───────────

#[test]
fn high_threshold_filters_moderate_duplicates() {
    let dir = TempDir::new().unwrap();
    // Shared prefix with divergent suffixes
    let shared: String = (0..80)
        .map(|i| format!("shared_{i}"))
        .collect::<Vec<_>>()
        .join(" + ");
    let a = format!("{} + {}", shared, long_source(40, 10));
    let b = format!("{} + {}", shared, long_source(40, 20));
    write_file(&dir, "a.rs", &a);
    write_file(&dir, "b.rs", &b);

    let rows = vec![
        make_row("a.rs", "mod", "Rust", 120, a.len()),
        make_row("b.rs", "mod", "Rust", 120, b.len()),
    ];
    let export = make_export(rows);

    // With threshold 0.99 the partially-similar pair should be filtered
    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Global,
        0.99,
        100,
        None,
        &limits(),
        &[],
    )
    .unwrap();

    assert!(
        report.pairs.is_empty(),
        "threshold 0.99 should filter moderate dups"
    );
}

// ── 6. Low threshold catches moderate duplicates ────────────────

#[test]
fn low_threshold_catches_moderate_duplicates() {
    let dir = TempDir::new().unwrap();
    let shared: String = (0..80)
        .map(|i| format!("common_{i}"))
        .collect::<Vec<_>>()
        .join(" + ");
    let a = format!("{} + {}", shared, long_source(30, 10));
    let b = format!("{} + {}", shared, long_source(30, 20));
    write_file(&dir, "a.rs", &a);
    write_file(&dir, "b.rs", &b);

    let rows = vec![
        make_row("a.rs", "mod", "Rust", 110, a.len()),
        make_row("b.rs", "mod", "Rust", 110, b.len()),
    ];
    let export = make_export(rows);

    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Global,
        0.3,
        100,
        None,
        &limits(),
        &[],
    )
    .unwrap();

    assert!(
        !report.pairs.is_empty(),
        "low threshold should detect moderate dups"
    );
}

// ── 7. Module scope isolates comparisons ────────────────────────

#[test]
fn module_scope_isolates_comparisons() {
    let dir = TempDir::new().unwrap();
    let content = long_source(100, 0);
    write_file(&dir, "a.rs", &content);
    write_file(&dir, "b.rs", &content);

    // Same content, different modules
    let rows = vec![
        make_row("a.rs", "mod_a", "Rust", 100, content.len()),
        make_row("b.rs", "mod_b", "Rust", 100, content.len()),
    ];
    let export = make_export(rows);

    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Module,
        0.5,
        100,
        None,
        &limits(),
        &[],
    )
    .unwrap();

    // Files in different modules should not be compared under Module scope
    assert!(
        report.pairs.is_empty(),
        "module scope should isolate comparisons"
    );
}

// ── 8. Lang scope groups by language ────────────────────────────

#[test]
fn lang_scope_groups_by_language() {
    let dir = TempDir::new().unwrap();
    let content = long_source(100, 0);
    write_file(&dir, "a.rs", &content);
    write_file(&dir, "b.py", &content);

    let rows = vec![
        make_row("a.rs", "mod", "Rust", 100, content.len()),
        make_row("b.py", "mod", "Python", 100, content.len()),
    ];
    let export = make_export(rows);

    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Lang,
        0.5,
        100,
        None,
        &limits(),
        &[],
    )
    .unwrap();

    // Different languages under Lang scope should not pair
    assert!(
        report.pairs.is_empty(),
        "lang scope should separate Rust and Python"
    );
}

// ── 9. max_pairs truncates output ───────────────────────────────

#[test]
fn max_pairs_truncates_output() {
    let dir = TempDir::new().unwrap();
    let content = long_source(100, 0);
    // Create 4 identical files → 6 pairs
    for i in 0..4 {
        write_file(&dir, &format!("f{i}.rs"), &content);
    }

    let rows: Vec<FileRow> = (0..4)
        .map(|i| make_row(&format!("f{i}.rs"), "mod", "Rust", 100, content.len()))
        .collect();
    let export = make_export(rows);

    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Global,
        0.5,
        100,
        Some(2),
        &limits(),
        &[],
    )
    .unwrap();

    assert!(report.pairs.len() <= 2, "max_pairs should truncate");
    assert!(report.truncated, "truncated flag should be set");
}

// ── 10. Child rows are excluded from analysis ───────────────────

#[test]
fn child_rows_excluded() {
    let dir = TempDir::new().unwrap();
    let content = long_source(100, 0);
    write_file(&dir, "a.rs", &content);
    write_file(&dir, "b.rs", &content);

    let rows = vec![
        FileRow {
            path: "a.rs".to_string(),
            module: "mod".to_string(),
            lang: "Rust".to_string(),
            kind: FileKind::Child,
            code: 100,
            comments: 0,
            blanks: 0,
            lines: 100,
            bytes: content.len(),
            tokens: 500,
        },
        FileRow {
            path: "b.rs".to_string(),
            module: "mod".to_string(),
            lang: "Rust".to_string(),
            kind: FileKind::Child,
            code: 100,
            comments: 0,
            blanks: 0,
            lines: 100,
            bytes: content.len(),
            tokens: 500,
        },
    ];
    let export = make_export(rows);

    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Global,
        0.5,
        100,
        None,
        &limits(),
        &[],
    )
    .unwrap();

    assert_eq!(report.files_analyzed, 0, "child rows should be excluded");
}

// ── 11. Serde roundtrip for NearDuplicateReport ─────────────────

#[test]
fn near_dup_report_serde_roundtrip() {
    let dir = TempDir::new().unwrap();
    let content = long_source(100, 0);
    write_file(&dir, "a.rs", &content);
    write_file(&dir, "b.rs", &content);

    let rows = vec![
        make_row("a.rs", "mod", "Rust", 100, content.len()),
        make_row("b.rs", "mod", "Rust", 100, content.len()),
    ];
    let export = make_export(rows);

    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Global,
        0.5,
        100,
        None,
        &limits(),
        &[],
    )
    .unwrap();

    let json = serde_json::to_string_pretty(&report).unwrap();
    let deser: tokmd_analysis_types::NearDuplicateReport = serde_json::from_str(&json).unwrap();
    assert_eq!(deser.files_analyzed, report.files_analyzed);
    assert_eq!(deser.pairs.len(), report.pairs.len());
}

// ── 12. Pairs sorted by similarity descending ───────────────────

#[test]
fn pairs_sorted_by_similarity_desc() {
    let dir = TempDir::new().unwrap();
    let base: String = (0..100)
        .map(|i| format!("base_{i}"))
        .collect::<Vec<_>>()
        .join(" + ");

    // Create files with varying similarity to base
    write_file(&dir, "base.rs", &base);
    let near = format!("{} + {}", base, long_source(5, 1));
    write_file(&dir, "near.rs", &near);
    let far = format!(
        "{} + {}",
        (0..50)
            .map(|i| format!("base_{i}"))
            .collect::<Vec<_>>()
            .join(" + "),
        long_source(60, 2)
    );
    write_file(&dir, "far.rs", &far);

    let rows = vec![
        make_row("base.rs", "mod", "Rust", 100, base.len()),
        make_row("near.rs", "mod", "Rust", 105, near.len()),
        make_row("far.rs", "mod", "Rust", 110, far.len()),
    ];
    let export = make_export(rows);

    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Global,
        0.1,
        100,
        None,
        &limits(),
        &[],
    )
    .unwrap();

    for window in report.pairs.windows(2) {
        assert!(
            window[0].similarity >= window[1].similarity,
            "pairs should be sorted by similarity desc"
        );
    }
}

// ── 13. Exclude patterns filter files ───────────────────────────

#[test]
fn exclude_patterns_filter_files() {
    let dir = TempDir::new().unwrap();
    let content = long_source(100, 0);
    write_file(&dir, "src/a.rs", &content);
    write_file(&dir, "src/b.rs", &content);
    write_file(&dir, "vendor/c.rs", &content);

    let rows = vec![
        make_row("src/a.rs", "src", "Rust", 100, content.len()),
        make_row("src/b.rs", "src", "Rust", 100, content.len()),
        make_row("vendor/c.rs", "vendor", "Rust", 100, content.len()),
    ];
    let export = make_export(rows);

    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Global,
        0.5,
        100,
        None,
        &limits(),
        &["vendor/**".to_string()],
    )
    .unwrap();

    assert_eq!(report.excluded_by_pattern, Some(1));
    // Only src files compared
    assert_eq!(report.files_analyzed, 2);
}

// ── 14. Global scope finds cross-module duplicates ──────────────

#[test]
fn global_scope_finds_cross_module_dups() {
    let dir = TempDir::new().unwrap();
    let content = long_source(100, 0);
    write_file(&dir, "a.rs", &content);
    write_file(&dir, "b.rs", &content);

    let rows = vec![
        make_row("a.rs", "mod_a", "Rust", 100, content.len()),
        make_row("b.rs", "mod_b", "Python", 100, content.len()),
    ];
    let export = make_export(rows);

    let report = build_near_dup_report(
        dir.path(),
        &export,
        NearDupScope::Global,
        0.5,
        100,
        None,
        &limits(),
        &[],
    )
    .unwrap();

    assert!(
        !report.pairs.is_empty(),
        "global scope should find cross-module dups"
    );
}