memscope-rs 0.2.3

A memory tracking library for Rust applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
use crate::analysis::safety::engine::RiskAssessmentEngine;
use crate::analysis::safety::types::*;
use crate::analysis::unsafe_ffi_tracker::{RiskLevel, SafetyViolation, StackFrame};
use crate::capture::types::{AllocationInfo, TrackingError, TrackingResult};
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use std::sync::{Arc, Mutex};
use std::time::{SystemTime, UNIX_EPOCH};

#[derive(Debug, Clone)]
pub struct SafetyAnalysisConfig {
    pub detailed_risk_assessment: bool,
    pub enable_passport_tracking: bool,
    pub min_risk_level: RiskLevel,
    pub max_reports: usize,
    pub enable_dynamic_violations: bool,
    pub strict_mutex_handling: bool,
    pub max_mutex_poison_retries: usize,
}

impl Default for SafetyAnalysisConfig {
    fn default() -> Self {
        Self {
            detailed_risk_assessment: true,
            enable_passport_tracking: true,
            min_risk_level: RiskLevel::Low,
            max_reports: 1000,
            enable_dynamic_violations: true,
            strict_mutex_handling: false,
            max_mutex_poison_retries: 3,
        }
    }
}

#[derive(Debug, Clone, Default)]
struct CircuitBreaker {
    poison_count: usize,
    last_poison_time: Option<u64>,
    is_open: bool,
}

impl CircuitBreaker {
    fn record_poison(&mut self, max_retries: usize) {
        self.poison_count += 1;
        self.last_poison_time = Some(get_current_timestamp());

        if self.poison_count >= max_retries {
            self.is_open = true;
        }
    }

    fn is_tripped(&self) -> bool {
        self.is_open
    }

    fn reset(&mut self) {
        self.poison_count = 0;
        self.last_poison_time = None;
        self.is_open = false;
    }

    fn poison_count(&self) -> usize {
        self.poison_count
    }

    #[allow(dead_code)]
    fn last_poison_time(&self) -> Option<u64> {
        self.last_poison_time
    }
}

fn get_current_timestamp() -> u64 {
    match SystemTime::now().duration_since(UNIX_EPOCH) {
        Ok(duration) => duration.as_secs(),
        Err(e) => {
            tracing::error!(
                "System clock error when getting timestamp: {}. Using 0 as timestamp.",
                e
            );
            0
        }
    }
}

fn get_current_timestamp_nanos() -> u128 {
    match SystemTime::now().duration_since(UNIX_EPOCH) {
        Ok(duration) => duration.as_nanos(),
        Err(e) => {
            tracing::error!(
                "System clock error when getting timestamp in nanos: {}. Using 0 as timestamp.",
                e
            );
            0
        }
    }
}

#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct SafetyAnalysisStats {
    pub total_reports: usize,
    pub reports_by_risk_level: HashMap<String, usize>,
    pub total_passports: usize,
    pub passports_by_status: HashMap<String, usize>,
    pub dynamic_violations: usize,
    pub analysis_start_time: u64,
}

pub struct SafetyAnalyzer {
    unsafe_reports: Arc<Mutex<HashMap<String, UnsafeReport>>>,
    memory_passports: Arc<Mutex<HashMap<usize, MemoryPassport>>>,
    risk_engine: RiskAssessmentEngine,
    config: SafetyAnalysisConfig,
    stats: Arc<Mutex<SafetyAnalysisStats>>,
    reports_circuit_breaker: Arc<Mutex<CircuitBreaker>>,
    passports_circuit_breaker: Arc<Mutex<CircuitBreaker>>,
    stats_circuit_breaker: Arc<Mutex<CircuitBreaker>>,
}

impl SafetyAnalyzer {
    pub fn new(config: SafetyAnalysisConfig) -> Self {
        tracing::info!("🔒 Initializing Safety Analyzer");
        tracing::info!(
            "   • Detailed risk assessment: {}",
            config.detailed_risk_assessment
        );
        tracing::info!(
            "   • Passport tracking: {}",
            config.enable_passport_tracking
        );
        tracing::info!("   • Min risk level: {:?}", config.min_risk_level);

        Self {
            unsafe_reports: Arc::new(Mutex::new(HashMap::new())),
            memory_passports: Arc::new(Mutex::new(HashMap::new())),
            risk_engine: RiskAssessmentEngine::new(),
            config,
            stats: Arc::new(Mutex::new(SafetyAnalysisStats {
                analysis_start_time: get_current_timestamp(),
                ..Default::default()
            })),
            reports_circuit_breaker: Arc::new(Mutex::new(CircuitBreaker::default())),
            passports_circuit_breaker: Arc::new(Mutex::new(CircuitBreaker::default())),
            stats_circuit_breaker: Arc::new(Mutex::new(CircuitBreaker::default())),
        }
    }

    fn lock_circuit_breaker<'a>(
        breaker: &'a Arc<Mutex<CircuitBreaker>>,
        name: &str,
    ) -> TrackingResult<std::sync::MutexGuard<'a, CircuitBreaker>> {
        breaker.lock().map_err(|e| {
            let error_msg = format!("Mutex poisoned in {}: {}", name, e);
            tracing::error!("{}", error_msg);
            TrackingError::LockError(error_msg)
        })
    }

    fn lock_reports(
        &self,
    ) -> TrackingResult<std::sync::MutexGuard<'_, HashMap<String, UnsafeReport>>> {
        let circuit_breaker =
            Self::lock_circuit_breaker(&self.reports_circuit_breaker, "reports_circuit_breaker")?;

        if circuit_breaker.is_tripped() {
            return Err(TrackingError::LockError(
                "Circuit breaker tripped for unsafe_reports: too many mutex poison events"
                    .to_string(),
            ));
        }

        drop(circuit_breaker);

        match self.unsafe_reports.lock() {
            Ok(guard) => {
                if let Ok(mut cb) = Self::lock_circuit_breaker(
                    &self.reports_circuit_breaker,
                    "reports_circuit_breaker",
                ) {
                    cb.reset();
                }
                Ok(guard)
            }
            Err(e) => {
                let error_msg = format!("Mutex poisoned in unsafe_reports: {}", e);
                tracing::error!("{}", error_msg);

                if let Ok(mut circuit_breaker) = Self::lock_circuit_breaker(
                    &self.reports_circuit_breaker,
                    "reports_circuit_breaker",
                ) {
                    circuit_breaker.record_poison(self.config.max_mutex_poison_retries);

                    if self.config.strict_mutex_handling || circuit_breaker.is_tripped() {
                        tracing::error!(
                            "Circuit breaker tripped for unsafe_reports after {} poison events",
                            circuit_breaker.poison_count()
                        );
                        return Err(TrackingError::LockError(error_msg));
                    } else {
                        tracing::warn!(
                            "Recovering from mutex poison in unsafe_reports (attempt {}/{})",
                            circuit_breaker.poison_count(),
                            self.config.max_mutex_poison_retries
                        );
                    }
                }

                Ok(e.into_inner())
            }
        }
    }

    fn lock_passports(
        &self,
    ) -> TrackingResult<std::sync::MutexGuard<'_, HashMap<usize, MemoryPassport>>> {
        let circuit_breaker = Self::lock_circuit_breaker(
            &self.passports_circuit_breaker,
            "passports_circuit_breaker",
        )?;

        if circuit_breaker.is_tripped() {
            return Err(TrackingError::LockError(
                "Circuit breaker tripped for memory_passports: too many mutex poison events"
                    .to_string(),
            ));
        }

        drop(circuit_breaker);

        match self.memory_passports.lock() {
            Ok(guard) => {
                if let Ok(mut cb) = Self::lock_circuit_breaker(
                    &self.passports_circuit_breaker,
                    "passports_circuit_breaker",
                ) {
                    cb.reset();
                }
                Ok(guard)
            }
            Err(e) => {
                let error_msg = format!("Mutex poisoned in memory_passports: {}", e);
                tracing::error!("{}", error_msg);

                if let Ok(mut circuit_breaker) = Self::lock_circuit_breaker(
                    &self.passports_circuit_breaker,
                    "passports_circuit_breaker",
                ) {
                    circuit_breaker.record_poison(self.config.max_mutex_poison_retries);

                    if self.config.strict_mutex_handling || circuit_breaker.is_tripped() {
                        tracing::error!(
                            "Circuit breaker tripped for memory_passports after {} poison events",
                            circuit_breaker.poison_count()
                        );
                        return Err(TrackingError::LockError(error_msg));
                    } else {
                        tracing::warn!(
                            "Recovering from mutex poison in memory_passports (attempt {}/{})",
                            circuit_breaker.poison_count(),
                            self.config.max_mutex_poison_retries
                        );
                    }
                }

                Ok(e.into_inner())
            }
        }
    }

    fn lock_stats(&self) -> TrackingResult<std::sync::MutexGuard<'_, SafetyAnalysisStats>> {
        let circuit_breaker =
            Self::lock_circuit_breaker(&self.stats_circuit_breaker, "stats_circuit_breaker")?;

        if circuit_breaker.is_tripped() {
            return Err(TrackingError::LockError(
                "Circuit breaker tripped for stats: too many mutex poison events".to_string(),
            ));
        }

        drop(circuit_breaker);

        match self.stats.lock() {
            Ok(guard) => {
                if let Ok(mut cb) =
                    Self::lock_circuit_breaker(&self.stats_circuit_breaker, "stats_circuit_breaker")
                {
                    cb.reset();
                }
                Ok(guard)
            }
            Err(e) => {
                let error_msg = format!("Mutex poisoned in stats: {}", e);
                tracing::error!("{}", error_msg);

                if let Ok(mut circuit_breaker) =
                    Self::lock_circuit_breaker(&self.stats_circuit_breaker, "stats_circuit_breaker")
                {
                    circuit_breaker.record_poison(self.config.max_mutex_poison_retries);

                    if self.config.strict_mutex_handling || circuit_breaker.is_tripped() {
                        tracing::error!(
                            "Circuit breaker tripped for stats after {} poison events",
                            circuit_breaker.poison_count()
                        );
                        return Err(TrackingError::LockError(error_msg));
                    } else {
                        tracing::warn!(
                            "Recovering from mutex poison in stats (attempt {}/{})",
                            circuit_breaker.poison_count(),
                            self.config.max_mutex_poison_retries
                        );
                    }
                }

                Ok(e.into_inner())
            }
        }
    }

    pub fn generate_unsafe_report(
        &self,
        source: UnsafeSource,
        allocations: &[AllocationInfo],
        violations: &[SafetyViolation],
    ) -> TrackingResult<String> {
        let report_id = self.generate_report_id(&source);

        tracing::info!("🔍 Generating unsafe report: {}", report_id);

        let memory_context = self.create_memory_context(allocations);
        let call_stack = self.capture_call_stack()?;

        let risk_assessment = if self.config.detailed_risk_assessment {
            self.risk_engine
                .assess_risk(&source, &memory_context, &call_stack)
        } else {
            self.create_basic_risk_assessment(&source)
        };

        if !self.should_generate_report(&risk_assessment.risk_level) {
            return Ok(report_id);
        }

        let dynamic_violations = self.convert_safety_violations(violations);

        let related_passports = if self.config.enable_passport_tracking {
            self.find_related_passports(&source, allocations)
        } else {
            Vec::new()
        };

        let report = UnsafeReport {
            report_id: report_id.clone(),
            source,
            risk_assessment: risk_assessment.clone(),
            dynamic_violations,
            related_passports,
            memory_context,
            generated_at: get_current_timestamp(),
        };

        let mut reports = self.lock_reports()?;
        if reports.len() >= self.config.max_reports {
            if let Some(oldest_id) = reports.keys().next().cloned() {
                reports.remove(&oldest_id);
            }
        }
        reports.insert(report_id.clone(), report);

        self.update_stats(&report_id, &risk_assessment.risk_level);

        tracing::info!(
            "✅ Generated unsafe report: {} (risk: {:?})",
            report_id,
            risk_assessment.risk_level
        );

        Ok(report_id)
    }

    pub fn create_memory_passport(
        &self,
        allocation_ptr: usize,
        size_bytes: usize,
        initial_event: PassportEventType,
    ) -> TrackingResult<String> {
        if !self.config.enable_passport_tracking {
            return Ok(String::new());
        }

        let passport_id = format!(
            "passport_{:x}_{}",
            allocation_ptr,
            get_current_timestamp_nanos()
        );

        let call_stack = self.capture_call_stack()?;
        let current_time = get_current_timestamp();

        let initial_passport_event = PassportEvent {
            event_type: initial_event,
            timestamp: current_time,
            context: "SafetyAnalyzer".to_string(),
            call_stack,
            metadata: HashMap::new(),
        };

        let memory_context = MemoryContext {
            total_allocated: size_bytes,
            active_allocations: 1,
            memory_pressure: MemoryPressureLevel::Low,
            allocation_patterns: Vec::new(),
        };

        let source = UnsafeSource::RawPointer {
            operation: "passport_creation".to_string(),
            location: format!("0x{allocation_ptr:x}"),
        };

        let risk_assessment = self.risk_engine.assess_risk(&source, &memory_context, &[]);

        let passport = MemoryPassport {
            passport_id: passport_id.clone(),
            allocation_ptr,
            size_bytes,
            status_at_shutdown: PassportStatus::Unknown,
            lifecycle_events: vec![initial_passport_event],
            risk_assessment,
            created_at: current_time,
            updated_at: current_time,
        };

        let mut passports = self.lock_passports()?;
        passports.insert(allocation_ptr, passport);

        let mut stats = self.lock_stats()?;
        stats.total_passports += 1;

        tracing::info!(
            "📋 Created memory passport: {} for 0x{:x}",
            passport_id,
            allocation_ptr
        );

        Ok(passport_id)
    }

    pub fn record_passport_event(
        &self,
        allocation_ptr: usize,
        event_type: PassportEventType,
        context: String,
    ) -> TrackingResult<()> {
        if !self.config.enable_passport_tracking {
            return Ok(());
        }

        let call_stack = self.capture_call_stack()?;
        let current_time = get_current_timestamp();

        let event = PassportEvent {
            event_type,
            timestamp: current_time,
            context,
            call_stack,
            metadata: HashMap::new(),
        };

        let mut passports = self.lock_passports()?;
        if let Some(passport) = passports.get_mut(&allocation_ptr) {
            passport.lifecycle_events.push(event);
            passport.updated_at = current_time;

            tracing::info!("📝 Recorded passport event for 0x{:x}", allocation_ptr);
        }

        Ok(())
    }

    pub fn finalize_passports_at_shutdown(&self) -> Vec<String> {
        let mut leaked_passports = Vec::new();

        let mut passports = match self.lock_passports() {
            Ok(guard) => guard,
            Err(e) => {
                tracing::error!("Failed to lock passports during finalization: {}", e);
                return leaked_passports;
            }
        };

        for (ptr, passport) in passports.iter_mut() {
            let final_status = self.determine_final_passport_status(&passport.lifecycle_events);
            passport.status_at_shutdown = final_status.clone();

            if matches!(final_status, PassportStatus::InForeignCustody) {
                leaked_passports.push(passport.passport_id.clone());
                tracing::warn!(
                    "🚨 Memory leak detected: passport {} (0x{:x}) in foreign custody",
                    passport.passport_id,
                    ptr
                );
            }
        }

        let status_counts: Vec<String> = passports
            .values()
            .map(|p| format!("{:?}", p.status_at_shutdown))
            .collect();

        drop(passports);

        let mut stats = match self.lock_stats() {
            Ok(guard) => guard,
            Err(e) => {
                tracing::error!("Failed to lock stats during finalization: {}", e);
                return leaked_passports;
            }
        };
        for status_key in status_counts {
            *stats.passports_by_status.entry(status_key).or_insert(0) += 1;
        }

        tracing::info!(
            "🏁 Finalized {} passports, {} leaks detected",
            self.get_passport_count(),
            leaked_passports.len()
        );

        leaked_passports
    }

    pub fn get_unsafe_reports(&self) -> HashMap<String, UnsafeReport> {
        match self.lock_reports() {
            Ok(guard) => guard.clone(),
            Err(e) => {
                tracing::error!("Failed to get unsafe reports: {}", e);
                HashMap::new()
            }
        }
    }

    pub fn get_memory_passports(&self) -> HashMap<usize, MemoryPassport> {
        match self.lock_passports() {
            Ok(guard) => guard.clone(),
            Err(e) => {
                tracing::error!("Failed to get memory passports: {}", e);
                HashMap::new()
            }
        }
    }

    pub fn get_stats(&self) -> SafetyAnalysisStats {
        match self.lock_stats() {
            Ok(guard) => guard.clone(),
            Err(e) => {
                tracing::error!("Failed to get stats: {}", e);
                SafetyAnalysisStats::default()
            }
        }
    }

    fn generate_report_id(&self, source: &UnsafeSource) -> String {
        let timestamp = get_current_timestamp_nanos();

        let source_type = match source {
            UnsafeSource::UnsafeBlock { .. } => "UB",
            UnsafeSource::FfiFunction { .. } => "FFI",
            UnsafeSource::RawPointer { .. } => "PTR",
            UnsafeSource::Transmute { .. } => "TX",
        };

        format!("UNSAFE-{}-{}", source_type, timestamp % 1000000)
    }

    fn create_memory_context(&self, allocations: &[AllocationInfo]) -> MemoryContext {
        let total_allocated = allocations.iter().map(|a| a.size).sum();
        let active_allocations = allocations
            .iter()
            .filter(|a| a.timestamp_dealloc.is_none())
            .count();

        let memory_pressure = if total_allocated > 1024 * 1024 * 1024 {
            MemoryPressureLevel::Critical
        } else if total_allocated > 512 * 1024 * 1024 {
            MemoryPressureLevel::High
        } else if total_allocated > 256 * 1024 * 1024 {
            MemoryPressureLevel::Medium
        } else {
            MemoryPressureLevel::Low
        };

        MemoryContext {
            total_allocated,
            active_allocations,
            memory_pressure,
            allocation_patterns: Vec::new(),
        }
    }

    fn capture_call_stack(&self) -> TrackingResult<Vec<StackFrame>> {
        Ok(vec![StackFrame {
            function_name: "safety_analyzer".to_string(),
            file_name: Some("src/analysis/safety_analyzer.rs".to_string()),
            line_number: Some(1),
            is_unsafe: false,
        }])
    }

    fn create_basic_risk_assessment(&self, source: &UnsafeSource) -> RiskAssessment {
        let (risk_level, risk_score) = match source {
            UnsafeSource::UnsafeBlock { .. } => (RiskLevel::Medium, 50.0),
            UnsafeSource::FfiFunction { .. } => (RiskLevel::Medium, 45.0),
            UnsafeSource::RawPointer { .. } => (RiskLevel::High, 70.0),
            UnsafeSource::Transmute { .. } => (RiskLevel::High, 65.0),
        };

        RiskAssessment {
            risk_level,
            risk_score,
            risk_factors: Vec::new(),
            confidence_score: 0.5,
            mitigation_suggestions: vec!["Review unsafe operation for safety".to_string()],
            assessment_timestamp: get_current_timestamp(),
        }
    }

    fn should_generate_report(&self, risk_level: &RiskLevel) -> bool {
        match (&self.config.min_risk_level, risk_level) {
            (RiskLevel::Low, _) => true,
            (RiskLevel::Medium, RiskLevel::Low) => false,
            (RiskLevel::Medium, _) => true,
            (RiskLevel::High, RiskLevel::Low | RiskLevel::Medium) => false,
            (RiskLevel::High, _) => true,
            (RiskLevel::Critical, RiskLevel::Critical) => true,
            (RiskLevel::Critical, _) => false,
        }
    }

    fn convert_safety_violations(&self, violations: &[SafetyViolation]) -> Vec<DynamicViolation> {
        violations
            .iter()
            .map(|v| match v {
                SafetyViolation::DoubleFree { timestamp, .. } => DynamicViolation {
                    violation_type: ViolationType::DoubleFree,
                    memory_address: 0,
                    memory_size: 0,
                    detected_at: (*timestamp as u64),
                    call_stack: Vec::new(),
                    severity: RiskLevel::Critical,
                    context: "Double free detected: memory was freed twice".to_string(),
                },
                SafetyViolation::InvalidFree {
                    attempted_pointer,
                    timestamp,
                    ..
                } => DynamicViolation {
                    violation_type: ViolationType::InvalidAccess,
                    memory_address: *attempted_pointer,
                    memory_size: 0,
                    detected_at: (*timestamp as u64),
                    call_stack: Vec::new(),
                    severity: RiskLevel::High,
                    context: format!(
                        "Invalid free attempted at address 0x{:x}",
                        attempted_pointer
                    ),
                },
                SafetyViolation::PotentialLeak {
                    allocation_timestamp,
                    leak_detection_timestamp,
                    ..
                } => DynamicViolation {
                    violation_type: ViolationType::MemoryLeak,
                    memory_address: 0,
                    memory_size: 0,
                    detected_at: (*leak_detection_timestamp as u64),
                    call_stack: Vec::new(),
                    severity: RiskLevel::Medium,
                    context: format!(
                        "Potential memory leak detected (allocated at timestamp {})",
                        allocation_timestamp
                    ),
                },
                SafetyViolation::CrossBoundaryRisk {
                    risk_level,
                    description,
                    ..
                } => DynamicViolation {
                    violation_type: ViolationType::FfiBoundaryViolation,
                    memory_address: 0,
                    memory_size: 0,
                    detected_at: get_current_timestamp(),
                    call_stack: Vec::new(),
                    severity: risk_level.clone(),
                    context: description.clone(),
                },
            })
            .collect()
    }

    fn find_related_passports(
        &self,
        _source: &UnsafeSource,
        _allocations: &[AllocationInfo],
    ) -> Vec<String> {
        Vec::new()
    }

    fn update_stats(&self, _report_id: &str, risk_level: &RiskLevel) {
        match self.lock_stats() {
            Ok(mut stats) => {
                stats.total_reports += 1;
                let risk_key = format!("{risk_level:?}");
                *stats.reports_by_risk_level.entry(risk_key).or_insert(0) += 1;
            }
            Err(e) => {
                tracing::error!("Failed to update stats: {}", e);
            }
        }
    }

    fn determine_final_passport_status(&self, events: &[PassportEvent]) -> PassportStatus {
        let mut has_handover = false;
        let mut has_reclaim = false;
        let mut has_foreign_free = false;

        for event in events {
            match event.event_type {
                PassportEventType::HandoverToFfi => has_handover = true,
                PassportEventType::ReclaimedByRust => has_reclaim = true,
                PassportEventType::FreedByForeign => has_foreign_free = true,
                _ => {}
            }
        }

        if has_handover && !has_reclaim && !has_foreign_free {
            PassportStatus::InForeignCustody
        } else if has_foreign_free {
            PassportStatus::FreedByForeign
        } else if has_reclaim {
            PassportStatus::ReclaimedByRust
        } else if has_handover {
            PassportStatus::HandoverToFfi
        } else {
            PassportStatus::FreedByRust
        }
    }

    fn get_passport_count(&self) -> usize {
        self.memory_passports.lock().map(|p| p.len()).unwrap_or(0)
    }
}

impl Default for SafetyAnalyzer {
    fn default() -> Self {
        Self::new(SafetyAnalysisConfig::default())
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    /// Objective: Verify SafetyAnalyzer creation with default config
    /// Invariants: Default config should have detailed_risk_assessment enabled
    #[test]
    fn test_safety_analyzer_default() {
        let analyzer = SafetyAnalyzer::default();
        let stats = analyzer.get_stats();
        assert_eq!(
            stats.total_reports, 0,
            "New analyzer should have zero reports"
        );
        assert_eq!(
            stats.total_passports, 0,
            "New analyzer should have zero passports"
        );
    }

    /// Objective: Verify SafetyAnalyzer creation with custom config
    /// Invariants: Custom config values should be respected
    #[test]
    fn test_safety_analyzer_custom_config() {
        let config = SafetyAnalysisConfig {
            detailed_risk_assessment: false,
            enable_passport_tracking: false,
            min_risk_level: RiskLevel::High,
            max_reports: 100,
            enable_dynamic_violations: false,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);
        let stats = analyzer.get_stats();
        assert_eq!(
            stats.total_reports, 0,
            "Custom config analyzer should start with zero reports"
        );
    }

    /// Objective: Verify generate_unsafe_report for UnsafeBlock source
    /// Invariants: Should generate report with correct source type
    #[test]
    fn test_generate_unsafe_report_unsafe_block() {
        let analyzer = SafetyAnalyzer::default();
        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs:10".to_string(),
            function: "test_fn".to_string(),
            file_path: Some("test.rs".to_string()),
            line_number: Some(10),
        };

        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(result.is_ok(), "Should generate report successfully");
        let report_id = result.unwrap();
        assert!(
            report_id.starts_with("UNSAFE-UB-"),
            "Report ID should start with UNSAFE-UB-"
        );
    }

    /// Objective: Verify generate_unsafe_report for FfiFunction source
    /// Invariants: Should generate report with FFI prefix and correct FFI context
    #[test]
    fn test_generate_unsafe_report_ffi() {
        let analyzer = SafetyAnalyzer::default();
        let source = UnsafeSource::FfiFunction {
            library: "libc".to_string(),
            function: "malloc".to_string(),
            call_site: "test.rs:20".to_string(),
        };

        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(result.is_ok(), "Should generate FFI report successfully");
        let report_id = result.unwrap();
        assert!(
            report_id.starts_with("UNSAFE-FFI-"),
            "FFI report ID should start with UNSAFE-FFI-"
        );

        let reports = analyzer.get_unsafe_reports();
        let report = reports
            .get(&report_id)
            .expect("Report should exist in reports map");

        match &report.source {
            UnsafeSource::FfiFunction {
                library,
                function,
                call_site,
            } => {
                assert_eq!(
                    library, "libc",
                    "FFI report should contain correct library name"
                );
                assert_eq!(
                    function, "malloc",
                    "FFI report should contain correct function name"
                );
                assert_eq!(
                    call_site, "test.rs:20",
                    "FFI report should contain correct call site"
                );
            }
            _ => panic!("Report source should be FfiFunction variant"),
        }
    }

    /// Objective: Verify generate_unsafe_report for RawPointer source
    /// Invariants: Should generate report with PTR prefix
    #[test]
    fn test_generate_unsafe_report_raw_pointer() {
        let analyzer = SafetyAnalyzer::default();
        let source = UnsafeSource::RawPointer {
            operation: "dereference".to_string(),
            location: "0x1000".to_string(),
        };

        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(
            result.is_ok(),
            "Should generate raw pointer report successfully"
        );
        let report_id = result.unwrap();
        assert!(
            report_id.starts_with("UNSAFE-PTR-"),
            "PTR report ID should start with UNSAFE-PTR-"
        );
    }

    /// Objective: Verify generate_unsafe_report for Transmute source
    /// Invariants: Should generate report with TX prefix
    #[test]
    fn test_generate_unsafe_report_transmute() {
        let analyzer = SafetyAnalyzer::default();
        let source = UnsafeSource::Transmute {
            from_type: "u8".to_string(),
            to_type: "i8".to_string(),
            location: "test.rs:30".to_string(),
        };

        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(
            result.is_ok(),
            "Should generate transmute report successfully"
        );
        let report_id = result.unwrap();
        assert!(
            report_id.starts_with("UNSAFE-TX-"),
            "TX report ID should start with UNSAFE-TX-"
        );
    }

    /// Objective: Verify create_memory_passport functionality
    /// Invariants: Should create passport with correct initial state
    #[test]
    fn test_create_memory_passport() {
        let analyzer = SafetyAnalyzer::default();
        let result =
            analyzer.create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust);
        assert!(result.is_ok(), "Should create passport successfully");
        let passport_id = result.unwrap();
        assert!(
            passport_id.starts_with("passport_"),
            "Passport ID should start with passport_"
        );

        let stats = analyzer.get_stats();
        assert_eq!(
            stats.total_passports, 1,
            "Should have one passport after creation"
        );
    }

    /// Objective: Verify passport tracking disabled behavior
    /// Invariants: Should return empty string when tracking disabled
    #[test]
    fn test_passport_tracking_disabled() {
        let config = SafetyAnalysisConfig {
            enable_passport_tracking: false,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);
        let result =
            analyzer.create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust);
        assert!(result.is_ok(), "Should return Ok even when disabled");
        assert!(
            result.unwrap().is_empty(),
            "Should return empty string when disabled"
        );
    }

    /// Objective: Verify record_passport_event functionality
    /// Invariants: Should record event on existing passport
    #[test]
    fn test_record_passport_event() {
        let analyzer = SafetyAnalyzer::default();
        analyzer
            .create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust)
            .unwrap();

        let result = analyzer.record_passport_event(
            0x1000,
            PassportEventType::HandoverToFfi,
            "test_context".to_string(),
        );
        assert!(result.is_ok(), "Should record event successfully");

        let passports = analyzer.get_memory_passports();
        assert!(passports.contains_key(&0x1000), "Passport should exist");
        let passport = passports.get(&0x1000).unwrap();
        assert_eq!(passport.lifecycle_events.len(), 2, "Should have two events");
    }

    /// Objective: Verify finalize_passports_at_shutdown detects leaks
    /// Invariants: Should detect passports in foreign custody
    #[test]
    fn test_finalize_passports_leak_detection() {
        let analyzer = SafetyAnalyzer::default();
        analyzer
            .create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust)
            .unwrap();
        analyzer
            .record_passport_event(
                0x1000,
                PassportEventType::HandoverToFfi,
                "ffi_transfer".to_string(),
            )
            .unwrap();

        let leaks = analyzer.finalize_passports_at_shutdown();
        assert_eq!(
            leaks.len(),
            1,
            "Should detect one leak for passport in foreign custody"
        );
    }

    /// Objective: Verify finalize_passports_at_shutdown for freed passports
    /// Invariants: Should not detect leaks for properly freed passports
    #[test]
    fn test_finalize_passports_no_leak() {
        let analyzer = SafetyAnalyzer::default();
        analyzer
            .create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust)
            .unwrap();
        analyzer
            .record_passport_event(
                0x1000,
                PassportEventType::FreedByForeign,
                "freed".to_string(),
            )
            .unwrap();

        let leaks = analyzer.finalize_passports_at_shutdown();
        assert!(
            leaks.is_empty(),
            "Should not detect leak for freed passport"
        );
    }

    /// Objective: Verify get_unsafe_reports returns all reports
    /// Invariants: Should return all generated reports
    #[test]
    fn test_get_unsafe_reports() {
        let analyzer = SafetyAnalyzer::default();
        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };
        analyzer
            .generate_unsafe_report(source.clone(), &[], &[])
            .unwrap();
        analyzer.generate_unsafe_report(source, &[], &[]).unwrap();

        let reports = analyzer.get_unsafe_reports();
        assert_eq!(reports.len(), 2, "Should have two reports");
    }

    /// Objective: Verify min_risk_level filtering
    /// Invariants: Should not generate report below min risk level
    #[test]
    fn test_min_risk_level_filtering() {
        let config = SafetyAnalysisConfig {
            min_risk_level: RiskLevel::Critical,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);
        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };
        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(result.is_ok(), "Should return Ok even when filtered");
    }

    /// Objective: Verify stats update after report generation
    /// Invariants: Stats should reflect generated reports
    #[test]
    fn test_stats_update() {
        let analyzer = SafetyAnalyzer::default();
        let source = UnsafeSource::RawPointer {
            operation: "test".to_string(),
            location: "test".to_string(),
        };
        analyzer.generate_unsafe_report(source, &[], &[]).unwrap();

        let stats = analyzer.get_stats();
        assert_eq!(stats.total_reports, 1, "Stats should show one report");
        assert!(
            !stats.reports_by_risk_level.is_empty(),
            "Should have risk level breakdown"
        );
    }

    /// Objective: Verify max_reports limit enforcement
    /// Invariants: Should remove oldest report when limit exceeded
    #[test]
    fn test_max_reports_limit() {
        let config = SafetyAnalysisConfig {
            max_reports: 2,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);
        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };

        analyzer
            .generate_unsafe_report(source.clone(), &[], &[])
            .unwrap();
        analyzer
            .generate_unsafe_report(source.clone(), &[], &[])
            .unwrap();
        analyzer.generate_unsafe_report(source, &[], &[]).unwrap();

        let reports = analyzer.get_unsafe_reports();
        assert!(reports.len() <= 2, "Should not exceed max_reports limit");
    }

    /// Objective: Verify SafetyAnalysisConfig default values
    /// Invariants: Default should have sensible values
    #[test]
    fn test_safety_config_default() {
        let config = SafetyAnalysisConfig::default();
        assert!(
            config.detailed_risk_assessment,
            "Detailed risk assessment should be enabled"
        );
        assert!(
            config.enable_passport_tracking,
            "Passport tracking should be enabled"
        );
        assert_eq!(config.max_reports, 1000, "Max reports should be 1000");
    }

    /// Objective: Verify RiskLevel ordering
    /// Invariants: Critical should be highest, Low should be lowest
    #[test]
    fn test_risk_level_ordering() {
        assert!(matches!(RiskLevel::Low, RiskLevel::Low));
        assert!(matches!(RiskLevel::Medium, RiskLevel::Medium));
        assert!(matches!(RiskLevel::High, RiskLevel::High));
        assert!(matches!(RiskLevel::Critical, RiskLevel::Critical));
    }

    /// Objective: Verify PassportStatus variants
    /// Invariants: All variants should be distinct
    #[test]
    fn test_passport_status_variants() {
        let statuses = vec![
            PassportStatus::FreedByRust,
            PassportStatus::HandoverToFfi,
            PassportStatus::FreedByForeign,
            PassportStatus::ReclaimedByRust,
            PassportStatus::InForeignCustody,
            PassportStatus::Unknown,
        ];

        for status in &statuses {
            let debug_str = format!("{status:?}");
            assert!(
                !debug_str.is_empty(),
                "Status should have debug representation"
            );
        }
    }

    /// Objective: Verify PassportEventType variants
    /// Invariants: All event types should be distinct
    #[test]
    fn test_passport_event_type_variants() {
        let event_types = vec![
            PassportEventType::AllocatedInRust,
            PassportEventType::HandoverToFfi,
            PassportEventType::FreedByForeign,
            PassportEventType::ReclaimedByRust,
            PassportEventType::BoundaryAccess,
            PassportEventType::OwnershipTransfer,
        ];

        for event_type in &event_types {
            let debug_str = format!("{event_type:?}");
            assert!(
                !debug_str.is_empty(),
                "Event type should have debug representation"
            );
        }
    }

    /// Objective: Verify record_passport_event for non-existent passport
    /// Invariants: Should return Ok even when passport doesn't exist
    #[test]
    fn test_record_passport_event_non_existent() {
        let analyzer = SafetyAnalyzer::default();
        let result = analyzer.record_passport_event(
            0x9999,
            PassportEventType::HandoverToFfi,
            "test_context".to_string(),
        );
        assert!(
            result.is_ok(),
            "Should return Ok even for non-existent passport"
        );

        let passports = analyzer.get_memory_passports();
        assert!(
            !passports.contains_key(&0x9999),
            "Non-existent passport should not be created"
        );
    }

    /// Objective: Verify generate_unsafe_report with allocations
    /// Invariants: Should handle allocations correctly in memory context
    #[test]
    fn test_generate_unsafe_report_with_allocations() {
        let analyzer = SafetyAnalyzer::default();
        let source = UnsafeSource::RawPointer {
            operation: "test".to_string(),
            location: "test.rs".to_string(),
        };

        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(
            result.is_ok(),
            "Should generate report with empty allocations"
        );
    }

    /// Objective: Verify generate_unsafe_report with safety violations
    /// Invariants: Should convert violations to dynamic violations
    #[test]
    fn test_generate_unsafe_report_with_violations() {
        let analyzer = SafetyAnalyzer::default();
        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };

        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(
            result.is_ok(),
            "Should generate report with empty violations"
        );

        let report_id = result.unwrap();
        let reports = analyzer.get_unsafe_reports();
        let report = reports.get(&report_id).expect("Report should exist");
        assert_eq!(
            report.dynamic_violations.len(),
            0,
            "Should have no violations when empty"
        );
    }

    /// Objective: Verify determine_final_passport_status for various scenarios
    /// Invariants: Should correctly determine passport status based on events
    #[test]
    fn test_determine_final_passport_status_scenarios() {
        let analyzer = SafetyAnalyzer::default();

        let events_handover_only = vec![PassportEvent {
            event_type: PassportEventType::HandoverToFfi,
            timestamp: 1000,
            context: "test".to_string(),
            call_stack: vec![],
            metadata: HashMap::new(),
        }];
        let status = analyzer.determine_final_passport_status(&events_handover_only);
        assert!(
            matches!(status, PassportStatus::InForeignCustody),
            "Handover without reclaim or foreign free should be InForeignCustody"
        );

        let events_reclaimed = vec![
            PassportEvent {
                event_type: PassportEventType::HandoverToFfi,
                timestamp: 1000,
                context: "test".to_string(),
                call_stack: vec![],
                metadata: HashMap::new(),
            },
            PassportEvent {
                event_type: PassportEventType::ReclaimedByRust,
                timestamp: 2000,
                context: "test".to_string(),
                call_stack: vec![],
                metadata: HashMap::new(),
            },
        ];
        let status = analyzer.determine_final_passport_status(&events_reclaimed);
        assert!(
            matches!(status, PassportStatus::ReclaimedByRust),
            "Reclaimed after handover should be ReclaimedByRust"
        );

        let events_freed_by_foreign = vec![
            PassportEvent {
                event_type: PassportEventType::HandoverToFfi,
                timestamp: 1000,
                context: "test".to_string(),
                call_stack: vec![],
                metadata: HashMap::new(),
            },
            PassportEvent {
                event_type: PassportEventType::FreedByForeign,
                timestamp: 2000,
                context: "test".to_string(),
                call_stack: vec![],
                metadata: HashMap::new(),
            },
        ];
        let status = analyzer.determine_final_passport_status(&events_freed_by_foreign);
        assert!(
            matches!(status, PassportStatus::FreedByForeign),
            "Freed by foreign should be FreedByForeign"
        );

        let events_no_handover = vec![PassportEvent {
            event_type: PassportEventType::AllocatedInRust,
            timestamp: 1000,
            context: "test".to_string(),
            call_stack: vec![],
            metadata: HashMap::new(),
        }];
        let status = analyzer.determine_final_passport_status(&events_no_handover);
        assert!(
            matches!(status, PassportStatus::FreedByRust),
            "No handover should be FreedByRust"
        );
    }

    /// Objective: Verify create_basic_risk_assessment functionality
    /// Invariants: Should create basic assessment when detailed_risk_assessment is disabled
    #[test]
    fn test_create_basic_risk_assessment() {
        let config = SafetyAnalysisConfig {
            detailed_risk_assessment: false,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);

        let source = UnsafeSource::RawPointer {
            operation: "test".to_string(),
            location: "test.rs".to_string(),
        };
        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(
            result.is_ok(),
            "Should generate report with basic assessment"
        );

        let report_id = result.unwrap();
        let reports = analyzer.get_unsafe_reports();
        let report = reports.get(&report_id).expect("Report should exist");
        assert!(
            report.risk_assessment.risk_score > 0.0,
            "Basic assessment should have risk score"
        );
    }

    /// Objective: Verify should_generate_report filtering logic
    /// Invariants: Should filter reports based on min_risk_level
    #[test]
    fn test_should_generate_report_filtering() {
        let config = SafetyAnalysisConfig {
            min_risk_level: RiskLevel::High,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);

        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };
        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(result.is_ok(), "Should return Ok even when filtered");

        let reports = analyzer.get_unsafe_reports();
        assert!(
            reports.is_empty(),
            "Report should be filtered out when below min risk level"
        );
    }

    /// Objective: Verify memory pressure level calculation
    /// Invariants: Should correctly calculate memory pressure based on allocations
    #[test]
    fn test_memory_pressure_levels() {
        let analyzer = SafetyAnalyzer::default();

        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };
        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(result.is_ok(), "Should handle empty allocations");
    }

    /// Objective: Verify passport tracking with multiple events
    /// Invariants: Should correctly track multiple passport events
    #[test]
    fn test_passport_multiple_events() {
        let analyzer = SafetyAnalyzer::default();

        analyzer
            .create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust)
            .unwrap();

        analyzer
            .record_passport_event(
                0x1000,
                PassportEventType::HandoverToFfi,
                "transfer_to_ffi".to_string(),
            )
            .unwrap();

        analyzer
            .record_passport_event(
                0x1000,
                PassportEventType::BoundaryAccess,
                "ffi_access".to_string(),
            )
            .unwrap();

        analyzer
            .record_passport_event(
                0x1000,
                PassportEventType::ReclaimedByRust,
                "reclaimed".to_string(),
            )
            .unwrap();

        let passports = analyzer.get_memory_passports();
        let passport = passports.get(&0x1000).expect("Passport should exist");
        assert_eq!(
            passport.lifecycle_events.len(),
            4,
            "Should have four events"
        );
    }

    /// Objective: Verify finalize_passports_at_shutdown with mixed statuses
    /// Invariants: Should correctly categorize passports by final status
    #[test]
    fn test_finalize_passports_mixed_statuses() {
        let analyzer = SafetyAnalyzer::default();

        analyzer
            .create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust)
            .unwrap();
        analyzer
            .record_passport_event(
                0x1000,
                PassportEventType::HandoverToFfi,
                "leaked".to_string(),
            )
            .unwrap();

        analyzer
            .create_memory_passport(0x2000, 2048, PassportEventType::AllocatedInRust)
            .unwrap();
        analyzer
            .record_passport_event(
                0x2000,
                PassportEventType::FreedByForeign,
                "freed".to_string(),
            )
            .unwrap();

        let leaks = analyzer.finalize_passports_at_shutdown();
        assert_eq!(leaks.len(), 1, "Should detect one leak");

        let stats = analyzer.get_stats();
        assert!(
            stats.passports_by_status.contains_key("InForeignCustody"),
            "Stats should include InForeignCustody status"
        );
        assert!(
            stats.passports_by_status.contains_key("FreedByForeign"),
            "Stats should include FreedByForeign status"
        );
    }

    /// Objective: Verify enable_dynamic_violations configuration
    /// Invariants: Should respect dynamic_violations config setting
    #[test]
    fn test_enable_dynamic_violations_config() {
        let config = SafetyAnalysisConfig {
            enable_dynamic_violations: false,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);

        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };
        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(
            result.is_ok(),
            "Should generate report with dynamic violations disabled"
        );
    }

    /// Objective: Verify all UnsafeSource variants generate unique report IDs
    /// Invariants: Each source type should generate distinct report ID prefix
    #[test]
    fn test_all_unsafe_source_variants() {
        let analyzer = SafetyAnalyzer::default();

        let sources = vec![
            UnsafeSource::UnsafeBlock {
                location: "test.rs".to_string(),
                function: "test".to_string(),
                file_path: None,
                line_number: None,
            },
            UnsafeSource::FfiFunction {
                library: "libc".to_string(),
                function: "malloc".to_string(),
                call_site: "test.rs".to_string(),
            },
            UnsafeSource::RawPointer {
                operation: "test".to_string(),
                location: "test.rs".to_string(),
            },
            UnsafeSource::Transmute {
                from_type: "u8".to_string(),
                to_type: "i8".to_string(),
                location: "test.rs".to_string(),
            },
        ];

        let mut report_ids = Vec::new();
        for source in sources {
            let result = analyzer.generate_unsafe_report(source, &[], &[]);
            assert!(
                result.is_ok(),
                "Should generate report for all source types"
            );
            report_ids.push(result.unwrap());
        }

        assert_eq!(report_ids.len(), 4, "Should have generated 4 reports");
    }

    /// Objective: Verify determine_final_passport_status with conflicting events
    /// Invariants: Should handle reclaim + foreign_free scenario correctly
    #[test]
    fn test_determine_final_passport_status_conflicting_events() {
        let analyzer = SafetyAnalyzer::default();

        let events_conflict = vec![
            PassportEvent {
                event_type: PassportEventType::HandoverToFfi,
                timestamp: 1000,
                context: "test".to_string(),
                call_stack: vec![],
                metadata: HashMap::new(),
            },
            PassportEvent {
                event_type: PassportEventType::ReclaimedByRust,
                timestamp: 2000,
                context: "test".to_string(),
                call_stack: vec![],
                metadata: HashMap::new(),
            },
            PassportEvent {
                event_type: PassportEventType::FreedByForeign,
                timestamp: 3000,
                context: "test".to_string(),
                call_stack: vec![],
                metadata: HashMap::new(),
            },
        ];
        let status = analyzer.determine_final_passport_status(&events_conflict);
        assert!(
            matches!(status, PassportStatus::FreedByForeign),
            "When both reclaim and foreign_free exist, should prioritize foreign_free"
        );
    }

    /// Objective: Verify passport creation with zero size
    /// Invariants: Should handle zero size allocation gracefully
    #[test]
    fn test_create_memory_passport_zero_size() {
        let analyzer = SafetyAnalyzer::default();
        let result = analyzer.create_memory_passport(0x1000, 0, PassportEventType::AllocatedInRust);
        assert!(result.is_ok(), "Should create passport with zero size");

        let passports = analyzer.get_memory_passports();
        let passport = passports.get(&0x1000).expect("Passport should exist");
        assert_eq!(passport.size_bytes, 0, "Passport should have zero size");
    }

    /// Objective: Verify passport creation with null pointer
    /// Invariants: Should handle null pointer (0x0) allocation
    #[test]
    fn test_create_memory_passport_null_pointer() {
        let analyzer = SafetyAnalyzer::default();
        let result = analyzer.create_memory_passport(0x0, 1024, PassportEventType::AllocatedInRust);
        assert!(result.is_ok(), "Should create passport with null pointer");

        let passports = analyzer.get_memory_passports();
        assert!(
            passports.contains_key(&0x0),
            "Passport with null pointer should exist"
        );
    }

    /// Objective: Verify multiple passports with same pointer (potential bug)
    /// Invariants: Should overwrite previous passport with same pointer
    #[test]
    fn test_create_memory_passport_duplicate_pointer() {
        let analyzer = SafetyAnalyzer::default();

        analyzer
            .create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust)
            .unwrap();

        analyzer
            .create_memory_passport(0x1000, 2048, PassportEventType::AllocatedInRust)
            .unwrap();

        let passports = analyzer.get_memory_passports();
        assert_eq!(
            passports.len(),
            1,
            "Duplicate pointer should overwrite previous passport"
        );

        let passport = passports.get(&0x1000).expect("Passport should exist");
        assert_eq!(
            passport.size_bytes, 2048,
            "Should have size from second creation"
        );

        let stats = analyzer.get_stats();
        assert_eq!(
            stats.total_passports, 2,
            "Stats should count both creation attempts"
        );
    }

    /// Objective: Verify max_reports limit with exact boundary
    /// Invariants: Should handle exactly max_reports count
    #[test]
    fn test_max_reports_exact_boundary() {
        let config = SafetyAnalysisConfig {
            max_reports: 3,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);
        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };

        for _ in 0..3 {
            analyzer
                .generate_unsafe_report(source.clone(), &[], &[])
                .unwrap();
        }

        let reports = analyzer.get_unsafe_reports();
        assert_eq!(reports.len(), 3, "Should have exactly max_reports count");

        analyzer.generate_unsafe_report(source, &[], &[]).unwrap();

        let reports = analyzer.get_unsafe_reports();
        assert!(
            reports.len() <= 3,
            "Should not exceed max_reports after adding one more"
        );
    }

    /// Objective: Verify report generation with all risk levels using basic assessment
    /// Invariants: Should correctly filter based on min_risk_level when using basic assessment
    #[test]
    fn test_risk_level_filtering_comprehensive() {
        let test_cases = vec![
            (RiskLevel::Low, 4),
            (RiskLevel::Medium, 4),
            (RiskLevel::High, 2),
            (RiskLevel::Critical, 0),
        ];

        for (min_level, expected_count) in test_cases {
            let config = SafetyAnalysisConfig {
                min_risk_level: min_level.clone(),
                detailed_risk_assessment: false,
                ..Default::default()
            };
            let analyzer = SafetyAnalyzer::new(config);

            let sources = vec![
                UnsafeSource::UnsafeBlock {
                    location: "test.rs".to_string(),
                    function: "test".to_string(),
                    file_path: None,
                    line_number: None,
                },
                UnsafeSource::FfiFunction {
                    library: "libc".to_string(),
                    function: "malloc".to_string(),
                    call_site: "test.rs".to_string(),
                },
                UnsafeSource::RawPointer {
                    operation: "test".to_string(),
                    location: "test.rs".to_string(),
                },
                UnsafeSource::Transmute {
                    from_type: "u8".to_string(),
                    to_type: "i8".to_string(),
                    location: "test.rs".to_string(),
                },
            ];

            for source in sources.into_iter() {
                analyzer.generate_unsafe_report(source, &[], &[]).unwrap();
            }

            let reports = analyzer.get_unsafe_reports();
            let actual_count = reports.len();

            assert_eq!(
                actual_count, expected_count,
                "For min_level {:?}, expected {} reports but got {}",
                min_level, expected_count, actual_count
            );
        }
    }

    /// Objective: Verify risk assessment engine behavior with no matching factors
    /// Invariants: Should assign Medium risk when no risk factors match (conservative approach)
    #[test]
    fn test_risk_assessment_no_matching_factors() {
        let config = SafetyAnalysisConfig {
            detailed_risk_assessment: true,
            min_risk_level: RiskLevel::Low,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);

        let source = UnsafeSource::UnsafeBlock {
            location: "safe_location.rs".to_string(),
            function: "safe_function".to_string(),
            file_path: None,
            line_number: None,
        };

        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(result.is_ok(), "Should generate report");

        let reports = analyzer.get_unsafe_reports();
        assert_eq!(reports.len(), 1, "Should have one report");

        let report = reports.values().next().expect("Report should exist");
        assert!(
            matches!(report.risk_assessment.risk_level, RiskLevel::Low),
            "Risk level should be Low when no risk factors match (empty risk factors indicate low risk)"
        );
    }

    /// Objective: Verify passport event recording with empty context
    /// Invariants: Should handle empty context string
    #[test]
    fn test_record_passport_event_empty_context() {
        let analyzer = SafetyAnalyzer::default();

        analyzer
            .create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust)
            .unwrap();

        let result =
            analyzer.record_passport_event(0x1000, PassportEventType::HandoverToFfi, String::new());
        assert!(result.is_ok(), "Should record event with empty context");

        let passports = analyzer.get_memory_passports();
        let passport = passports.get(&0x1000).expect("Passport should exist");
        assert_eq!(passport.lifecycle_events.len(), 2, "Should have two events");
    }

    /// Objective: Verify stats consistency after multiple operations
    /// Invariants: Stats should accurately reflect all operations
    #[test]
    fn test_stats_consistency() {
        let analyzer = SafetyAnalyzer::default();

        let initial_stats = analyzer.get_stats();
        assert_eq!(initial_stats.total_reports, 0);
        assert_eq!(initial_stats.total_passports, 0);

        analyzer
            .generate_unsafe_report(
                UnsafeSource::UnsafeBlock {
                    location: "test.rs".to_string(),
                    function: "test".to_string(),
                    file_path: None,
                    line_number: None,
                },
                &[],
                &[],
            )
            .unwrap();

        analyzer
            .create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust)
            .unwrap();

        let stats = analyzer.get_stats();
        assert_eq!(stats.total_reports, 1, "Should have 1 report");
        assert_eq!(stats.total_passports, 1, "Should have 1 passport");
        assert!(
            !stats.reports_by_risk_level.is_empty(),
            "Should have risk level breakdown"
        );
    }

    /// Objective: Verify passport lifecycle with all event types
    /// Invariants: Should handle all PassportEventType variants
    #[test]
    fn test_passport_lifecycle_all_event_types() {
        let analyzer = SafetyAnalyzer::default();

        analyzer
            .create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust)
            .unwrap();

        let event_types = vec![
            PassportEventType::HandoverToFfi,
            PassportEventType::BoundaryAccess,
            PassportEventType::OwnershipTransfer,
            PassportEventType::ReclaimedByRust,
        ];

        for event_type in event_types {
            let event_type_str = format!("{:?}", event_type);
            let result = analyzer.record_passport_event(0x1000, event_type, "test".to_string());
            assert!(
                result.is_ok(),
                "Should record event type {}",
                event_type_str
            );
        }

        let passports = analyzer.get_memory_passports();
        let passport = passports.get(&0x1000).expect("Passport should exist");
        assert_eq!(
            passport.lifecycle_events.len(),
            5,
            "Should have initial event plus 4 recorded events"
        );
    }

    /// Objective: Verify report ID uniqueness with rapid generation
    /// Invariants: Each report should have unique ID even when generated rapidly
    #[test]
    fn test_report_id_uniqueness() {
        let analyzer = SafetyAnalyzer::default();
        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };

        let mut report_ids = std::collections::HashSet::new();
        for _ in 0..100 {
            let report_id = analyzer
                .generate_unsafe_report(source.clone(), &[], &[])
                .unwrap();
            assert!(report_ids.insert(report_id), "Report ID should be unique");
        }

        assert_eq!(report_ids.len(), 100, "Should have 100 unique report IDs");
    }

    /// Objective: Verify finalize_passports_at_shutdown with empty state
    /// Invariants: Should handle empty passport map gracefully
    #[test]
    fn test_finalize_passports_empty_state() {
        let analyzer = SafetyAnalyzer::default();
        let leaks = analyzer.finalize_passports_at_shutdown();
        assert!(leaks.is_empty(), "Should have no leaks with empty state");

        let stats = analyzer.get_stats();
        assert!(
            stats.passports_by_status.is_empty(),
            "Should have no passport status stats"
        );
    }

    /// Objective: Verify should_generate_report for all risk level combinations
    /// Invariants: Should correctly filter based on all possible combinations
    #[test]
    fn test_should_generate_report_all_combinations() {
        let test_cases = vec![
            (RiskLevel::Low, RiskLevel::Low, true),
            (RiskLevel::Low, RiskLevel::Medium, true),
            (RiskLevel::Low, RiskLevel::High, true),
            (RiskLevel::Low, RiskLevel::Critical, true),
            (RiskLevel::Medium, RiskLevel::Low, false),
            (RiskLevel::Medium, RiskLevel::Medium, true),
            (RiskLevel::Medium, RiskLevel::High, true),
            (RiskLevel::Medium, RiskLevel::Critical, true),
            (RiskLevel::High, RiskLevel::Low, false),
            (RiskLevel::High, RiskLevel::Medium, false),
            (RiskLevel::High, RiskLevel::High, true),
            (RiskLevel::High, RiskLevel::Critical, true),
            (RiskLevel::Critical, RiskLevel::Low, false),
            (RiskLevel::Critical, RiskLevel::Medium, false),
            (RiskLevel::Critical, RiskLevel::High, false),
            (RiskLevel::Critical, RiskLevel::Critical, true),
        ];

        for (min_level, report_level, expected) in test_cases {
            let config = SafetyAnalysisConfig {
                min_risk_level: min_level.clone(),
                ..Default::default()
            };
            let analyzer = SafetyAnalyzer::new(config);
            let result = analyzer.should_generate_report(&report_level);
            assert_eq!(
                result, expected,
                "should_generate_report({:?}, {:?}) should be {}",
                min_level, report_level, expected
            );
        }
    }

    /// Objective: Verify create_basic_risk_assessment for all source types
    /// Invariants: Each source type should have appropriate risk level and score
    #[test]
    fn test_create_basic_risk_assessment_all_sources() {
        let config = SafetyAnalysisConfig {
            detailed_risk_assessment: false,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);

        let test_cases = vec![
            (
                UnsafeSource::UnsafeBlock {
                    location: "test.rs".to_string(),
                    function: "test".to_string(),
                    file_path: None,
                    line_number: None,
                },
                RiskLevel::Medium,
                50.0,
            ),
            (
                UnsafeSource::FfiFunction {
                    library: "libc".to_string(),
                    function: "malloc".to_string(),
                    call_site: "test.rs".to_string(),
                },
                RiskLevel::Medium,
                45.0,
            ),
            (
                UnsafeSource::RawPointer {
                    operation: "dereference".to_string(),
                    location: "test.rs".to_string(),
                },
                RiskLevel::High,
                70.0,
            ),
            (
                UnsafeSource::Transmute {
                    from_type: "u8".to_string(),
                    to_type: "i8".to_string(),
                    location: "test.rs".to_string(),
                },
                RiskLevel::High,
                65.0,
            ),
        ];

        for (source, expected_level, expected_score) in test_cases {
            let report_id = analyzer.generate_unsafe_report(source, &[], &[]).unwrap();
            let reports = analyzer.get_unsafe_reports();
            let report = reports.get(&report_id).expect("Report should exist");

            assert_eq!(
                report.risk_assessment.risk_level, expected_level,
                "Risk level should match for source"
            );
            assert_eq!(
                report.risk_assessment.risk_score, expected_score,
                "Risk score should match for source"
            );
        }
    }

    /// Objective: Verify report generation with multiple reports at max limit
    /// Invariants: Should correctly handle max_reports boundary
    #[test]
    fn test_max_reports_overflow() {
        let config = SafetyAnalysisConfig {
            max_reports: 5,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);
        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };

        for i in 0..10 {
            let result = analyzer.generate_unsafe_report(source.clone(), &[], &[]);
            assert!(result.is_ok(), "Should generate report {}", i);
        }

        let reports = analyzer.get_unsafe_reports();
        assert!(reports.len() <= 5, "Should not exceed max_reports limit");
    }

    /// Objective: Verify passport creation with very large pointer
    /// Invariants: Should handle large pointer values
    #[test]
    fn test_create_memory_passport_large_pointer() {
        let analyzer = SafetyAnalyzer::default();
        let large_ptr = usize::MAX;
        let result =
            analyzer.create_memory_passport(large_ptr, 1024, PassportEventType::AllocatedInRust);
        assert!(result.is_ok(), "Should create passport with large pointer");

        let passports = analyzer.get_memory_passports();
        assert!(
            passports.contains_key(&large_ptr),
            "Passport with large pointer should exist"
        );
    }

    /// Objective: Verify passport creation with very large size
    /// Invariants: Should handle large size values
    #[test]
    fn test_create_memory_passport_large_size() {
        let analyzer = SafetyAnalyzer::default();
        let large_size = usize::MAX;
        let result =
            analyzer.create_memory_passport(0x1000, large_size, PassportEventType::AllocatedInRust);
        assert!(result.is_ok(), "Should create passport with large size");

        let passports = analyzer.get_memory_passports();
        let passport = passports.get(&0x1000).expect("Passport should exist");
        assert_eq!(
            passport.size_bytes, large_size,
            "Passport should have large size"
        );
    }

    /// Objective: Verify multiple passport events in sequence
    /// Invariants: Should correctly track all events in order
    #[test]
    fn test_passport_event_sequence() {
        let analyzer = SafetyAnalyzer::default();

        analyzer
            .create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust)
            .unwrap();

        let events = vec![
            PassportEventType::BoundaryAccess,
            PassportEventType::OwnershipTransfer,
            PassportEventType::HandoverToFfi,
            PassportEventType::BoundaryAccess,
            PassportEventType::FreedByForeign,
        ];

        for event_type in events {
            analyzer
                .record_passport_event(0x1000, event_type, "test".to_string())
                .unwrap();
        }

        let passports = analyzer.get_memory_passports();
        let passport = passports.get(&0x1000).expect("Passport should exist");
        assert_eq!(
            passport.lifecycle_events.len(),
            6,
            "Should have initial event plus 5 recorded events"
        );
    }

    /// Objective: Verify generate_report_id format for all source types
    /// Invariants: Report ID should have correct prefix for each source type
    #[test]
    fn test_generate_report_id_format() {
        let analyzer = SafetyAnalyzer::default();

        let sources = vec![
            (
                UnsafeSource::UnsafeBlock {
                    location: "test.rs".to_string(),
                    function: "test".to_string(),
                    file_path: None,
                    line_number: None,
                },
                "UNSAFE-UB-",
            ),
            (
                UnsafeSource::FfiFunction {
                    library: "libc".to_string(),
                    function: "malloc".to_string(),
                    call_site: "test.rs".to_string(),
                },
                "UNSAFE-FFI-",
            ),
            (
                UnsafeSource::RawPointer {
                    operation: "test".to_string(),
                    location: "test.rs".to_string(),
                },
                "UNSAFE-PTR-",
            ),
            (
                UnsafeSource::Transmute {
                    from_type: "u8".to_string(),
                    to_type: "i8".to_string(),
                    location: "test.rs".to_string(),
                },
                "UNSAFE-TX-",
            ),
        ];

        for (source, expected_prefix) in sources {
            let report_id = analyzer.generate_unsafe_report(source, &[], &[]).unwrap();
            assert!(
                report_id.starts_with(expected_prefix),
                "Report ID should start with {}",
                expected_prefix
            );
        }
    }

    /// Objective: Verify stats update for different risk levels
    /// Invariants: Stats should correctly track reports by risk level
    #[test]
    fn test_stats_by_risk_level() {
        let analyzer = SafetyAnalyzer::default();

        let sources = vec![
            UnsafeSource::RawPointer {
                operation: "test".to_string(),
                location: "test.rs".to_string(),
            },
            UnsafeSource::Transmute {
                from_type: "u8".to_string(),
                to_type: "i8".to_string(),
                location: "test.rs".to_string(),
            },
            UnsafeSource::UnsafeBlock {
                location: "test.rs".to_string(),
                function: "test".to_string(),
                file_path: None,
                line_number: None,
            },
        ];

        for source in sources {
            analyzer.generate_unsafe_report(source, &[], &[]).unwrap();
        }

        let stats = analyzer.get_stats();
        assert_eq!(stats.total_reports, 3, "Should have 3 reports");
        assert!(
            stats.reports_by_risk_level.contains_key("Low"),
            "Should have Low risk level reports"
        );
    }

    /// Objective: Verify passport status determination for edge cases
    /// Invariants: Should correctly determine status for edge case event combinations
    #[test]
    fn test_determine_final_passport_status_edge_cases() {
        let analyzer = SafetyAnalyzer::default();

        let events_only_reclaim = vec![PassportEvent {
            event_type: PassportEventType::ReclaimedByRust,
            timestamp: 1000,
            context: "test".to_string(),
            call_stack: vec![],
            metadata: HashMap::new(),
        }];
        let status = analyzer.determine_final_passport_status(&events_only_reclaim);
        assert!(
            matches!(status, PassportStatus::ReclaimedByRust),
            "Only reclaim event should result in ReclaimedByRust"
        );

        let events_only_foreign_free = vec![PassportEvent {
            event_type: PassportEventType::FreedByForeign,
            timestamp: 1000,
            context: "test".to_string(),
            call_stack: vec![],
            metadata: HashMap::new(),
        }];
        let status = analyzer.determine_final_passport_status(&events_only_foreign_free);
        assert!(
            matches!(status, PassportStatus::FreedByForeign),
            "Only foreign free event should result in FreedByForeign"
        );
    }

    /// Objective: Verify analyzer with all config options disabled
    /// Invariants: Should handle disabled features gracefully
    #[test]
    fn test_analyzer_all_features_disabled() {
        let config = SafetyAnalysisConfig {
            detailed_risk_assessment: false,
            enable_passport_tracking: false,
            min_risk_level: RiskLevel::Low,
            max_reports: 10,
            enable_dynamic_violations: false,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);

        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };

        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(
            result.is_ok(),
            "Should generate report with all features disabled"
        );

        let passport_result =
            analyzer.create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust);
        assert!(
            passport_result.is_ok(),
            "Should return Ok when passport tracking disabled"
        );
        assert!(
            passport_result.unwrap().is_empty(),
            "Should return empty string when passport tracking disabled"
        );
    }

    /// Objective: Verify report source information preservation
    /// Invariants: Report should preserve all source information
    #[test]
    fn test_report_source_preservation() {
        let analyzer = SafetyAnalyzer::default();

        let source = UnsafeSource::UnsafeBlock {
            location: "src/test.rs:42".to_string(),
            function: "test_function".to_string(),
            file_path: Some("src/test.rs".to_string()),
            line_number: Some(42),
        };

        let report_id = analyzer.generate_unsafe_report(source, &[], &[]).unwrap();
        let reports = analyzer.get_unsafe_reports();
        let report = reports.get(&report_id).expect("Report should exist");

        match &report.source {
            UnsafeSource::UnsafeBlock {
                location,
                function,
                file_path,
                line_number,
            } => {
                assert_eq!(location, "src/test.rs:42");
                assert_eq!(function, "test_function");
                assert_eq!(file_path, &Some("src/test.rs".to_string()));
                assert_eq!(line_number, &Some(42));
            }
            _ => panic!("Report source should be UnsafeBlock"),
        }
    }

    /// Objective: Verify strict mutex handling mode returns errors
    /// Invariants: When strict_mutex_handling is enabled, mutex poison should propagate errors
    #[test]
    fn test_strict_mutex_handling_mode() {
        let config = SafetyAnalysisConfig {
            strict_mutex_handling: true,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);

        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };

        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(
            result.is_ok(),
            "Should generate report successfully in normal case"
        );

        let passport_result =
            analyzer.create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust);
        assert!(
            passport_result.is_ok(),
            "Should create passport successfully in normal case"
        );
    }

    /// Objective: Verify lenient mutex handling mode recovers gracefully
    /// Invariants: When strict_mutex_handling is disabled, mutex poison should recover data
    #[test]
    fn test_lenient_mutex_handling_mode() {
        let config = SafetyAnalysisConfig {
            strict_mutex_handling: false,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);

        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };

        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(
            result.is_ok(),
            "Should generate report successfully in lenient mode"
        );

        let passport_result =
            analyzer.create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust);
        assert!(
            passport_result.is_ok(),
            "Should create passport successfully in lenient mode"
        );
    }

    /// Objective: Verify config option for strict mutex handling
    /// Invariants: Config should correctly control mutex handling behavior
    #[test]
    fn test_mutex_handling_config_option() {
        let strict_config = SafetyAnalysisConfig {
            strict_mutex_handling: true,
            ..Default::default()
        };
        let strict_analyzer = SafetyAnalyzer::new(strict_config);
        assert!(
            strict_analyzer.config.strict_mutex_handling,
            "Strict mode should be enabled"
        );

        let lenient_config = SafetyAnalysisConfig {
            strict_mutex_handling: false,
            ..Default::default()
        };
        let lenient_analyzer = SafetyAnalyzer::new(lenient_config);
        assert!(
            !lenient_analyzer.config.strict_mutex_handling,
            "Strict mode should be disabled"
        );
    }

    /// Objective: Verify error handling in getter methods
    /// Invariants: Getter methods should handle mutex errors gracefully
    #[test]
    fn test_getter_methods_error_handling() {
        let analyzer = SafetyAnalyzer::default();

        let reports = analyzer.get_unsafe_reports();
        assert!(reports.is_empty(), "Should return empty map on success");

        let passports = analyzer.get_memory_passports();
        assert!(passports.is_empty(), "Should return empty map on success");

        let stats = analyzer.get_stats();
        assert_eq!(
            stats.total_reports, 0,
            "Should return default stats on success"
        );
    }

    /// Objective: Verify convert_safety_violations handles DoubleFree correctly
    /// Invariants: DoubleFree should convert to DynamicViolation with Critical severity
    #[test]
    fn test_convert_safety_violation_double_free() {
        use crate::core::CallStackRef;

        let analyzer = SafetyAnalyzer::default();

        let call_stack = CallStackRef::new(1, Some(1));
        let violations = vec![SafetyViolation::DoubleFree {
            first_free_stack: call_stack.clone(),
            second_free_stack: call_stack.clone(),
            timestamp: 1000,
        }];

        let source = UnsafeSource::RawPointer {
            operation: "test".to_string(),
            location: "test.rs".to_string(),
        };

        let report_id = analyzer
            .generate_unsafe_report(source, &[], &violations)
            .unwrap();
        let reports = analyzer.get_unsafe_reports();
        let report = reports.get(&report_id).expect("Report should exist");

        assert_eq!(
            report.dynamic_violations.len(),
            1,
            "Should have one dynamic violation"
        );
        let dv = &report.dynamic_violations[0];
        assert!(
            matches!(dv.violation_type, ViolationType::DoubleFree),
            "Violation type should be DoubleFree"
        );
        assert!(
            matches!(dv.severity, RiskLevel::Critical),
            "DoubleFree should have Critical severity"
        );
    }

    /// Objective: Verify convert_safety_violations handles InvalidFree correctly
    /// Invariants: InvalidFree should convert to DynamicViolation with High severity
    #[test]
    fn test_convert_safety_violation_invalid_free() {
        use crate::core::CallStackRef;

        let analyzer = SafetyAnalyzer::default();

        let call_stack = CallStackRef::new(2, Some(1));
        let violations = vec![SafetyViolation::InvalidFree {
            attempted_pointer: 0x2000,
            stack: call_stack,
            timestamp: 2000,
        }];

        let source = UnsafeSource::RawPointer {
            operation: "test".to_string(),
            location: "test.rs".to_string(),
        };

        let report_id = analyzer
            .generate_unsafe_report(source, &[], &violations)
            .unwrap();
        let reports = analyzer.get_unsafe_reports();
        let report = reports.get(&report_id).expect("Report should exist");

        let dv = &report.dynamic_violations[0];
        assert!(
            matches!(dv.violation_type, ViolationType::InvalidAccess),
            "Violation type should be InvalidAccess"
        );
        assert_eq!(
            dv.memory_address, 0x2000,
            "Memory address should match attempted pointer"
        );
        assert!(
            matches!(dv.severity, RiskLevel::High),
            "InvalidFree should have High severity"
        );
    }

    /// Objective: Verify convert_safety_violations handles PotentialLeak correctly
    /// Invariants: PotentialLeak should convert to DynamicViolation with Medium severity
    #[test]
    fn test_convert_safety_violation_potential_leak() {
        use crate::core::CallStackRef;

        let analyzer = SafetyAnalyzer::default();

        let call_stack = CallStackRef::new(3, Some(1));
        let violations = vec![SafetyViolation::PotentialLeak {
            allocation_stack: call_stack,
            allocation_timestamp: 1000,
            leak_detection_timestamp: 5000,
        }];

        let source = UnsafeSource::RawPointer {
            operation: "test".to_string(),
            location: "test.rs".to_string(),
        };

        let report_id = analyzer
            .generate_unsafe_report(source, &[], &violations)
            .unwrap();
        let reports = analyzer.get_unsafe_reports();
        let report = reports.get(&report_id).expect("Report should exist");

        let dv = &report.dynamic_violations[0];
        assert!(
            matches!(dv.violation_type, ViolationType::MemoryLeak),
            "Violation type should be MemoryLeak"
        );
        assert!(
            matches!(dv.severity, RiskLevel::Medium),
            "PotentialLeak should have Medium severity"
        );
        assert_eq!(
            dv.detected_at, 5000,
            "Detected at should match leak_detection_timestamp"
        );
    }

    /// Objective: Verify convert_safety_violations handles CrossBoundaryRisk correctly
    /// Invariants: CrossBoundaryRisk should preserve risk level from original violation
    #[test]
    fn test_convert_safety_violation_cross_boundary() {
        use crate::core::CallStackRef;

        let analyzer = SafetyAnalyzer::default();

        let call_stack = CallStackRef::new(4, Some(1));
        let violations = vec![SafetyViolation::CrossBoundaryRisk {
            risk_level: RiskLevel::High,
            description: "FFI boundary violation".to_string(),
            stack: call_stack,
        }];

        let source = UnsafeSource::FfiFunction {
            library: "libc".to_string(),
            function: "malloc".to_string(),
            call_site: "test.rs".to_string(),
        };

        let report_id = analyzer
            .generate_unsafe_report(source, &[], &violations)
            .unwrap();
        let reports = analyzer.get_unsafe_reports();
        let report = reports.get(&report_id).expect("Report should exist");

        let dv = &report.dynamic_violations[0];
        assert!(
            matches!(dv.violation_type, ViolationType::FfiBoundaryViolation),
            "Violation type should be FfiBoundaryViolation"
        );
        assert!(
            matches!(dv.severity, RiskLevel::High),
            "Severity should match original risk level"
        );
        assert_eq!(
            dv.context, "FFI boundary violation",
            "Context should match description"
        );
    }

    /// Objective: Verify convert_safety_violations handles multiple violations
    /// Invariants: All violations should be converted correctly
    #[test]
    fn test_convert_multiple_safety_violations() {
        use crate::core::CallStackRef;

        let analyzer = SafetyAnalyzer::default();

        let call_stack = CallStackRef::new(5, Some(1));
        let violations = vec![
            SafetyViolation::DoubleFree {
                first_free_stack: call_stack.clone(),
                second_free_stack: call_stack.clone(),
                timestamp: 1000,
            },
            SafetyViolation::InvalidFree {
                attempted_pointer: 0x2000,
                stack: call_stack.clone(),
                timestamp: 2000,
            },
            SafetyViolation::PotentialLeak {
                allocation_stack: call_stack,
                allocation_timestamp: 1000,
                leak_detection_timestamp: 5000,
            },
        ];

        let source = UnsafeSource::UnsafeBlock {
            location: "test.rs".to_string(),
            function: "test".to_string(),
            file_path: None,
            line_number: None,
        };

        let report_id = analyzer
            .generate_unsafe_report(source, &[], &violations)
            .unwrap();
        let reports = analyzer.get_unsafe_reports();
        let report = reports.get(&report_id).expect("Report should exist");

        assert_eq!(
            report.dynamic_violations.len(),
            3,
            "Should have three dynamic violations"
        );
    }

    /// Objective: Verify memory context creation with empty allocations
    /// Invariants: Memory context should handle empty allocations correctly
    #[test]
    fn test_create_memory_context_empty() {
        let analyzer = SafetyAnalyzer::default();

        let source = UnsafeSource::RawPointer {
            operation: "test".to_string(),
            location: "test.rs".to_string(),
        };

        let report_id = analyzer.generate_unsafe_report(source, &[], &[]).unwrap();
        let reports = analyzer.get_unsafe_reports();
        let report = reports.get(&report_id).expect("Report should exist");

        assert_eq!(
            report.memory_context.total_allocated, 0,
            "Total allocated should be 0 for empty allocations"
        );
        assert_eq!(
            report.memory_context.active_allocations, 0,
            "Active allocations should be 0 for empty allocations"
        );
    }

    /// Objective: Verify CircuitBreaker trip behavior
    /// Invariants: CircuitBreaker should trip after max_retries poison events
    #[test]
    fn test_circuit_breaker_trip_threshold() {
        let mut breaker = CircuitBreaker::default();

        assert!(!breaker.is_tripped(), "Should not be tripped initially");

        breaker.record_poison(3);
        assert_eq!(breaker.poison_count(), 1);
        assert!(!breaker.is_tripped(), "Should not trip after 1 event");

        breaker.record_poison(3);
        assert_eq!(breaker.poison_count(), 2);
        assert!(!breaker.is_tripped(), "Should not trip after 2 events");

        breaker.record_poison(3);
        assert_eq!(breaker.poison_count(), 3);
        assert!(
            breaker.is_tripped(),
            "Should trip after reaching max_retries"
        );
    }

    /// Objective: Verify CircuitBreaker reset functionality
    /// Invariants: Reset should clear all state
    #[test]
    fn test_circuit_breaker_reset() {
        let mut breaker = CircuitBreaker::default();

        breaker.record_poison(3);
        breaker.record_poison(3);
        breaker.record_poison(3);

        assert!(breaker.is_tripped(), "Should be tripped");

        breaker.reset();

        assert!(!breaker.is_tripped(), "Should not be tripped after reset");
        assert_eq!(breaker.poison_count(), 0, "Poison count should be 0");
        assert!(
            breaker.last_poison_time().is_none(),
            "Last poison time should be None"
        );
    }

    /// Objective: Verify CircuitBreaker with different max_retries values
    /// Invariants: Should respect different threshold values
    #[test]
    fn test_circuit_breaker_different_thresholds() {
        let mut breaker1 = CircuitBreaker::default();
        breaker1.record_poison(1);
        assert!(
            breaker1.is_tripped(),
            "Should trip immediately with max_retries=1"
        );

        let mut breaker5 = CircuitBreaker::default();
        for _ in 0..4 {
            breaker5.record_poison(5);
        }
        assert!(
            !breaker5.is_tripped(),
            "Should not trip before reaching threshold"
        );
        breaker5.record_poison(5);
        assert!(breaker5.is_tripped(), "Should trip at exactly max_retries");
    }

    /// Objective: Verify get_current_timestamp returns valid value
    /// Invariants: Timestamp should be positive and reasonable
    #[test]
    fn test_get_current_timestamp() {
        let ts = get_current_timestamp();
        assert!(ts > 0, "Timestamp should be positive");
        assert!(
            ts > 1700000000,
            "Timestamp should be after 2023 (reasonable value)"
        );
    }

    /// Objective: Verify get_current_timestamp_nanos returns valid value
    /// Invariants: Nanos timestamp should be greater than seconds timestamp
    #[test]
    fn test_get_current_timestamp_nanos() {
        let ts_nanos = get_current_timestamp_nanos();
        let ts_secs = get_current_timestamp();

        assert!(ts_nanos > 0, "Nanos timestamp should be positive");
        assert!(
            ts_nanos >= ts_secs as u128,
            "Nanos should be >= seconds timestamp"
        );
    }

    /// Objective: Verify record_passport_event when tracking is disabled
    /// Invariants: Should return Ok(()) immediately without modifying state
    #[test]
    fn test_record_passport_event_tracking_disabled() {
        let config = SafetyAnalysisConfig {
            enable_passport_tracking: false,
            ..Default::default()
        };
        let analyzer = SafetyAnalyzer::new(config);

        let result = analyzer.record_passport_event(
            0x1000,
            PassportEventType::HandoverToFfi,
            "test".to_string(),
        );

        assert!(result.is_ok(), "Should return Ok when tracking disabled");
    }

    /// Objective: Verify generate_unsafe_report with passport tracking enabled
    /// Invariants: Should handle passport tracking correctly
    #[test]
    fn test_generate_report_with_passport_tracking() {
        let analyzer = SafetyAnalyzer::default();

        analyzer
            .create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust)
            .unwrap();

        let source = UnsafeSource::RawPointer {
            operation: "test".to_string(),
            location: "test.rs".to_string(),
        };

        let result = analyzer.generate_unsafe_report(source, &[], &[]);
        assert!(
            result.is_ok(),
            "Should generate report with passport tracking"
        );
    }

    /// Objective: Verify SafetyAnalysisStats serialization
    /// Invariants: Stats should serialize and deserialize correctly
    #[test]
    fn test_safety_analysis_stats_serialization() {
        let stats = SafetyAnalysisStats {
            total_reports: 10,
            reports_by_risk_level: HashMap::from([("Low".to_string(), 5), ("High".to_string(), 5)]),
            total_passports: 3,
            passports_by_status: HashMap::from([("Active".to_string(), 3)]),
            dynamic_violations: 2,
            analysis_start_time: 1000,
        };

        let json = serde_json::to_string(&stats).expect("Should serialize");
        let deserialized: SafetyAnalysisStats =
            serde_json::from_str(&json).expect("Should deserialize");

        assert_eq!(deserialized.total_reports, 10, "Total reports should match");
        assert_eq!(
            deserialized.total_passports, 3,
            "Total passports should match"
        );
    }

    /// Objective: Verify SafetyAnalysisConfig clone functionality
    /// Invariants: Cloned config should have identical values
    #[test]
    fn test_safety_config_clone() {
        let config = SafetyAnalysisConfig {
            detailed_risk_assessment: false,
            enable_passport_tracking: false,
            min_risk_level: RiskLevel::High,
            max_reports: 500,
            enable_dynamic_violations: false,
            strict_mutex_handling: true,
            max_mutex_poison_retries: 5,
        };

        let cloned = config.clone();

        assert!(
            !cloned.detailed_risk_assessment,
            "Cloned detailed_risk_assessment should match"
        );
        assert!(
            !cloned.enable_passport_tracking,
            "Cloned enable_passport_tracking should match"
        );
        assert_eq!(cloned.max_reports, 500, "Cloned max_reports should match");
        assert_eq!(
            cloned.max_mutex_poison_retries, 5,
            "Cloned max_mutex_poison_retries should match"
        );
    }

    /// Objective: Verify finalize_passports_at_shutdown handles lock failure
    /// Invariants: Should return empty vec when lock fails (graceful degradation)
    #[test]
    fn test_finalize_passports_graceful_degradation() {
        let analyzer = SafetyAnalyzer::default();

        analyzer
            .create_memory_passport(0x1000, 1024, PassportEventType::AllocatedInRust)
            .unwrap();

        let leaks = analyzer.finalize_passports_at_shutdown();
        assert!(
            leaks.is_empty(),
            "Should have no leaks when passport is not in foreign custody"
        );
    }
}