sqry-lang-java 8.0.1

Java language plugin for sqry
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
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
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
//! Test suite for `TypeOf` and Reference edges in Java plugin
//!
//! Validates that the Java plugin correctly creates:
//! - `TypeOf` edges for fields, local variables, and parameters
//! - Reference edges for variable/field accesses

use sqry_core::graph::GraphBuilder;
use sqry_core::graph::unified::StagingGraph;
use sqry_core::graph::unified::build::staging::StagingOp;
use sqry_core::graph::unified::edge::EdgeKind;
use sqry_lang_java::relations::JavaGraphBuilder;
use std::path::PathBuf;
use tree_sitter::Tree;

// ========== Test Helper Functions ==========

/// Parse Java source code into a tree-sitter Tree
fn parse_java(content: &str) -> Tree {
    let mut parser = tree_sitter::Parser::new();
    let language = tree_sitter_java::LANGUAGE.into();
    parser
        .set_language(&language)
        .expect("Failed to load Java grammar");
    parser
        .parse(content, None)
        .expect("Failed to parse Java code")
}

/// Build staging graph from Java source and return it for assertions
fn build_staging_graph(content: &str, filename: &str) -> StagingGraph {
    let tree = parse_java(content);
    let mut staging = StagingGraph::new();
    let builder = JavaGraphBuilder::default();
    let file_path = PathBuf::from(filename);

    builder
        .build_graph(&tree, content.as_bytes(), &file_path, &mut staging)
        .expect("Failed to build graph");

    staging
}

/// Count edges of a specific kind in staging operations
fn count_edge_kind(staging: &StagingGraph, kind_tag: &str) -> usize {
    staging
        .operations()
        .iter()
        .filter(|op| {
            if let StagingOp::AddEdge { kind, .. } = op {
                kind.tag() == kind_tag
            } else {
                false
            }
        })
        .count()
}

/// Check if staging has an edge of a specific kind
fn has_edge_kind(staging: &StagingGraph, kind_tag: &str) -> bool {
    count_edge_kind(staging, kind_tag) > 0
}

/// Build a string ID → string value lookup from staging graph.
fn build_string_lookup(staging: &StagingGraph) -> std::collections::HashMap<u32, String> {
    staging
        .operations()
        .iter()
        .filter_map(|op| {
            if let StagingOp::InternString { local_id, value } = op {
                Some((local_id.index(), value.clone()))
            } else {
                None
            }
        })
        .collect()
}

/// Build node ID → node name lookup.
fn build_node_name_lookup(staging: &StagingGraph) -> std::collections::HashMap<u32, String> {
    let strings = build_string_lookup(staging);
    staging
        .operations()
        .iter()
        .filter_map(|op| {
            if let StagingOp::AddNode { entry, expected_id } = op {
                let expected_id = expected_id.as_ref()?;
                let node_idx = expected_id.index();
                let name_idx = entry.qualified_name.unwrap_or(entry.name).index();
                let name = strings
                    .get(&name_idx)
                    .cloned()
                    .unwrap_or_else(|| format!("<string:{name_idx}>"));
                Some((node_idx, name))
            } else {
                None
            }
        })
        .collect()
}

/// Collect Reference edges (`source_name`, `target_name`).
fn collect_reference_edges(staging: &StagingGraph) -> Vec<(String, String)> {
    let node_names = build_node_name_lookup(staging);
    staging
        .operations()
        .iter()
        .filter_map(|op| {
            if let StagingOp::AddEdge {
                source,
                target,
                kind,
                ..
            } = op
                && matches!(kind, EdgeKind::References)
            {
                let source_name = node_names
                    .get(&source.index())
                    .cloned()
                    .unwrap_or_else(|| format!("<unknown:{}>", source.index()));
                let target_name = node_names
                    .get(&target.index())
                    .cloned()
                    .unwrap_or_else(|| format!("<unknown:{}>", target.index()));
                return Some((source_name, target_name));
            }
            None
        })
        .collect()
}

fn has_reference_target(edges: &[(String, String)], target: &str) -> bool {
    edges.iter().any(|(_, tgt)| tgt == target)
}

fn has_reference_target_prefix(edges: &[(String, String)], prefix: &str) -> bool {
    edges.iter().any(|(_, tgt)| tgt.starts_with(prefix))
}

fn has_reference_target_suffix(edges: &[(String, String)], suffix: &str) -> bool {
    edges.iter().any(|(_, tgt)| tgt.ends_with(suffix))
}

fn has_reference_target_contains(edges: &[(String, String)], needle: &str) -> bool {
    edges.iter().any(|(_, tgt)| tgt.contains(needle))
}

// ========== TypeOf Edge Tests (Phase 1: Fields) ==========

#[test]
fn test_field_typeof_edge() {
    let content = r"
package com.example;

class Service {
    private UserRepository repository;
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have TypeOf edge from repository variable to UserRepository class
    assert!(
        has_edge_kind(&staging, "type_of"),
        "Expected TypeOf edge for field declaration"
    );

    let typeof_count = count_edge_kind(&staging, "type_of");
    assert!(
        typeof_count >= 1,
        "Expected at least 1 TypeOf edge for field, got {typeof_count}"
    );
}

#[test]
fn test_multiple_fields_typeof_edges() {
    let content = r"
package com.example;

class Service {
    private UserRepository userRepository;
    private OrderRepository orderRepository;
    private String name;
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have TypeOf edges for all 3 fields
    let typeof_count = count_edge_kind(&staging, "type_of");
    assert!(
        typeof_count >= 3,
        "Expected at least 3 TypeOf edges for 3 fields, got {typeof_count}"
    );
}

#[test]
fn test_field_with_generic_type() {
    let content = r"
package com.example;

import java.util.List;

class Service {
    private List<User> users;
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have TypeOf edge for generic field
    // Note: We extract base type (List) not the full generic signature
    assert!(
        has_edge_kind(&staging, "type_of"),
        "Expected TypeOf edge for generic field"
    );
}

// ========== TypeOf Edge Tests (Phase 2: Local Variables) ==========

#[test]
fn test_local_variable_typeof_edge() {
    let content = r#"
package com.example;

class Service {
    public void test() {
        String name = "test";
    }
}
"#;

    let staging = build_staging_graph(content, "test.java");

    // Should have TypeOf edge for local variable
    assert!(
        has_edge_kind(&staging, "type_of"),
        "Expected TypeOf edge for local variable declaration"
    );
}

#[test]
fn test_multiple_local_variables() {
    let content = r#"
package com.example;

class Service {
    public void test() {
        String name = "test";
        int count = 42;
        boolean flag = true;
    }
}
"#;

    let staging = build_staging_graph(content, "test.java");

    // Should have TypeOf edges for all 3 local variables
    let typeof_count = count_edge_kind(&staging, "type_of");
    assert!(
        typeof_count >= 3,
        "Expected at least 3 TypeOf edges for 3 local variables, got {typeof_count}"
    );
}

#[test]
fn test_local_variable_with_imported_type() {
    let content = r"
package com.example;

import java.util.Optional;

class Service {
    public void test() {
        Optional<User> user = Optional.empty();
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have TypeOf edge with resolved import
    assert!(
        has_edge_kind(&staging, "type_of"),
        "Expected TypeOf edge for local variable with imported type"
    );
}

#[test]
fn test_multiple_declarators_in_one_statement() {
    let content = r"
package com.example;

class Service {
    public void test() {
        String a, b, c;
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have TypeOf edges for all 3 variables (a, b, c)
    let typeof_count = count_edge_kind(&staging, "type_of");
    assert!(
        typeof_count >= 3,
        "Expected at least 3 TypeOf edges for multiple declarators, got {typeof_count}"
    );
}

// ========== Integration Tests ==========

#[test]
fn test_combined_field_and_local_variable_typeof() {
    let content = r#"
package com.example;

class Service {
    private UserRepository repository;

    public void process() {
        String name = "test";
        int count = 42;
    }
}
"#;

    let staging = build_staging_graph(content, "test.java");

    // Should have TypeOf edges for:
    // - 1 field (repository)
    // - 2 local variables (name, count)
    let typeof_count = count_edge_kind(&staging, "type_of");
    assert!(
        typeof_count >= 3,
        "Expected at least 3 TypeOf edges (1 field + 2 local vars), got {typeof_count}"
    );
}

#[test]
fn test_typeof_edges_do_not_break_existing_edges() {
    let content = r#"
package com.example;

class Service {
    private UserRepository repository;

    public void test() {
        String name = "test";
        repository.save(null);
    }
}
"#;

    let staging = build_staging_graph(content, "test.java");

    // Should still have call edges (existing functionality)
    assert!(
        has_edge_kind(&staging, "calls"),
        "TypeOf edges should not break existing call edges"
    );

    // And should have TypeOf edges (new functionality)
    assert!(has_edge_kind(&staging, "type_of"), "Expected TypeOf edges");
}

// ========== Limitation Tests ==========

#[test]
fn test_var_keyword_not_supported() {
    // Java 10+ type inference with 'var' keyword
    // This is a limitation test - we document that var is not supported
    let content = r#"
package com.example;

class Service {
    public void test() {
        var name = "test";  // Type inference - not supported
    }
}
"#;

    let staging = build_staging_graph(content, "test.java");

    // This should still compile without errors, but may not have TypeOf edge
    // (tree-sitter may not parse 'var' as a type)
    // The test just ensures we don't crash
    let _typeof_count = count_edge_kind(&staging, "type_of");
    // No assertion - this is a documented limitation
}

#[test]
fn test_wildcard_generics() {
    // Document behavior with wildcard generics
    let content = r"
package com.example;

import java.util.List;

class Service {
    private List<?> items;
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have TypeOf edge for List (wildcard is part of type text)
    assert!(
        has_edge_kind(&staging, "type_of"),
        "Expected TypeOf edge even with wildcard generics"
    );
}

// ========== Property Node Tests (Task #7: P1 Property Nodes) ==========

use sqry_core::graph::unified::node::NodeKind;

/// Helper to check if staging has a node of a specific kind with given name substring
fn has_node_with_kind_and_name(
    staging: &StagingGraph,
    kind: NodeKind,
    name_contains: &str,
) -> bool {
    staging.operations().iter().any(|op| {
        if let StagingOp::AddNode { entry, .. } = op {
            entry.kind == kind
                && staging
                    .resolve_node_canonical_name(entry)
                    .is_some_and(|name| name.contains(name_contains))
        } else {
            false
        }
    })
}

/// Count nodes of a specific kind
fn count_node_kind(staging: &StagingGraph, kind: NodeKind) -> usize {
    staging
        .operations()
        .iter()
        .filter(|op| matches!(op, StagingOp::AddNode { entry, .. } if entry.kind == kind))
        .count()
}

#[test]
fn test_mutable_field_creates_property_node() {
    let content = r"
package com.example;

class Service {
    private int counter;
}
";

    let staging = build_staging_graph(content, "test.java");

    // Mutable (non-final) field should create Property node
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "counter"),
        "Expected Property node for mutable field"
    );
}

#[test]
fn test_final_field_creates_constant_node() {
    let content = r#"
package com.example;

class Config {
    private final String API_KEY = "secret";
}
"#;

    let staging = build_staging_graph(content, "test.java");

    // Final field should create Constant node
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Constant, "API_KEY"),
        "Expected Constant node for final field"
    );
}

#[test]
fn test_static_field_creates_property_node_with_static() {
    let content = r"
package com.example;

class Counter {
    private static int instanceCount;
}
";

    let staging = build_staging_graph(content, "test.java");

    // Static non-final field should create Property node
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "instanceCount"),
        "Expected Property node for static field"
    );
}

#[test]
fn test_static_final_field_creates_constant_node() {
    let content = r"
package com.example;

class Config {
    public static final int MAX_SIZE = 100;
}
";

    let staging = build_staging_graph(content, "test.java");

    // Static final field should create Constant node
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Constant, "MAX_SIZE"),
        "Expected Constant node for static final field"
    );
}

#[test]
fn test_multiple_field_types_mixed() {
    let content = r"
package com.example;

class Service {
    private String name;                    // Property (mutable)
    private final String id;                // Constant (final)
    private static int count;               // Property (static mutable)
    public static final int MAX = 100;      // Constant (static final)
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 2 Property nodes (mutable fields)
    let property_count = count_node_kind(&staging, NodeKind::Property);
    assert!(
        property_count >= 2,
        "Expected at least 2 Property nodes for mutable fields, got {property_count}"
    );

    // Should have 2 Constant nodes (final fields)
    let constant_count = count_node_kind(&staging, NodeKind::Constant);
    assert!(
        constant_count >= 2,
        "Expected at least 2 Constant nodes for final fields, got {constant_count}"
    );
}

#[test]
fn test_property_node_has_typeof_edge() {
    let content = r"
package com.example;

class Service {
    private UserRepository repository;
}
";

    let staging = build_staging_graph(content, "test.java");

    // Property node should have TypeOf edge to type
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "repository"),
        "Expected Property node for field"
    );
    assert!(
        has_edge_kind(&staging, "type_of"),
        "Expected TypeOf edge from Property to type"
    );
}

#[test]
fn test_property_node_visibility() {
    // Tests different visibility modifiers
    let content = r"
package com.example;

class Service {
    private int privateField;
    protected int protectedField;
    public int publicField;
    int packagePrivateField;
}
";

    let staging = build_staging_graph(content, "test.java");

    // All 4 fields should be Property nodes
    let property_count = count_node_kind(&staging, NodeKind::Property);
    assert!(
        property_count >= 4,
        "Expected at least 4 Property nodes for fields with different visibility, got {property_count}"
    );
}
// ========== Parameter TypeOf Edge Tests ==========

#[test]
fn test_parameter_typeof_edge() {
    let content = r"
package com.example;

class Service {
    public void process(User user) {
        // Method with single parameter
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have TypeOf edge for parameter
    assert!(
        has_edge_kind(&staging, "type_of"),
        "Expected TypeOf edge for method parameter"
    );

    // Should have Parameter node
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Parameter, "user"),
        "Expected Parameter node for 'user' parameter"
    );
}

#[test]
fn test_multiple_parameters_typeof_edges() {
    let content = r"
package com.example;

class Service {
    public void process(User user, String name, int age) {
        // Method with multiple parameters
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have TypeOf edges for all 3 parameters
    let typeof_count = count_edge_kind(&staging, "type_of");
    assert!(
        typeof_count >= 3,
        "Expected at least 3 TypeOf edges for 3 parameters, got {typeof_count}"
    );

    // Should have Parameter nodes
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Parameter, "user"),
        "Expected Parameter node for 'user'"
    );
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Parameter, "name"),
        "Expected Parameter node for 'name'"
    );
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Parameter, "age"),
        "Expected Parameter node for 'age'"
    );
}

#[test]
fn test_parameter_with_imported_type() {
    let content = r"
package com.example;

import java.util.Optional;

class Service {
    public void process(Optional<User> user) {
        // Parameter with imported generic type
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have TypeOf edge for parameter with resolved import
    assert!(
        has_edge_kind(&staging, "type_of"),
        "Expected TypeOf edge for parameter with imported type"
    );

    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Parameter, "user"),
        "Expected Parameter node for 'user'"
    );
}

#[test]
fn test_constructor_parameters() {
    let content = r"
package com.example;

class Service {
    public Service(UserRepository repository, String name) {
        // Constructor with parameters
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have TypeOf edges for constructor parameters
    let typeof_count = count_edge_kind(&staging, "type_of");
    assert!(
        typeof_count >= 2,
        "Expected at least 2 TypeOf edges for constructor parameters, got {typeof_count}"
    );
}

// ========== Reference Edge Tests ==========

#[test]
fn test_field_reference_edge() {
    let content = r"
package com.example;

class Service {
    private UserRepository repository;

    public void test() {
        repository.save(null);
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have Reference edge from usage to field declaration
    assert!(
        has_edge_kind(&staging, "references"),
        "Expected Reference edge for field access"
    );
}

#[test]
fn test_multiple_field_references() {
    let content = r"
package com.example;

class Service {
    private UserRepository repository;

    public void test() {
        repository.save(null);
        repository.findById(1L);
        repository.delete(null);
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have Reference edges for all 3 field accesses
    let reference_count = count_edge_kind(&staging, "references");
    assert!(
        reference_count >= 3,
        "Expected at least 3 Reference edges for field accesses, got {reference_count}"
    );
}

#[test]
fn test_field_reference_in_different_methods() {
    let content = r"
package com.example;

class Service {
    private UserRepository repository;

    public void save() {
        repository.save(null);
    }

    public void find() {
        repository.findById(1L);
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have Reference edges from both methods
    let reference_count = count_edge_kind(&staging, "references");
    assert!(
        reference_count >= 2,
        "Expected at least 2 Reference edges for field accesses in different methods, got {reference_count}"
    );
}

// ========== Field Collision Tests ==========

#[test]
fn test_field_collision_multiple_classes_same_name() {
    let content = r"
package com.example;

class User {
    private String name;
}

class Product {
    private String name;
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 2 separate Property nodes with qualified names
    // (User::name and Product::name)
    let property_count = count_node_kind(&staging, NodeKind::Property);
    assert!(
        property_count >= 2,
        "Expected at least 2 Property nodes for fields in different classes, got {property_count}"
    );

    // Should have 2 TypeOf edges (one for each field)
    let typeof_count = count_edge_kind(&staging, "type_of");
    assert!(
        typeof_count >= 2,
        "Expected at least 2 TypeOf edges for fields in different classes, got {typeof_count}"
    );
}

#[test]
fn test_field_collision_nested_classes() {
    let content = r"
package com.example;

class Outer {
    private String value;

    class Inner {
        private String value;
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 2 separate Property nodes for outer and inner class fields
    let property_count = count_node_kind(&staging, NodeKind::Property);
    assert!(
        property_count >= 2,
        "Expected at least 2 Property nodes for fields in nested classes, got {property_count}"
    );
}

#[test]
fn test_qualified_field_reference_resolution() {
    let content = r"
package com.example;

class Service {
    private String name;

    class Inner {
        private String name;

        public void test() {
            name.length();
        }
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should resolve field reference to correct field based on class context
    assert!(
        has_edge_kind(&staging, "references"),
        "Expected Reference edge for qualified field access"
    );
}

// ========== Metadata Tests ==========

#[test]
fn test_public_field_has_public_visibility() {
    let content = r"
package com.example;

class Config {
    public String apiEndpoint;
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have Property node for public field
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "apiEndpoint"),
        "Expected Property node for public field"
    );

    // Visibility metadata is stored but we can't easily verify it in staging
    // The implementation extracts and stores it correctly
}

#[test]
fn test_static_field_metadata() {
    let content = r#"
package com.example;

class Config {
    public static String DEFAULT_URL = "http://example.com";
    private static final int MAX_RETRIES = 3;
}
"#;

    let staging = build_staging_graph(content, "test.java");

    // Static non-final should be Property
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "DEFAULT_URL"),
        "Expected Property node for static mutable field"
    );

    // Static final should be Constant
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Constant, "MAX_RETRIES"),
        "Expected Constant node for static final field"
    );
}

// ========== Integration Tests ==========

#[test]
fn test_complete_class_with_all_features() {
    let content = r"
package com.example;

import java.util.Optional;

class UserService {
    private static final int MAX_USERS = 1000;
    private UserRepository repository;
    public String serviceName;

    public UserService(UserRepository repository) {
        this.repository = repository;
    }

    public Optional<User> findUser(Long id) {
        return repository.findById(id);
    }

    public void saveUser(User user, String createdBy) {
        repository.save(user);
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have:
    // - 1 Constant (MAX_USERS)
    // - 2 Properties (repository, serviceName)
    // - 3 Parameters (repository in constructor, id in findUser, user and createdBy in saveUser)
    // - Reference edges for field accesses

    let constant_count = count_node_kind(&staging, NodeKind::Constant);
    assert!(constant_count >= 1, "Expected at least 1 Constant node");

    let property_count = count_node_kind(&staging, NodeKind::Property);
    assert!(property_count >= 2, "Expected at least 2 Property nodes");

    let parameter_count = count_node_kind(&staging, NodeKind::Parameter);
    assert!(
        parameter_count >= 4,
        "Expected at least 4 Parameter nodes, got {parameter_count}"
    );

    // Should have Reference edges for repository field accesses
    let reference_count = count_edge_kind(&staging, "references");
    assert!(
        reference_count >= 2,
        "Expected at least 2 Reference edges for field accesses, got {reference_count}"
    );

    // Should have TypeOf edges for fields, parameters, and local variables
    let typeof_count = count_edge_kind(&staging, "type_of");
    assert!(
        typeof_count >= 7,
        "Expected at least 7 TypeOf edges (3 fields + 4 parameters), got {typeof_count}"
    );
}

#[test]
fn test_no_regressions_with_new_features() {
    // Ensure that existing functionality still works with new features enabled
    let content = r#"
package com.example;

class Service {
    private final String API_KEY = "secret";
    private String name;

    public void test() {
        String localVar = "test";
        name.length();
    }
}
"#;

    let staging = build_staging_graph(content, "test.java");

    // Old features still work:
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Constant, "API_KEY"),
        "Constant node creation still works"
    );
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "name"),
        "Property node creation still works"
    );

    // TypeOf edges exist
    assert!(
        has_edge_kind(&staging, "type_of"),
        "TypeOf edges still created"
    );

    // New features work:
    assert!(
        has_edge_kind(&staging, "references"),
        "Reference edges created for field access"
    );
}

// ========== Tests for Codex Review Findings ==========

#[test]
fn test_final_field_reference_uses_constant_node() {
    // Test that reference edges for final fields point to Constant nodes, not Property nodes
    let content = r#"
package com.example;

class Config {
    private final String API_KEY = "secret";

    public void useKey() {
        String key = API_KEY;  // Reference to final field
    }
}
"#;

    let staging = build_staging_graph(content, "test.java");

    // Should have 1 Constant node for API_KEY
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Constant, "Config::API_KEY"),
        "Final field should create Constant node"
    );

    // Should NOT have a Property node for API_KEY
    assert!(
        !has_node_with_kind_and_name(&staging, NodeKind::Property, "Config::API_KEY"),
        "Final field should NOT create Property node"
    );

    // Reference edge should exist and target the Constant node
    let reference_count = count_edge_kind(&staging, "references");
    assert!(
        reference_count >= 1,
        "Expected reference edge for final field access"
    );
}

#[test]
fn test_varargs_parameter_typeof_edge() {
    // Test that varargs parameters (String... args) get TypeOf edges
    let content = r"
package com.example;

class Logger {
    public void log(String format, Object... args) {
        // varargs parameter should have TypeOf edge
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have Parameter nodes for both format and args
    let parameter_count = count_node_kind(&staging, NodeKind::Parameter);
    assert!(
        parameter_count >= 2,
        "Expected 2 Parameter nodes (format and args), got {parameter_count}"
    );

    // Should have TypeOf edges for both parameters
    let typeof_count = count_edge_kind(&staging, "type_of");
    assert!(
        typeof_count >= 2,
        "Expected TypeOf edges for both parameters, got {typeof_count}"
    );
}

#[test]
fn test_receiver_parameter_typeof_edge() {
    // Test that receiver parameters (Outer.this) get TypeOf edges
    let content = r"
package com.example;

class Outer {
    class Inner {
        public void method(Outer Outer.this) {
            // receiver parameter should have TypeOf edge
        }
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have Parameter node for receiver parameter
    let parameter_count = count_node_kind(&staging, NodeKind::Parameter);
    assert!(
        parameter_count >= 1,
        "Expected Parameter node for receiver parameter, got {parameter_count}"
    );

    // Should have TypeOf edge for receiver parameter
    let typeof_count = count_edge_kind(&staging, "type_of");
    assert!(
        typeof_count >= 1,
        "Expected TypeOf edge for receiver parameter, got {typeof_count}"
    );
}

#[test]
fn test_qualified_field_access_no_false_positive() {
    // Test that other.field does NOT create reference edge, but this.field does
    let content = r"
package com.example;

class Service {
    private String name;

    public void test(Service other) {
        this.name.length();   // Should create reference edge
        name.length();        // Should create reference edge
        other.name.length();  // Should NOT create reference edge (qualified by other object)
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    let reference_edges = collect_reference_edges(&staging);
    let field_refs = reference_edges
        .iter()
        .filter(|(_, target)| target == "Service::name")
        .count();
    assert_eq!(
        field_refs, 2,
        "Expected 2 field reference edges to Service::name, got {field_refs}. Edges: {reference_edges:?}"
    );
}

#[test]
fn test_nested_class_field_collision_prevention() {
    // Test that fields with same name in different nested classes don't collide
    let content = r"
package com.example;

class OuterA {
    class Inner {
        private String value;
    }
}

class OuterB {
    class Inner {
        private String value;
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 2 distinct Property nodes with fully qualified names
    // OuterA::Inner::value and OuterB::Inner::value
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "OuterA::Inner::value"),
        "Expected fully qualified field name for OuterA.Inner.value"
    );

    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "OuterB::Inner::value"),
        "Expected fully qualified field name for OuterB.Inner.value"
    );

    // Should have exactly 2 Property nodes (no collision)
    let property_count = count_node_kind(&staging, NodeKind::Property);
    assert_eq!(
        property_count, 2,
        "Expected 2 distinct Property nodes, got {property_count}"
    );
}

#[test]
fn test_catch_parameter_declaration_context() {
    // Test that catch (Exception e) parameters are recognized as declarations, not references
    let content = r"
package com.example;

class ErrorHandler {
    private Exception e;  // Field named 'e'

    public void test() {
        try {
            throw new Exception();
        } catch (Exception e) {  // Parameter 'e' should NOT create reference to field 'e'
            e.printStackTrace();
        }
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 1 Property node for field 'e'
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "ErrorHandler::e"),
        "Expected field 'e' to be a Property"
    );

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        !has_reference_target(&reference_edges, "ErrorHandler::e"),
        "Catch parameter should not reference field ErrorHandler::e. Edges: {reference_edges:?}"
    );
    assert!(
        has_reference_target_prefix(&reference_edges, "e@"),
        "Expected reference edge to catch variable e@..., got: {reference_edges:?}"
    );
}

#[test]
fn test_enhanced_for_parameter_declaration_context() {
    // Test that for (Type x : xs) parameters are recognized as declarations, not references
    let content = r"
package com.example;

import java.util.List;

class Processor {
    private String item;  // Field named 'item'

    public void test(List<String> items) {
        for (String item : items) {  // Parameter 'item' should NOT create reference to field 'item'
            System.out.println(item);
        }
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 1 Property node for field 'item'
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Processor::item"),
        "Expected field 'item' to be a Property"
    );

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        !has_reference_target(&reference_edges, "Processor::item"),
        "Enhanced-for variable should not reference field Processor::item. Edges: {reference_edges:?}"
    );
    assert!(
        has_reference_target_prefix(&reference_edges, "item@"),
        "Expected reference edge to enhanced-for variable item@..., got: {reference_edges:?}"
    );
}

#[test]
fn test_static_field_metadata_applied() {
    // Test that static metadata is correctly applied to field nodes
    let content = r#"
package com.example;

class Config {
    private static final String VERSION = "1.0";
    private static int instanceCount = 0;
    private String name;
}
"#;

    let staging = build_staging_graph(content, "test.java");

    // Should have nodes for all three fields
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Constant, "Config::VERSION"),
        "Static final field should be Constant"
    );

    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Config::instanceCount"),
        "Static non-final field should be Property"
    );

    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Config::name"),
        "Non-static field should be Property"
    );

    // Note: We can't easily test if is_static is set without accessing internal node data
    // This test ensures nodes are created; the implementation ensures is_static is set
}

// ========== Shadowing Detection Tests (Codex Review Follow-up) ==========

#[test]
fn test_method_parameter_shadows_field() {
    // Test that method parameters shadow fields of the same name
    let content = r"
package com.example;

class Processor {
    private String value;

    public void process(String value) {
        // 'value' here should reference the parameter, not the field
        System.out.println(value);
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 1 Property node for field 'value'
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Processor::value"),
        "Expected field 'value' to be a Property"
    );

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        !has_reference_target(&reference_edges, "Processor::value"),
        "Parameter should shadow field Processor::value. Edges: {reference_edges:?}"
    );
    assert!(
        has_reference_target_contains(&reference_edges, "process::value"),
        "Expected reference edge to parameter process::value, got: {reference_edges:?}"
    );
}

#[test]
fn test_constructor_parameter_shadows_field() {
    // Test that constructor parameters shadow fields
    let content = r"
package com.example;

class Config {
    private String name;

    public Config(String name) {
        // 'name' here should reference the parameter, not the field
        String temp = name;
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 1 Property node for field 'name'
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Config::name"),
        "Expected field 'name' to be a Property"
    );

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        !has_reference_target(&reference_edges, "Config::name"),
        "Constructor parameter should shadow field Config::name. Edges: {reference_edges:?}"
    );
    assert!(
        has_reference_target_contains(&reference_edges, "Config::<init>::name"),
        "Expected reference edge to constructor param Config::<init>::name, got: {reference_edges:?}"
    );
}

#[test]
fn test_enhanced_for_iterable_field_reference() {
    // Test that the iterable expression can reference a field
    let content = r"
package com.example;

import java.util.List;

class Processor {
    private List<String> items;

    public void process() {
        for (String item : items) {
            // 'items' in the for header should create a reference to the field
            System.out.println(item);
        }
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 1 Property node for field 'items'
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Processor::items"),
        "Expected field 'items' to be a Property"
    );

    // Should have a reference edge for 'items' in the for header
    let reference_count = count_edge_kind(&staging, "references");
    assert!(
        reference_count >= 1,
        "Expected reference edge for field 'items' in enhanced-for, got {reference_count} edges"
    );
}

#[test]
fn test_for_loop_init_shadows_field() {
    // Test that for-loop init declarations shadow fields
    let content = r"
package com.example;

class Counter {
    private int i;

    public void count() {
        for (int i = 0; i < 10; i++) {
            // 'i' here should reference the loop variable, not the field
            System.out.println(i);
        }
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 1 Property node for field 'i'
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Counter::i"),
        "Expected field 'i' to be a Property"
    );

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        !has_reference_target(&reference_edges, "Counter::i"),
        "Loop variable should shadow field Counter::i. Edges: {reference_edges:?}"
    );
    assert!(
        has_reference_target_prefix(&reference_edges, "i@"),
        "Expected reference edge to loop variable i@..., got: {reference_edges:?}"
    );
}

#[test]
fn test_try_with_resources_shadows_field() {
    // Test that try-with-resources declarations shadow fields
    let content = r#"
package com.example;

import java.io.FileReader;

class FileProcessor {
    private FileReader reader;

    public void process() throws Exception {
        try (FileReader reader = new FileReader("file.txt")) {
            // 'reader' here should reference the resource, not the field
            int c = reader.read();
        }
    }
}
"#;

    let staging = build_staging_graph(content, "test.java");

    // Should have 1 Property node for field 'reader'
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "FileProcessor::reader"),
        "Expected field 'reader' to be a Property"
    );

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        !has_reference_target(&reference_edges, "FileProcessor::reader"),
        "Resource should shadow field FileProcessor::reader. Edges: {reference_edges:?}"
    );
    assert!(
        has_reference_target_prefix(&reference_edges, "reader@"),
        "Expected reference edge to resource variable reader@..., got: {reference_edges:?}"
    );
}

#[test]
fn test_lambda_parameter_shadows_field() {
    // Test that lambda parameters shadow fields
    let content = r"
package com.example;

import java.util.List;
import java.util.function.Function;

class Processor {
    private String value;

    public void process(List<String> items) {
        Function<String, String> mapper = value -> {
            // 'value' here should reference the lambda parameter, not the field
            return value.toUpperCase();
        };
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 1 Property node for field 'value'
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Processor::value"),
        "Expected field 'value' to be a Property"
    );

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        !has_reference_target(&reference_edges, "Processor::value"),
        "Lambda parameter should shadow field Processor::value. Edges: {reference_edges:?}"
    );
    assert!(
        has_reference_target_prefix(&reference_edges, "lambda@")
            && has_reference_target_suffix(&reference_edges, "::value"),
        "Expected reference edge to lambda param ::value, got: {reference_edges:?}"
    );
}

#[test]
fn test_varargs_parameter_shadows_field() {
    // Test that varargs parameters shadow fields
    let content = r"
package com.example;

class Logger {
    private String[] args;

    public void log(String format, String... args) {
        // 'args' here should reference the varargs parameter, not the field
        for (String arg : args) {
            System.out.println(arg);
        }
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 1 Property node for field 'args'
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Logger::args"),
        "Expected field 'args' to be a Property"
    );

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        !has_reference_target(&reference_edges, "Logger::args"),
        "Varargs parameter should shadow field Logger::args. Edges: {reference_edges:?}"
    );
    assert!(
        has_reference_target_contains(&reference_edges, "log::args"),
        "Expected reference edge to varargs param log::args, got: {reference_edges:?}"
    );
}

// ========== Pattern Variable Tests (Java 16+ Pattern Matching) ==========

#[test]
fn test_instanceof_pattern_variable_shadows_field() {
    // Test that instanceof pattern variables shadow fields (Java 16+)
    let content = r"
package com.example;

class Processor {
    private String value;

    public void check(Object obj) {
        if (obj instanceof String value) {
            // 'value' here should reference the pattern variable, not the field
            System.out.println(value.length());
        }
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 1 Property node for field 'value'
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Processor::value"),
        "Expected field 'value' to be a Property"
    );

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        !has_reference_target(&reference_edges, "Processor::value"),
        "Pattern variable should shadow field Processor::value. Edges: {reference_edges:?}"
    );
    assert!(
        has_reference_target_prefix(&reference_edges, "value@"),
        "Expected reference edge to pattern variable value@..., got: {reference_edges:?}"
    );
}

#[test]
fn test_switch_record_pattern_shadows_field() {
    // Test that switch record pattern components shadow fields (Java 17+)
    let content = r#"
package com.example;

sealed interface Shape {}
record Point(int x, int y) implements Shape {}

class Processor {
    private int x;
    private int y;

    public void process(Shape shape) {
        switch (shape) {
            case Point(int x, int y) -> {
                // 'x' and 'y' here should reference pattern variables, not fields
                System.out.println(x + y);
            }
            default -> System.out.println("unknown");
        }
    }
}
"#;

    let staging = build_staging_graph(content, "test.java");

    // Should have Property nodes for fields 'x' and 'y'
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Processor::x"),
        "Expected field 'x' to be a Property"
    );
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Processor::y"),
        "Expected field 'y' to be a Property"
    );

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        !has_reference_target(&reference_edges, "Processor::x"),
        "Pattern variable should shadow field Processor::x. Edges: {reference_edges:?}"
    );
    assert!(
        !has_reference_target(&reference_edges, "Processor::y"),
        "Pattern variable should shadow field Processor::y. Edges: {reference_edges:?}"
    );
    assert!(
        has_reference_target_prefix(&reference_edges, "x@")
            && has_reference_target_prefix(&reference_edges, "y@"),
        "Expected reference edges to pattern vars x@..., y@..., got: {reference_edges:?}"
    );
}

#[test]
fn test_instanceof_pattern_variable_declaration_context() {
    // Test that instanceof pattern variable declaration is filtered
    let content = r"
package com.example;

class Processor {
    private String data;

    public void check(Object obj) {
        // 'data' in the pattern should NOT create a reference to field
        if (obj instanceof String data) {
            System.out.println(data);
        }
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 1 Property node for field 'data'
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Processor::data"),
        "Expected field 'data' to be a Property"
    );

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        !has_reference_target(&reference_edges, "Processor::data"),
        "Pattern variable should shadow field Processor::data. Edges: {reference_edges:?}"
    );
    assert!(
        has_reference_target_prefix(&reference_edges, "data@"),
        "Expected reference edge to pattern variable data@..., got: {reference_edges:?}"
    );
}

#[test]
fn test_nested_instanceof_pattern() {
    // Test nested instanceof patterns
    let content = r"
package com.example;

class Processor {
    private String value;

    public void check(Object obj) {
        if (obj instanceof String value) {
            if (value.length() > 0) {
                // 'value' should still reference the pattern variable
                System.out.println(value.trim());
            }
        }
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have 1 Property node for field 'value'
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Processor::value"),
        "Expected field 'value' to be a Property"
    );

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        !has_reference_target(&reference_edges, "Processor::value"),
        "Nested pattern variable should shadow field Processor::value. Edges: {reference_edges:?}"
    );
    assert!(
        has_reference_target_prefix(&reference_edges, "value@"),
        "Expected reference edge to pattern variable value@..., got: {reference_edges:?}"
    );
}

#[test]
fn test_switch_expression_pattern_variables() {
    // Test switch expressions with pattern matching
    let content = r"
package com.example;

sealed interface Result {}
record Success(String data) implements Result {}
record Failure(String error) implements Result {}

class Processor {
    private String data;
    private String error;

    public String process(Result result) {
        return switch (result) {
            case Success(String data) -> data.toUpperCase();
            case Failure(String error) -> error.toLowerCase();
        };
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    // Should have Property nodes for fields
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Processor::data"),
        "Expected field 'data' to be a Property"
    );
    assert!(
        has_node_with_kind_and_name(&staging, NodeKind::Property, "Processor::error"),
        "Expected field 'error' to be a Property"
    );

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        !has_reference_target(&reference_edges, "Processor::data"),
        "Pattern variable should shadow field Processor::data. Edges: {reference_edges:?}"
    );
    assert!(
        !has_reference_target(&reference_edges, "Processor::error"),
        "Pattern variable should shadow field Processor::error. Edges: {reference_edges:?}"
    );
    assert!(
        has_reference_target_prefix(&reference_edges, "data@")
            && has_reference_target_prefix(&reference_edges, "error@"),
        "Expected reference edges to pattern vars data@..., error@..., got: {reference_edges:?}"
    );
}

#[test]
fn test_pattern_variable_no_field_conflict() {
    // Test pattern variable when there's no field to shadow
    let content = r"
package com.example;

class Processor {
    public void check(Object obj) {
        if (obj instanceof String value) {
            // 'value' is just a pattern variable, no field to shadow
            System.out.println(value);
        }
    }
}
";

    let staging = build_staging_graph(content, "test.java");

    let reference_edges = collect_reference_edges(&staging);
    assert!(
        has_reference_target_prefix(&reference_edges, "value@"),
        "Expected reference edge to pattern variable value@..., got: {reference_edges:?}"
    );
}