tldr-core 0.1.6

Core analysis engine for TLDR code analysis tool
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
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
//! Comprehensive tests for tldr-core Git module
//!
//! Coverage: is_git_repository, is_shallow_clone, git_log, git_log_numstat

use std::fs;
use std::path::Path;
use std::process::Command;

use tldr_core::git::{git_log, git_log_numstat, is_git_repository, is_shallow_clone};

// =============================================================================
// is_git_repository tests
// =============================================================================

#[test]
fn test_is_git_repository_true() {
    // Current directory should be a git repository
    let current_dir = std::env::current_dir().unwrap();

    // Only test if we're actually in a git repo
    if Command::new("git")
        .args(["rev-parse", "--git-dir"])
        .output()
        .map(|o| o.status.success())
        .unwrap_or(false)
    {
        assert!(is_git_repository(&current_dir));
    }
}

#[test]
fn test_is_git_repository_false() {
    let temp_dir = tempfile::tempdir().unwrap();

    // Temp directory should not be a git repository
    assert!(!is_git_repository(temp_dir.path()));
}

#[test]
fn test_is_git_repository_nonexistent() {
    // Non-existent path should return false, not panic
    let result = is_git_repository(Path::new("/nonexistent/path/that/does/not/exist"));
    assert!(!result);
}

#[test]
fn test_is_git_repository_in_subdirectory() {
    // Create a temp git repo
    let temp_dir = tempfile::tempdir().unwrap();

    // Initialize git repo
    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        // Git not available, skip test
        return;
    }

    // Create subdirectory
    let subdir = temp_dir.path().join("src").join("utils");
    fs::create_dir_all(&subdir).unwrap();

    // Should still detect as git repository from subdirectory
    assert!(is_git_repository(&subdir));
    assert!(is_git_repository(temp_dir.path()));
}

#[test]
fn test_is_git_repository_empty_directory() {
    let temp_dir = tempfile::tempdir().unwrap();

    // Empty directory should not be a git repo
    assert!(!is_git_repository(temp_dir.path()));
}

// =============================================================================
// is_shallow_clone tests
// =============================================================================

#[test]
fn test_is_shallow_clone_false() {
    // Create a normal (non-shallow) git repo
    let temp_dir = tempfile::tempdir().unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        // Git not available, skip test
        return;
    }

    // Configure git user for commits
    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    // Create a file and commit
    fs::write(temp_dir.path().join("file.txt"), "content").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["commit", "-m", "Initial commit"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    // Normal repo should not be shallow
    assert!(!is_shallow_clone(temp_dir.path()));
}

#[test]
fn test_is_shallow_clone_non_repo() {
    let temp_dir = tempfile::tempdir().unwrap();

    // Non-repo should return false
    assert!(!is_shallow_clone(temp_dir.path()));
}

#[test]
fn test_is_shallow_clone_empty_repo() {
    let temp_dir = tempfile::tempdir().unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    // Empty repo (no commits) - behavior varies by git version
    // Just verify it doesn't panic
    let _ = is_shallow_clone(temp_dir.path());
}

// =============================================================================
// git_log tests
// =============================================================================

#[test]
fn test_git_log_basic() {
    let temp_dir = tempfile::tempdir().unwrap();

    // Initialize git repo
    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        return; // Git not available
    }

    // Configure git user
    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    // Create initial commit
    fs::write(temp_dir.path().join("file.txt"), "content").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["commit", "-m", "Initial commit"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    // Test git_log
    let result = git_log(temp_dir.path(), 30, "%H", &[]);
    assert!(result.is_ok());

    let log = result.unwrap();
    assert!(!log.is_empty());
}

#[test]
fn test_git_log_with_format() {
    let temp_dir = tempfile::tempdir().unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    fs::write(temp_dir.path().join("file.txt"), "content").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["commit", "-m", "Test commit message"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    // Test with different formats
    let result = git_log(temp_dir.path(), 30, "%s", &[]);
    assert!(result.is_ok());
    let log = result.unwrap();
    assert!(log.contains("Test commit message"));
}

#[test]
fn test_git_log_with_extra_args() {
    let temp_dir = tempfile::tempdir().unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    fs::write(temp_dir.path().join("file.txt"), "content").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["commit", "-m", "First"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    fs::write(temp_dir.path().join("file.txt"), "more content").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["commit", "-m", "Second"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    // Test with -n1 to limit to 1 commit
    let result = git_log(temp_dir.path(), 30, "%s", &["-n1"]);
    assert!(result.is_ok());
    let log = result.unwrap();
    assert!(log.contains("Second"));
}

#[test]
fn test_git_log_nonexistent_repo() {
    let temp_dir = tempfile::tempdir().unwrap();

    let result = git_log(temp_dir.path(), 30, "%H", &[]);

    // Should fail since not a git repo
    assert!(result.is_err());
}

#[test]
fn test_git_log_empty_repo() {
    let temp_dir = tempfile::tempdir().unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    // No commits yet
    let result = git_log(temp_dir.path(), 30, "%H", &[]);
    // Should succeed but return empty string
    assert!(result.is_ok());
    assert!(result.unwrap().is_empty());
}

#[test]
fn test_git_log_since_days_zero() {
    let temp_dir = tempfile::tempdir().unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    fs::write(temp_dir.path().join("file.txt"), "content").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["commit", "-m", "Test"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    // Test with 0 days (should still work)
    let result = git_log(temp_dir.path(), 0, "%H", &[]);
    assert!(result.is_ok());
}

// =============================================================================
// git_log_numstat tests
// =============================================================================

#[test]
fn test_git_log_numstat_basic() {
    let temp_dir = tempfile::tempdir().unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    fs::write(temp_dir.path().join("file.txt"), "line1\nline2\nline3\n").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["commit", "-m", "Add file"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    let result = git_log_numstat(temp_dir.path(), 30);
    assert!(result.is_ok());

    let numstat = result.unwrap();
    // Numstat format: "<added>\t<deleted>\t<file>"
    assert!(!numstat.is_empty());
}

#[test]
fn test_git_log_numstat_with_changes() {
    let temp_dir = tempfile::tempdir().unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    // First commit
    fs::write(temp_dir.path().join("file.txt"), "line1\nline2\nline3\n").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&temp_dir)
        .output()
        .unwrap();
    Command::new("git")
        .args(["commit", "-m", "First"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    // Second commit with changes
    fs::write(
        temp_dir.path().join("file.txt"),
        "line1\nmodified\nline3\nline4\n",
    )
    .unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&temp_dir)
        .output()
        .unwrap();
    Command::new("git")
        .args(["commit", "-m", "Second"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    let result = git_log_numstat(temp_dir.path(), 30);
    assert!(result.is_ok());

    let numstat = result.unwrap();
    // Should contain file.txt with change stats
    assert!(numstat.contains("file.txt"));
}

#[test]
fn test_git_log_numstat_nonexistent_repo() {
    let temp_dir = tempfile::tempdir().unwrap();

    let result = git_log_numstat(temp_dir.path(), 30);
    assert!(result.is_err());
}

#[test]
fn test_git_log_numstat_empty_repo() {
    let temp_dir = tempfile::tempdir().unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    let result = git_log_numstat(temp_dir.path(), 30);
    assert!(result.is_ok());
    assert!(result.unwrap().is_empty());
}

// =============================================================================
// Edge cases and integration tests
// =============================================================================

#[test]
fn test_git_operations_with_special_characters_in_path() {
    let temp_dir = tempfile::tempdir().unwrap();
    let special_dir = temp_dir.path().join("dir with spaces");
    fs::create_dir(&special_dir).unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&special_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&special_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(&special_dir)
        .output()
        .unwrap();

    fs::write(special_dir.join("file.txt"), "content").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&special_dir)
        .output()
        .unwrap();
    Command::new("git")
        .args(["commit", "-m", "Test"])
        .current_dir(&special_dir)
        .output()
        .unwrap();

    assert!(is_git_repository(&special_dir));

    let result = git_log(&special_dir, 30, "%H", &[]);
    assert!(result.is_ok());
}

#[test]
fn test_git_operations_unicode_path() {
    let temp_dir = tempfile::tempdir().unwrap();
    let unicode_dir = temp_dir.path().join("目录"); // "directory" in Chinese
    fs::create_dir(&unicode_dir).unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&unicode_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&unicode_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(&unicode_dir)
        .output()
        .unwrap();

    fs::write(unicode_dir.join("file.txt"), "content").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&unicode_dir)
        .output()
        .unwrap();
    Command::new("git")
        .args(["commit", "-m", "Test"])
        .current_dir(&unicode_dir)
        .output()
        .unwrap();

    assert!(is_git_repository(&unicode_dir));
}

#[test]
fn test_multiple_commits_log_order() {
    let temp_dir = tempfile::tempdir().unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    // Create multiple commits
    for i in 1..=5 {
        let filename = format!("file{}.txt", i);
        fs::write(temp_dir.path().join(&filename), format!("content{}", i)).unwrap();
        Command::new("git")
            .args(["add", "."])
            .current_dir(&temp_dir)
            .output()
            .unwrap();
        Command::new("git")
            .args(["commit", "-m", &format!("Commit {}", i)])
            .current_dir(&temp_dir)
            .output()
            .unwrap();
    }

    let result = git_log(temp_dir.path(), 30, "%s", &[]);
    assert!(result.is_ok());

    let log = result.unwrap();
    // Should contain all commit messages
    assert!(log.contains("Commit 1"));
    assert!(log.contains("Commit 2"));
    assert!(log.contains("Commit 3"));
    assert!(log.contains("Commit 4"));
    assert!(log.contains("Commit 5"));
}

#[test]
fn test_git_log_with_author_format() {
    let temp_dir = tempfile::tempdir().unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    Command::new("git")
        .args(["config", "user.email", "test@example.com"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.name", "Test User"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    fs::write(temp_dir.path().join("file.txt"), "content").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&temp_dir)
        .output()
        .unwrap();
    Command::new("git")
        .args(["commit", "-m", "Test"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    let result = git_log(temp_dir.path(), 30, "%an <%ae>", &[]);
    assert!(result.is_ok());

    let log = result.unwrap();
    assert!(log.contains("Test User"));
    assert!(log.contains("test@example.com"));
}

#[test]
fn test_git_log_since_days_filter() {
    let temp_dir = tempfile::tempdir().unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    fs::write(temp_dir.path().join("file.txt"), "content").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&temp_dir)
        .output()
        .unwrap();
    Command::new("git")
        .args(["commit", "-m", "Test"])
        .current_dir(&temp_dir)
        .output()
        .unwrap();

    // Test with different day values
    let result_1 = git_log(temp_dir.path(), 1, "%H", &[]);
    let result_7 = git_log(temp_dir.path(), 7, "%H", &[]);
    let result_30 = git_log(temp_dir.path(), 30, "%H", &[]);

    assert!(result_1.is_ok());
    assert!(result_7.is_ok());
    assert!(result_30.is_ok());
}

#[test]
fn test_git_worktree_detection() {
    // This is an advanced git feature - worktrees
    // We just test that is_git_repository works in main repo
    let temp_dir = tempfile::tempdir().unwrap();

    let init_output = Command::new("git")
        .args(["init"])
        .current_dir(&temp_dir)
        .output();

    if init_output.is_err() {
        return;
    }

    assert!(is_git_repository(temp_dir.path()));
}

// Test for submodule detection
#[test]
fn test_git_submodule_detection() {
    // Create main repo
    let main_dir = tempfile::tempdir().unwrap();
    let sub_dir = tempfile::tempdir().unwrap();

    // Initialize main repo
    let main_init = Command::new("git")
        .args(["init"])
        .current_dir(&main_dir)
        .output();

    if main_init.is_err() {
        return;
    }

    // Initialize sub repo
    Command::new("git")
        .args(["init"])
        .current_dir(&sub_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&sub_dir)
        .output()
        .unwrap();

    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(&sub_dir)
        .output()
        .unwrap();

    fs::write(sub_dir.path().join("file.txt"), "content").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&sub_dir)
        .output()
        .unwrap();
    Command::new("git")
        .args(["commit", "-m", "Initial"])
        .current_dir(&sub_dir)
        .output()
        .unwrap();

    // Both should be detected as git repos
    assert!(is_git_repository(main_dir.path()));
    assert!(is_git_repository(sub_dir.path()));
}