sqry-lang-php 11.0.1

PHP 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
/// Integration tests for PHP `GraphBuilder`
#[path = "support/mod.rs"]
mod support;

use sqry_core::graph::GraphBuilder;
use sqry_core::graph::unified::build::staging::{StagingGraph, StagingOp};
use sqry_core::graph::unified::build::test_helpers::{assert_has_call_edge, count_operations};
use sqry_core::graph::unified::edge::EdgeKind;
use sqry_lang_php::PhpGraphBuilder;
use std::collections::HashMap;
use std::fs;
use std::path::Path;
use support::unique_php_path;
use tree_sitter::Parser;

fn parse_php(source: &str) -> tree_sitter::Tree {
    let mut parser = Parser::new();
    parser
        .set_language(&tree_sitter_php::LANGUAGE_PHP.into())
        .expect("error loading PHP grammar");
    parser.parse(source, None).expect("php parse failed")
}

#[test]
fn graph_builder_extracts_instance_and_static_calls() {
    let source =
        fs::read_to_string("tests/fixtures/graph/users_controller.php").expect("load php fixture");
    let tree = parse_php(&source);
    let file = unique_php_path("users_controller");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // PHP GraphBuilder uses double-colon as separator (like PHP's class resolution operator)
    assert_has_call_edge(
        &staging,
        "UsersController::create",
        "UsersController::sendWelcomeEmail",
    );
    assert_has_call_edge(
        &staging,
        "UsersController::sendWelcomeEmail",
        "Mailer::deliver",
    );
    assert_has_call_edge(&staging, "UsersController::audit", "self::log");
}

#[test]
fn graph_builder_detects_php_ffi_edges() {
    let source =
        fs::read_to_string("tests/fixtures/graph/ffi_bridge.php").expect("load php ffi fixture");
    let tree = parse_php(&source);
    let file = unique_php_path("ffi_bridge");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Verify regular method call edge exists
    assert_has_call_edge(&staging, "Crypto::encrypt", "self::crypto_encrypt");

    // Verify FFI edges are created
    let ffi_edge_count =
        count_edges_of_kind_local(&staging, |kind| matches!(kind, EdgeKind::FfiCall { .. }));

    assert_eq!(
        ffi_edge_count, 2,
        "Expected 2 FfiCall edges: FFI::cdef() and $ffi->crypto_encrypt(), got {ffi_edge_count}"
    );

    // Verify specific FFI edge targets with correct naming
    assert!(
        has_ffi_edge(&staging, "Crypto::setup", "native::libcrypto"),
        "Expected FFI edge from Crypto::setup to native::libcrypto"
    );

    assert!(
        has_ffi_edge(
            &staging,
            "Crypto::crypto_encrypt",
            "native::ffi::crypto_encrypt"
        ),
        "Expected FFI edge from Crypto::crypto_encrypt to native::ffi::crypto_encrypt"
    );
}

#[test]
fn graph_builder_handles_malformed_php_gracefully() {
    let source = fs::read_to_string("tests/fixtures/graph/malformed_syntax.php")
        .expect("load malformed fixture");

    let mut parser = Parser::new();
    parser
        .set_language(&tree_sitter_php::LANGUAGE_PHP.into())
        .expect("error loading PHP grammar");

    // Tree-sitter is error-resilient and will parse malformed code with error nodes
    let tree = parser
        .parse(&source, None)
        .expect("tree-sitter should parse despite errors");

    // Verify tree contains errors (validates our fixture is actually malformed)
    assert!(
        tree.root_node().has_error(),
        "malformed fixture should produce a tree with error nodes"
    );

    let file = unique_php_path("malformed");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    // Builder should handle error nodes gracefully without panicking
    let result = builder.build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging);

    result.expect("builder should gracefully handle malformed PHP without returning errors");

    // Verify we got some operations (implied success)
    let counts = count_operations(&staging);
    assert!(counts.nodes > 0 || counts.edges == 0); // Weak assertion, mostly checking no panic
}

#[test]
fn graph_builder_respects_depth_limit() {
    let source = fs::read_to_string("tests/fixtures/graph/deep_namespaces.php")
        .expect("load deep namespaces fixture");
    let tree = parse_php(&source);
    let file = unique_php_path("deep_namespaces");
    let mut staging = StagingGraph::new();

    // Use default builder (max depth = 5)
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph with deep namespaces");
}

#[test]
fn graph_builder_handles_visibility_modifiers() {
    let source = fs::read_to_string("tests/fixtures/graph/visibility_edge_cases.php")
        .expect("load visibility fixture");
    let tree = parse_php(&source);
    let file = unique_php_path("visibility");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph with visibility modifiers");
}

#[test]
fn graph_builder_detects_multiple_ffi_calls() {
    let source = fs::read_to_string("tests/fixtures/graph/multiple_ffi.php")
        .expect("load multiple ffi fixture");
    let tree = parse_php(&source);
    let file = unique_php_path("multiple_ffi");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph with multiple FFI");

    // Verify multiple FFI edges are created
    let ffi_edge_count =
        count_edges_of_kind_local(&staging, |kind| matches!(kind, EdgeKind::FfiCall { .. }));

    // Expected FFI calls:
    // - 1x FFI::cdef() in Crypto class
    // - 2x $ffi->aes_encrypt() and $ffi->aes_decrypt()
    // - 1x FFI::load() in Compressor class
    assert!(
        ffi_edge_count >= 4,
        "Expected at least 4 FfiCall edges (FFI::cdef, FFI::load, and FFI method calls), got {ffi_edge_count}"
    );

    // Verify specific FFI edge targets (check for normalized names without extensions)
    assert!(
        has_ffi_edge(&staging, "CryptoLibrary::init", "native::libcrypto"),
        "Expected FFI edge from CryptoLibrary::init to native::libcrypto (FFI::cdef)"
    );

    assert!(
        has_ffi_edge(
            &staging,
            "CryptoLibrary::encrypt",
            "native::ffi::aes_encrypt"
        ),
        "Expected FFI edge from CryptoLibrary::encrypt to native::ffi::aes_encrypt"
    );

    assert!(
        has_ffi_edge(&staging, "CompressionLib::setup", "native::compression"),
        "Expected FFI edge from CompressionLib::setup to native::compression (FFI::load with .h stripped)"
    );
}

#[test]
fn graph_builder_detects_advanced_ffi_patterns() {
    let source = r#"<?php

class FfiAdvanced {
    // Fully-qualified FFI with leading backslash
    public static function fully_qualified() {
        $lib = \FFI::cdef("int foo(int x);", "libtest.so");
        return $lib->foo(42);
    }

    // Chained FFI call without intermediate variable
    public static function chained_cdef() {
        return FFI::cdef("int bar();", "libchain.so")->bar();
    }

    // Parenthesized chained call
    public static function parenthesized_chain() {
        return (FFI::load("/usr/lib/test.h"))->baz();
    }
}
"#;

    let tree = parse_php(source);
    let file = unique_php_path("advanced_ffi");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph with advanced FFI patterns");

    // Count total FFI edges
    let ffi_edge_count =
        count_edges_of_kind_local(&staging, |kind| matches!(kind, EdgeKind::FfiCall { .. }));

    assert!(
        ffi_edge_count >= 5,
        "Expected at least 5 FfiCall edges (3 FFI::cdef/load + 2 member calls), got {ffi_edge_count}"
    );

    // Verify fully-qualified \FFI::cdef detection
    assert!(
        has_ffi_edge(&staging, "FfiAdvanced::fully_qualified", "native::libtest"),
        "Expected FFI edge for fully-qualified \\FFI::cdef()"
    );

    // Verify chained FFI::cdef()->method() detection
    assert!(
        has_ffi_edge(&staging, "FfiAdvanced::chained_cdef", "native::libchain"),
        "Expected FFI edge for chained FFI::cdef()->bar()"
    );

    assert!(
        has_ffi_edge(&staging, "FfiAdvanced::chained_cdef", "native::ffi::bar"),
        "Expected FFI edge for bar() call on chained FFI object"
    );

    // Verify parenthesized (FFI::load())->method() detection
    assert!(
        has_ffi_edge(&staging, "FfiAdvanced::parenthesized_chain", "native::test"),
        "Expected FFI edge for parenthesized (FFI::load()) with .h stripped"
    );

    assert!(
        has_ffi_edge(
            &staging,
            "FfiAdvanced::parenthesized_chain",
            "native::ffi::baz"
        ),
        "Expected FFI edge for baz() call on parenthesized FFI object"
    );
}

#[test]
fn graph_builder_handles_php8_named_arguments() {
    let source = r#"<?php

class FfiNamedArgs {
    // PHP 8 named arguments with FFI::cdef
    public static function named_cdef() {
        $lib = \FFI::cdef(
            cdef: "int process(int x);",
            lib: "libnamed.so"
        );
        return $lib->process(42);
    }

    // PHP 8 named arguments with FFI::load
    public static function named_load() {
        $ffi = FFI::load(filename: "/usr/lib/libtest.h");
        return $ffi->test_func();
    }

    // Mixed: positional first arg, named second arg
    public static function mixed_args() {
        return FFI::cdef("int foo();", lib: "libmixed.so");
    }
}
"#;

    let tree = parse_php(source);
    let file = unique_php_path("php8_named_args");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph with PHP 8 named arguments");

    // Verify named argument library names are extracted correctly
    assert!(
        has_ffi_edge(&staging, "FfiNamedArgs::named_cdef", "native::libnamed"),
        "Expected FFI edge for FFI::cdef with named lib: argument"
    );

    assert!(
        has_ffi_edge(&staging, "FfiNamedArgs::named_load", "native::libtest"),
        "Expected FFI edge for FFI::load with named filename: argument (.h stripped)"
    );

    assert!(
        has_ffi_edge(&staging, "FfiNamedArgs::mixed_args", "native::libmixed"),
        "Expected FFI edge for FFI::cdef with mixed positional/named arguments"
    );

    // Count total FFI edges
    let ffi_edge_count =
        count_edges_of_kind_local(&staging, |kind| matches!(kind, EdgeKind::FfiCall { .. }));

    // Expect at least 3 static FFI edges + member calls
    assert!(
        ffi_edge_count >= 3,
        "Expected at least 3 FfiCall edges (3 FFI::cdef/load calls), got {ffi_edge_count}"
    );
}

#[test]
fn graph_builder_handles_reordered_named_arguments() {
    let source = r#"<?php

class FfiReordered {
    // Reversed order: lib comes before cdef
    public static function reversed_cdef() {
        $ffi = FFI::cdef(lib: "libreversed.so", cdef: "int test();");
        return $ffi->test();
    }

    // Reversed order with fully-qualified FFI
    public static function reversed_qualified() {
        return \FFI::cdef(
            lib: "libqualified.so",
            cdef: "int foo();"
        )->foo();
    }

    // FFI::load with named filename argument
    public static function named_filename() {
        $ffi = FFI::load(filename: "/usr/lib/libordered.h");
        return $ffi->process();
    }
}
"#;

    let tree = parse_php(source);
    let file = unique_php_path("reordered_named_args");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph with reordered named arguments");

    // Verify reversed named arguments are correctly extracted
    assert!(
        has_ffi_edge(
            &staging,
            "FfiReordered::reversed_cdef",
            "native::libreversed"
        ),
        "Expected FFI edge for reversed lib: before cdef: argument"
    );

    assert!(
        has_ffi_edge(
            &staging,
            "FfiReordered::reversed_qualified",
            "native::libqualified"
        ),
        "Expected FFI edge for reversed \\FFI::cdef with lib: first"
    );

    assert!(
        has_ffi_edge(
            &staging,
            "FfiReordered::named_filename",
            "native::libordered"
        ),
        "Expected FFI edge for FFI::load with named filename: argument (.h stripped)"
    );

    // Verify member calls still work with reordered args
    assert!(
        has_ffi_edge(&staging, "FfiReordered::reversed_cdef", "native::ffi::test"),
        "Expected FFI edge for test() call on reversed arg FFI object"
    );

    assert!(
        has_ffi_edge(
            &staging,
            "FfiReordered::reversed_qualified",
            "native::ffi::foo"
        ),
        "Expected FFI edge for foo() call on chained reversed arg FFI object"
    );

    assert!(
        has_ffi_edge(
            &staging,
            "FfiReordered::named_filename",
            "native::ffi::process"
        ),
        "Expected FFI edge for process() call on named filename FFI object"
    );
}

#[test]
fn graph_builder_rejects_interpolated_ffi_strings() {
    let source = r#"<?php

class FfiInterpolated {
    // Interpolated library name should fall back to native::unknown
    public static function interpolated_lib($suffix) {
        $ffi = FFI::cdef("int foo();", "lib{$suffix}.so");
        return $ffi->foo();
    }

    // Variable interpolation in path
    public static function interpolated_path($dir) {
        $ffi = FFI::load("$dir/libtest.h");
        return $ffi->test();
    }

    // Pure string literals should still work
    public static function pure_string() {
        return FFI::cdef("int bar();", "libpure.so");
    }
}
"#;

    let tree = parse_php(source);
    let file = unique_php_path("interpolated_strings");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph with interpolated strings");

    // Count FFI edges - should have edges for pure strings and fallback for interpolated
    let ffi_edge_count =
        count_edges_of_kind_local(&staging, |kind| matches!(kind, EdgeKind::FfiCall { .. }));

    // Expect: 2 unknown (interpolated FFI::cdef/load) + 1 pure (FFI::cdef) + 2 member calls (foo, test) = 5 total
    assert!(
        ffi_edge_count >= 5,
        "Expected at least 5 FfiCall edges (3 static + 2 member calls), got {ffi_edge_count}"
    );

    // Verify interpolated strings fall back to native::unknown
    assert!(
        has_ffi_edge(
            &staging,
            "FfiInterpolated::interpolated_lib",
            "native::unknown"
        ),
        "Expected interpolated \"lib{{$suffix}}.so\" to fall back to native::unknown"
    );

    assert!(
        has_ffi_edge(
            &staging,
            "FfiInterpolated::interpolated_path",
            "native::unknown"
        ),
        "Expected interpolated \"$dir/libtest.h\" to fall back to native::unknown"
    );

    // Verify pure string literal still works
    assert!(
        has_ffi_edge(&staging, "FfiInterpolated::pure_string", "native::libpure"),
        "Expected pure string literal to produce native::libpure"
    );

    // Verify member calls still work even with unknown libraries
    assert!(
        has_ffi_edge(
            &staging,
            "FfiInterpolated::interpolated_lib",
            "native::ffi::foo"
        ),
        "Expected FFI edge for foo() call even on interpolated lib"
    );
}

#[test]
fn graph_builder_rejects_complex_interpolation() {
    let source = r#"<?php

class FfiComplexInterpolation {
    private $config = ['lib_path' => '/usr/lib'];
    private $libs = null;

    // Array access interpolation
    public static function array_access($paths) {
        $ffi = FFI::load("{$paths['lib_dir']}/libarray.h");
        return $ffi->process();
    }

    // Property access interpolation
    public function property_access() {
        $ffi = FFI::cdef("int foo();", "{$this->config['lib_path']}/libprop.so");
        return $ffi->foo();
    }

    // Nested expression interpolation
    public function nested_expression() {
        $ffi = FFI::load("{$this->libs->primary}/libnested.h");
        return $ffi->test();
    }

    // Pure string for comparison
    public static function pure_complex() {
        return FFI::cdef("int bar();", "libpure.so");
    }
}
"#;

    let tree = parse_php(source);
    let file = unique_php_path("complex_interpolation");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph with complex interpolation");

    // Count FFI edges
    let ffi_edge_count =
        count_edges_of_kind_local(&staging, |kind| matches!(kind, EdgeKind::FfiCall { .. }));

    // Expect: 3 unknown (complex interpolations) + 1 pure + 3 member calls = 7 total
    assert!(
        ffi_edge_count >= 7,
        "Expected at least 7 FfiCall edges (4 static + 3 member calls), got {ffi_edge_count}"
    );

    // Verify array access interpolation falls back to native::unknown
    assert!(
        has_ffi_edge(
            &staging,
            "FfiComplexInterpolation::array_access",
            "native::unknown"
        ),
        "Expected array access interpolation {{$paths['lib_dir']}} to fall back to native::unknown"
    );

    // Verify property access interpolation falls back to native::unknown
    assert!(
        has_ffi_edge(
            &staging,
            "FfiComplexInterpolation::property_access",
            "native::unknown"
        ),
        "Expected property access interpolation {{$this->config['lib_path']}} to fall back to native::unknown"
    );

    // Verify nested expression interpolation falls back to native::unknown
    assert!(
        has_ffi_edge(
            &staging,
            "FfiComplexInterpolation::nested_expression",
            "native::unknown"
        ),
        "Expected nested expression interpolation {{$this->libs->primary}} to fall back to native::unknown"
    );

    // Verify pure string still works
    assert!(
        has_ffi_edge(
            &staging,
            "FfiComplexInterpolation::pure_complex",
            "native::libpure"
        ),
        "Expected pure string to produce native::libpure"
    );

    // Verify member calls still work even with complex interpolation
    assert!(
        has_ffi_edge(
            &staging,
            "FfiComplexInterpolation::array_access",
            "native::ffi::process"
        ),
        "Expected FFI edge for process() call even with array interpolation"
    );

    assert!(
        has_ffi_edge(
            &staging,
            "FfiComplexInterpolation::property_access",
            "native::ffi::foo"
        ),
        "Expected FFI edge for foo() call even with property interpolation"
    );

    assert!(
        has_ffi_edge(
            &staging,
            "FfiComplexInterpolation::nested_expression",
            "native::ffi::test"
        ),
        "Expected FFI edge for test() call even with nested expression interpolation"
    );
}

// ============================================================================
// Import Edge Tests
// ============================================================================

use sqry_core::graph::unified::storage::NodeEntry;
use sqry_core::graph::unified::string::StringId;

/// Helper function to count edges of a specific kind in staging operations.
fn count_edges_of_kind_local(
    staging: &StagingGraph,
    predicate: impl Fn(&EdgeKind) -> bool,
) -> usize {
    staging
        .operations()
        .iter()
        .filter(|op| {
            if let StagingOp::AddEdge { kind, .. } = op {
                predicate(kind)
            } else {
                false
            }
        })
        .count()
}

/// Build a map from `StringId` to string value from staging operations.
fn build_string_map(staging: &StagingGraph) -> HashMap<StringId, String> {
    staging
        .operations()
        .iter()
        .filter_map(|op| {
            if let StagingOp::InternString { local_id, value } = op {
                Some((*local_id, value.clone()))
            } else {
                None
            }
        })
        .collect()
}

/// Check if a specific FFI edge exists (source -> target).
fn has_ffi_edge(staging: &StagingGraph, source_pattern: &str, target_pattern: &str) -> bool {
    use sqry_core::graph::unified::edge::FfiConvention;
    use sqry_core::graph::unified::node::NodeId;

    let string_map = build_string_map(staging);

    // Build node name lookup
    let mut node_names: HashMap<NodeId, String> = HashMap::new();
    for op in staging.operations() {
        if let StagingOp::AddNode { entry, expected_id } = op
            && let Some(expected_id) = expected_id
            && let Some(name) = get_node_name(entry, &string_map)
        {
            node_names.insert(*expected_id, name);
        }
    }

    // Check for FFI edges matching the patterns
    staging.operations().iter().any(|op| {
        if let StagingOp::AddEdge {
            source,
            target,
            kind: EdgeKind::FfiCall {
                convention: FfiConvention::C,
            },
            ..
        } = op
        {
            let source_name = node_names.get(source);
            let target_name = node_names.get(target);

            if let (Some(src), Some(tgt)) = (source_name, target_name) {
                return src == source_pattern && tgt == target_pattern;
            }
        }
        false
    })
}

/// Get node name from `NodeEntry` using string map.
fn get_node_name(entry: &NodeEntry, string_map: &HashMap<StringId, String>) -> Option<String> {
    entry
        .qualified_name
        .and_then(|qualified_name| string_map.get(&qualified_name).cloned())
        .or_else(|| string_map.get(&entry.name).cloned())
}

/// Helper to verify an import edge exists with specific target name.
/// Returns true if at least one import edge targets a node with the given name pattern.
fn has_import_edge_to(staging: &StagingGraph, target_pattern: &str) -> bool {
    let string_map = build_string_map(staging);

    // Build NodeId -> name map from AddNode operations
    let mut node_names: HashMap<sqry_core::graph::unified::node::NodeId, String> = HashMap::new();
    for op in staging.operations() {
        if let StagingOp::AddNode { entry, expected_id } = op
            && let Some(expected_id) = expected_id
            && let Some(name) = get_node_name(entry, &string_map)
        {
            node_names.insert(*expected_id, name);
        }
    }

    // Check if any import edge targets a node with matching name
    staging.operations().iter().any(|op| {
        if let StagingOp::AddEdge {
            kind: EdgeKind::Imports { .. },
            target,
            ..
        } = op
        {
            node_names
                .get(target)
                .is_some_and(|name| name.contains(target_pattern))
        } else {
            false
        }
    })
}

/// Helper to verify an import edge exists with specific alias.
fn has_import_edge_with_alias(staging: &StagingGraph, alias_pattern: &str) -> bool {
    let string_map = build_string_map(staging);

    staging.operations().iter().any(|op| {
        if let StagingOp::AddEdge {
            kind:
                EdgeKind::Imports {
                    alias: Some(alias_id),
                    ..
                },
            ..
        } = op
        {
            string_map
                .get(alias_id)
                .is_some_and(|alias_str| alias_str.contains(alias_pattern))
        } else {
            false
        }
    })
}

#[test]
fn graph_builder_extracts_simple_use_statement() {
    let source = r"<?php
use App\Services\Mailer;
";
    let tree = parse_php(source);
    let file = unique_php_path("simple_use");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have import edge targeting Mailer
    assert!(
        has_import_edge_to(&staging, "Mailer"),
        "expected import edge to Mailer"
    );
}

#[test]
fn graph_builder_extracts_aliased_use_statement() {
    let source = r"<?php
use App\Services\Mailer as Mail;
";
    let tree = parse_php(source);
    let file = unique_php_path("aliased_use");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have import edge targeting Mailer with alias Mail
    assert!(
        has_import_edge_to(&staging, "Mailer"),
        "expected import edge to Mailer"
    );
    assert!(
        has_import_edge_with_alias(&staging, "Mail"),
        "expected import edge with alias Mail"
    );
}

#[test]
fn graph_builder_extracts_grouped_use_statement() {
    let source = r"<?php
use App\Models\{User, Post, Comment};
";
    let tree = parse_php(source);
    let file = unique_php_path("grouped_use");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have import edges for each class in the group
    assert!(
        has_import_edge_to(&staging, "User"),
        "expected import edge to User"
    );
    assert!(
        has_import_edge_to(&staging, "Post"),
        "expected import edge to Post"
    );
    assert!(
        has_import_edge_to(&staging, "Comment"),
        "expected import edge to Comment"
    );
}

#[test]
fn graph_builder_extracts_function_use_statement() {
    let source = r"<?php
use function App\Utils\array_flatten;
";
    let tree = parse_php(source);
    let file = unique_php_path("function_use");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have import edge targeting array_flatten
    assert!(
        has_import_edge_to(&staging, "array_flatten"),
        "expected import edge to array_flatten for function use"
    );
}

#[test]
fn graph_builder_extracts_const_use_statement() {
    let source = r"<?php
use const App\Config\VERSION;
";
    let tree = parse_php(source);
    let file = unique_php_path("const_use");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have import edge targeting VERSION
    assert!(
        has_import_edge_to(&staging, "VERSION"),
        "expected import edge to VERSION for const use"
    );
}

#[test]
fn graph_builder_extracts_require_statement() {
    let source = r"<?php
require 'bootstrap.php';
";
    let tree = parse_php(source);
    let file = unique_php_path("require");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have import edge targeting bootstrap.php
    assert!(
        has_import_edge_to(&staging, "bootstrap.php"),
        "expected import edge to bootstrap.php for require statement"
    );
}

#[test]
fn graph_builder_extracts_require_once_statement() {
    let source = r"<?php
require_once 'config.php';
";
    let tree = parse_php(source);
    let file = unique_php_path("require_once");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have import edge targeting config.php
    assert!(
        has_import_edge_to(&staging, "config.php"),
        "expected import edge to config.php for require_once statement"
    );
}

#[test]
fn graph_builder_extracts_include_statement() {
    let source = r"<?php
include 'helpers.php';
";
    let tree = parse_php(source);
    let file = unique_php_path("include");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have import edge targeting helpers.php
    assert!(
        has_import_edge_to(&staging, "helpers.php"),
        "expected import edge to helpers.php for include statement"
    );
}

#[test]
fn graph_builder_extracts_include_once_statement() {
    let source = r"<?php
include_once 'polyfills.php';
";
    let tree = parse_php(source);
    let file = unique_php_path("include_once");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have import edge targeting polyfills.php
    assert!(
        has_import_edge_to(&staging, "polyfills.php"),
        "expected import edge to polyfills.php for include_once statement"
    );
}

// ============================================================================
// OOP Edge Tests - Inheritance
// ============================================================================

#[test]
fn graph_builder_extracts_class_inheritance() {
    let source = r"<?php
class Child extends Parent {
}
";
    let tree = parse_php(source);
    let file = unique_php_path("class_inheritance");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have Inherits edge
    let inherits_count = count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Inherits));
    assert!(
        inherits_count >= 1,
        "expected at least 1 Inherits edge, got {inherits_count}"
    );
}

#[test]
fn graph_builder_extracts_qualified_class_inheritance() {
    let source = r"<?php
namespace App\Controllers;

class UserController extends App\Base\Controller {
}
";
    let tree = parse_php(source);
    let file = unique_php_path("qualified_inheritance");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have Inherits edge
    let inherits_count = count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Inherits));
    assert!(
        inherits_count >= 1,
        "expected at least 1 Inherits edge for qualified name, got {inherits_count}"
    );
}

// ============================================================================
// OOP Edge Tests - Interface Implementation
// ============================================================================

#[test]
fn graph_builder_extracts_single_interface_implementation() {
    let source = r"<?php
class UserRepository implements Repository {
}
";
    let tree = parse_php(source);
    let file = unique_php_path("single_interface");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have Implements edge
    let implements_count =
        count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Implements));
    assert!(
        implements_count >= 1,
        "expected at least 1 Implements edge, got {implements_count}"
    );
}

#[test]
fn graph_builder_extracts_multiple_interface_implementation() {
    let source = r"<?php
class User implements Serializable, JsonSerializable, ArrayAccess {
}
";
    let tree = parse_php(source);
    let file = unique_php_path("multiple_interfaces");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have 3 Implements edges
    let implements_count =
        count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Implements));
    assert!(
        implements_count >= 3,
        "expected at least 3 Implements edges for multiple interfaces, got {implements_count}"
    );
}

#[test]
fn graph_builder_extracts_extends_and_implements() {
    let source = r"<?php
class UserController extends BaseController implements Authenticatable {
}
";
    let tree = parse_php(source);
    let file = unique_php_path("extends_and_implements");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have both Inherits and Implements edges
    let inherits_count = count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Inherits));
    let implements_count =
        count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Implements));

    assert!(
        inherits_count >= 1,
        "expected at least 1 Inherits edge, got {inherits_count}"
    );
    assert!(
        implements_count >= 1,
        "expected at least 1 Implements edge, got {implements_count}"
    );
}

// ============================================================================
// OOP Edge Tests - Trait Usage
// ============================================================================

#[test]
fn graph_builder_extracts_single_trait_usage() {
    let source = r"<?php
class User {
    use Timestampable;
}
";
    let tree = parse_php(source);
    let file = unique_php_path("single_trait");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Trait usage is modeled as Implements edge
    let implements_count =
        count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Implements));
    assert!(
        implements_count >= 1,
        "expected at least 1 Implements edge for trait usage, got {implements_count}"
    );
}

#[test]
fn graph_builder_extracts_multiple_trait_usage() {
    let source = r"<?php
class Post {
    use Timestampable, SoftDeletes, Loggable;
}
";
    let tree = parse_php(source);
    let file = unique_php_path("multiple_traits");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have 3 Implements edges for 3 traits
    let implements_count =
        count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Implements));
    assert!(
        implements_count >= 3,
        "expected at least 3 Implements edges for multiple traits, got {implements_count}"
    );
}

// ============================================================================
// OOP Edge Tests - Interface Inheritance
// ============================================================================

#[test]
fn graph_builder_extracts_interface_inheritance() {
    let source = r"<?php
interface Cacheable extends Serializable {
}
";
    let tree = parse_php(source);
    let file = unique_php_path("interface_inheritance");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Interface inheritance uses Inherits edge
    let inherits_count = count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Inherits));
    assert!(
        inherits_count >= 1,
        "expected at least 1 Inherits edge for interface inheritance, got {inherits_count}"
    );
}

#[test]
fn graph_builder_extracts_interface_multiple_inheritance() {
    let source = r"<?php
interface UserInterface extends Authenticatable, Authorizable, CanResetPassword {
}
";
    let tree = parse_php(source);
    let file = unique_php_path("interface_multiple_inheritance");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have 3 Inherits edges
    let inherits_count = count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Inherits));
    assert!(
        inherits_count >= 3,
        "expected at least 3 Inherits edges for multiple interface inheritance, got {inherits_count}"
    );
}

// ============================================================================
// Combined Tests
// ============================================================================

#[test]
fn graph_builder_handles_complex_class_with_all_features() {
    let source = r"<?php
namespace App\Models;

use App\Traits\Timestampable;
use App\Traits\SoftDeletes;
use App\Contracts\Authenticatable;

class User extends BaseModel implements Authenticatable, Serializable {
    use Timestampable, SoftDeletes;

    public function save() {
        $this->validate();
    }
}
";
    let tree = parse_php(source);
    let file = unique_php_path("complex_class");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Count all edge types
    let import_count =
        count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Imports { .. }));
    let inherits_count = count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Inherits));
    let implements_count =
        count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Implements));
    let calls_count = count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Calls { .. }));

    // 3 use statements -> 3 import edges
    assert!(
        import_count >= 3,
        "expected at least 3 import edges, got {import_count}"
    );

    // 1 extends -> 1 inherits edge
    assert!(
        inherits_count >= 1,
        "expected at least 1 inherits edge, got {inherits_count}"
    );

    // 2 implements + 2 traits -> 4 implements edges
    assert!(
        implements_count >= 4,
        "expected at least 4 implements edges, got {implements_count}"
    );

    // 1 method call ($this->validate()) -> 1 call edge
    assert!(
        calls_count >= 1,
        "expected at least 1 call edge, got {calls_count}"
    );
}

#[test]
fn graph_builder_handles_imports_fixture() {
    let source = fs::read_to_string("tests/fixtures/relations/php/imports.php")
        .expect("load imports fixture");
    let tree = parse_php(&source);
    let file = unique_php_path("imports_fixture");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Count import edges (fixture has 4 use statements + 4 include/require)
    let import_count =
        count_edges_of_kind_local(&staging, |k| matches!(k, EdgeKind::Imports { .. }));
    assert!(
        import_count >= 4,
        "expected at least 4 import edges from fixture, got {import_count}"
    );
}

// ============================================================================
// Export Edge Tests
// ============================================================================

/// Helper to verify an export edge exists from module to target node.
fn has_export_edge_to(staging: &StagingGraph, target_pattern: &str) -> bool {
    let string_map = build_string_map(staging);

    // Build NodeId -> name map from AddNode operations
    let mut node_names: HashMap<sqry_core::graph::unified::node::NodeId, String> = HashMap::new();
    for op in staging.operations() {
        if let StagingOp::AddNode { entry, expected_id } = op
            && let Some(expected_id) = expected_id
            && let Some(name) = get_node_name(entry, &string_map)
        {
            node_names.insert(*expected_id, name);
        }
    }

    // Check if any export edge targets a node with matching name
    staging.operations().iter().any(|op| {
        if let StagingOp::AddEdge {
            kind: EdgeKind::Exports { .. },
            target,
            ..
        } = op
        {
            node_names
                .get(target)
                .is_some_and(|name| name.contains(target_pattern))
        } else {
            false
        }
    })
}

#[test]
fn graph_builder_exports_top_level_class() {
    let source = r"<?php
class User {
    public function getId() {
        return $this->id;
    }
}
";
    let tree = parse_php(source);
    let file = unique_php_path("export_class");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have export edge for User class
    assert!(
        has_export_edge_to(&staging, "User"),
        "expected export edge for User class"
    );
}

#[test]
fn graph_builder_exports_top_level_function() {
    let source = r#"<?php
function greet(string $name): string {
    return "Hello, {$name}!";
}
"#;
    let tree = parse_php(source);
    let file = unique_php_path("export_function");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have export edge for greet function
    assert!(
        has_export_edge_to(&staging, "greet"),
        "expected export edge for greet function"
    );
}

#[test]
fn graph_builder_exports_interface() {
    let source = r"<?php
interface Repository {
    public function findById($id);
    public function save($entity);
}
";
    let tree = parse_php(source);
    let file = unique_php_path("export_interface");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have export edge for Repository interface
    assert!(
        has_export_edge_to(&staging, "Repository"),
        "expected export edge for Repository interface"
    );
}

#[test]
fn graph_builder_exports_trait() {
    let source = r"<?php
trait Timestampable {
    public function getCreatedAt() {
        return $this->created_at;
    }
}
";
    let tree = parse_php(source);
    let file = unique_php_path("export_trait");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have export edge for Timestampable trait
    assert!(
        has_export_edge_to(&staging, "Timestampable"),
        "expected export edge for Timestampable trait"
    );
}

#[test]
fn graph_builder_exports_namespaced_class() {
    let source = r"<?php
namespace App\Services;

class UserService {
    public function getUsers() {
        return [];
    }
}
";
    let tree = parse_php(source);
    let file = unique_php_path("export_namespaced_class");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have export edge for namespaced UserService class
    assert!(
        has_export_edge_to(&staging, "UserService"),
        "expected export edge for App\\Services\\UserService class"
    );
}

#[test]
fn graph_builder_exports_namespaced_function() {
    let source = r"<?php
namespace App\Helpers;

function slugify($text) {
    return strtolower(preg_replace('/[^a-z0-9]+/', '-', $text));
}
";
    let tree = parse_php(source);
    let file = unique_php_path("export_namespaced_function");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have export edge for namespaced slugify function
    assert!(
        has_export_edge_to(&staging, "slugify"),
        "expected export edge for App\\Helpers\\slugify function"
    );
}

#[test]
fn graph_builder_exports_multiple_classes_in_file() {
    let source = r"<?php
class User {
    public function getId() {
        return $this->id;
    }
}

class Post {
    public function getTitle() {
        return $this->title;
    }
}

interface Repository {
    public function findById($id);
}
";
    let tree = parse_php(source);
    let file = unique_php_path("export_multiple");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have export edges for all top-level symbols
    assert!(
        has_export_edge_to(&staging, "User"),
        "expected export edge for User class"
    );
    assert!(
        has_export_edge_to(&staging, "Post"),
        "expected export edge for Post class"
    );
    assert!(
        has_export_edge_to(&staging, "Repository"),
        "expected export edge for Repository interface"
    );
}

#[test]
fn graph_builder_exports_brace_style_namespace() {
    let source = r"<?php
namespace App\Services {
    class UserService {
        public function getUsers() {
            return [];
        }
    }

    function helper() {
        return true;
    }
}
";
    let tree = parse_php(source);
    let file = unique_php_path("export_brace_namespace");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have export edges for symbols in brace-style namespace
    assert!(
        has_export_edge_to(&staging, "UserService"),
        "expected export edge for UserService class in brace-style namespace"
    );
    assert!(
        has_export_edge_to(&staging, "helper"),
        "expected export edge for helper function in brace-style namespace"
    );
}

#[test]
fn graph_builder_exports_semicolon_style_namespace() {
    let source = r"<?php
namespace App\Services;

class UserService {
    public function getUsers() {
        return [];
    }
}

function helper() {
    return true;
}
";
    let tree = parse_php(source);
    let file = unique_php_path("export_semicolon_namespace");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have export edges for symbols in semicolon-style namespace
    assert!(
        has_export_edge_to(&staging, "UserService"),
        "expected export edge for UserService class in semicolon-style namespace"
    );
    assert!(
        has_export_edge_to(&staging, "helper"),
        "expected export edge for helper function in semicolon-style namespace"
    );
}

#[test]
fn graph_builder_exports_enum() {
    let source = r"<?php
enum Status {
    case PENDING;
    case APPROVED;
    case REJECTED;
}
";
    let tree = parse_php(source);
    let file = unique_php_path("export_enum");
    let mut staging = StagingGraph::new();
    let builder = PhpGraphBuilder::default();

    builder
        .build_graph(&tree, source.as_bytes(), Path::new(&file), &mut staging)
        .expect("build graph");

    // Should have export edge for Status enum
    assert!(
        has_export_edge_to(&staging, "Status"),
        "expected export edge for Status enum"
    );
}