blast-radius 0.7.3

Analyze the transitive blast radius of code changes.
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
use std::fs;
use std::path::{Path, PathBuf};

use assert_cmd::Command as AssertCommand;
use predicates::prelude::*;
use serde_json::Value;
use tempfile::tempdir;

fn fixture_root() -> PathBuf {
    PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/monorepo")
}

fn chakra_example_root() -> PathBuf {
    PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("examples/chakra-ui")
}

#[cfg(feature = "python")]
fn python_fixture_root() -> PathBuf {
    PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/python")
}

#[cfg(feature = "python")]
fn fastapi_example_root() -> PathBuf {
    PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("examples/fastapi")
}

#[cfg(feature = "rust")]
fn rust_fixture_root() -> PathBuf {
    PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/rust")
}

#[cfg(all(feature = "vue", feature = "svelte"))]
fn component_fixture_root() -> PathBuf {
    PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("tests/fixtures/components")
}

fn copy_dir(from: &Path, to: &Path) {
    fs::create_dir_all(to).unwrap();
    for entry in fs::read_dir(from).unwrap() {
        let entry = entry.unwrap();
        let source_path = entry.path();
        let target_path = to.join(entry.file_name());
        let file_type = entry.file_type().unwrap();
        if file_type.is_dir() {
            copy_dir(&source_path, &target_path);
        } else {
            fs::copy(&source_path, &target_path).unwrap();
        }
    }
}

fn setup_repo() -> tempfile::TempDir {
    let dir = tempdir().unwrap();
    copy_dir(&fixture_root(), dir.path());
    dir
}

fn run_json(repo: &Path, args: &[&str]) -> Value {
    let mut command = AssertCommand::cargo_bin("blast-radius").unwrap();
    command
        .current_dir(repo)
        .args(["--repo-root", repo.to_str().unwrap(), "--format", "json"])
        .args(args);

    let output = command.assert().success().get_output().stdout.clone();
    serde_json::from_slice(&output).unwrap()
}

fn node_labels(json: &Value) -> Vec<String> {
    json["nodes"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|node| node["label"].as_str().map(ToOwned::to_owned))
        .collect()
}

fn label_count(labels: &[String], expected: &str) -> usize {
    labels
        .iter()
        .filter(|label| label.as_str() == expected)
        .count()
}

/// Hops from the changed file for a given file node in the blast radius.
fn depth_of(json: &Value, label: &str) -> Option<u64> {
    json["nodes"].as_array().unwrap().iter().find_map(|node| {
        (node["label"] == label && node["kind"] == "file").then(|| node["depth"].as_u64())?
    })
}

/// The reported blast radius: file labels at depth >= 1 (the changed file
/// itself sits at depth 0 and is excluded).
fn dependent_labels(json: &Value) -> Vec<String> {
    json["nodes"]
        .as_array()
        .unwrap()
        .iter()
        .filter(|node| node["kind"] == "file" && node["depth"].as_u64().unwrap_or(0) >= 1)
        .filter_map(|node| node["label"].as_str().map(ToOwned::to_owned))
        .collect()
}

#[test]
fn export_mode_reports_transitive_blast_radius() {
    let repo = setup_repo();

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "--format",
            "json",
            "export",
            "packages/ui/src/Button.tsx",
            "Button",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let json: Value = serde_json::from_slice(&output).unwrap();
    let labels: Vec<String> = json["nodes"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|node| node["label"].as_str().map(ToOwned::to_owned))
        .collect();

    assert!(
        labels
            .iter()
            .any(|label| label.contains("packages/ui/src/Card.tsx"))
    );
    assert!(
        labels
            .iter()
            .any(|label| label.contains("packages/ui/src/Toolbar.tsx"))
    );
    assert!(
        labels
            .iter()
            .any(|label| label.contains("packages/ui/src/index.ts#Button"))
    );
    assert!(
        labels
            .iter()
            .any(|label| label.contains("apps/storefront/src/PromoCard.tsx"))
    );
    assert!(
        labels
            .iter()
            .any(|label| label.contains("apps/storefront/src/App.tsx"))
    );
    assert!(
        labels
            .iter()
            .any(|label| label.contains("apps/storefront/src/LegacyButtonCard.jsx"))
    );

    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 0);
}

#[test]
fn export_mode_keeps_default_and_named_imports_separate() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(
        repo.path().join("src/source.ts"),
        "export default function DefaultThing() {}\nexport function namedThing() {}\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/default-consumer.ts"),
        "import DefaultThing from './source';\nexport const useDefault = () => DefaultThing();\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/named-consumer.ts"),
        "import { namedThing } from './source';\nexport const useNamed = () => namedThing();\n",
    )
    .unwrap();

    let named = run_json(repo.path(), &["export", "src/source.ts", "namedThing"]);
    let labels = node_labels(&named);
    assert!(labels.iter().any(|label| label == "src/named-consumer.ts"));
    assert!(
        !labels
            .iter()
            .any(|label| label == "src/default-consumer.ts")
    );
    assert!(
        named["edges"].as_array().unwrap().iter().any(|edge| {
            edge["to"]
                .as_str()
                .is_some_and(|to| to.contains("src/named-consumer.ts"))
                && edge["kind"] == "imports_named"
        }),
        "ordinary named import usage should not be reported as JSX component usage"
    );
    assert!(
        !named["edges"].as_array().unwrap().iter().any(|edge| {
            edge["to"]
                .as_str()
                .is_some_and(|to| to.contains("src/named-consumer.ts"))
                && edge["kind"] == "uses_jsx_component"
        }),
        "ordinary named import usage was incorrectly reported as JSX component usage"
    );

    let default = run_json(repo.path(), &["export", "src/source.ts", "default"]);
    let labels = node_labels(&default);
    assert!(
        labels
            .iter()
            .any(|label| label == "src/default-consumer.ts")
    );
    assert!(!labels.iter().any(|label| label == "src/named-consumer.ts"));
}

/// Importing a symbol is a dependency on it even when the binding is never
/// referenced: removing/renaming the export would break the (unused) import. So
/// a consumer that imports a symbol but does not use it is still in that
/// symbol's blast radius — but symbol precision holds: importing a *different*
/// symbol is not.
#[test]
fn unused_import_is_still_in_the_blast_radius() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("package.json"), r#"{"name":"unused"}"#).unwrap();
    fs::write(
        repo.path().join("src/dep.ts"),
        "export const used = 1;\nexport const other = 2;\n",
    )
    .unwrap();
    // Imports `used` but never references it — still a dependency on `used`.
    fs::write(
        repo.path().join("src/dead-import.ts"),
        "import { used } from './dep';\nexport const hello = 'hi';\n",
    )
    .unwrap();
    // Imports only `other`, so a change scoped to `used` must not reach it.
    fs::write(
        repo.path().join("src/other-consumer.ts"),
        "import { other } from './dep';\nexport const w = other;\n",
    )
    .unwrap();

    let used = run_json(repo.path(), &["export", "src/dep.ts", "used"]);
    let labels = node_labels(&used);
    assert!(
        labels.iter().any(|label| label == "src/dead-import.ts"),
        "an imported-but-unused symbol is still a dependency; got {labels:?}"
    );
    assert!(
        !labels.iter().any(|label| label == "src/other-consumer.ts"),
        "importing a different symbol must not match; got {labels:?}"
    );
}

/// The core symbol-aware promise, end to end on the reported blast radius:
/// changing `Card.tsx` reaches its real consumers but NOT files that import
/// through the same `index.ts` barrel while using only `Button`. A file-level
/// reachability tool would wrongly report every barrel consumer; blast-radius
/// must prune by which symbol actually flows. Depths are asserted so the
/// transitive chain (Card -> index -> PromoCard -> App) is exactly right.
#[test]
fn file_mode_prunes_barrel_consumers_that_use_other_symbols() {
    let repo = fixture_root();
    let json = run_json(&repo, &["file", "packages/ui/src/Card.tsx"]);
    let labels = node_labels(&json);

    // index.ts re-exports Card (`export * from "./Card"`); PromoCard uses Card;
    // App uses PromoCard. Exact depths prove the traversal, not just presence.
    assert_eq!(depth_of(&json, "packages/ui/src/index.ts"), Some(1));
    assert_eq!(
        depth_of(&json, "apps/storefront/src/PromoCard.tsx"),
        Some(2)
    );
    assert_eq!(depth_of(&json, "apps/storefront/src/App.tsx"), Some(3));

    // Button-only consumers reached through the SAME barrel must be pruned.
    for excluded in [
        "packages/ui/src/Toolbar.tsx",
        "packages/ui/src/Button.tsx",
        "apps/storefront/src/LegacyButtonCard.jsx",
    ] {
        assert!(
            !labels.iter().any(|label| label == excluded),
            "changing Card must NOT reach {excluded} (it uses only Button); got {labels:?}"
        );
    }

    // Exactly three downstream files — no over-reporting.
    assert_eq!(json["summary"]["total_affected_files"].as_u64().unwrap(), 3);
}

/// Import cycles must not hang the traversal or mis-depth nodes. With a <-> b
/// cyclic and c -> a, changing b reaches a (depth 1) and c (depth 2), and the
/// walk terminates.
#[test]
fn file_mode_terminates_and_is_correct_on_import_cycles() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("package.json"), r#"{"name":"cyc"}"#).unwrap();
    fs::write(
        repo.path().join("src/a.ts"),
        "import { b } from './b';\nexport const a = () => b();\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/b.ts"),
        "import { a } from './a';\nexport const b = () => a();\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/c.ts"),
        "import { a } from './a';\nexport const c = () => a();\n",
    )
    .unwrap();

    let json = run_json(repo.path(), &["file", "src/b.ts"]);
    assert_eq!(depth_of(&json, "src/a.ts"), Some(1));
    assert_eq!(depth_of(&json, "src/c.ts"), Some(2));
    assert_eq!(json["summary"]["total_affected_files"].as_u64().unwrap(), 2);
}

/// A file reachable by several paths is reported once, at its shortest depth.
/// d is imported by e and f (depth 1), both imported by g — g must appear once
/// at depth 2.
#[test]
fn file_mode_reports_diamond_dependents_once_at_shortest_depth() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("package.json"), r#"{"name":"diamond"}"#).unwrap();
    fs::write(repo.path().join("src/d.ts"), "export const d = 1;\n").unwrap();
    fs::write(
        repo.path().join("src/e.ts"),
        "import { d } from './d';\nexport const e = d;\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/f.ts"),
        "import { d } from './d';\nexport const f = d;\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/g.ts"),
        "import { e } from './e';\nimport { f } from './f';\nexport const g = e + f;\n",
    )
    .unwrap();

    let json = run_json(repo.path(), &["file", "src/d.ts"]);
    assert_eq!(depth_of(&json, "src/e.ts"), Some(1));
    assert_eq!(depth_of(&json, "src/f.ts"), Some(1));
    assert_eq!(depth_of(&json, "src/g.ts"), Some(2));
    assert_eq!(label_count(&node_labels(&json), "src/g.ts"), 1);
    assert_eq!(json["summary"]["total_affected_files"].as_u64().unwrap(), 3);
}

/// `vi.mock("./real")` makes the test depend on the real module — changing the
/// real module must reach the mocking test in the blast radius (and nothing
/// unrelated).
#[test]
fn file_mode_reaches_test_files_that_mock_the_module() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("package.json"), r#"{"name":"mock-reach"}"#).unwrap();
    fs::write(
        repo.path().join("src/real.ts"),
        "export const realThing = 1;\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/real.test.ts"),
        "import { vi } from \"vitest\";\nvi.mock(\"./real\");\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/other.ts"),
        "export const unrelated = 2;\n",
    )
    .unwrap();

    let json = run_json(repo.path(), &["file", "src/real.ts"]);
    let labels = node_labels(&json);
    assert!(
        labels.iter().any(|label| label == "src/real.test.ts"),
        "changing the real module should reach the test that mocks it; got {labels:?}"
    );
    assert!(
        !labels.iter().any(|label| label == "src/other.ts"),
        "unrelated files must not be in the blast radius; got {labels:?}"
    );
    assert_eq!(json["summary"]["total_affected_files"].as_u64().unwrap(), 1);
}

#[test]
fn export_mode_tracks_namespace_member_usage() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(
        repo.path().join("src/source.ts"),
        "export function alpha() {}\nexport function beta() {}\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/consumer.ts"),
        "import * as source from './source';\nexport const useAlpha = () => source.alpha();\n",
    )
    .unwrap();

    let alpha = run_json(repo.path(), &["export", "src/source.ts", "alpha"]);
    assert!(
        node_labels(&alpha)
            .iter()
            .any(|label| label == "src/consumer.ts")
    );

    let beta = run_json(repo.path(), &["export", "src/source.ts", "beta"]);
    assert!(
        !node_labels(&beta)
            .iter()
            .any(|label| label == "src/consumer.ts")
    );
}

#[test]
fn export_mode_follows_star_reexport_chains() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(
        repo.path().join("src/source.ts"),
        "export const target = 1;\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/barrel-one.ts"),
        "export * from './source';\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/barrel-two.ts"),
        "export * from './barrel-one';\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/app.ts"),
        "import { target } from './barrel-two';\nexport const value = target;\n",
    )
    .unwrap();

    let json = run_json(repo.path(), &["export", "src/source.ts", "target"]);
    let labels = node_labels(&json);
    assert!(labels.iter().any(|label| label == "src/barrel-one.ts"));
    assert!(labels.iter().any(|label| label == "src/barrel-two.ts"));
    assert!(labels.iter().any(|label| label == "src/app.ts"));
    assert_eq!(
        json["edges"]
            .as_array()
            .unwrap()
            .iter()
            .filter(|edge| edge["kind"].as_str() == Some("reexports_star"))
            .count(),
        2
    );
}

#[test]
fn file_mode_reports_consumers_of_star_only_barrels() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(
        repo.path().join("src/widget.ts"),
        "export const widget = () => null;\n",
    )
    .unwrap();
    // The barrel has no statically-enumerable exports of its own.
    fs::write(
        repo.path().join("src/barrel.ts"),
        "export * from './widget';\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/consumer.ts"),
        "import { widget } from './barrel';\nexport const render = () => widget();\n",
    )
    .unwrap();

    // Changing the barrel itself must reach the consumer, not report "safe".
    let json = run_json(repo.path(), &["file", "src/barrel.ts"]);
    let labels = node_labels(&json);
    assert!(labels.iter().any(|label| label == "src/consumer.ts"));
    assert_eq!(json["summary"]["total_affected_files"].as_u64().unwrap(), 1);
    assert_eq!(
        json["summary"]["directly_affected_files"].as_u64().unwrap(),
        1
    );
}

#[test]
fn export_mode_rejects_unknown_export_names() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(
        repo.path().join("src/source.ts"),
        "export const alpha = 1;\nexport const beta = 2;\n",
    )
    .unwrap();

    AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "export",
            "src/source.ts",
            "NoSuchExport",
        ])
        .assert()
        .failure()
        .code(1)
        .stderr(predicate::str::contains("export 'NoSuchExport' not found"))
        .stderr(predicate::str::contains("available exports: alpha, beta"));
}

#[test]
fn export_mode_warns_instead_of_failing_when_exports_are_not_enumerable() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(
        repo.path().join("src/widget.ts"),
        "export const widget = () => null;\n",
    )
    .unwrap();
    // Star re-exports mean the barrel's export set isn't statically known, so
    // an unrecognized name proceeds with a warning rather than a hard error.
    fs::write(
        repo.path().join("src/barrel.ts"),
        "export * from './widget';\n",
    )
    .unwrap();

    let json = run_json(repo.path(), &["export", "src/barrel.ts", "NoSuchExport"]);
    let warnings = json["warnings"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|warning| warning.as_str())
        .collect::<Vec<_>>()
        .join("\n");
    assert!(warnings.contains("not a statically-known export"));
    assert!(warnings.contains("src/barrel.ts"));
}

#[test]
fn files_mode_deduplicates_overlapping_multi_root_impact() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("src/source-a.ts"), "export const a = 1;\n").unwrap();
    fs::write(repo.path().join("src/source-b.ts"), "export const b = 2;\n").unwrap();
    fs::write(
        repo.path().join("src/app.ts"),
        "import { a } from './source-a';\nimport { b } from './source-b';\nexport const value = a + b;\n",
    )
    .unwrap();

    let json = run_json(
        repo.path(),
        &["files", "src/source-a.ts", "src/source-b.ts"],
    );
    let labels = node_labels(&json);
    assert_eq!(label_count(&labels, "src/app.ts"), 1);
    assert_eq!(json["roots"].as_array().unwrap().len(), 2);
    // Downstream impact only: the changed files themselves are not counted.
    assert_eq!(json["summary"]["total_affected_files"].as_u64().unwrap(), 1);
}

#[test]
fn total_affected_files_excludes_the_changed_file() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("src/source.ts"), "export const x = 1;\n").unwrap();
    fs::write(
        repo.path().join("src/app.ts"),
        "import { x } from './source';\nexport const v = x + 1;\n",
    )
    .unwrap();

    // One direct consumer: total equals direct + transitive, not roots + impact.
    let json = run_json(repo.path(), &["file", "src/source.ts"]);
    assert_eq!(json["summary"]["total_affected_files"].as_u64().unwrap(), 1);
    assert_eq!(
        json["summary"]["directly_affected_files"].as_u64().unwrap(),
        1
    );
    assert_eq!(
        json["summary"]["transitively_affected_files"]
            .as_u64()
            .unwrap(),
        0
    );

    // A file nothing depends on has a zero blast radius, so --fail-threshold 0
    // must pass.
    AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "--fail-threshold",
            "0",
            "file",
            "src/app.ts",
        ])
        .assert()
        .success();
}

#[test]
fn files_mode_deduplicates_repeated_inputs() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("src/source.ts"), "export const x = 1;\n").unwrap();
    fs::write(
        repo.path().join("src/app.ts"),
        "import { x } from './source';\nexport const v = x + 1;\n",
    )
    .unwrap();

    let json = run_json(
        repo.path(),
        &["files", "src/source.ts", "src/source.ts", "src/app.ts"],
    );
    let target_files = json["target"]["files"].as_array().unwrap();
    assert_eq!(target_files.len(), 2);
    assert_eq!(json["roots"].as_array().unwrap().len(), 2);
    assert_eq!(json["summary"]["skipped_inputs"].as_u64().unwrap(), 0);
}

#[test]
fn files_mode_skips_unknown_inputs_and_analyzes_the_rest() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("src/source-a.ts"), "export const a = 1;\n").unwrap();
    fs::write(repo.path().join("src/source-b.ts"), "export const b = 2;\n").unwrap();
    fs::write(
        repo.path().join("src/app.ts"),
        "import { a } from './source-a';\nimport { b } from './source-b';\nexport const value = a + b;\n",
    )
    .unwrap();
    // Exists on disk but is not a parsed source module.
    fs::write(repo.path().join("src/styles.css"), ".x { color: red; }\n").unwrap();

    // A hook batch can mix valid sources with a deleted/renamed path and a
    // non-source file; the valid inputs must still be analyzed.
    let json = run_json(
        repo.path(),
        &[
            "files",
            "src/source-a.ts",
            "src/does-not-exist.ts",
            "src/styles.css",
            "src/source-b.ts",
        ],
    );

    let labels = node_labels(&json);
    assert_eq!(label_count(&labels, "src/app.ts"), 1);
    assert_eq!(json["roots"].as_array().unwrap().len(), 2);
    assert_eq!(json["summary"]["total_affected_files"].as_u64().unwrap(), 1);
    assert_eq!(json["summary"]["skipped_inputs"].as_u64().unwrap(), 2);

    let warnings = json["warnings"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|warning| warning.as_str())
        .collect::<Vec<_>>()
        .join("\n");
    assert!(warnings.contains("src/does-not-exist.ts"));
    assert!(warnings.contains("not found on disk"));
    assert!(warnings.contains("styles.css"));
    assert!(warnings.contains("not a recognized source file"));
}

#[test]
fn files_mode_with_all_unknown_inputs_reports_empty_with_warnings() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("src/real.ts"), "export const x = 1;\n").unwrap();
    fs::write(repo.path().join("src/styles.css"), ".x { color: red; }\n").unwrap();

    // Every passed path is unanalyzable: the run succeeds with an empty radius
    // rather than erroring, so a hook never fails the commit over input shape.
    let json = run_json(repo.path(), &["files", "src/gone.ts", "src/styles.css"]);

    assert_eq!(json["summary"]["total_affected_files"].as_u64().unwrap(), 0);
    assert_eq!(json["summary"]["skipped_inputs"].as_u64().unwrap(), 2);
    assert!(json["roots"].as_array().unwrap().is_empty());

    let warnings = json["warnings"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|warning| warning.as_str())
        .collect::<Vec<_>>()
        .join("\n");
    assert!(warnings.contains("no recognized source files among 2 input paths"));
}

#[test]
fn fail_on_risk_gates_exit_code_at_or_above_tier() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("src/source.ts"), "export const x = 1;\n").unwrap();
    for name in ["a", "b", "c", "d"] {
        fs::write(
            repo.path().join(format!("src/{name}.ts")),
            "import { x } from './source';\nexport const v = x + 1;\n",
        )
        .unwrap();
    }

    // 4 downstream files in a single package => Moderate verdict, surfaced in JSON.
    let json = run_json(repo.path(), &["file", "src/source.ts"]);
    assert_eq!(json["summary"]["risk_tier"].as_str().unwrap(), "moderate");

    // A threshold at the verdict trips the gate (exit 2).
    AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "--fail-on-risk",
            "moderate",
            "file",
            "src/source.ts",
        ])
        .assert()
        .failure()
        .code(2);

    // A threshold stricter than the verdict passes.
    AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "--fail-on-risk",
            "risky",
            "file",
            "src/source.ts",
        ])
        .assert()
        .success();
}

#[test]
fn file_mode_reports_tree_output() {
    let repo = setup_repo();

    // Default output leads with the verdict and groups impact by package.
    AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "file",
            "packages/ui/src/Button.tsx",
        ])
        .assert()
        .success()
        .stdout(predicate::str::contains("IMPACTED FILES"))
        .stdout(predicate::str::contains("confidence:"))
        .stdout(predicate::str::contains("packages/ui"))
        // Files are listed as bare names under their directory's header.
        .stdout(predicate::str::contains("apps/storefront"))
        .stdout(predicate::str::contains("App.tsx"));

    // The full cascade tree is available behind --verbose.
    AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "file",
            "packages/ui/src/Button.tsx",
            "--verbose",
        ])
        .assert()
        .success()
        .stdout(predicate::str::contains("CASCADE · OVERVIEW"))
        .stdout(predicate::str::contains("CASCADE · PATHS"))
        .stdout(predicate::str::contains("packages/ui/src/Card.tsx"))
        .stdout(predicate::str::contains("apps/storefront/src/App.tsx"));
}

#[test]
fn graph_formats_render() {
    let repo = setup_repo();

    AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "--format",
            "mermaid",
            "export",
            "packages/ui/src/Button.tsx",
            "Button",
        ])
        .assert()
        .success()
        .stdout(predicate::str::contains("graph TD"));

    AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "--format",
            "dot",
            "export",
            "packages/ui/src/Button.tsx",
            "Button",
        ])
        .assert()
        .success()
        .stdout(predicate::str::contains("digraph blast_radius"));
}

#[test]
fn files_mode_breaks_down_each_changed_file() {
    let repo = setup_repo();

    // Analyze two explicit files, each with its own downstream blast radius.
    fs::write(
        repo.path().join("packages/ui/src/Button.tsx"),
        "export const Button = () => <button>changed</button>;\nexport default Button;\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("packages/ui/src/Card.tsx"),
        "import { Button } from './Button';\nexport const Card = () => <div><Button /> changed</div>;\n",
    )
    .unwrap();

    // The per-file breakdown is exposed in JSON as `roots`.
    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "--format",
            "json",
            "files",
            "packages/ui/src/Button.tsx",
            "packages/ui/src/Card.tsx",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let json: Value = serde_json::from_slice(&output).unwrap();
    let roots = json["roots"].as_array().unwrap();
    assert_eq!(roots.len(), 2);
    assert!(roots.iter().all(|root| root["affected"].is_number()));

    // And the tree output gets a dedicated per-file section.
    AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "files",
            "packages/ui/src/Button.tsx",
            "packages/ui/src/Card.tsx",
        ])
        .assert()
        .success()
        .stdout(predicate::str::contains("IMPACT BY INPUT FILE"))
        .stdout(predicate::str::contains("input files"))
        .stdout(predicate::str::contains("impacted file"));
}

#[test]
fn file_mode_skips_unparseable_files_and_reports_them() {
    let repo = setup_repo();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(
        repo.path().join("src").join("template.js"),
        "export default makeThing({{{placeholder}}});\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src").join("index.js"),
        "export const ok = () => null;\n",
    )
    .unwrap();

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "--format",
            "json",
            "file",
            "src/index.js",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let json: Value = serde_json::from_slice(&output).unwrap();
    assert_eq!(json["summary"]["parse_failures"].as_u64().unwrap(), 1);
    let warnings = json["warnings"].as_array().unwrap();
    assert!(warnings.iter().any(|warning| {
        warning
            .as_str()
            .is_some_and(|warning| warning.contains("could not be parsed"))
    }));
}

#[test]
fn explain_unresolved_groups_internal_imports_by_reason() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(
        repo.path().join("tsconfig.json"),
        r#"{"compilerOptions":{"baseUrl":".","paths":{"@/*":["src/*"]}}}"#,
    )
    .unwrap();
    fs::write(repo.path().join("package.json"), r#"{"name":"fixture"}"#).unwrap();
    fs::write(
        repo.path().join("src/App.ts"),
        "import { missing } from './missing';
         import { alsoMissing } from '@/also-missing';
         import { notConfigured } from '#not-configured';
         export const app = [missing, alsoMissing, notConfigured];",
    )
    .unwrap();

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "--format",
            "json",
            "--explain-unresolved",
            "file",
            "src/App.ts",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let json: Value = serde_json::from_slice(&output).unwrap();
    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 3);
    let warnings = json["warnings"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|warning| warning.as_str())
        .collect::<Vec<_>>()
        .join("\n");
    assert!(warnings.contains("unresolved imports · relative or absolute path"));
    assert!(warnings.contains("./missing"));
    // `@/…` is an alias convention — grouped as an unconfigured path alias, with
    // a pointer to how to fix it, rather than silently dropped as an external.
    assert!(warnings.contains("unresolved imports · path alias not configured"));
    assert!(warnings.contains("@/also-missing"));
    assert!(warnings.contains("unresolved imports · package.json imports"));
    assert!(warnings.contains("#not-configured"));
}

/// JS projects keep path aliases in jsconfig.json (tsconfig's JS twin), so those
/// `@/…` imports must resolve like tsconfig paths do.
#[test]
fn jsconfig_json_path_aliases_resolve() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("package.json"), r#"{"name":"js-app"}"#).unwrap();
    fs::write(
        repo.path().join("jsconfig.json"),
        r#"{"compilerOptions":{"baseUrl":".","paths":{"@/*":["src/*"]}}}"#,
    )
    .unwrap();
    fs::write(repo.path().join("src/dep.js"), "export const dep = 1;\n").unwrap();
    fs::write(
        repo.path().join("src/consumer.js"),
        "import { dep } from '@/dep';\nexport const v = dep;\n",
    )
    .unwrap();

    let json = run_json(repo.path(), &["file", "src/dep.js"]);
    assert!(
        dependent_labels(&json)
            .iter()
            .any(|label| label == "src/consumer.js"),
        "a jsconfig.json @/ alias should resolve"
    );
    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 0);
}

/// An alias-looking import that resolves nowhere we can see (e.g. defined only in
/// a bundler config) must be SURFACED as unresolved, not silently treated as an
/// external package — silent under-counting is the worst failure for this tool.
#[test]
fn unconfigured_path_alias_is_flagged_not_silently_dropped() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("package.json"), r#"{"name":"app"}"#).unwrap();
    fs::write(repo.path().join("src/utils.ts"), "export const u = 1;\n").unwrap();
    fs::write(
        repo.path().join("src/consumer.ts"),
        "import { u } from '~utils';\nexport const v = u;\n",
    )
    .unwrap();

    let json = run_json(repo.path(), &["file", "src/consumer.ts"]);
    assert_eq!(
        json["summary"]["unresolved_imports"].as_u64().unwrap(),
        1,
        "an unresolved ~ alias must be counted, not silently dropped"
    );
}

#[test]
fn dynamic_imports_resolve_through_aliases_and_report_dynamic_edges() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src/pages")).unwrap();
    fs::write(
        repo.path().join("tsconfig.json"),
        r#"{"compilerOptions":{"baseUrl":".","paths":{"@/*":["src/*"]}}}"#,
    )
    .unwrap();
    fs::write(repo.path().join("package.json"), r#"{"name":"fixture"}"#).unwrap();
    fs::write(
        repo.path().join("src/pages/Dashboard.ts"),
        "export const Dashboard = () => null;",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/routes.ts"),
        "export const loadDashboard = () => import('@/pages/Dashboard.js');",
    )
    .unwrap();

    let json = run_json(
        repo.path(),
        &["export", "src/pages/Dashboard.ts", "Dashboard"],
    );

    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 0);
    assert!(
        node_labels(&json)
            .iter()
            .any(|label| label == "src/routes.ts")
    );
    assert!(json["edges"].as_array().unwrap().iter().any(|edge| {
        edge["kind"] == "imports_dynamic"
            && edge["to"]
                .as_str()
                .is_some_and(|to| to.contains("src/routes.ts"))
    }));
}

#[test]
fn chakra_ui_example_analyzes_real_world_repo() {
    let repo = chakra_example_root();
    if !repo.join("package.json").exists() {
        eprintln!(
            "skipping chakra_ui_example_analyzes_real_world_repo: examples/chakra-ui \
             not fetched (run scripts/fetch-examples.sh)"
        );
        return;
    }

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(&repo)
        .args([
            "--repo-root",
            repo.to_str().unwrap(),
            "--format",
            "json",
            "file",
            "packages/react/src/components/button/button.tsx",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let json: Value = serde_json::from_slice(&output).unwrap();
    assert_eq!(json["summary"]["parse_failures"].as_u64().unwrap(), 0);
    assert!(json["summary"]["total_affected_files"].as_u64().unwrap() > 100);
    assert!(json["summary"]["unresolved_imports"].as_u64().unwrap() <= 1);
    let labels: Vec<String> = json["nodes"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|node| node["label"].as_str().map(ToOwned::to_owned))
        .collect();
    assert!(
        labels
            .iter()
            .any(|label| label.contains("packages/react/__stories__/button.stories.tsx"))
    );
    assert!(
        labels
            .iter()
            .any(|label| label.contains("apps/compositions/src/examples/button-basic.tsx"))
    );
}

/// Validates the *reported blast radius* on a real application (not just the
/// import graph): changing a core package file must yield a substantial,
/// correct-looking radius. We don't have an exact ground-truth set, so this
/// asserts invariants that must always hold plus a hand-verified known
/// dependent: it reports something substantial (not silently empty), the
/// changed file is excluded from its own radius, every dependent is downstream
/// (depth >= 1), and there are no parse failures.
#[test]
fn excalidraw_example_reports_real_world_blast_radius() {
    let repo = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("examples/excalidraw");
    if !repo.join("package.json").exists() {
        eprintln!(
            "skipping excalidraw_example_reports_real_world_blast_radius: examples/excalidraw \
             not fetched (run scripts/fetch-examples.sh)"
        );
        return;
    }

    let json = run_json(&repo, &["file", "packages/element/src/index.ts"]);
    assert_eq!(json["summary"]["parse_failures"].as_u64().unwrap(), 0);

    let total = json["summary"]["total_affected_files"].as_u64().unwrap();
    assert!(
        total > 50,
        "a core package file should report a substantial blast radius, got {total}"
    );

    let dependents = dependent_labels(&json);
    // Hand-verified: this action module consumes the element package.
    assert!(
        dependents
            .iter()
            .any(|label| label == "packages/excalidraw/actions/actionAddToLibrary.ts"),
        "expected a known dependent in the {} reported",
        dependents.len()
    );
    // Invariant: the changed file is never one of its own dependents.
    assert!(
        !dependents
            .iter()
            .any(|label| label == "packages/element/src/index.ts"),
        "the changed file must not appear in its own blast radius"
    );
    // Invariant: total matches the depth>=1 node count exactly.
    assert_eq!(total as usize, dependents.len());
}

#[test]
fn vite_example_analyzes_real_world_repo() {
    let repo = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("examples/vite-react-ts");

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(&repo)
        .args([
            "--repo-root",
            repo.to_str().unwrap(),
            "--format",
            "json",
            "file",
            "src/App.tsx",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let json: Value = serde_json::from_slice(&output).unwrap();
    assert_eq!(json["summary"]["parse_failures"].as_u64().unwrap(), 0);
    assert_eq!(json["summary"]["total_affected_files"].as_u64().unwrap(), 1);
    let labels: Vec<String> = json["nodes"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|node| node["label"].as_str().map(ToOwned::to_owned))
        .collect();
    assert!(labels.iter().any(|label| label == "src/main.tsx"));
}

#[cfg(feature = "python")]
#[test]
fn python_file_mode_reports_transitive_blast_radius() {
    let repo = python_fixture_root();

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(&repo)
        .args([
            "--repo-root",
            repo.to_str().unwrap(),
            "--format",
            "json",
            "file",
            "app/utils/formatting.py",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let json: Value = serde_json::from_slice(&output).unwrap();
    assert_eq!(json["summary"]["parse_failures"].as_u64().unwrap(), 0);
    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 0);
    let labels: Vec<String> = json["nodes"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|node| node["label"].as_str().map(ToOwned::to_owned))
        .collect();

    assert!(labels.iter().any(|label| label == "app/services/email.py"));
    assert!(labels.iter().any(|label| label == "app/main.py"));
    assert!(labels.iter().any(|label| label == "tests/test_main.py"));
}

#[cfg(feature = "python")]
#[test]
fn python_export_mode_tracks_reexports() {
    let repo = python_fixture_root();

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(&repo)
        .args([
            "--repo-root",
            repo.to_str().unwrap(),
            "--format",
            "json",
            "export",
            "app/services/email.py",
            "send_email",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let json: Value = serde_json::from_slice(&output).unwrap();
    assert_eq!(json["summary"]["parse_failures"].as_u64().unwrap(), 0);
    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 0);
    let labels: Vec<String> = json["nodes"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|node| node["label"].as_str().map(ToOwned::to_owned))
        .collect();

    assert!(
        labels
            .iter()
            .any(|label| label.contains("app/services/__init__.py#send_email"))
    );
    assert!(labels.iter().any(|label| label == "app/main.py"));
}

#[cfg(feature = "python")]
#[test]
fn python_submodule_import_reaches_the_submodule_file() {
    let repo = python_fixture_root();

    // `from app.utils import helpers` must bind to app/utils/helpers.py, not
    // just app/utils/__init__.py.
    let json = run_json(&repo, &["file", "app/utils/helpers.py"]);
    assert_eq!(json["summary"]["parse_failures"].as_u64().unwrap(), 0);
    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 0);
    let labels = node_labels(&json);
    assert!(labels.iter().any(|label| label == "app/main.py"));
}

#[cfg(feature = "python")]
#[test]
fn python_symbol_import_from_package_init_still_resolves() {
    let repo = python_fixture_root();

    // `from app.services import send_email` is a plain symbol import and must
    // keep binding to app/services/__init__.py.
    let json = run_json(&repo, &["file", "app/services/__init__.py"]);
    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 0);
    let labels = node_labels(&json);
    assert!(labels.iter().any(|label| label == "app/main.py"));
}

#[cfg(feature = "python")]
#[test]
fn python_conditional_imports_create_edges() {
    let repo = python_fixture_root();

    // app/compat.py imports app.models only under `if TYPE_CHECKING:`.
    let json = run_json(&repo, &["file", "app/models.py"]);
    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 0);
    assert!(
        node_labels(&json)
            .iter()
            .any(|label| label == "app/compat.py")
    );

    // ...and app.utils.formatting only inside `try/except ImportError`.
    let json = run_json(&repo, &["file", "app/utils/formatting.py"]);
    assert!(
        node_labels(&json)
            .iter()
            .any(|label| label == "app/compat.py")
    );
}

#[cfg(feature = "python")]
#[test]
fn fastapi_example_analyzes_real_world_python_repo() {
    let repo = fastapi_example_root();
    if !repo.join("pyproject.toml").exists() {
        eprintln!(
            "skipping fastapi_example_analyzes_real_world_python_repo: examples/fastapi \
             not fetched (run scripts/fetch-examples.sh)"
        );
        return;
    }

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(&repo)
        .args([
            "--repo-root",
            repo.to_str().unwrap(),
            "--format",
            "json",
            "file",
            "fastapi/applications.py",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let json: Value = serde_json::from_slice(&output).unwrap();
    assert_eq!(json["summary"]["parse_failures"].as_u64().unwrap(), 0);
    assert!(json["summary"]["unresolved_imports"].as_u64().unwrap() <= 1);
    assert!(json["source_file_count"].as_u64().unwrap() > 1_000);
    assert!(json["summary"]["total_affected_files"].as_u64().unwrap() > 600);
}

#[cfg(feature = "rust")]
#[test]
fn rust_file_mode_reports_transitive_blast_radius() {
    let repo = rust_fixture_root();

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(&repo)
        .args([
            "--repo-root",
            repo.to_str().unwrap(),
            "--format",
            "json",
            "file",
            "src/utils/formatting.rs",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let json: Value = serde_json::from_slice(&output).unwrap();
    assert_eq!(json["summary"]["parse_failures"].as_u64().unwrap(), 0);
    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 0);
    let labels: Vec<String> = json["nodes"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|node| node["label"].as_str().map(ToOwned::to_owned))
        .collect();

    assert!(labels.iter().any(|label| label == "src/services/email.rs"));
    assert!(labels.iter().any(|label| label == "src/services/mod.rs"));
    assert!(labels.iter().any(|label| label == "src/lib.rs"));
    assert!(labels.iter().any(|label| label == "src/main.rs"));
}

#[cfg(feature = "rust")]
#[test]
fn rust_export_mode_tracks_reexports() {
    let repo = rust_fixture_root();

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(&repo)
        .args([
            "--repo-root",
            repo.to_str().unwrap(),
            "--format",
            "json",
            "export",
            "src/services/email.rs",
            "send_email",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let json: Value = serde_json::from_slice(&output).unwrap();
    assert_eq!(json["summary"]["parse_failures"].as_u64().unwrap(), 0);
    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 0);
    let labels: Vec<String> = json["nodes"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|node| node["label"].as_str().map(ToOwned::to_owned))
        .collect();

    assert!(
        labels
            .iter()
            .any(|label| label.contains("src/services/mod.rs#send_email"))
    );
    assert!(
        labels
            .iter()
            .any(|label| label.contains("src/lib.rs#send_email"))
    );
}

#[cfg(feature = "rust")]
#[test]
fn rust_workspace_cross_crate_import_resolves() {
    let repo = rust_fixture_root();

    // crates/api imports `demo_core::models::Account`; the edge must cross
    // crate boundaries via the Cargo.toml package-name mapping.
    let json = run_json(&repo, &["file", "crates/core/src/models.rs"]);
    assert_eq!(json["summary"]["parse_failures"].as_u64().unwrap(), 0);
    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 0);
    let labels = node_labels(&json);
    assert!(labels.iter().any(|label| label == "crates/core/src/lib.rs"));
    assert!(labels.iter().any(|label| label == "crates/api/src/main.rs"));
}

#[cfg(all(feature = "vue", feature = "svelte"))]
#[test]
fn component_file_mode_reports_vue_svelte_transitive_blast_radius() {
    let repo = component_fixture_root();

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(&repo)
        .args([
            "--repo-root",
            repo.to_str().unwrap(),
            "--format",
            "json",
            "file",
            "src/shared.ts",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let json: Value = serde_json::from_slice(&output).unwrap();
    assert_eq!(json["summary"]["parse_failures"].as_u64().unwrap(), 0);
    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 0);
    let labels: Vec<String> = json["nodes"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|node| node["label"].as_str().map(ToOwned::to_owned))
        .collect();

    assert!(labels.iter().any(|label| label == "src/Button.vue"));
    assert!(labels.iter().any(|label| label == "src/Card.svelte"));
    assert!(labels.iter().any(|label| label == "src/App.ts"));
}

#[cfg(all(feature = "vue", feature = "svelte"))]
#[test]
fn component_file_mode_tracks_default_component_imports() {
    let repo = component_fixture_root();

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(&repo)
        .args([
            "--repo-root",
            repo.to_str().unwrap(),
            "--format",
            "json",
            "file",
            "src/Button.vue",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let json: Value = serde_json::from_slice(&output).unwrap();
    assert_eq!(json["summary"]["parse_failures"].as_u64().unwrap(), 0);
    assert_eq!(json["summary"]["unresolved_imports"].as_u64().unwrap(), 0);
    let labels: Vec<String> = json["nodes"]
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|node| node["label"].as_str().map(ToOwned::to_owned))
        .collect();

    assert!(labels.iter().any(|label| label == "src/Card.svelte"));
    assert!(labels.iter().any(|label| label == "src/App.ts"));
}

/// Regression: export-mode roots used to render "No downstream dependents
/// found" in the verbose cascade while the summary reported impacted files —
/// the root's out-edges hang off its `export:` node, which the renderer
/// never looked at.
#[test]
fn verbose_cascade_renders_export_mode_chains() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("package.json"), "{\"name\": \"repro\"}").unwrap();
    fs::write(
        repo.path().join("src/util.ts"),
        "export function helper(): string { return \"x\"; }\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/consumer.ts"),
        "import { helper } from \"./util\";\nexport const value = helper();\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/deep.ts"),
        "import { value } from \"./consumer\";\nexport const final = value;\n",
    )
    .unwrap();

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "--verbose",
            "export",
            "src/util.ts",
            "helper",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();
    let stdout = String::from_utf8(output).unwrap();

    assert!(
        !stdout.contains("No downstream dependents found"),
        "{stdout}"
    );
    let paths_section = stdout.split("CASCADE · PATHS").nth(1).unwrap_or("");
    assert!(paths_section.contains("consumer.ts"), "{stdout}");
    assert!(paths_section.contains("deep.ts"), "{stdout}");
}

/// Regression: the cascade used to treat barrels as transparent and fan every
/// barrel consumer out under every feeder file — claiming, e.g., that a file
/// importing only `Toolbar` from the barrel depends directly on `Card.tsx`.
/// Barrels now render as real nodes so every printed hop is a true edge.
#[test]
fn verbose_cascade_shows_barrels_without_false_direct_attribution() {
    let repo = setup_repo();

    let output = AssertCommand::cargo_bin("blast-radius")
        .unwrap()
        .current_dir(repo.path())
        .args([
            "--repo-root",
            repo.path().to_str().unwrap(),
            "--verbose",
            "export",
            "packages/ui/src/Button.tsx",
            "Button",
        ])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();
    let stdout = String::from_utf8(output).unwrap();

    // The barrel is a real direct dependent (named re-export of Button) and
    // must appear in the overview, not be silently skipped.
    let overview = stdout.split("CASCADE · PATHS").next().unwrap_or("");
    assert!(
        overview
            .lines()
            .any(|line| line.contains("direct") && line.contains("index.ts")),
        "barrel missing from direct overview:\n{stdout}"
    );

    // In the paths tree, barrel consumers must hang under the barrel node,
    // never directly under a feeder file they do not import.
    let paths_section = stdout.split("CASCADE · PATHS").nth(1).unwrap_or("");
    let indent_of = |line: &str| line.find(['├', '└']).unwrap_or(usize::MAX);
    let lines: Vec<&str> = paths_section.lines().collect();
    for (index, line) in lines.iter().enumerate() {
        if !line.contains("LegacyButtonCard.jsx") {
            continue;
        }
        let has_barrel_ancestor = lines[..index]
            .iter()
            .rev()
            .take_while(|previous| indent_of(previous) != usize::MAX)
            .any(|previous| previous.contains("index.ts") && indent_of(previous) < indent_of(line));
        assert!(
            has_barrel_ancestor,
            "LegacyButtonCard attributed to a non-barrel parent:\n{stdout}"
        );
    }

    // Repeated subtrees collapse to a back-reference instead of re-printing.
    assert!(paths_section.contains("(paths shown above)"), "{stdout}");
}

/// `export * as ns from './x'` must stay member-precise: a change to one
/// export of the underlying module impacts only consumers that touch that
/// member through the namespace object (named-import, JSX, aliased re-export),
/// while wholesale users of the object are always impacted.
#[test]
fn namespace_reexport_tracks_member_usage_precisely() {
    let repo = tempdir().unwrap();
    fs::create_dir_all(repo.path().join("src")).unwrap();
    fs::write(repo.path().join("package.json"), r#"{"name":"ns-fixture"}"#).unwrap();
    fs::write(
        repo.path().join("src/widgets.ts"),
        "export const Button = 1;\nexport const Card = 2;\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/barrel.ts"),
        "export * as UI from './widgets';\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/button-user.ts"),
        "import { UI } from './barrel';\nconsole.log(UI.Button);\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/card-user.tsx"),
        "import { UI } from './barrel';\nexport const App = () => <UI.Card />;\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/alias-barrel.ts"),
        "export { UI as Widgets } from './barrel';\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/alias-user.ts"),
        "import { Widgets } from './alias-barrel';\nconsole.log(Widgets.Button);\n",
    )
    .unwrap();
    fs::write(
        repo.path().join("src/wholesale-user.ts"),
        "import { UI } from './barrel';\nexport function dump(x: unknown) {}\ndump(UI);\n",
    )
    .unwrap();

    let json = run_json(repo.path(), &["export", "src/widgets.ts", "Button"]);
    let labels = node_labels(&json);
    for expected in [
        "src/barrel.ts",
        "src/button-user.ts",
        "src/alias-barrel.ts",
        "src/alias-user.ts",
        "src/wholesale-user.ts",
    ] {
        assert!(
            labels.iter().any(|label| label == expected),
            "Button change must reach {expected}; got {labels:?}"
        );
    }
    assert!(
        !labels.iter().any(|label| label == "src/card-user.tsx"),
        "Button change must not reach the UI.Card-only consumer; got {labels:?}"
    );

    let json = run_json(repo.path(), &["export", "src/widgets.ts", "Card"]);
    let labels = node_labels(&json);
    assert!(
        labels.iter().any(|label| label == "src/card-user.tsx"),
        "Card change must reach the JSX UI.Card consumer; got {labels:?}"
    );
    for excluded in ["src/button-user.ts", "src/alias-user.ts"] {
        assert!(
            !labels.iter().any(|label| label == excluded),
            "Card change must not reach {excluded}; got {labels:?}"
        );
    }
    assert!(
        labels.iter().any(|label| label == "src/wholesale-user.ts"),
        "wholesale namespace users depend on every member; got {labels:?}"
    );

    // Querying the namespace object itself impacts every member consumer.
    let json = run_json(repo.path(), &["export", "src/barrel.ts", "UI"]);
    let labels = node_labels(&json);
    for expected in ["src/button-user.ts", "src/card-user.tsx"] {
        assert!(
            labels.iter().any(|label| label == expected),
            "whole-object query must reach {expected}; got {labels:?}"
        );
    }
}