tokensave 7.9.0

Code intelligence tool that builds a semantic knowledge graph from Rust, Go, Java, Scala, TypeScript, Python, C, C++, Kotlin, C#, Swift, and many more codebases
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
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
use std::fs;
#[cfg(unix)]
use std::os::unix::fs::symlink;
use tempfile::TempDir;
use tokensave::config::{load_config, save_config};
use tokensave::tokensave::TokenSave;
use tokensave::types::{Edge, EdgeKind, Node, NodeKind};

async fn canonical_graph(cg: &TokenSave) -> (Vec<Node>, Vec<Edge>) {
    let mut nodes = cg.db().get_all_nodes().await.unwrap();
    for node in &mut nodes {
        node.updated_at = 0;
    }
    nodes.sort_by(|a, b| a.id.cmp(&b.id));

    let mut edges = cg.db().get_all_edges().await.unwrap();
    edges.sort_by(|a, b| {
        (&a.source, &a.target, a.kind.as_str(), a.line).cmp(&(
            &b.source,
            &b.target,
            b.kind.as_str(),
            b.line,
        ))
    });

    (nodes, edges)
}

/// Directly test that the ignore crate with add_custom_ignore_filename reads
/// nested .gitignore files, regardless of git repo presence.
#[test]
fn test_ignore_crate_nested_gitignore_direct() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src/vendor")).unwrap();
    fs::write(project.join("src/lib.rs"), "kept").unwrap();
    fs::write(project.join("src/vendor/gen.rs"), "generated").unwrap();
    fs::write(project.join("src/vendor/.gitignore"), "*\n").unwrap();

    let files: Vec<String> = ignore::WalkBuilder::new(project)
        .hidden(true)
        .git_ignore(true)
        .git_global(false)
        .git_exclude(false)
        .follow_links(true)
        .add_custom_ignore_filename(".gitignore")
        .build()
        .filter_map(|e| e.ok())
        .filter(|e| e.file_type().is_some_and(|ft| ft.is_file()))
        .filter_map(|e| {
            e.path()
                .strip_prefix(project)
                .ok()
                .map(|p| p.to_string_lossy().replace('\\', "/"))
        })
        .collect();

    assert!(
        files.contains(&"src/lib.rs".to_string()),
        "lib.rs must be found"
    );
    assert!(
        !files.iter().any(|f| f.contains("vendor")),
        "nested .gitignore (*) must exclude vendor/gen.rs; got: {files:?}"
    );
}

#[tokio::test]
async fn test_full_pipeline() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    // Create a small Rust project
    fs::create_dir_all(project.join("src")).unwrap();
    fs::write(
        project.join("src/main.rs"),
        r#"
use crate::utils::helper;

mod utils;

fn main() {
    let result = helper();
    println!("{}", result);
}
"#,
    )
    .unwrap();

    fs::write(
        project.join("src/utils.rs"),
        r#"
/// Returns a greeting string.
pub fn helper() -> String {
    format_greeting("world")
}

fn format_greeting(name: &str) -> String {
    format!("Hello, {}!", name)
}
"#,
    )
    .unwrap();

    // Init
    let cg = TokenSave::init(project).await.unwrap();

    // Index
    let index_result = cg.index_all().await.unwrap();
    assert!(index_result.file_count > 0, "should index files");
    assert!(index_result.node_count > 0, "should extract nodes");

    // Stats
    let stats = cg.get_stats().await.unwrap();
    assert!(stats.node_count > 0);
    assert!(stats.file_count >= 2);

    // Search
    let results = cg.search("helper", 10).await.unwrap();
    assert!(!results.is_empty(), "should find 'helper'");
    assert!(results.iter().any(|r| r.node.name == "helper"));

    // Edges should exist (at minimum Contains edges from file -> items)
    let stats = cg.get_stats().await.unwrap();
    assert!(stats.edge_count > 0, "should have edges");
}

#[tokio::test]
async fn test_incremental_sync() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();
    fs::write(project.join("src/lib.rs"), "pub fn original() {}\n").unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    cg.index_all().await.unwrap();

    // Verify original function exists
    let results = cg.search("original", 10).await.unwrap();
    assert!(!results.is_empty());

    // Modify file
    fs::write(
        project.join("src/lib.rs"),
        "pub fn modified() {}\npub fn added() {}\n",
    )
    .unwrap();

    // Sync
    let sync_result = cg.sync().await.unwrap();
    assert!(
        sync_result.files_modified > 0 || sync_result.files_added > 0,
        "sync should detect changes: modified={}, added={}",
        sync_result.files_modified,
        sync_result.files_added
    );

    // Should find the new function
    let results = cg.search("modified", 10).await.unwrap();
    assert!(!results.is_empty(), "should find 'modified' after sync");
}

#[tokio::test]
async fn test_indexes_source_with_invalid_utf8_in_comment() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::write(
        project.join("latin1_repro.c"),
        b"/* by W\xfcrkner */\nint latin1_symbol(void) { return 42; }\n",
    )
    .unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    cg.index_all().await.unwrap();

    let results = cg.search("latin1_symbol", 10).await.unwrap();
    assert!(
        results
            .iter()
            .any(|result| result.node.name == "latin1_symbol"),
        "function in source containing invalid UTF-8 should be indexed"
    );
}

#[tokio::test]
async fn test_init_and_open() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    assert!(!TokenSave::is_initialized(project));
    TokenSave::init(project).await.unwrap();
    assert!(TokenSave::is_initialized(project));

    // Open existing project
    let cg = TokenSave::open(project).await;
    assert!(cg.is_ok());
}

#[tokio::test]
async fn test_search_empty_index() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    let cg = TokenSave::init(project).await.unwrap();
    let results = cg.search("anything", 10).await.unwrap();
    assert!(results.is_empty());
}

#[tokio::test]
async fn test_stats_empty_index() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    let cg = TokenSave::init(project).await.unwrap();
    let stats = cg.get_stats().await.unwrap();
    assert_eq!(stats.node_count, 0);
    assert_eq!(stats.edge_count, 0);
    assert_eq!(stats.file_count, 0);
}

#[tokio::test]
async fn test_context_building() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();
    fs::write(
        project.join("src/lib.rs"),
        r#"
/// Processes incoming data.
pub fn process_data(input: &str) -> String {
    input.to_uppercase()
}
"#,
    )
    .unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    cg.index_all().await.unwrap();

    let options = tokensave::types::BuildContextOptions::default();
    let context = cg
        .build_context("process_data function", &options)
        .await
        .unwrap();
    assert!(
        !context.entry_points.is_empty(),
        "should find entry points for 'process_data'"
    );
}

#[tokio::test]
async fn test_struct_and_impl_extraction() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();
    fs::write(
        project.join("src/lib.rs"),
        r#"
pub struct Point {
    pub x: f64,
    pub y: f64,
}

impl Point {
    pub fn new(x: f64, y: f64) -> Self {
        Point { x, y }
    }

    pub fn distance(&self, other: &Point) -> f64 {
        ((self.x - other.x).powi(2) + (self.y - other.y).powi(2)).sqrt()
    }
}
"#,
    )
    .unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    let result = cg.index_all().await.unwrap();
    // File node + Point struct + x field + y field + impl Point + new method + distance method = 7+
    assert!(
        result.node_count >= 5,
        "should extract Point, x, y, new, distance (got {})",
        result.node_count
    );

    // Search for struct
    let results = cg.search("Point", 10).await.unwrap();
    assert!(!results.is_empty(), "should find 'Point'");

    // Search for method
    let results = cg.search("distance", 10).await.unwrap();
    assert!(!results.is_empty(), "should find 'distance'");
}

#[tokio::test]
async fn test_file_removal_sync() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();
    fs::write(project.join("src/lib.rs"), "pub fn keep() {}\n").unwrap();
    fs::write(project.join("src/remove_me.rs"), "pub fn gone() {}\n").unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    cg.index_all().await.unwrap();

    // Verify both exist
    let stats = cg.get_stats().await.unwrap();
    assert!(
        stats.file_count >= 2,
        "should have at least 2 files indexed"
    );

    // Remove file
    fs::remove_file(project.join("src/remove_me.rs")).unwrap();

    // Sync
    let sync_result = cg.sync().await.unwrap();
    assert_eq!(sync_result.files_removed, 1, "should detect 1 removed file");

    // Verify removed function is gone
    let results = cg.search("gone", 10).await.unwrap();
    assert!(results.is_empty(), "'gone' should no longer be found");
}

#[tokio::test]
async fn test_index_all_is_idempotent() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();
    fs::write(
        project.join("src/lib.rs"),
        "pub fn alpha() {}\npub fn beta() {}\n",
    )
    .unwrap();

    let cg = TokenSave::init(project).await.unwrap();

    let result1 = cg.index_all().await.unwrap();
    let stats1 = cg.get_stats().await.unwrap();

    let result2 = cg.index_all().await.unwrap();
    let stats2 = cg.get_stats().await.unwrap();

    assert_eq!(
        result1.file_count, result2.file_count,
        "re-indexing should produce the same file count"
    );
    assert_eq!(
        stats1.node_count, stats2.node_count,
        "re-indexing should produce the same node count"
    );
}

#[tokio::test]
async fn test_sync_no_changes() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();
    fs::write(project.join("src/lib.rs"), "pub fn stable() {}\n").unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    cg.index_all().await.unwrap();

    // Sync without any changes
    let sync_result = cg.sync().await.unwrap();
    assert_eq!(sync_result.files_added, 0);
    assert_eq!(sync_result.files_modified, 0);
    assert_eq!(sync_result.files_removed, 0);
}

#[tokio::test]
async fn test_search_by_docstring() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();
    fs::write(
        project.join("src/lib.rs"),
        r#"
/// Calculates the fibonacci sequence.
pub fn fibonacci(n: u64) -> u64 {
    if n <= 1 { n } else { fibonacci(n - 1) + fibonacci(n - 2) }
}
"#,
    )
    .unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    cg.index_all().await.unwrap();

    // Search by the docstring content
    let results = cg.search("fibonacci", 10).await.unwrap();
    assert!(
        !results.is_empty(),
        "should find node via docstring/name search"
    );
}

#[tokio::test]
async fn test_multiple_files_cross_reference() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();
    fs::write(
        project.join("src/lib.rs"),
        r#"
pub mod models;
pub mod services;
"#,
    )
    .unwrap();

    fs::write(
        project.join("src/models.rs"),
        r#"
pub struct User {
    pub name: String,
    pub email: String,
}
"#,
    )
    .unwrap();

    fs::write(
        project.join("src/services.rs"),
        r#"
use crate::models::User;

pub fn create_user(name: &str, email: &str) -> String {
    format!("{}:{}", name, email)
}
"#,
    )
    .unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    let result = cg.index_all().await.unwrap();
    assert_eq!(result.file_count, 3, "should index all 3 files");

    // Search for struct from a different file
    let results = cg.search("User", 10).await.unwrap();
    assert!(!results.is_empty(), "should find 'User' struct");

    // Search for function from services
    let results = cg.search("create_user", 10).await.unwrap();
    assert!(!results.is_empty(), "should find 'create_user' function");
}

#[cfg(unix)]
#[tokio::test]
async fn test_index_follows_symlinked_directories() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();
    let external = TempDir::new().unwrap();

    fs::create_dir_all(external.path()).unwrap();
    fs::write(
        external.path().join("lib.rs"),
        "pub fn through_symlink() {}\n",
    )
    .unwrap();
    symlink(external.path(), project.join("src")).unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    let result = cg.index_all().await.unwrap();

    assert_eq!(
        result.file_count, 1,
        "should index the file behind the symlink"
    );

    let files = cg.get_all_files().await.unwrap();
    let paths: Vec<&str> = files.iter().map(|f| f.path.as_str()).collect();
    assert!(paths.contains(&"src/lib.rs"));

    let results = cg.search("through_symlink", 10).await.unwrap();
    assert!(
        !results.is_empty(),
        "should extract symbols from symlinked source"
    );
}

// ---------------------------------------------------------------------------
// Nested .gitignore tests
// ---------------------------------------------------------------------------

/// Helper: init a project with git_ignore enabled and return the TokenSave.
async fn setup_gitignore_project(project: &std::path::Path) -> TokenSave {
    TokenSave::init(project).await.unwrap();
    let mut config = load_config(project).unwrap();
    config.git_ignore = true;
    save_config(project, &config).unwrap();
    TokenSave::open(project).await.unwrap()
}

/// A nested `.gitignore` in a subdirectory must exclude files inside that
/// subdirectory even when the root `.gitignore` has no matching rule.
#[tokio::test]
async fn test_nested_gitignore_excludes_files_in_subdir() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src/vendor")).unwrap();
    // This file should be indexed.
    fs::write(project.join("src/lib.rs"), "pub fn kept() {}\n").unwrap();
    // This file is excluded by the nested .gitignore only.
    fs::write(project.join("src/vendor/gen.rs"), "pub fn generated() {}\n").unwrap();
    // Nested .gitignore ignores everything in vendor/.
    fs::write(project.join("src/vendor/.gitignore"), "*\n").unwrap();

    let cg = setup_gitignore_project(project).await;
    let result = cg.index_all().await.unwrap();

    assert_eq!(
        result.file_count, 1,
        "vendor/ should be excluded by nested .gitignore"
    );

    let files = cg.get_all_files().await.unwrap();
    let paths: Vec<&str> = files.iter().map(|f| f.path.as_str()).collect();
    assert!(paths.contains(&"src/lib.rs"), "src/lib.rs must be indexed");
    assert!(
        !paths.iter().any(|p| p.contains("vendor")),
        "vendor files must be excluded by nested .gitignore"
    );
}

/// A nested `.gitignore` must not affect files outside its own directory.
/// Only `src/internal/` should be excluded; `src/lib.rs` must still be indexed.
#[tokio::test]
async fn test_nested_gitignore_scope_is_limited_to_its_directory() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src/internal")).unwrap();
    fs::write(project.join("src/lib.rs"), "pub fn public_api() {}\n").unwrap();
    fs::write(
        project.join("src/internal/secret.rs"),
        "pub fn secret() {}\n",
    )
    .unwrap();
    // The nested .gitignore only covers files within src/internal/.
    fs::write(project.join("src/internal/.gitignore"), "*.rs\n").unwrap();

    let cg = setup_gitignore_project(project).await;
    cg.index_all().await.unwrap();

    let files = cg.get_all_files().await.unwrap();
    let paths: Vec<&str> = files.iter().map(|f| f.path.as_str()).collect();
    assert!(
        paths.contains(&"src/lib.rs"),
        "src/lib.rs must not be affected by nested .gitignore in src/internal/"
    );
    assert!(
        !paths.iter().any(|p| p.contains("secret")),
        "src/internal/secret.rs must be excluded by its own directory's .gitignore"
    );
}

/// A nested `.gitignore` negation (`!`) must un-ignore a file that a higher-level
/// rule would otherwise exclude. The `ignore` crate replicates git's precedence:
/// a more specific (deeper) rule wins over a less specific (shallower) one.
#[tokio::test]
async fn test_nested_gitignore_negation_overrides_parent_rule() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src/exceptions")).unwrap();
    // Root .gitignore ignores all .rs files.
    fs::write(project.join(".gitignore"), "*.rs\n").unwrap();
    // The nested .gitignore un-ignores the one file we actually want indexed.
    fs::write(project.join("src/exceptions/.gitignore"), "!important.rs\n").unwrap();
    fs::write(
        project.join("src/exceptions/important.rs"),
        "pub fn must_be_indexed() {}\n",
    )
    .unwrap();
    // This sibling file stays excluded by the root rule.
    fs::write(
        project.join("src/exceptions/ignored.rs"),
        "pub fn ignored() {}\n",
    )
    .unwrap();

    let cg = setup_gitignore_project(project).await;
    cg.index_all().await.unwrap();

    let results = cg.search("must_be_indexed", 10).await.unwrap();
    assert!(
        !results.is_empty(),
        "nested .gitignore negation must un-ignore important.rs even though root rule excludes *.rs"
    );

    let files = cg.get_all_files().await.unwrap();
    let paths: Vec<&str> = files.iter().map(|f| f.path.as_str()).collect();
    assert!(
        !paths.iter().any(|p| p.ends_with("ignored.rs")),
        "ignored.rs must remain excluded by root .gitignore"
    );
}

/// Files in deeply nested subdirectories must be excluded by a `.gitignore`
/// anywhere in their ancestor chain, not just the root.
#[tokio::test]
async fn test_nested_gitignore_applies_to_deeper_descendants() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src/mid/deep")).unwrap();
    fs::write(project.join("src/lib.rs"), "pub fn top() {}\n").unwrap();
    // The mid-level .gitignore excludes the deep/ subtree.
    fs::write(project.join("src/mid/.gitignore"), "deep/\n").unwrap();
    fs::write(project.join("src/mid/mid.rs"), "pub fn mid() {}\n").unwrap();
    fs::write(project.join("src/mid/deep/leaf.rs"), "pub fn leaf() {}\n").unwrap();

    let cg = setup_gitignore_project(project).await;
    cg.index_all().await.unwrap();

    let files = cg.get_all_files().await.unwrap();
    let paths: Vec<&str> = files.iter().map(|f| f.path.as_str()).collect();
    assert!(paths.contains(&"src/lib.rs"), "src/lib.rs must be indexed");
    assert!(
        paths.contains(&"src/mid/mid.rs"),
        "src/mid/mid.rs must be indexed"
    );
    assert!(
        !paths.iter().any(|p| p.contains("deep")),
        "src/mid/deep/leaf.rs must be excluded by mid-level .gitignore"
    );
}

#[cfg(unix)]
#[tokio::test]
async fn test_gitignore_scan_follows_symlinked_directories() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();
    let external = TempDir::new().unwrap();

    fs::create_dir_all(external.path()).unwrap();
    fs::write(
        external.path().join("lib.rs"),
        "pub fn through_gitignore_symlink() {}\n",
    )
    .unwrap();
    symlink(external.path(), project.join("src")).unwrap();

    TokenSave::init(project).await.unwrap();

    let mut config = load_config(project).unwrap();
    config.git_ignore = true;
    save_config(project, &config).unwrap();

    let cg = TokenSave::open(project).await.unwrap();
    let result = cg.index_all().await.unwrap();

    assert_eq!(
        result.file_count, 1,
        "gitignore-aware scan should follow symlinks"
    );

    let results = cg.search("through_gitignore_symlink", 10).await.unwrap();
    assert!(
        !results.is_empty(),
        "should extract symbols through symlink with gitignore-aware walker"
    );
}

/// #170: a symlink living inside a `config.exclude`d directory must not be
/// followed by the gitignore-aware walker. Before the fix the walker pruned
/// only `.gitignore` entries, so an excluded dir was still descended into and
/// its symlinks (e.g. a Wine prefix's `dosdevices/z: -> /`) escaped the project
/// root and walked the whole filesystem.
#[cfg(unix)]
#[tokio::test]
async fn test_gitignore_scan_prunes_excluded_dir_with_symlink() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    // A real source file that should be indexed.
    fs::create_dir_all(project.join("src")).unwrap();
    fs::write(project.join("src/main.rs"), "pub fn real_symbol() {}\n").unwrap();

    // An external tree the excluded symlink points at — must never be reached.
    let external = TempDir::new().unwrap();
    fs::write(
        external.path().join("escaped.rs"),
        "pub fn escaped_symbol() {}\n",
    )
    .unwrap();

    // build-output/nested/link -> external, with build-output excluded.
    let excluded = project.join("build-output/nested");
    fs::create_dir_all(&excluded).unwrap();
    symlink(external.path(), excluded.join("link")).unwrap();

    TokenSave::init(project).await.unwrap();
    let mut config = load_config(project).unwrap();
    config.git_ignore = true;
    config.exclude.push("build-output/**".to_string());
    save_config(project, &config).unwrap();

    let cg = TokenSave::open(project).await.unwrap();
    cg.index_all().await.unwrap();

    let real = cg.search("real_symbol", 10).await.unwrap();
    assert!(!real.is_empty(), "the real source file should be indexed");

    let escaped = cg.search("escaped_symbol", 10).await.unwrap();
    assert!(
        escaped.is_empty(),
        "symbols behind a symlink inside an excluded dir must not be indexed"
    );
}

// ---------------------------------------------------------------------------
// Call edge regression tests
// ---------------------------------------------------------------------------

/// Helper: create a temp project with the given source files, init TokenSave,
/// and return the (TempDir, TokenSave) pair. TempDir must be held alive.
async fn setup_call_edge_project() -> (TempDir, TokenSave) {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();

    fs::write(
        project.join("src/lib.rs"),
        r#"
pub mod caller_mod;
pub mod callee_mod;
"#,
    )
    .unwrap();

    fs::write(
        project.join("src/callee_mod.rs"),
        r#"
/// The target function that should be found via call edges.
pub fn target_fn() -> u32 {
    42
}
"#,
    )
    .unwrap();

    fs::write(
        project.join("src/caller_mod.rs"),
        r#"
use crate::callee_mod::target_fn;

pub fn caller_fn() -> u32 {
    target_fn()
}
"#,
    )
    .unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    (dir, cg)
}

/// Finds the node ID for a function by name, panicking if not found.
async fn find_node_id(cg: &TokenSave, name: &str) -> String {
    let results = cg.search(name, 10).await.unwrap();
    results
        .iter()
        .find(|r| r.node.name == name)
        .unwrap_or_else(|| panic!("node '{name}' not found in index"))
        .node
        .id
        .clone()
}

#[tokio::test]
async fn test_index_all_produces_call_edges() {
    let (_dir, cg) = setup_call_edge_project().await;
    cg.index_all().await.unwrap();

    let target_id = find_node_id(&cg, "target_fn").await;

    let callers = cg.get_callers(&target_id, 3).await.unwrap();
    assert!(
        callers
            .iter()
            .any(|(node, edge)| node.name == "caller_fn" && edge.kind == EdgeKind::Calls),
        "index_all should produce a Calls edge from caller_fn -> target_fn"
    );
}

#[cfg(feature = "lang-ruby")]
#[tokio::test]
async fn test_index_all_resolves_static_ruby_receiver_calls() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();
    fs::write(
        project.join("receiver_calls.rb"),
        r#"
class Publisher
  def publish
  end

  class << self
    def publish
    end

    def run(worker)
      Publisher.publish
      ::Publisher.publish
      self.publish
      worker.publish
      InstanceOnly.publish
    end
  end

  self.publish
  target.instance_eval { self.publish }
  Other.class_eval { self.publish }
end

class InstanceOnly
  def publish
  end
end
"#,
    )
    .unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    cg.index_all().await.unwrap();

    let nodes = cg.db().get_all_nodes().await.unwrap();
    let edges = cg.db().get_all_edges().await.unwrap();
    let caller = nodes
        .iter()
        .find(|node| {
            node.kind == NodeKind::SingletonMethod
                && node.signature.as_deref() == Some("def run(worker)")
        })
        .unwrap();
    let singleton_publish = nodes
        .iter()
        .find(|node| {
            node.kind == NodeKind::SingletonMethod
                && node.signature.as_deref() == Some("def publish")
        })
        .unwrap();
    let publisher = nodes
        .iter()
        .find(|node| node.kind == NodeKind::Class && node.name == "Publisher")
        .unwrap();
    let instance_targets: Vec<_> = nodes
        .iter()
        .filter(|node| {
            node.kind == NodeKind::Method && node.signature.as_deref() == Some("def publish")
        })
        .map(|node| node.id.as_str())
        .collect();

    let calls: Vec<_> = edges
        .iter()
        .filter(|edge| edge.source == caller.id && edge.kind == EdgeKind::Calls)
        .collect();
    assert_eq!(calls.len(), 3, "nodes: {nodes:#?}\nedges: {edges:#?}");
    assert!(calls.iter().all(|edge| edge.target == singleton_publish.id));
    assert!(calls
        .iter()
        .all(|edge| !instance_targets.contains(&edge.target.as_str())));
    assert_eq!(
        edges
            .iter()
            .filter(|edge| {
                edge.source == publisher.id
                    && edge.target == singleton_publish.id
                    && edge.kind == EdgeKind::Calls
            })
            .count(),
        1,
        "self calls in blocks that retarget self must not be attributed to Publisher"
    );
}

#[cfg(feature = "lang-ruby")]
#[tokio::test]
async fn test_incremental_sync_resolves_calls_to_legacy_ruby_singleton_methods() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();
    fs::write(
        project.join("publisher.rb"),
        "class Publisher\n  class << self\n    def publish; end\n  end\nend\n",
    )
    .unwrap();
    fs::write(project.join("caller.rb"), "def run; end\n").unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    cg.index_all().await.unwrap();
    cg.db()
        .conn()
        .execute(
            "UPDATE nodes SET kind = 'method' WHERE name = 'publish'",
            (),
        )
        .await
        .unwrap();
    cg.db()
        .conn()
        .execute(
            "DELETE FROM metadata WHERE key = 'ruby_singleton_method_kind_v1'",
            (),
        )
        .await
        .unwrap();

    fs::write(
        project.join("caller.rb"),
        "def run\n  Publisher.publish\nend\n",
    )
    .unwrap();
    let sync = cg.sync().await.unwrap();
    assert!(sync.modified_paths.contains(&"publisher.rb".to_string()));

    let nodes = cg.db().get_all_nodes().await.unwrap();
    let publish = nodes.iter().find(|node| node.name == "publish").unwrap();
    assert_eq!(publish.kind, NodeKind::SingletonMethod);
    assert!(cg
        .db()
        .get_all_edges()
        .await
        .unwrap()
        .iter()
        .any(|edge| { edge.kind == EdgeKind::Calls && edge.target == publish.id }));

    let settled = cg.sync().await.unwrap();
    assert!(settled.modified_paths.is_empty());
}

#[tokio::test]
async fn test_sync_produces_call_edges() {
    let (_dir, cg) = setup_call_edge_project().await;

    // Use sync (not index_all) as the *only* indexing path.
    // Before the fix, this would store unresolved refs but never resolve them.
    cg.sync().await.unwrap();

    let target_id = find_node_id(&cg, "target_fn").await;

    let callers = cg.get_callers(&target_id, 3).await.unwrap();
    assert!(
        callers
            .iter()
            .any(|(node, edge)| node.name == "caller_fn" && edge.kind == EdgeKind::Calls),
        "sync should produce a Calls edge from caller_fn -> target_fn"
    );
}

#[tokio::test]
async fn test_sync_produces_call_edges_after_file_modification() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();

    fs::write(
        project.join("src/lib.rs"),
        r#"
pub fn base_fn() -> u32 { 1 }
pub fn consumer() -> u32 { base_fn() }
"#,
    )
    .unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    cg.index_all().await.unwrap();

    // Modify the file to add a new call chain.
    fs::write(
        project.join("src/lib.rs"),
        r#"
pub fn base_fn() -> u32 { 1 }
pub fn middle_fn() -> u32 { base_fn() }
pub fn top_fn() -> u32 { middle_fn() }
"#,
    )
    .unwrap();

    // Incremental sync should resolve the new call edges.
    cg.sync().await.unwrap();

    let base_id = find_node_id(&cg, "base_fn").await;
    let middle_id = find_node_id(&cg, "middle_fn").await;

    // middle_fn -> base_fn
    let base_callers = cg.get_callers(&base_id, 1).await.unwrap();
    assert!(
        base_callers
            .iter()
            .any(|(node, _)| node.name == "middle_fn"),
        "sync should resolve middle_fn -> base_fn call edge after modification"
    );

    // top_fn -> middle_fn
    let middle_callers = cg.get_callers(&middle_id, 1).await.unwrap();
    assert!(
        middle_callers.iter().any(|(node, _)| node.name == "top_fn"),
        "sync should resolve top_fn -> middle_fn call edge after modification"
    );

    // Transitive: top_fn should appear as a depth-2 caller of base_fn
    let transitive_callers = cg.get_callers(&base_id, 3).await.unwrap();
    assert!(
        transitive_callers
            .iter()
            .any(|(node, _)| node.name == "top_fn"),
        "sync should support transitive call edge traversal"
    );
}

#[tokio::test]
async fn test_sync_resolves_cross_file_call_edges_for_new_files() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();

    // Start with a single file.
    fs::write(
        project.join("src/lib.rs"),
        r#"
pub mod engine;
pub fn entry_point() -> u32 { 0 }
"#,
    )
    .unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    cg.index_all().await.unwrap();

    // Add a new file that calls the existing function.
    fs::write(
        project.join("src/engine.rs"),
        r#"
use crate::entry_point;

pub fn run_engine() -> u32 {
    entry_point()
}
"#,
    )
    .unwrap();

    cg.sync().await.unwrap();

    let entry_id = find_node_id(&cg, "entry_point").await;

    let callers = cg.get_callers(&entry_id, 3).await.unwrap();
    assert!(
        callers.iter().any(|(node, _)| node.name == "run_engine"),
        "sync should resolve cross-file call edges when a new file is added"
    );
}

#[tokio::test]
async fn test_sync_does_not_duplicate_edges() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();

    // Three files: a callee, a caller that will be modified, and
    // an unchanged caller whose edges must not be duplicated.
    fs::write(
        project.join("src/callee.rs"),
        "pub fn target_fn() -> u32 { 42 }\n",
    )
    .unwrap();

    fs::write(
        project.join("src/caller_a.rs"),
        "pub fn caller_a() -> u32 { target_fn() }\n",
    )
    .unwrap();

    fs::write(
        project.join("src/caller_b.rs"),
        "pub fn caller_b() -> u32 { target_fn() }\n",
    )
    .unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    cg.index_all().await.unwrap();

    let stats_before = cg.get_stats().await.unwrap();
    let edges_before = stats_before.edge_count;

    // Modify caller_a only — caller_b is unchanged.
    fs::write(
        project.join("src/caller_a.rs"),
        "pub fn caller_a() -> u32 { target_fn() + 1 }\n",
    )
    .unwrap();

    cg.sync().await.unwrap();

    let stats_after = cg.get_stats().await.unwrap();
    assert_eq!(
        edges_before, stats_after.edge_count,
        "sync must not create duplicate edges (before={edges_before}, after={})",
        stats_after.edge_count
    );

    // Run a second sync with no changes — edge count must still be stable.
    // Force a content-hash change by touching caller_a again with same content
    // so there are no stale files and to_index is empty.
    cg.sync().await.unwrap();

    let stats_final = cg.get_stats().await.unwrap();
    assert_eq!(
        edges_before, stats_final.edge_count,
        "repeated sync must not grow edges (before={edges_before}, final={})",
        stats_final.edge_count
    );
}

#[tokio::test]
async fn test_concurrent_sync_is_rejected() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();
    fs::write(project.join("src/lib.rs"), "pub fn f() {}\n").unwrap();

    let cg = TokenSave::init(project).await.unwrap();

    // Simulate an in-progress sync by placing a lockfile with our own PID.
    let lock_path = project.join(".tokensave/sync.lock");
    fs::write(&lock_path, format!("{}", std::process::id())).unwrap();

    let err = cg.sync().await.unwrap_err();
    let msg = format!("{err}");
    assert!(
        msg.contains("another sync is already in progress"),
        "expected sync lock error, got: {msg}"
    );

    // After removing the lockfile, sync should succeed.
    fs::remove_file(&lock_path).unwrap();
    cg.sync().await.unwrap();
}

/// Regression test for the incremental-sync edge-resolution gap: when a
/// *callee* file changes, `delete_nodes_by_file` cascades away every edge
/// that touches its (about-to-be-replaced) node ids — including inbound
/// `Calls` edges from *other, untouched* caller files. Those edges only
/// get re-created if the callers' original cross-file references were
/// durably persisted somewhere `sync`'s resolution step can replay them
/// from. A full `index_all()` resolves everything in one in-memory pass
/// and (before this fix) never wrote that bookkeeping to the
/// `unresolved_refs` table, so a later `sync()` had no record of
/// "caller_a/caller_b call `target_fn`" and silently dropped both edges
/// forever once `callee.rs` was ever touched again.
#[tokio::test]
async fn test_sync_reresolves_inbound_edges_after_callee_change() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();

    // A callee whose own file will change, plus two callers in different
    // files that are never touched again after the initial full index.
    fs::write(
        project.join("src/callee.rs"),
        "pub fn target_fn() -> u32 { 42 }\n",
    )
    .unwrap();
    fs::write(
        project.join("src/caller_a.rs"),
        "pub fn caller_a() -> u32 { target_fn() }\n",
    )
    .unwrap();
    fs::write(
        project.join("src/caller_b.rs"),
        "pub fn caller_b() -> u32 { target_fn() }\n",
    )
    .unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    cg.index_all().await.unwrap();

    async fn calls_into_target_fn(cg: &TokenSave) -> usize {
        let nodes = cg.db().get_all_nodes().await.unwrap();
        let edges = cg.db().get_all_edges().await.unwrap();
        let Some(target_id) = nodes
            .iter()
            .find(|n| n.name == "target_fn")
            .map(|n| n.id.clone())
        else {
            return 0;
        };
        edges
            .iter()
            .filter(|e| e.kind == EdgeKind::Calls && e.target == target_id)
            .count()
    }

    assert_eq!(
        calls_into_target_fn(&cg).await,
        2,
        "full index should resolve both cross-file calls into target_fn"
    );

    // Change ONLY the callee — neither caller file is touched again.
    fs::write(
        project.join("src/callee.rs"),
        "pub fn target_fn() -> u32 { 43 }\npub fn unrelated() -> u32 { 0 }\n",
    )
    .unwrap();

    let sync_result = cg.sync().await.unwrap();
    assert_eq!(
        sync_result.files_modified, 1,
        "only callee.rs should be detected as stale"
    );

    assert_eq!(
        calls_into_target_fn(&cg).await,
        2,
        "sync must re-resolve inbound call edges from untouched callers \
         after the callee they reference is reindexed — a full reindex \
         would keep both edges, so incremental sync must too"
    );
}

/// Broader parity check: an incrementally-synced graph (several `sync()`
/// calls, each touching a different single file — ordinary dev churn)
/// must end up with the same canonical graph as a fresh full `index_all()`
/// of the identical final source tree. A count-only comparison can conceal
/// one missing record and one fabricated record.
#[tokio::test]
async fn test_incremental_sync_graph_matches_full_reindex() {
    let synced_dir = TempDir::new().unwrap();
    let synced_project = synced_dir.path();
    let full_dir = TempDir::new().unwrap();
    let full_project = full_dir.path();

    fs::create_dir_all(synced_project.join("src")).unwrap();
    fs::create_dir_all(full_project.join("src")).unwrap();

    let callee_v1 = "pub fn target_fn() -> u32 { 42 }\n";
    let caller_a_v1 = "pub fn caller_a() -> u32 { target_fn() }\n";
    let caller_b_v1 = "pub fn caller_b() -> u32 { target_fn() }\n";
    let caller_c_v1 = "pub fn caller_c() -> u32 { target_fn() }\n";

    fs::write(synced_project.join("src/callee.rs"), callee_v1).unwrap();
    fs::write(synced_project.join("src/caller_a.rs"), caller_a_v1).unwrap();
    fs::write(synced_project.join("src/caller_b.rs"), caller_b_v1).unwrap();
    fs::write(synced_project.join("src/caller_c.rs"), caller_c_v1).unwrap();

    let cg = TokenSave::init(synced_project).await.unwrap();
    cg.index_all().await.unwrap();

    // Ordinary dev churn: touch callee, then caller_a, then caller_b —
    // each in its own separate sync. caller_c.rs is never touched again
    // after the initial full index.
    let callee_v2 = "pub fn target_fn() -> u32 { 43 }\npub fn extra_1() {}\n";
    fs::write(synced_project.join("src/callee.rs"), callee_v2).unwrap();
    cg.sync().await.unwrap();

    let caller_a_v2 = "pub fn caller_a() -> u32 { target_fn() + 1 }\n";
    fs::write(synced_project.join("src/caller_a.rs"), caller_a_v2).unwrap();
    cg.sync().await.unwrap();

    let caller_b_v2 = "pub fn caller_b() -> u32 { target_fn() + 2 }\n";
    fs::write(synced_project.join("src/caller_b.rs"), caller_b_v2).unwrap();
    cg.sync().await.unwrap();

    // Build the identical final state fresh and index it once.
    fs::write(full_project.join("src/callee.rs"), callee_v2).unwrap();
    fs::write(full_project.join("src/caller_a.rs"), caller_a_v2).unwrap();
    fs::write(full_project.join("src/caller_b.rs"), caller_b_v2).unwrap();
    fs::write(full_project.join("src/caller_c.rs"), caller_c_v1).unwrap();

    let cg_full = TokenSave::init(full_project).await.unwrap();
    cg_full.index_all().await.unwrap();

    let (synced_nodes, synced_edges) = canonical_graph(&cg).await;
    let (full_nodes, full_edges) = canonical_graph(&cg_full).await;

    assert_eq!(synced_nodes, full_nodes);
    assert_eq!(synced_edges, full_edges);

    // All three callers — including caller_c, never touched after the
    // initial full index — must still resolve into target_fn.
    let target_id = synced_nodes
        .iter()
        .find(|n| n.name == "target_fn")
        .map(|n| n.id.clone())
        .expect("target_fn node must exist");
    let calls_into_target = synced_edges
        .iter()
        .filter(|e| e.kind == EdgeKind::Calls && e.target == target_id)
        .count();
    assert_eq!(
        calls_into_target, 3,
        "all three callers (including untouched caller_c) must resolve \
         into target_fn after incremental sync"
    );
}

#[cfg(feature = "lang-ruby")]
#[tokio::test]
async fn test_ruby_incremental_sync_graph_matches_full_reindex() {
    let synced_dir = TempDir::new().unwrap();
    let synced_project = synced_dir.path();
    let full_dir = TempDir::new().unwrap();
    let full_project = full_dir.path();

    for project in [synced_project, full_project] {
        fs::create_dir_all(project.join("app/models/concerns")).unwrap();
        fs::create_dir_all(project.join("app/services")).unwrap();
    }

    let application_record = r#"class ApplicationRecord
  def persist
  end
end
"#;
    let auditable_v1 = r#"module Auditable
  def audit
    normalize_audit()
  end

  def normalize_audit
  end
end
"#;
    let auditable_v2 = r#"module Auditable
  def audit
    sanitize_audit()
  end

  def sanitize_audit
  end
end
"#;
    let report_v1 = r#"class Report < ApplicationRecord
  include Auditable

  def publish
    audit()
    persist()
  end
end
"#;
    let report_v2 = r#"class Report < ApplicationRecord
  include Auditable

  def publish
    audit()
    persist()
  end

  def archive
    audit()
  end
end
"#;
    let publisher_v1 = r#"class ReportPublisher
  def call
    publish()
  end
end
"#;
    let publisher_v2 = r#"class ReportPublisher
  def call
    archive()
  end
end
"#;

    fs::write(
        synced_project.join("app/models/application_record.rb"),
        application_record,
    )
    .unwrap();
    fs::write(
        synced_project.join("app/models/concerns/auditable.rb"),
        auditable_v1,
    )
    .unwrap();
    fs::write(synced_project.join("app/models/report.rb"), report_v1).unwrap();
    fs::write(
        synced_project.join("app/services/report_publisher.rb"),
        publisher_v1,
    )
    .unwrap();

    let cg = TokenSave::init(synced_project).await.unwrap();
    cg.index_all().await.unwrap();

    fs::write(
        synced_project.join("app/models/concerns/auditable.rb"),
        auditable_v2,
    )
    .unwrap();
    assert_eq!(cg.sync().await.unwrap().files_modified, 1);

    fs::write(synced_project.join("app/models/report.rb"), report_v2).unwrap();
    assert_eq!(cg.sync().await.unwrap().files_modified, 1);

    fs::write(
        synced_project.join("app/services/report_publisher.rb"),
        publisher_v2,
    )
    .unwrap();
    assert_eq!(cg.sync().await.unwrap().files_modified, 1);

    fs::write(
        full_project.join("app/models/application_record.rb"),
        application_record,
    )
    .unwrap();
    fs::write(
        full_project.join("app/models/concerns/auditable.rb"),
        auditable_v2,
    )
    .unwrap();
    fs::write(full_project.join("app/models/report.rb"), report_v2).unwrap();
    fs::write(
        full_project.join("app/services/report_publisher.rb"),
        publisher_v2,
    )
    .unwrap();

    let cg_full = TokenSave::init(full_project).await.unwrap();
    cg_full.index_all().await.unwrap();

    let (synced_nodes, synced_edges) = canonical_graph(&cg).await;
    let (full_nodes, full_edges) = canonical_graph(&cg_full).await;

    let node_id = |name: &str| {
        let matches: Vec<_> = synced_nodes
            .iter()
            .filter(|node| node.name == name)
            .collect();
        assert_eq!(matches.len(), 1, "expected one node named {name}");
        matches[0].id.as_str()
    };
    let has_edge = |source: &str, target: &str, kind: EdgeKind| {
        synced_edges
            .iter()
            .any(|edge| edge.source == source && edge.target == target && edge.kind == kind)
    };

    let application_record_id = node_id("ApplicationRecord");
    let auditable_id = node_id("Auditable");
    let report_id = node_id("Report");
    let audit_id = node_id("audit");
    let sanitize_audit_id = node_id("sanitize_audit");
    let archive_id = node_id("archive");
    let call_id = node_id("call");

    let archive = synced_nodes
        .iter()
        .find(|node| node.id == archive_id)
        .expect("archive node must exist");
    assert_eq!(archive.parent_id.as_deref(), Some(report_id));
    assert!(has_edge(
        report_id,
        application_record_id,
        EdgeKind::Extends
    ));
    assert!(has_edge(report_id, auditable_id, EdgeKind::Implements));
    assert!(has_edge(audit_id, sanitize_audit_id, EdgeKind::Calls));
    assert!(has_edge(call_id, archive_id, EdgeKind::Calls));

    assert_eq!(synced_nodes, full_nodes);
    assert_eq!(synced_edges, full_edges);
}

/// #262 / #270: verbose sync must explain files skipped because no
/// registered extractor handles their extension — aggregated per extension
/// and filtered so binary/asset noise (.png, .lock, …) is not reported.
#[tokio::test]
async fn test_verbose_sync_reports_skipped_extensions() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    fs::create_dir_all(project.join("src")).unwrap();
    fs::write(project.join("src/lib.rs"), "pub fn f() {}\n").unwrap();
    // Two files of an unsupported source-like language, plus binary noise.
    fs::write(project.join("a.coolscript"), "print 1\n").unwrap();
    fs::write(project.join("b.coolscript"), "print 2\n").unwrap();
    fs::write(project.join("logo.png"), [0x89u8, 0x50, 0x4e, 0x47]).unwrap();
    fs::write(project.join("deps.lock"), "lockfile\n").unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    cg.index_all().await.unwrap();

    let lines = std::sync::Mutex::new(Vec::<String>::new());
    let result = cg
        .sync_with_progress_verbose(
            |_, _, _| {},
            |msg| lines.lock().unwrap().push(msg.to_string()),
        )
        .await
        .unwrap();
    let lines = lines.into_inner().unwrap();

    assert!(
        lines
            .iter()
            .any(|l| l.contains(".coolscript: 2 file(s) skipped (no registered extractor)")),
        "verbose output must summarize the skipped extension; got: {lines:?}"
    );
    assert!(
        !lines
            .iter()
            .any(|l| l.contains(".png") || l.contains(".lock")),
        "binary/asset extensions must not be reported; got: {lines:?}"
    );

    // The same summary is carried on SyncResult for `sync --doctor`.
    assert_eq!(
        result.skipped_extensions,
        vec![("coolscript".to_string(), 2)],
        "skipped_extensions: {:?}",
        result.skipped_extensions
    );
}

/// #345: a full index must carry the same skipped-extension summary as sync,
/// so `init` can tell the user that tracked source files were omitted instead
/// of reporting an apparently complete index.
#[tokio::test]
async fn test_index_all_reports_skipped_extensions() {
    let dir = TempDir::new().unwrap();
    let project = dir.path();

    // Originally used `.v`, which #344 has since made a supported extension.
    // VHDL keeps the case honest: a real hardware language with no extractor.
    fs::write(project.join("README.md"), "# readme\n").unwrap();
    fs::write(
        project.join("example.vhd"),
        "entity example is\nend example;\n",
    )
    .unwrap();

    let cg = TokenSave::init(project).await.unwrap();
    let result = cg.index_all().await.unwrap();

    assert_eq!(
        result.skipped_extensions,
        vec![("vhd".to_string(), 1)],
        "skipped_extensions: {:?}",
        result.skipped_extensions
    );
}