rustqual 1.2.3

Comprehensive Rust code quality analyzer — seven dimensions: IOSP, Complexity, DRY, SRP, Coupling, Test Quality, Architecture
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
//! Tests for `collect_pub_fns_by_layer` — workspace-wide pub-fn
//! enumeration grouped by architecture layer.

use super::support::three_layer;
use crate::adapters::analyzers::architecture::call_parity_rule::pub_fns::{
    collect_pub_fns_by_layer, PubFnInfo, PubFnInputs,
};
use crate::adapters::shared::use_tree::gather_alias_map;
use std::collections::{HashMap, HashSet};

/// Build an `aliases_per_file` map from a workspace slice — mirrors
/// what the call-parity entry point computes.
fn aliases_from_files(
    files: &[(&str, &syn::File)],
) -> HashMap<String, HashMap<String, Vec<String>>> {
    files
        .iter()
        .map(|(p, f)| (p.to_string(), gather_alias_map(f)))
        .collect()
}

fn parse(src: &str) -> syn::File {
    syn::parse_str(src).expect("parse file")
}

fn names_for_layer<'ast>(
    by_layer: &std::collections::HashMap<String, Vec<PubFnInfo<'ast>>>,
    layer: &str,
) -> HashSet<String> {
    by_layer
        .get(layer)
        .map(|fns| fns.iter().map(|f| f.fn_name.clone()).collect())
        .unwrap_or_default()
}

#[test]
fn test_collect_pub_fns_in_layer_free_fn() {
    let file = parse(
        r#"
        pub fn cmd_stats() {}
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(cli.contains("cmd_stats"), "cli = {cli:?}");
}

#[test]
fn test_collect_pub_fns_skips_private_fns() {
    let file = parse(
        r#"
        fn helper() {}
        pub fn cmd_stats() {}
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(cli.contains("cmd_stats"));
    assert!(!cli.contains("helper"), "private fn must be skipped");
}

#[test]
fn test_pub_crate_is_treated_as_public_for_intra_crate_layers() {
    // Workspace-internal crates rely on `pub(crate)` for their architecture
    // surface; the check must treat any visibility-modified fn as
    // "visible enough" — only the implicit (no-modifier) case is private.
    let file = parse(
        r#"
        pub(crate) fn cmd_stats() {}
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(cli.contains("cmd_stats"), "pub(crate) must be collected");
}

#[test]
fn test_pub_super_and_pub_in_path_treated_as_public() {
    let file = parse(
        r#"
        pub(super) fn cmd_a() {}
        pub(in crate::cli) fn cmd_b() {}
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(cli.contains("cmd_a"));
    assert!(cli.contains("cmd_b"));
}

#[test]
fn test_collect_pub_fns_collects_pub_impl_methods_for_pub_type() {
    let file = parse(
        r#"
        pub struct Session;
        impl Session {
            pub fn search(&self) {}
            fn helper(&self) {}
        }
        "#,
    );
    let files = vec![("src/application/session.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let app = names_for_layer(&by_layer, "application");
    assert!(app.contains("search"), "pub impl method must be collected");
    assert!(
        !app.contains("helper"),
        "private impl method must be skipped"
    );
}

#[test]
fn test_collect_pub_fns_recognises_impl_across_files() {
    // Regression: `pub struct Session` in one file, `impl Session { pub
    // fn search() }` in another — both sides resolve to the same
    // canonical via the impl-file's `use` statement, so Check B sees
    // the impl methods as adapter surface. (Without the `use`, the
    // impl wouldn't compile in real Rust either.)
    let decl_file = parse("pub struct Session;");
    let impl_file = parse(
        r#"
        use crate::application::session::Session;
        impl Session {
            pub fn search(&self) {}
        }
        "#,
    );
    let files = vec![
        ("src/application/session.rs", &decl_file),
        ("src/application/session_impls.rs", &impl_file),
    ];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let app = names_for_layer(&by_layer, "application");
    assert!(
        app.contains("search"),
        "cross-file impl on pub type must be collected, got {app:?}"
    );
}

#[test]
fn test_collect_pub_fns_skips_impl_methods_on_private_type() {
    // Conservative: if the enclosing `impl Type { ... }` is for a private
    // (no-modifier) type, its pub methods aren't really reachable from
    // outside the file, so they're excluded from the call-parity scope.
    let file = parse(
        r#"
        struct Session;
        impl Session {
            pub fn search(&self) {}
        }
        "#,
    );
    let files = vec![("src/application/session.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let app = names_for_layer(&by_layer, "application");
    assert!(
        !app.contains("search"),
        "impl on private type must be skipped"
    );
}

#[test]
fn test_collect_pub_fns_groups_by_layer() {
    let cli_file = parse("pub fn cmd_stats() {}");
    let mcp_file = parse("pub fn handle_stats() {}");
    let app_file = parse("pub fn get_stats() {}");
    let files = vec![
        ("src/cli/handlers.rs", &cli_file),
        ("src/mcp/handlers.rs", &mcp_file),
        ("src/application/stats.rs", &app_file),
    ];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    assert_eq!(
        names_for_layer(&by_layer, "cli"),
        ["cmd_stats".to_string()].into()
    );
    assert_eq!(
        names_for_layer(&by_layer, "mcp"),
        ["handle_stats".to_string()].into()
    );
    assert_eq!(
        names_for_layer(&by_layer, "application"),
        ["get_stats".to_string()].into()
    );
}

#[test]
fn test_collect_pub_fns_skips_cfg_test_files() {
    let file = parse("pub fn cmd_stats() {}");
    let files = vec![("src/cli/handlers.rs", &file)];
    let mut cfg_test = HashSet::new();
    cfg_test.insert("src/cli/handlers.rs".to_string());
    let aliases = aliases_from_files(&files);
    let by_layer = collect_pub_fns_by_layer(PubFnInputs {
        files: &files,
        aliases_per_file: &aliases,
        layers: &three_layer(),
        cfg_test_files: &cfg_test,
        transparent_wrappers: &HashSet::new(),
        promoted_attributes: &HashSet::new(),
    });
    assert!(
        names_for_layer(&by_layer, "cli").is_empty(),
        "cfg-test file must be skipped wholesale"
    );
}

#[test]
fn test_collect_pub_fns_skips_test_attr_fns() {
    let file = parse(
        r#"
        #[test]
        pub fn not_a_handler() {}
        pub fn cmd_stats() {}
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(cli.contains("cmd_stats"));
    assert!(!cli.contains("not_a_handler"), "#[test] fn must be skipped");
}

#[test]
fn test_collect_pub_fns_skips_unmatched_files() {
    // File not covered by any layer — its pub fns are not part of the
    // call-parity scope (neither as adapter member nor as target).
    let file = parse("pub fn free_floating() {}");
    let files = vec![("src/utils/misc.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    for layer in ["application", "cli", "mcp"] {
        assert!(
            names_for_layer(&by_layer, layer).is_empty(),
            "layer {layer} must be empty"
        );
    }
}

#[test]
fn test_collect_pub_fns_skips_pub_fn_inside_private_inline_mod() {
    // `mod private { pub fn helper() {} }` — `helper` is `pub` but
    // its parent `mod private` has inherited visibility, so the fn
    // isn't reachable from outside the parent module. Must not be
    // recorded as adapter / target surface.
    let file = parse(
        r#"
        mod private {
            pub fn helper() {}
        }
        pub fn visible_top() {}
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        cli.contains("visible_top"),
        "top-level pub fn must be recorded, got {cli:?}"
    );
    assert!(
        !cli.contains("helper"),
        "pub fn inside private inline mod must be skipped, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_treats_pub_self_as_private() {
    // `pub(self) fn helper()` is semantically private — equivalent to
    // inherited visibility. Must not be recorded.
    let file = parse(
        r#"
        pub(self) fn helper() {}
        pub fn visible() {}
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        cli.contains("visible"),
        "plain `pub fn` must be recorded, got {cli:?}"
    );
    assert!(
        !cli.contains("helper"),
        "`pub(self) fn` is private-equivalent and must be skipped, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_skips_impl_method_on_type_in_private_inline_mod() {
    // `mod private { pub struct Hidden; impl Hidden { pub fn op() {} } }`
    // — `Hidden` is pub but only inside a private mod, so its
    // workspace-visible-types entry must NOT register, and the impl
    // method `op` must not appear as adapter surface.
    let file = parse(
        r#"
        mod private {
            pub struct Hidden;
            impl Hidden {
                pub fn op(&self) {}
            }
        }
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        !cli.contains("op"),
        "impl method on type in private mod must be skipped, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_records_impl_in_private_mod_for_public_type() {
    // `pub struct Session` at file level, but its `impl` block lives
    // inside a private inline mod via `super::Session`. Rust treats
    // `s.diff()` as callable from any caller that can name `Session`,
    // so the public type's pub inherent methods must be recorded as
    // adapter surface — even though the impl block itself sits in a
    // private mod.
    let file = parse(
        r#"
        pub struct Session;
        mod methods {
            impl super::Session {
                pub fn diff(&self) {}
            }
        }
        "#,
    );
    let files = vec![("src/application/session.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let app = names_for_layer(&by_layer, "application");
    assert!(
        app.contains("diff"),
        "impl in private mod for public type must be recorded, got {app:?}"
    );
}

#[test]
fn test_collect_pub_fns_records_impl_via_nested_pub_use_export_path() {
    // `pub mod outer { pub use self::private::Hidden; }` re-exports
    // `Hidden` at `crate::file::outer::Hidden`. An impl written
    // against the export path must be recognised — visible_canonicals
    // needs both the source path *and* the export path so impl
    // resolution doesn't miss it.
    let file = parse(
        r#"
        pub mod outer {
            mod private {
                pub struct Hidden;
            }
            pub use self::private::Hidden;
        }
        impl outer::Hidden {
            pub fn op(&self) {}
        }
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        cli.contains("op"),
        "impl on nested-mod re-export path must be recorded, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_records_impl_via_chained_type_alias() {
    // `type Inner = private::Hidden; pub type Public = Inner;` —
    // the alias chain must be followed to the source type, otherwise
    // visible_canonicals only contains `Inner` and the impl on
    // `Hidden` stays out of scope.
    let file = parse(
        r#"
        mod private {
            pub struct Hidden;
            impl Hidden {
                pub fn op(&self) {}
            }
        }
        type Inner = private::Hidden;
        pub type Public = Inner;
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        cli.contains("op"),
        "alias chain target's impl method must be recorded, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_does_not_promote_bare_local_arc() {
    // `use crate::wrap::Arc; pub type Public = Arc<private::Hidden>;`
    // — bare `Arc` is shadowed by the local `use`. Visibility must
    // canonicalise first and refuse to auto-peel local Arcs.
    let file = parse(
        r#"
        mod wrap { pub struct Arc<T>(T); }
        use crate::wrap::Arc;
        mod private {
            pub struct Hidden;
            impl Hidden {
                pub fn op(&self) {}
            }
        }
        pub type Public = Arc<private::Hidden>;
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        !cli.contains("op"),
        "bare Arc shadowed by local must not auto-peel, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_peels_qualified_user_wrapper() {
    // `pub type Public = axum::extract::State<private::Hidden>;` with
    // `transparent_wrappers = ["State"]`. External `axum::*` paths
    // can't be canonicalised, so the visibility pass must fall back
    // to last-segment matching for user-transparent wrappers.
    let file = parse(
        r#"
        mod private {
            pub struct Hidden;
            impl Hidden {
                pub fn op(&self) {}
            }
        }
        pub type Public = axum::extract::State<private::Hidden>;
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let mut wrappers = HashSet::new();
    wrappers.insert("State".to_string());
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &wrappers,
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        cli.contains("op"),
        "fully-qualified user wrapper must peel via leaf, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_does_not_promote_qualified_local_arc() {
    // `pub type Public = wrap::Arc<private::Hidden>;` — `wrap::Arc`
    // is a *local* wrapper, not stdlib. Direct dispatch on the leaf
    // `Arc` must NOT peel; otherwise Check B would require coverage
    // for methods on `private::Hidden` that aren't actually exposed.
    let file = parse(
        r#"
        mod wrap { pub struct Arc<T>(T); }
        mod private {
            pub struct Hidden;
            impl Hidden {
                pub fn op(&self) {}
            }
        }
        pub type Public = wrap::Arc<private::Hidden>;
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        !cli.contains("op"),
        "qualified local Arc must not auto-peel as stdlib Arc, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_does_not_promote_local_wrapper_alias() {
    // `use crate::wrap::Arc as Shared;` aliases a *local* wrapper
    // type — its canonical (`crate::wrap::Arc`) doesn't start with
    // std/core/alloc, so the visibility pass must NOT auto-peel it
    // when it appears in `pub type Public = Shared<…>`. Only stdlib
    // wrappers are auto-peeled; user-configured wrappers stay
    // last-segment based.
    let file = parse(
        r#"
        use crate::wrap::Arc as Shared;
        mod private {
            pub struct Hidden;
            impl Hidden {
                pub fn op(&self) {}
            }
        }
        pub type Public = Shared<private::Hidden>;
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        !cli.contains("op"),
        "local wrapper alias must not auto-peel as stdlib Arc, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_records_impl_via_renamed_stdlib_wrapper() {
    // `use std::sync::Arc as Shared; pub type Public = Shared<private::Hidden>;`
    // — the visibility pass must follow the import alias when peeling
    // wrappers, otherwise `Shared` is treated as a non-wrapper and
    // `private::Hidden` never enters `visible_canonicals`.
    let file = parse(
        r#"
        use std::sync::Arc as Shared;
        mod private {
            pub struct Hidden;
            impl Hidden {
                pub fn op(&self) {}
            }
        }
        pub type Public = Shared<private::Hidden>;
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        cli.contains("op"),
        "renamed stdlib wrapper alias must peel in visibility pass, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_records_impl_via_pub_type_alias_through_user_wrapper() {
    // `pub type Public = State<private::Hidden>;` with a
    // user-configured transparent wrapper `State`. The visibility
    // pass must consult the same wrapper set the receiver resolver
    // uses, otherwise Check B drops the public target.
    let file = parse(
        r#"
        mod private {
            pub struct Hidden;
            impl Hidden {
                pub fn op(&self) {}
            }
        }
        pub type Public = State<private::Hidden>;
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let mut wrappers = HashSet::new();
    wrappers.insert("State".to_string());
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &wrappers,
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        cli.contains("op"),
        "user-wrapper alias target's impl method must be recorded, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_records_impl_via_pub_type_alias_through_wrapper() {
    // `pub type Public = Box<private::Hidden>;` — the alias target
    // is wrapped in a Deref-transparent smart pointer. Receiver
    // resolution peels Box/Arc/Rc/Cow, so the visible-types pass
    // must do the same to reach the inner `private::Hidden` and
    // recognise its impl methods as adapter surface.
    let file = parse(
        r#"
        mod private {
            pub struct Hidden;
            impl Hidden {
                pub fn op(&self) {}
            }
        }
        pub type Public = Box<private::Hidden>;
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        cli.contains("op"),
        "wrapper-alias target's impl method must be recorded, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_records_impl_via_pub_type_alias() {
    // `pub type Public = private::Hidden;` exposes a hidden source
    // type's methods through the alias. Receiver-type inference
    // already resolves `Public` to its target, so the only piece
    // missing for Check B was visibility — register the target's
    // canonical alongside the alias path.
    let file = parse(
        r#"
        mod private {
            pub struct Hidden;
            impl Hidden {
                pub fn op(&self) {}
            }
        }
        pub type Public = private::Hidden;
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        cli.contains("op"),
        "impl on pub-type-alias target must be recorded, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_records_renamed_reexport_impl_methods() {
    // `pub use private::Hidden as PublicHidden;` re-exports the
    // source type under a new name. The impl uses the original
    // `Hidden`, so visibility must resolve through the re-export
    // path — short-name matching against `PublicHidden` would miss
    // the impl. Recording must work via the source-canonical path
    // that both sides agree on.
    let file = parse(
        r#"
        mod private {
            pub struct Hidden;
        }
        impl private::Hidden {
            pub fn op(&self) {}
        }
        pub use private::Hidden as PublicHidden;
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        cli.contains("op"),
        "renamed re-export must still expose impl method, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_chases_reexported_type_alias_to_target() {
    // `pub use private::Public;` where `Public` is a type alias for
    // `private::Hidden` and `op` is defined on `Hidden`. Receiver-type
    // inference resolves callers `x: Public` to `Hidden::op`, so the
    // visibility set must contain BOTH `Public` (the alias) and
    // `Hidden` (its target) — otherwise Check B would drop `Hidden::op`
    // even though it is reachable through the public alias.
    let file = parse(
        r#"
        mod private {
            pub struct Hidden;
            pub type Public = Hidden;
            impl Hidden {
                pub fn op(&self) {}
            }
        }
        pub use private::Public;
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        cli.contains("op"),
        "re-exported type alias must surface its target's impl methods, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_records_pub_use_reexport_with_qualified_impl() {
    // `pub use private::Hidden;` with the impl at file level
    // (qualified `impl private::Hidden { … }`) — the re-export
    // resolves to the source-canonical `crate::file::private::Hidden`
    // and registers in `visible_canonicals`. The impl resolves to
    // the same canonical, so the methods record. With canonical-path
    // matching, impls *inside* `mod private` for the same re-exported
    // type also record correctly (the mod's own visibility no longer
    // gates impl methods).
    let file = parse(
        r#"
        mod private {
            pub struct Hidden;
        }
        impl private::Hidden {
            pub fn op(&self) {}
        }
        pub use private::Hidden;
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        cli.contains("op"),
        "re-exported type with file-level impl must be recorded, got {cli:?}"
    );
}

#[test]
fn test_collect_pub_fns_skips_trait_impl_method_on_private_self_type() {
    // `impl PubTrait for Hidden { fn handle() }` — `Hidden` is private,
    // so `Hidden::handle` is NOT registered as a target pub-fn.
    // Dispatch through `dyn PubTrait` no longer emits `Hidden::handle`
    // either; instead it emits the synthetic anchor
    // `<PubTrait>::handle` which represents the capability.
    // Registering private-self-type impl-methods as target pub-fns
    // would force adapter coverage checks for implementation details
    // that are unreachable through the public API.
    let file = parse(
        r#"
        pub trait PubTrait {
            fn handle(&self);
        }
        struct Hidden;
        impl PubTrait for Hidden {
            fn handle(&self) {}
        }
        "#,
    );
    let files = vec![("src/application/mod.rs", &file)];
    let aliases = aliases_from_files(&files);
    let by_layer = collect_pub_fns_by_layer(PubFnInputs {
        files: &files,
        aliases_per_file: &aliases,
        layers: &three_layer(),
        cfg_test_files: &HashSet::new(),
        transparent_wrappers: &HashSet::new(),
        promoted_attributes: &HashSet::new(),
    });
    let app = names_for_layer(&by_layer, "application");
    assert!(
        !app.contains("handle"),
        "trait-impl method on private self type must stay out of pub-fn set; dispatch reaches it via the trait-method anchor, not as a concrete target pub-fn. Got {app:?}"
    );
}

#[test]
fn test_collect_pub_fns_records_inherited_trait_impl_methods() {
    // `impl PubTrait for X { fn handle(&self) {} }` — the impl-item
    // `vis` is `Inherited`, but the method is part of the public
    // surface because the trait is public. Otherwise dispatch could
    // emit `X::handle` as a touchpoint while `X::handle` never enters
    // the target pub-fn set, hiding peer-adapter coverage gaps in
    // Check B/D.
    let file = parse(
        r#"
        pub trait PubTrait {
            fn handle(&self);
        }
        pub struct X;
        impl PubTrait for X {
            fn handle(&self) {}
        }
        "#,
    );
    let files = vec![("src/application/mod.rs", &file)];
    let aliases = aliases_from_files(&files);
    let by_layer = collect_pub_fns_by_layer(PubFnInputs {
        files: &files,
        aliases_per_file: &aliases,
        layers: &three_layer(),
        cfg_test_files: &HashSet::new(),
        transparent_wrappers: &HashSet::new(),
        promoted_attributes: &HashSet::new(),
    });
    let app = names_for_layer(&by_layer, "application");
    assert!(
        app.contains("handle"),
        "trait-impl method must be recorded as pub fn even with Inherited vis, got {app:?}"
    );
}

#[test]
fn test_collect_pub_fns_excludes_orphan_file_not_declared_in_crate_root() {
    // `src/lib.rs` doesn't declare `mod application;`, but
    // `src/application/mod.rs` exists with a `pub fn helper()`.
    // The file is not actually part of any module tree — its pub
    // fns must NOT be recorded as adapter/target surface.
    let lib = parse("mod cli;");
    let cli = parse("pub fn cmd() {}");
    let app = parse("pub fn helper() {}");
    let files = vec![
        ("src/lib.rs", &lib),
        ("src/cli/mod.rs", &cli),
        ("src/application/mod.rs", &app),
    ];
    let aliases = aliases_from_files(&files);
    let by_layer = collect_pub_fns_by_layer(PubFnInputs {
        files: &files,
        aliases_per_file: &aliases,
        layers: &three_layer(),
        cfg_test_files: &HashSet::new(),
        transparent_wrappers: &HashSet::new(),
        promoted_attributes: &HashSet::new(),
    });
    let app_fns = names_for_layer(&by_layer, "application");
    assert!(
        !app_fns.contains("helper"),
        "orphan file (no `mod application;` decl in lib.rs) must not contribute pub fns, got {app_fns:?}"
    );
}

#[test]
fn test_collect_pub_fns_unions_lib_and_main_root_trees() {
    // Workspace with both `src/lib.rs` and `src/main.rs`. `lib.rs`
    // declares `mod application;` privately (visible at crate-root
    // level per the relaxation), `main.rs` declares `mod cli;`
    // privately. A file is visible in its respective tree; the two
    // trees stay independent.
    let lib = parse("mod application;");
    let main = parse("mod cli;");
    let app = parse("pub fn search() {}");
    let cli = parse("pub fn cmd() {}");
    let files = vec![
        ("src/lib.rs", &lib),
        ("src/main.rs", &main),
        ("src/application/mod.rs", &app),
        ("src/cli/mod.rs", &cli),
    ];
    let aliases = aliases_from_files(&files);
    let by_layer = collect_pub_fns_by_layer(PubFnInputs {
        files: &files,
        aliases_per_file: &aliases,
        layers: &three_layer(),
        cfg_test_files: &HashSet::new(),
        transparent_wrappers: &HashSet::new(),
        promoted_attributes: &HashSet::new(),
    });
    let app_fns = names_for_layer(&by_layer, "application");
    let cli_fns = names_for_layer(&by_layer, "cli");
    assert!(
        app_fns.contains("search"),
        "application module declared in lib.rs root must surface its pub fns, got {app_fns:?}"
    );
    assert!(
        cli_fns.contains("cmd"),
        "cli module declared in main.rs root must surface its pub fns, got {cli_fns:?}"
    );
}

#[test]
fn test_collect_pub_fns_includes_crate_root_mod_decl_without_pub() {
    // `src/lib.rs` typically writes `mod cli; mod application;` —
    // sibling modules still reach them via `crate::cli::…`, and
    // call-parity is an internal architecture check. The visibility
    // pass must therefore treat crate-root `mod X;` (without `pub`)
    // as visible so adapter handlers in `src/cli/handlers.rs` are
    // recorded as pub-fns and Checks A/B/C/D run against them.
    let lib = parse("mod cli; mod application;");
    let cli_mod = parse("pub fn cmd_search() {}");
    let app_mod = parse("pub fn search() {}");
    let files = vec![
        ("src/lib.rs", &lib),
        ("src/cli/mod.rs", &cli_mod),
        ("src/application/mod.rs", &app_mod),
    ];
    let aliases = aliases_from_files(&files);
    let by_layer = collect_pub_fns_by_layer(PubFnInputs {
        files: &files,
        aliases_per_file: &aliases,
        layers: &three_layer(),
        cfg_test_files: &HashSet::new(),
        transparent_wrappers: &HashSet::new(),
        promoted_attributes: &HashSet::new(),
    });
    let cli = names_for_layer(&by_layer, "cli");
    let app = names_for_layer(&by_layer, "application");
    assert!(
        cli.contains("cmd_search"),
        "crate-root `mod cli;` (no pub) must still expose adapter pub-fns, got {cli:?}"
    );
    assert!(
        app.contains("search"),
        "crate-root `mod application;` (no pub) must still expose target pub-fns, got {app:?}"
    );
}

#[test]
fn test_collect_pub_fns_excludes_pub_fn_under_private_ancestor_chain() {
    // `mod internal;` at depth 1 (private) + `pub mod deep;` at depth 2.
    // Even though deep's direct parent says `pub`, the `internal`
    // ancestor is private — the whole subtree must be excluded.
    let app = parse("mod internal;");
    let internal = parse("pub mod deep;");
    let deep = parse("pub fn helper() {}");
    let files = vec![
        ("src/application/mod.rs", &app),
        ("src/application/internal/mod.rs", &internal),
        ("src/application/internal/deep.rs", &deep),
    ];
    let aliases = aliases_from_files(&files);
    let by_layer = collect_pub_fns_by_layer(PubFnInputs {
        files: &files,
        aliases_per_file: &aliases,
        layers: &three_layer(),
        cfg_test_files: &HashSet::new(),
        transparent_wrappers: &HashSet::new(),
        promoted_attributes: &HashSet::new(),
    });
    let app_fns = names_for_layer(&by_layer, "application");
    assert!(
        !app_fns.contains("helper"),
        "private ancestor `mod internal;` must hide pub fns in deep descendants, got {app_fns:?}"
    );
}

#[test]
fn test_collect_pub_fns_excludes_pub_fn_in_file_backed_private_module() {
    // `mod internal;` (without `pub`) keeps `src/application/internal.rs`
    // private to the parent. `pub fn helper()` inside that file must
    // NOT be recorded as a target-layer pub fn — otherwise Check B/D
    // would require adapter coverage for a private helper.
    let parent = parse("mod internal;");
    let child = parse("pub fn helper() {}");
    let files = vec![
        ("src/application/mod.rs", &parent),
        ("src/application/internal.rs", &child),
    ];
    let aliases = aliases_from_files(&files);
    let by_layer = collect_pub_fns_by_layer(PubFnInputs {
        files: &files,
        aliases_per_file: &aliases,
        layers: &three_layer(),
        cfg_test_files: &HashSet::new(),
        transparent_wrappers: &HashSet::new(),
        promoted_attributes: &HashSet::new(),
    });
    let app = names_for_layer(&by_layer, "application");
    assert!(
        !app.contains("helper"),
        "pub fn in a file-backed private module must not enter the target-layer surface, got {app:?}"
    );
}

#[test]
fn test_collect_pub_fns_includes_pub_fn_in_file_backed_public_module() {
    // Sanity counterpart: `pub mod internal;` makes the file public,
    // so `pub fn helper()` IS recorded.
    let parent = parse("pub mod internal;");
    let child = parse("pub fn helper() {}");
    let files = vec![
        ("src/application/mod.rs", &parent),
        ("src/application/internal.rs", &child),
    ];
    let aliases = aliases_from_files(&files);
    let by_layer = collect_pub_fns_by_layer(PubFnInputs {
        files: &files,
        aliases_per_file: &aliases,
        layers: &three_layer(),
        cfg_test_files: &HashSet::new(),
        transparent_wrappers: &HashSet::new(),
        promoted_attributes: &HashSet::new(),
    });
    let app = names_for_layer(&by_layer, "application");
    assert!(
        app.contains("helper"),
        "pub fn in a file-backed public module must be recorded, got {app:?}"
    );
}

#[test]
fn test_collect_pub_fns_skips_impl_methods_under_short_name_collision() {
    // Two distinct types named `Session` (one public, one in a
    // private inline mod) must NOT collide. The canonical-path-based
    // `visible_canonicals` set keys on full paths, so
    // `crate::cli::handlers::api::Session` and
    // `crate::cli::handlers::internal::Session` are distinct entries
    // — only the former is recorded (private mod's recursion is
    // skipped during the collection pass).
    let file = parse(
        r#"
        pub mod api {
            pub struct Session;
            impl Session {
                pub fn run(&self) {}
            }
        }
        mod internal {
            pub struct Session;
            impl Session {
                pub fn cleanup(&self) {}
            }
        }
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let cli = names_for_layer(&by_layer, "cli");
    assert!(
        cli.contains("run"),
        "public-mod impl method must be recorded, got {cli:?}"
    );
    assert!(
        !cli.contains("cleanup"),
        "private-mod impl method must not leak via short-name collision, got {cli:?}"
    );
}

// ── Deprecated-attribute detection (v1.2.1) ────────────────────────

fn deprecated_for_layer<'ast>(
    by_layer: &std::collections::HashMap<String, Vec<PubFnInfo<'ast>>>,
    layer: &str,
) -> HashMap<String, bool> {
    by_layer
        .get(layer)
        .map(|fns| {
            fns.iter()
                .map(|f| (f.fn_name.clone(), f.deprecated))
                .collect()
        })
        .unwrap_or_default()
}

#[test]
fn pub_fn_records_deprecated_attribute_bare() {
    let file = parse(
        r#"
        #[deprecated]
        pub fn cmd_old() {}
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    let dep = deprecated_for_layer(&by_layer, "cli");
    assert_eq!(dep.get("cmd_old"), Some(&true));
}

#[test]
fn pub_fn_records_deprecated_with_message() {
    let file = parse(
        r#"
        #[deprecated = "use cmd_new instead"]
        pub fn cmd_old() {}
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    assert_eq!(
        deprecated_for_layer(&by_layer, "cli").get("cmd_old"),
        Some(&true)
    );
}

#[test]
fn pub_fn_records_deprecated_with_args() {
    let file = parse(
        r#"
        #[deprecated(since = "1.0", note = "use cmd_new")]
        pub fn cmd_old() {}
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    assert_eq!(
        deprecated_for_layer(&by_layer, "cli").get("cmd_old"),
        Some(&true)
    );
}

#[test]
fn pub_fn_no_attribute_not_deprecated() {
    let file = parse(
        r#"
        pub fn cmd_active() {}
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    assert_eq!(
        deprecated_for_layer(&by_layer, "cli").get("cmd_active"),
        Some(&false)
    );
}

#[test]
fn pub_fn_other_attribute_not_deprecated() {
    // `#[allow(unused)]` must NOT be misidentified as deprecation.
    let file = parse(
        r#"
        #[allow(unused)]
        pub fn cmd_active() {}
        "#,
    );
    let files = vec![("src/cli/handlers.rs", &file)];
    let by_layer = {
        let aliases = aliases_from_files(&files);
        collect_pub_fns_by_layer(PubFnInputs {
            files: &files,
            aliases_per_file: &aliases,
            layers: &three_layer(),
            cfg_test_files: &HashSet::new(),
            transparent_wrappers: &HashSet::new(),
            promoted_attributes: &HashSet::new(),
        })
    };
    assert_eq!(
        deprecated_for_layer(&by_layer, "cli").get("cmd_active"),
        Some(&false)
    );
}