rsactor 0.14.1

A Simple and Efficient In-Process Actor Model Implementation for Rust.
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
// Tests specifically designed to improve code coverage
// These tests target uncovered code paths identified by llvm-cov

use rsactor::{spawn, Actor, ActorRef, ActorWeak, Identity};
use std::time::Duration;

/// Initialize tracing subscriber for tests
/// This enables coverage of tracing-related code paths
fn init_test_logger() {
    let _ = tracing_subscriber::fmt()
        .with_max_level(tracing::Level::DEBUG)
        .with_test_writer()
        .try_init();
}

// ============================================================================
// Tests for default on_run and on_stop implementations
// ============================================================================

/// Test actor that uses the default on_run implementation
/// The default on_run sleeps for 1 second and returns Ok(())
mod default_lifecycle_tests {
    use super::*;

    #[derive(Actor)]
    struct DefaultLifecycleActor {
        #[allow(dead_code)]
        on_run_started: std::sync::Arc<std::sync::atomic::AtomicBool>,
    }

    struct Ping;

    #[rsactor::message_handlers]
    impl DefaultLifecycleActor {
        #[handler]
        async fn handle(&mut self, _: Ping, _: &ActorRef<Self>) -> String {
            "pong".to_string()
        }
    }

    #[tokio::test]
    async fn test_default_on_run_executes() {
        init_test_logger();
        // This test verifies that the default on_run implementation is called
        // by letting the actor run for a bit longer than the 1-second sleep
        let (actor_ref, handle) = spawn::<DefaultLifecycleActor>(DefaultLifecycleActor {
            on_run_started: std::sync::Arc::new(std::sync::atomic::AtomicBool::new(false)),
        });

        // Wait a bit to let on_run execute at least once
        tokio::time::sleep(Duration::from_millis(100)).await;

        // Send a message to verify the actor is still working
        let response: String = actor_ref.ask(Ping).await.unwrap();
        assert_eq!(response, "pong");

        // Stop the actor gracefully - this triggers the default on_stop
        actor_ref.stop().await.unwrap();
        let result = handle.await.unwrap();
        assert!(result.is_completed());
    }

    #[tokio::test]
    async fn test_default_on_stop_via_kill() {
        init_test_logger();
        // Test that default on_stop is called when actor is killed
        let (actor_ref, handle) = spawn::<DefaultLifecycleActor>(DefaultLifecycleActor {
            on_run_started: std::sync::Arc::new(std::sync::atomic::AtomicBool::new(false)),
        });

        // Give the actor a moment to start
        tokio::time::sleep(Duration::from_millis(50)).await;

        // Kill triggers on_stop with killed=true
        actor_ref.kill().unwrap();
        let result = handle.await.unwrap();
        assert!(result.is_completed());
        assert!(result.was_killed());
    }

    #[tokio::test]
    async fn test_default_on_stop_via_graceful_stop() {
        init_test_logger();
        // Test that default on_stop is called on graceful stop
        let (actor_ref, handle) = spawn::<DefaultLifecycleActor>(DefaultLifecycleActor {
            on_run_started: std::sync::Arc::new(std::sync::atomic::AtomicBool::new(false)),
        });

        // Graceful stop triggers on_stop with killed=false
        actor_ref.stop().await.unwrap();
        let result = handle.await.unwrap();
        assert!(result.is_completed());
        assert!(!result.was_killed());
    }
}

// ============================================================================
// Tests for ActorWeak::is_alive method
// ============================================================================

mod actor_weak_tests {
    use super::*;

    #[derive(Actor)]
    struct SimpleActor;

    struct GetId;

    #[rsactor::message_handlers]
    impl SimpleActor {
        #[handler]
        async fn handle(&mut self, _: GetId, actor_ref: &ActorRef<Self>) -> Identity {
            actor_ref.identity()
        }
    }

    #[tokio::test]
    async fn test_actor_weak_is_alive_while_running() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<SimpleActor>(SimpleActor);
        let weak = ActorRef::downgrade(&actor_ref);

        // Actor should be alive
        assert!(weak.is_alive());

        // Verify identity is accessible from weak ref
        assert_eq!(weak.identity(), actor_ref.identity());

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_actor_weak_is_alive_after_stop() {
        let (actor_ref, handle) = spawn::<SimpleActor>(SimpleActor);
        let weak = ActorRef::downgrade(&actor_ref);

        assert!(weak.is_alive());

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();

        // After stop, the weak reference should no longer be upgradeable
        // (depending on when the channels are closed)
        // is_alive() may return false after stop
    }

    #[tokio::test]
    async fn test_actor_weak_upgrade_returns_none_after_all_refs_dropped() {
        let (actor_ref, handle) = spawn::<SimpleActor>(SimpleActor);
        let weak = ActorRef::downgrade(&actor_ref);

        // Drop all strong references
        drop(actor_ref);

        // Wait for the actor to stop
        handle.await.unwrap();

        // After all strong references are dropped, upgrade should return None
        assert!(weak.upgrade().is_none());
    }
}

// ============================================================================
// Tests for ActorRef cloning and identity
// ============================================================================

mod actor_ref_clone_tests {
    use super::*;

    #[derive(Actor)]
    struct CloneTestActor;

    struct GetIdentity;

    #[rsactor::message_handlers]
    impl CloneTestActor {
        #[handler]
        async fn handle(&mut self, _: GetIdentity, actor_ref: &ActorRef<Self>) -> Identity {
            actor_ref.identity()
        }
    }

    #[tokio::test]
    async fn test_actor_ref_clone_preserves_identity() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<CloneTestActor>(CloneTestActor);

        // Clone the actor ref
        let cloned_ref = actor_ref.clone();

        // Both should have the same identity
        assert_eq!(actor_ref.identity(), cloned_ref.identity());

        // Both should be able to communicate with the actor
        let id1: Identity = actor_ref.ask(GetIdentity).await.unwrap();
        let id2: Identity = cloned_ref.ask(GetIdentity).await.unwrap();
        assert_eq!(id1, id2);

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_actor_ref_is_alive() {
        let (actor_ref, handle) = spawn::<CloneTestActor>(CloneTestActor);

        // Actor should be alive initially
        assert!(actor_ref.is_alive());

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();

        // After stop and join, is_alive might still return true
        // because is_alive checks channel state, not actor state
    }
}

// ============================================================================
// Tests for ActorWeak cloning
// ============================================================================

mod weak_clone_tests {
    use super::*;

    #[derive(Actor)]
    struct WeakCloneActor;

    struct Echo(String);

    #[rsactor::message_handlers]
    impl WeakCloneActor {
        #[handler]
        async fn handle(&mut self, msg: Echo, _: &ActorRef<Self>) -> String {
            msg.0
        }
    }

    #[tokio::test]
    async fn test_actor_weak_clone() {
        let (actor_ref, handle) = spawn::<WeakCloneActor>(WeakCloneActor);
        let weak1 = ActorRef::downgrade(&actor_ref);
        let weak2 = weak1.clone();

        // Both weak references should have the same identity
        assert_eq!(weak1.identity(), weak2.identity());

        // Both should be upgradeable
        let strong1 = weak1.upgrade().expect("weak1 should upgrade");
        let strong2 = weak2.upgrade().expect("weak2 should upgrade");

        assert_eq!(strong1.identity(), strong2.identity());

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }
}

// ============================================================================
// Tests for tell_with_timeout edge cases
// ============================================================================

mod timeout_tests {
    use super::*;
    use rsactor::Error;

    #[derive(Actor)]
    struct SlowActor;

    struct SlowMessage;

    #[rsactor::message_handlers]
    impl SlowActor {
        #[handler]
        async fn handle(&mut self, _: SlowMessage, _: &ActorRef<Self>) {
            // This handler is intentionally slow
            tokio::time::sleep(Duration::from_secs(10)).await;
        }
    }

    #[tokio::test]
    async fn test_tell_with_very_short_timeout_to_stopped_actor() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<SlowActor>(SlowActor);

        // Stop the actor immediately
        actor_ref.stop().await.unwrap();
        handle.await.unwrap();

        // Try to send with timeout to stopped actor
        let result = actor_ref
            .tell_with_timeout(SlowMessage, Duration::from_millis(1))
            .await;

        // Should fail because actor is stopped (Send error, not Timeout)
        assert!(result.is_err());
        match result.unwrap_err() {
            Error::Send { .. } => {}    // Expected
            Error::Timeout { .. } => {} // Also acceptable
            e => panic!("Unexpected error type: {:?}", e),
        }
    }
}

// ============================================================================
// Tests for actor lifecycle with custom on_run returning error
// ============================================================================

mod on_run_error_tests {
    use super::*;

    struct FailingOnRunActor {
        fail_count: u32,
    }

    impl Actor for FailingOnRunActor {
        type Args = u32; // Number of times to succeed before failing
        type Error = String;

        async fn on_start(
            args: Self::Args,
            _actor_ref: &ActorRef<Self>,
        ) -> Result<Self, Self::Error> {
            Ok(Self { fail_count: args })
        }

        async fn on_run(&mut self, _actor_weak: &ActorWeak<Self>) -> Result<bool, Self::Error> {
            if self.fail_count > 0 {
                self.fail_count -= 1;
                // Use a short sleep to yield control
                tokio::time::sleep(Duration::from_millis(10)).await;
                Ok(true)
            } else {
                Err("Intentional on_run failure".to_string())
            }
        }
    }

    #[tokio::test]
    async fn test_on_run_error_terminates_actor() {
        init_test_logger();
        // Actor will succeed 2 times then fail
        let (actor_ref, handle) = spawn::<FailingOnRunActor>(2);

        // Wait for the actor to fail
        let result = handle.await.unwrap();

        assert!(result.is_failed());
        assert!(result.is_runtime_failed());

        // Verify the error message
        let error = result.error().unwrap();
        assert_eq!(error, "Intentional on_run failure");

        // The actor_ref should no longer be alive
        assert!(!actor_ref.is_alive());
    }

    // Actor that fails in both on_run and on_stop
    struct FailingOnRunAndOnStopActor {
        fail_count: u32,
    }

    impl Actor for FailingOnRunAndOnStopActor {
        type Args = u32;
        type Error = String;

        async fn on_start(
            args: Self::Args,
            _actor_ref: &ActorRef<Self>,
        ) -> Result<Self, Self::Error> {
            Ok(Self { fail_count: args })
        }

        async fn on_run(&mut self, _actor_weak: &ActorWeak<Self>) -> Result<bool, Self::Error> {
            if self.fail_count > 0 {
                self.fail_count -= 1;
                tokio::time::sleep(Duration::from_millis(10)).await;
                Ok(true)
            } else {
                Err("Intentional on_run failure".to_string())
            }
        }

        async fn on_stop(
            &mut self,
            _actor_weak: &ActorWeak<Self>,
            _killed: bool,
        ) -> Result<(), Self::Error> {
            // This error is logged but not propagated (on_run error takes precedence)
            Err("Intentional on_stop failure during on_run cleanup".to_string())
        }
    }

    #[tokio::test]
    async fn test_on_run_error_with_on_stop_also_failing() {
        init_test_logger();
        // Actor will succeed 1 time then fail in on_run, and on_stop will also fail
        let (actor_ref, handle) = spawn::<FailingOnRunAndOnStopActor>(1);

        // Wait for the actor to fail
        let result = handle.await.unwrap();

        assert!(result.is_failed());
        assert!(result.is_runtime_failed());

        // The error should be from on_run (on_stop error is only logged)
        let error = result.error().unwrap();
        assert_eq!(error, "Intentional on_run failure");

        // Phase should be OnRunThenOnStop since both on_run and on_stop failed
        match &result {
            rsactor::ActorResult::Failed { phase, .. } => {
                assert_eq!(*phase, rsactor::FailurePhase::OnRunThenOnStop);
            }
            _ => panic!("Expected Failed result"),
        }

        // is_cleanup_failed should be true
        assert!(result.is_cleanup_failed());

        assert!(!actor_ref.is_alive());
    }
}

// ============================================================================
// Tests for actor lifecycle with custom on_stop returning error
// ============================================================================

mod on_stop_error_tests {
    use super::*;

    struct FailingOnStopActor;

    impl Actor for FailingOnStopActor {
        type Args = ();
        type Error = String;

        async fn on_start(_: Self::Args, _: &ActorRef<Self>) -> Result<Self, Self::Error> {
            Ok(Self)
        }

        async fn on_stop(
            &mut self,
            _actor_weak: &ActorWeak<Self>,
            _killed: bool,
        ) -> Result<(), Self::Error> {
            Err("Intentional on_stop failure".to_string())
        }
    }

    struct Ping;

    #[rsactor::message_handlers]
    impl FailingOnStopActor {
        #[handler]
        async fn handle(&mut self, _: Ping, _: &ActorRef<Self>) -> String {
            "pong".to_string()
        }
    }

    #[tokio::test]
    async fn test_on_stop_error_on_graceful_stop() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<FailingOnStopActor>(());

        // Verify the actor works
        let response: String = actor_ref.ask(Ping).await.unwrap();
        assert_eq!(response, "pong");

        // Stop the actor - this will trigger on_stop which fails
        actor_ref.stop().await.unwrap();
        let result = handle.await.unwrap();

        assert!(result.is_failed());
        assert!(result.is_stop_failed());

        let error = result.error().unwrap();
        assert_eq!(error, "Intentional on_stop failure");
    }

    #[tokio::test]
    async fn test_on_stop_error_on_kill() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<FailingOnStopActor>(());

        // Kill the actor - this will trigger on_stop which fails
        actor_ref.kill().unwrap();
        let result = handle.await.unwrap();

        assert!(result.is_failed());
        assert!(result.is_stop_failed());
        assert!(result.was_killed());
    }
}

// ============================================================================
// Tests for actor lifecycle with on_start error
// ============================================================================

mod on_start_error_tests {
    use super::*;

    struct FailingOnStartActor;

    impl Actor for FailingOnStartActor {
        type Args = bool; // true = succeed, false = fail
        type Error = String;

        async fn on_start(succeed: Self::Args, _: &ActorRef<Self>) -> Result<Self, Self::Error> {
            if succeed {
                Ok(Self)
            } else {
                Err("Intentional on_start failure".to_string())
            }
        }
    }

    #[tokio::test]
    async fn test_on_start_error() {
        init_test_logger();
        let (_actor_ref, handle) = spawn::<FailingOnStartActor>(false);

        let result = handle.await.unwrap();

        assert!(result.is_failed());
        assert!(result.is_startup_failed());

        // Actor instance should not be available for on_start failures
        assert!(!result.has_actor());

        let error = result.error().unwrap();
        assert_eq!(error, "Intentional on_start failure");
    }
}

// ============================================================================
// Tests for dead letter scenarios
// ============================================================================

mod dead_letter_tests {
    use super::*;

    #[derive(Actor)]
    struct DeadLetterActor;

    struct TestMessage;

    #[rsactor::message_handlers]
    impl DeadLetterActor {
        #[handler]
        async fn handle(&mut self, _: TestMessage, _: &ActorRef<Self>) -> String {
            "response".to_string()
        }
    }

    #[tokio::test]
    async fn test_tell_to_stopped_actor_records_dead_letter() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<DeadLetterActor>(DeadLetterActor);

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();

        // Try to tell a stopped actor
        let result = actor_ref.tell(TestMessage).await;
        assert!(result.is_err());
    }

    #[tokio::test]
    async fn test_ask_to_stopped_actor_records_dead_letter() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<DeadLetterActor>(DeadLetterActor);

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();

        // Try to ask a stopped actor
        let result: rsactor::Result<String> = actor_ref.ask(TestMessage).await;
        assert!(result.is_err());
    }
}

// ============================================================================
// Tests for actor termination via all refs dropped
// ============================================================================

mod ref_drop_termination_tests {
    use super::*;

    #[derive(Actor)]
    struct RefDropActor {
        #[allow(dead_code)]
        stopped: std::sync::Arc<std::sync::atomic::AtomicBool>,
    }

    struct IsRunning;

    #[rsactor::message_handlers]
    impl RefDropActor {
        #[handler]
        async fn handle(&mut self, _: IsRunning, _: &ActorRef<Self>) -> bool {
            true
        }
    }

    #[tokio::test]
    async fn test_actor_terminates_when_all_refs_dropped() {
        init_test_logger();
        let stopped = std::sync::Arc::new(std::sync::atomic::AtomicBool::new(false));

        let (actor_ref, handle) = spawn::<RefDropActor>(RefDropActor {
            stopped: stopped.clone(),
        });

        // Verify actor is running
        let running: bool = actor_ref.ask(IsRunning).await.unwrap();
        assert!(running);

        // Drop all strong references
        drop(actor_ref);

        // The actor should terminate
        let result = handle.await.unwrap();
        assert!(result.is_completed());
        assert!(!result.was_killed()); // terminated due to ref drop, not kill
    }
}

// ============================================================================
// Tests for Identity methods (lib.rs coverage)
// ============================================================================

mod identity_tests {
    use super::*;

    #[test]
    fn test_identity_name_method() {
        let identity = Identity::new(42, "TestActor");

        // Test the name() method
        assert_eq!(identity.name(), "TestActor");

        // Test Display implementation (includes ID)
        let display = format!("{}", identity);
        assert_eq!(display, "TestActor(#42)");

        // Test id field
        assert_eq!(identity.id, 42);
    }

    #[test]
    fn test_identity_equality() {
        let id1 = Identity::new(1, "Actor");
        let id2 = Identity::new(1, "Actor");
        let id3 = Identity::new(2, "Actor");

        assert_eq!(id1, id2);
        assert_ne!(id1, id3);
    }
}

// ============================================================================
// Tests for ActorResult From conversion (actor_result.rs coverage)
// ============================================================================

mod actor_result_from_tests {
    use super::*;

    #[derive(Actor)]
    struct FromTestActor {
        value: i32,
    }

    #[tokio::test]
    async fn test_actor_result_into_tuple_completed() {
        let (actor_ref, handle) = spawn::<FromTestActor>(FromTestActor { value: 42 });

        actor_ref.stop().await.unwrap();
        let result = handle.await.unwrap();

        // Convert ActorResult to tuple
        let (maybe_actor, maybe_error): (Option<FromTestActor>, Option<std::convert::Infallible>) =
            result.into();

        assert!(maybe_actor.is_some(), "Completed result should have actor");
        assert!(
            maybe_error.is_none(),
            "Completed result should have no error"
        );
        assert_eq!(maybe_actor.unwrap().value, 42);
    }

    #[tokio::test]
    async fn test_actor_result_into_tuple_failed_with_actor() {
        // Create an actor that fails in on_stop (will have actor)
        struct FailOnStopActor {
            value: i32,
        }

        impl Actor for FailOnStopActor {
            type Args = i32;
            type Error = String;

            async fn on_start(args: Self::Args, _: &ActorRef<Self>) -> Result<Self, Self::Error> {
                Ok(Self { value: args })
            }

            async fn on_stop(&mut self, _: &ActorWeak<Self>, _: bool) -> Result<(), Self::Error> {
                Err("on_stop error".to_string())
            }
        }

        let (actor_ref, handle) = spawn::<FailOnStopActor>(100);

        actor_ref.stop().await.unwrap();
        let result = handle.await.unwrap();

        assert!(result.is_failed());

        // Convert to tuple
        let (maybe_actor, maybe_error): (Option<FailOnStopActor>, Option<String>) = result.into();

        assert!(maybe_actor.is_some(), "Failed with actor should have actor");
        assert!(maybe_error.is_some(), "Failed result should have error");
        assert_eq!(maybe_actor.unwrap().value, 100);
        assert_eq!(maybe_error.unwrap(), "on_stop error");
    }

    #[tokio::test]
    async fn test_actor_result_into_tuple_failed_without_actor() {
        // Create an actor that fails in on_start (won't have actor)
        struct FailOnStartActor;

        impl Actor for FailOnStartActor {
            type Args = ();
            type Error = String;

            async fn on_start(_: Self::Args, _: &ActorRef<Self>) -> Result<Self, Self::Error> {
                Err("on_start error".to_string())
            }
        }

        let (_, handle) = spawn::<FailOnStartActor>(());
        let result = handle.await.unwrap();

        assert!(result.is_failed());
        assert!(result.is_startup_failed());

        // Convert to tuple
        let (maybe_actor, maybe_error): (Option<FailOnStartActor>, Option<String>) = result.into();

        assert!(
            maybe_actor.is_none(),
            "Failed on_start should have no actor"
        );
        assert!(maybe_error.is_some(), "Failed result should have error");
        assert_eq!(maybe_error.unwrap(), "on_start error");
    }
}

// ============================================================================
// Tests for set_default_mailbox_capacity error (lib.rs coverage)
// ============================================================================

mod mailbox_capacity_tests {
    // Note: Can't easily test "already set" case since global state
    // But we can test the zero capacity error case
    #[test]
    fn test_set_default_mailbox_capacity_zero_fails() {
        let result = rsactor::set_default_mailbox_capacity(0);
        assert!(result.is_err(), "Setting capacity to 0 should fail");

        match result.unwrap_err() {
            rsactor::Error::MailboxCapacity { message } => {
                assert!(message.contains("greater than 0"));
            }
            _ => panic!("Expected MailboxCapacity error"),
        }
    }
}

// ============================================================================
// Tests for blocking methods with timeout (actor_ref.rs coverage)
// ============================================================================

mod blocking_timeout_tests {
    use super::*;

    #[derive(Actor)]
    struct BlockingTimeoutActor;

    struct SlowMessage;
    struct FastMessage;

    #[rsactor::message_handlers]
    impl BlockingTimeoutActor {
        #[handler]
        async fn handle_slow(&mut self, _: SlowMessage, _: &ActorRef<Self>) -> String {
            tokio::time::sleep(Duration::from_secs(10)).await;
            "slow done".to_string()
        }

        #[handler]
        async fn handle_fast(&mut self, _: FastMessage, _: &ActorRef<Self>) -> String {
            "fast done".to_string()
        }
    }

    #[tokio::test]
    async fn test_blocking_tell_with_timeout_success() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<BlockingTimeoutActor>(BlockingTimeoutActor);

        let actor_clone = actor_ref.clone();

        // blocking_tell with timeout that succeeds
        let result = tokio::task::spawn_blocking(move || {
            actor_clone.blocking_tell(FastMessage, Some(Duration::from_secs(5)))
        })
        .await
        .unwrap();

        assert!(
            result.is_ok(),
            "blocking_tell with timeout should succeed for fast message"
        );

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_blocking_ask_with_timeout_success() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<BlockingTimeoutActor>(BlockingTimeoutActor);

        let actor_clone = actor_ref.clone();

        // blocking_ask with timeout that succeeds
        let result: Result<String, _> = tokio::task::spawn_blocking(move || {
            actor_clone.blocking_ask(FastMessage, Some(Duration::from_secs(5)))
        })
        .await
        .unwrap();

        assert!(result.is_ok(), "blocking_ask with timeout should succeed");
        assert_eq!(result.unwrap(), "fast done");

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_blocking_tell_with_timeout_expired() {
        init_test_logger();

        // Create actor with small mailbox that we can fill
        let (actor_ref, handle) =
            rsactor::spawn_with_mailbox_capacity::<BlockingTimeoutActor>(BlockingTimeoutActor, 1);

        // Fill the mailbox with a slow message
        let _ = actor_ref.tell(SlowMessage).await;

        let actor_clone = actor_ref.clone();

        // Now blocking_tell with very short timeout should timeout
        let result = tokio::task::spawn_blocking(move || {
            actor_clone.blocking_tell(FastMessage, Some(Duration::from_millis(10)))
        })
        .await
        .unwrap();

        // Either timeout or success is acceptable (race condition)
        // The key is covering the timeout code path
        let _ = result; // just making sure it executed

        actor_ref.kill().unwrap();
        let _ = handle.await;
    }

    #[tokio::test]
    async fn test_blocking_ask_with_timeout_expired() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<BlockingTimeoutActor>(BlockingTimeoutActor);

        let actor_clone = actor_ref.clone();

        // blocking_ask with timeout that expires (slow message)
        let result: Result<String, _> = tokio::task::spawn_blocking(move || {
            actor_clone.blocking_ask(SlowMessage, Some(Duration::from_millis(10)))
        })
        .await
        .unwrap();

        assert!(
            result.is_err(),
            "blocking_ask should timeout on slow message"
        );

        actor_ref.kill().unwrap();
        let _ = handle.await;
    }

    #[tokio::test]
    async fn test_blocking_tell_with_timeout_to_stopped_actor() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<BlockingTimeoutActor>(BlockingTimeoutActor);

        // Stop the actor first
        actor_ref.stop().await.unwrap();
        handle.await.unwrap();

        let actor_clone = actor_ref.clone();

        // Now try blocking_tell with timeout to stopped actor
        let result = tokio::task::spawn_blocking(move || {
            actor_clone.blocking_tell(FastMessage, Some(Duration::from_millis(100)))
        })
        .await
        .unwrap();

        assert!(
            result.is_err(),
            "blocking_tell to stopped actor should fail"
        );
    }

    #[tokio::test]
    async fn test_blocking_ask_with_timeout_to_stopped_actor() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<BlockingTimeoutActor>(BlockingTimeoutActor);

        // Stop the actor first
        actor_ref.stop().await.unwrap();
        handle.await.unwrap();

        let actor_clone = actor_ref.clone();

        // Now try blocking_ask with timeout to stopped actor
        let result: Result<String, _> = tokio::task::spawn_blocking(move || {
            actor_clone.blocking_ask(FastMessage, Some(Duration::from_millis(100)))
        })
        .await
        .unwrap();

        assert!(result.is_err(), "blocking_ask to stopped actor should fail");
    }
}

// ============================================================================
// Tests for more actor_result.rs methods coverage
// ============================================================================

// ============================================================================
// Tests for tracing feature (actor.rs coverage when tracing is enabled)
// ============================================================================

#[cfg(feature = "tracing")]
mod tracing_coverage_tests {
    use super::*;

    #[derive(Actor)]
    struct TracingTestActor;

    struct TracingPing;
    struct TracingSlowPing;

    #[rsactor::message_handlers]
    impl TracingTestActor {
        #[handler]
        async fn handle_ping(&mut self, _: TracingPing, _: &ActorRef<Self>) -> String {
            "pong".to_string()
        }

        #[handler]
        async fn handle_slow(&mut self, _: TracingSlowPing, _: &ActorRef<Self>) -> String {
            tokio::time::sleep(Duration::from_millis(50)).await;
            "slow pong".to_string()
        }
    }

    #[tokio::test]
    async fn test_actor_with_tracing_enabled() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<TracingTestActor>(TracingTestActor);

        // Send messages to trigger tracing code paths
        let response: String = actor_ref.ask(TracingPing).await.unwrap();
        assert_eq!(response, "pong");

        // Slow message to test timing traces
        let slow_response: String = actor_ref.ask(TracingSlowPing).await.unwrap();
        assert_eq!(slow_response, "slow pong");

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_tell_with_tracing() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<TracingTestActor>(TracingTestActor);

        // tell() with tracing
        actor_ref.tell(TracingPing).await.unwrap();

        // tell_with_timeout() with tracing
        actor_ref
            .tell_with_timeout(TracingPing, Duration::from_secs(1))
            .await
            .unwrap();

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_ask_with_timeout_tracing() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<TracingTestActor>(TracingTestActor);

        // ask_with_timeout() success path
        let response: String = actor_ref
            .ask_with_timeout(TracingPing, Duration::from_secs(5))
            .await
            .unwrap();
        assert_eq!(response, "pong");

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_kill_with_tracing() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<TracingTestActor>(TracingTestActor);

        // Test kill() with tracing
        actor_ref.kill().unwrap();
        let result = handle.await.unwrap();
        assert!(result.was_killed());
    }

    #[tokio::test]
    async fn test_stop_with_tracing() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<TracingTestActor>(TracingTestActor);

        // Test stop() with tracing
        actor_ref.stop().await.unwrap();
        let result = handle.await.unwrap();
        assert!(!result.was_killed());
    }
}

mod actor_result_methods_tests {
    use super::*;

    #[derive(Actor)]
    struct MethodsTestActor {
        data: String,
    }

    #[tokio::test]
    async fn test_actor_result_to_result_completed() {
        let (actor_ref, handle) = spawn::<MethodsTestActor>(MethodsTestActor {
            data: "test".to_string(),
        });

        actor_ref.stop().await.unwrap();
        let result = handle.await.unwrap();

        // Use to_result() for conversion
        let std_result = result.to_result();
        assert!(std_result.is_ok());
        assert_eq!(std_result.unwrap().data, "test");
    }

    #[tokio::test]
    async fn test_actor_result_to_result_failed() {
        #[derive(Debug)]
        struct FailActor;

        impl Actor for FailActor {
            type Args = ();
            type Error = String;

            async fn on_start(_: (), _: &ActorRef<Self>) -> Result<Self, String> {
                Err("failed".to_string())
            }
        }

        let (_, handle) = spawn::<FailActor>(());
        let result = handle.await.unwrap();

        // Use to_result() for conversion
        let std_result = result.to_result();
        assert!(std_result.is_err());
        assert_eq!(std_result.unwrap_err(), "failed");
    }

    #[tokio::test]
    async fn test_actor_result_into_actor_completed() {
        let (actor_ref, handle) = spawn::<MethodsTestActor>(MethodsTestActor {
            data: "into_actor_test".to_string(),
        });

        actor_ref.stop().await.unwrap();
        let result = handle.await.unwrap();

        let maybe_actor = result.into_actor();
        assert!(maybe_actor.is_some());
        assert_eq!(maybe_actor.unwrap().data, "into_actor_test");
    }

    #[tokio::test]
    async fn test_actor_result_into_error_failed() {
        struct FailActorForError;

        impl Actor for FailActorForError {
            type Args = ();
            type Error = String;

            async fn on_start(_: (), _: &ActorRef<Self>) -> Result<Self, String> {
                Err("into_error_test".to_string())
            }
        }

        let (_, handle) = spawn::<FailActorForError>(());
        let result = handle.await.unwrap();

        let maybe_error = result.into_error();
        assert!(maybe_error.is_some());
        assert_eq!(maybe_error.unwrap(), "into_error_test");
    }

    #[tokio::test]
    async fn test_actor_result_into_error_completed() {
        let (actor_ref, handle) = spawn::<MethodsTestActor>(MethodsTestActor {
            data: "test".to_string(),
        });

        actor_ref.stop().await.unwrap();
        let result = handle.await.unwrap();

        // Completed result should have no error
        let maybe_error = result.into_error();
        assert!(maybe_error.is_none());
    }
}

// ============================================================================
// Tests for ask_join (actor_ref.rs coverage)
// ============================================================================

mod ask_join_tests {
    use super::*;
    use tokio::task::JoinHandle;

    #[derive(Actor)]
    struct JoinTestActor;

    struct SpawnTask {
        value: i32,
    }

    #[rsactor::message_handlers]
    impl JoinTestActor {
        #[handler]
        async fn handle(&mut self, msg: SpawnTask, _: &ActorRef<Self>) -> JoinHandle<i32> {
            let value = msg.value;
            tokio::spawn(async move {
                tokio::time::sleep(Duration::from_millis(10)).await;
                value * 2
            })
        }
    }

    #[tokio::test]
    async fn test_ask_join_successful() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<JoinTestActor>(JoinTestActor);

        // Use ask_join to get the final result
        let result: i32 = actor_ref.ask_join(SpawnTask { value: 21 }).await.unwrap();
        assert_eq!(result, 42);

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }
}

// ============================================================================
// Tests for blocking methods to stopped actor (coverage for error paths)
// ============================================================================

mod blocking_error_paths_tests {
    use super::*;

    #[derive(Actor)]
    struct BlockingErrorActor;

    struct BlockingMsg;

    #[rsactor::message_handlers]
    impl BlockingErrorActor {
        #[handler]
        async fn handle(&mut self, _: BlockingMsg, _: &ActorRef<Self>) -> String {
            "ok".to_string()
        }
    }

    #[tokio::test]
    async fn test_blocking_tell_no_timeout_to_stopped_actor() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<BlockingErrorActor>(BlockingErrorActor);

        // Stop actor first
        actor_ref.stop().await.unwrap();
        handle.await.unwrap();

        let actor_clone = actor_ref.clone();

        // blocking_tell without timeout to stopped actor
        let result =
            tokio::task::spawn_blocking(move || actor_clone.blocking_tell(BlockingMsg, None))
                .await
                .unwrap();

        assert!(
            result.is_err(),
            "blocking_tell to stopped actor should fail"
        );
    }

    #[tokio::test]
    async fn test_blocking_ask_no_timeout_to_stopped_actor() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<BlockingErrorActor>(BlockingErrorActor);

        // Stop actor first
        actor_ref.stop().await.unwrap();
        handle.await.unwrap();

        let actor_clone = actor_ref.clone();

        // blocking_ask without timeout to stopped actor
        let result: Result<String, _> =
            tokio::task::spawn_blocking(move || actor_clone.blocking_ask(BlockingMsg, None))
                .await
                .unwrap();

        assert!(result.is_err(), "blocking_ask to stopped actor should fail");
    }
}

// ============================================================================
// Tests for ActorWeak clone (actor_ref.rs coverage)
// ============================================================================

mod actor_weak_clone_tests {
    use super::*;

    #[derive(Actor)]
    struct WeakCloneTestActor;

    struct WeakCloneMsg;

    #[rsactor::message_handlers]
    impl WeakCloneTestActor {
        #[handler]
        async fn handle(&mut self, _: WeakCloneMsg, _: &ActorRef<Self>) -> bool {
            true
        }
    }

    #[tokio::test]
    async fn test_actor_weak_clone_and_upgrade() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<WeakCloneTestActor>(WeakCloneTestActor);

        // Create weak reference
        let weak1 = ActorRef::downgrade(&actor_ref);

        // Clone the weak reference
        let weak2 = weak1.clone();

        // Both should have the same identity
        assert_eq!(weak1.identity(), weak2.identity());

        // Both should be able to upgrade
        let strong1 = weak1.upgrade().expect("weak1 should upgrade");
        let strong2 = weak2.upgrade().expect("weak2 should upgrade");

        assert_eq!(strong1.identity(), strong2.identity());

        // Test is_alive on weak reference
        assert!(weak1.is_alive());

        // Drop all strong references first
        drop(strong1);
        drop(strong2);
        drop(actor_ref);

        // Wait for actor to terminate
        handle.await.unwrap();

        // After all strong refs dropped and actor terminated, upgrade should return None
        // Note: is_alive() checks channel strong count, which may not be 0 immediately
        // So we check upgrade() instead which is more reliable
        assert!(
            weak1.upgrade().is_none(),
            "weak reference should not upgrade after actor stopped"
        );
    }
}

// ============================================================================
// Tests for FailurePhase Display (actor_result.rs coverage)
// ============================================================================

mod failure_phase_tests {
    use rsactor::FailurePhase;

    #[test]
    fn test_failure_phase_display_all_variants() {
        assert_eq!(format!("{}", FailurePhase::OnStart), "OnStart");
        assert_eq!(format!("{}", FailurePhase::OnRun), "OnRun");
        assert_eq!(format!("{}", FailurePhase::OnStop), "OnStop");
    }

    #[test]
    fn test_failure_phase_debug() {
        // Test Debug implementation
        let debug_str = format!("{:?}", FailurePhase::OnStart);
        assert!(debug_str.contains("OnStart"));

        let debug_str = format!("{:?}", FailurePhase::OnRun);
        assert!(debug_str.contains("OnRun"));

        let debug_str = format!("{:?}", FailurePhase::OnStop);
        assert!(debug_str.contains("OnStop"));
    }

    #[test]
    fn test_failure_phase_clone_copy() {
        let phase = FailurePhase::OnRun;
        let cloned = phase;
        let copied = phase;

        assert_eq!(phase, cloned);
        assert_eq!(phase, copied);
    }
}

// ============================================================================
// Tests for ActorResult Debug (actor_result.rs coverage)
// ============================================================================

mod actor_result_debug_tests {
    use super::*;

    #[derive(Actor, Debug)]
    struct DebugTestActor {
        #[allow(dead_code)]
        value: i32,
    }

    #[tokio::test]
    async fn test_actor_result_debug_completed() {
        let (actor_ref, handle) = spawn::<DebugTestActor>(DebugTestActor { value: 42 });

        actor_ref.stop().await.unwrap();
        let result = handle.await.unwrap();

        // Test Debug implementation
        let debug_str = format!("{:?}", result);
        assert!(debug_str.contains("Completed"));
        assert!(debug_str.contains("42"));
    }

    #[tokio::test]
    async fn test_actor_result_debug_failed() {
        #[derive(Debug)]
        struct FailDebugActor;

        impl Actor for FailDebugActor {
            type Args = ();
            type Error = String;

            async fn on_start(_: (), _: &ActorRef<Self>) -> Result<Self, String> {
                Err("debug test failure".to_string())
            }
        }

        let (_, handle) = spawn::<FailDebugActor>(());
        let result = handle.await.unwrap();

        // Test Debug implementation for failed
        let debug_str = format!("{:?}", result);
        assert!(debug_str.contains("Failed"));
        assert!(debug_str.contains("debug test failure"));
    }
}

// ============================================================================
// Tests for deprecated tell_blocking and ask_blocking methods (actor_ref.rs)
// ============================================================================

mod deprecated_blocking_methods_tests {
    use super::*;

    #[derive(Actor)]
    struct DeprecatedMethodsActor;

    struct DeprecatedMsg;

    #[rsactor::message_handlers]
    impl DeprecatedMethodsActor {
        #[handler]
        async fn handle(&mut self, _: DeprecatedMsg, _: &ActorRef<Self>) -> String {
            "deprecated_response".to_string()
        }
    }

    #[tokio::test]
    async fn test_deprecated_tell_blocking() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<DeprecatedMethodsActor>(DeprecatedMethodsActor);

        let actor_clone = actor_ref.clone();

        // Test deprecated tell_blocking method
        #[allow(deprecated)]
        let result = tokio::task::spawn_blocking(move || {
            actor_clone.tell_blocking(DeprecatedMsg, Some(Duration::from_secs(5)))
        })
        .await
        .unwrap();

        assert!(result.is_ok(), "deprecated tell_blocking should succeed");

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_deprecated_ask_blocking() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<DeprecatedMethodsActor>(DeprecatedMethodsActor);

        let actor_clone = actor_ref.clone();

        // Test deprecated ask_blocking method
        #[allow(deprecated)]
        let result: Result<String, _> = tokio::task::spawn_blocking(move || {
            actor_clone.ask_blocking(DeprecatedMsg, Some(Duration::from_secs(5)))
        })
        .await
        .unwrap();

        assert!(result.is_ok(), "deprecated ask_blocking should succeed");
        assert_eq!(result.unwrap(), "deprecated_response");

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_deprecated_tell_blocking_to_stopped_actor() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<DeprecatedMethodsActor>(DeprecatedMethodsActor);

        // Stop the actor first
        actor_ref.stop().await.unwrap();
        handle.await.unwrap();

        let actor_clone = actor_ref.clone();

        // Test deprecated tell_blocking to stopped actor
        #[allow(deprecated)]
        let result =
            tokio::task::spawn_blocking(move || actor_clone.tell_blocking(DeprecatedMsg, None))
                .await
                .unwrap();

        assert!(
            result.is_err(),
            "deprecated tell_blocking to stopped actor should fail"
        );
    }

    #[tokio::test]
    async fn test_deprecated_ask_blocking_to_stopped_actor() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<DeprecatedMethodsActor>(DeprecatedMethodsActor);

        // Stop the actor first
        actor_ref.stop().await.unwrap();
        handle.await.unwrap();

        let actor_clone = actor_ref.clone();

        // Test deprecated ask_blocking to stopped actor
        #[allow(deprecated)]
        let result: Result<String, _> =
            tokio::task::spawn_blocking(move || actor_clone.ask_blocking(DeprecatedMsg, None))
                .await
                .unwrap();

        assert!(
            result.is_err(),
            "deprecated ask_blocking to stopped actor should fail"
        );
    }
}

// ============================================================================
// Tests for ask_join error scenarios (actor_ref.rs)
// ============================================================================

mod ask_join_error_tests {
    use super::*;
    use tokio::task::JoinHandle;

    #[derive(Actor)]
    struct AskJoinErrorActor;

    struct SpawnPanicTask;
    struct SpawnCancelledTask;
    struct SpawnSuccessTask(i32);

    #[rsactor::message_handlers]
    impl AskJoinErrorActor {
        #[handler]
        async fn handle_panic(&mut self, _: SpawnPanicTask, _: &ActorRef<Self>) -> JoinHandle<i32> {
            tokio::spawn(async move {
                panic!("Intentional panic in spawned task");
            })
        }

        #[handler]
        async fn handle_cancelled(
            &mut self,
            _: SpawnCancelledTask,
            _: &ActorRef<Self>,
        ) -> JoinHandle<i32> {
            let handle = tokio::spawn(async move {
                // Long sleep that will be cancelled
                tokio::time::sleep(Duration::from_secs(100)).await;
                42
            });
            // Immediately abort the task
            handle.abort();
            handle
        }

        #[handler]
        async fn handle_success(
            &mut self,
            msg: SpawnSuccessTask,
            _: &ActorRef<Self>,
        ) -> JoinHandle<i32> {
            let value = msg.0;
            tokio::spawn(async move {
                tokio::time::sleep(Duration::from_millis(10)).await;
                value * 2
            })
        }
    }

    #[tokio::test]
    async fn test_ask_join_with_panic() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<AskJoinErrorActor>(AskJoinErrorActor);

        // ask_join should return Error::Join when the spawned task panics
        let result: rsactor::Result<i32> = actor_ref.ask_join(SpawnPanicTask).await;

        assert!(result.is_err(), "ask_join should fail when task panics");

        match result.unwrap_err() {
            rsactor::Error::Join { source, .. } => {
                assert!(source.is_panic(), "Join error should indicate panic");
            }
            e => panic!("Expected Join error, got: {:?}", e),
        }

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_ask_join_with_cancelled_task() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<AskJoinErrorActor>(AskJoinErrorActor);

        // ask_join should return Error::Join when the spawned task is cancelled
        let result: rsactor::Result<i32> = actor_ref.ask_join(SpawnCancelledTask).await;

        assert!(
            result.is_err(),
            "ask_join should fail when task is cancelled"
        );

        match result.unwrap_err() {
            rsactor::Error::Join { source, .. } => {
                assert!(
                    source.is_cancelled(),
                    "Join error should indicate cancellation"
                );
            }
            e => panic!("Expected Join error, got: {:?}", e),
        }

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_ask_join_success() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<AskJoinErrorActor>(AskJoinErrorActor);

        // ask_join should succeed with correct result
        let result: i32 = actor_ref.ask_join(SpawnSuccessTask(21)).await.unwrap();
        assert_eq!(result, 42);

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_ask_join_to_stopped_actor() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<AskJoinErrorActor>(AskJoinErrorActor);

        // Stop the actor first
        actor_ref.stop().await.unwrap();
        handle.await.unwrap();

        // ask_join to stopped actor should fail with Send error
        let result: rsactor::Result<i32> = actor_ref.ask_join(SpawnSuccessTask(10)).await;

        assert!(result.is_err(), "ask_join to stopped actor should fail");

        match result.unwrap_err() {
            rsactor::Error::Send { .. } => {}
            e => panic!("Expected Send error, got: {:?}", e),
        }
    }
}

// ============================================================================
// Tests for ActorRef Debug implementation (actor_ref.rs)
// ============================================================================

mod actor_ref_debug_tests {
    use super::*;

    #[derive(Actor, Debug)]
    struct DebugRefActor;

    struct DebugMsg;

    #[rsactor::message_handlers]
    impl DebugRefActor {
        #[handler]
        async fn handle(&mut self, _: DebugMsg, _: &ActorRef<Self>) -> bool {
            true
        }
    }

    #[tokio::test]
    async fn test_actor_ref_debug() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<DebugRefActor>(DebugRefActor);

        // Test Debug implementation for ActorRef
        let debug_str = format!("{:?}", actor_ref);
        assert!(
            debug_str.contains("ActorRef"),
            "Debug should contain ActorRef"
        );

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_actor_weak_debug() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<DebugRefActor>(DebugRefActor);

        let weak = ActorRef::downgrade(&actor_ref);

        // Test Debug implementation for ActorWeak
        let debug_str = format!("{:?}", weak);
        assert!(
            debug_str.contains("ActorWeak"),
            "Debug should contain ActorWeak"
        );

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }
}

// ============================================================================
// Tests for kill edge cases (actor_ref.rs)
// ============================================================================

mod kill_edge_cases_tests {
    use super::*;

    #[derive(Actor)]
    struct KillEdgeCaseActor;

    struct SlowProcessMsg;

    #[rsactor::message_handlers]
    impl KillEdgeCaseActor {
        #[handler]
        async fn handle(&mut self, _: SlowProcessMsg, _: &ActorRef<Self>) {
            // Slow processing to allow kill signals to queue
            tokio::time::sleep(Duration::from_secs(10)).await;
        }
    }

    #[tokio::test]
    async fn test_kill_when_actor_already_stopping() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<KillEdgeCaseActor>(KillEdgeCaseActor);

        // Stop the actor
        actor_ref.stop().await.unwrap();

        // Now try to kill the stopping actor - should succeed (idempotent)
        let result = actor_ref.kill();
        assert!(result.is_ok(), "kill to stopping actor should succeed");

        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_kill_multiple_times_rapidly() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<KillEdgeCaseActor>(KillEdgeCaseActor);

        // Send multiple kill signals rapidly - should all succeed
        // (channel capacity is 1, so subsequent kills hit the Full case)
        for _ in 0..10 {
            let result = actor_ref.kill();
            assert!(result.is_ok(), "rapid kill calls should succeed");
        }

        let result = handle.await.unwrap();
        assert!(result.was_killed());
    }

    #[tokio::test]
    async fn test_kill_after_actor_completely_stopped() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<KillEdgeCaseActor>(KillEdgeCaseActor);

        actor_ref.stop().await.unwrap();
        let result = handle.await.unwrap();
        assert!(result.is_completed());

        // Kill after actor is completely stopped - should succeed (channel closed case)
        let kill_result = actor_ref.kill();
        assert!(kill_result.is_ok(), "kill to stopped actor should succeed");
    }
}

// ============================================================================
// Tests for stop edge cases (actor_ref.rs)
// ============================================================================

mod stop_edge_cases_tests {
    use super::*;

    #[derive(Actor)]
    struct StopEdgeCaseActor;

    struct SimpleMsg;

    #[rsactor::message_handlers]
    impl StopEdgeCaseActor {
        #[handler]
        async fn handle(&mut self, _: SimpleMsg, _: &ActorRef<Self>) -> bool {
            true
        }
    }

    #[tokio::test]
    async fn test_stop_after_actor_completely_stopped() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<StopEdgeCaseActor>(StopEdgeCaseActor);

        actor_ref.stop().await.unwrap();
        let result = handle.await.unwrap();
        assert!(result.is_completed());

        // Stop after actor is completely stopped - should succeed (channel closed case)
        let stop_result = actor_ref.stop().await;
        assert!(stop_result.is_ok(), "stop to stopped actor should succeed");
    }

    #[tokio::test]
    async fn test_stop_multiple_times() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<StopEdgeCaseActor>(StopEdgeCaseActor);

        // Send multiple stop signals
        actor_ref.stop().await.unwrap();
        actor_ref.stop().await.unwrap(); // Second stop should also succeed

        let result = handle.await.unwrap();
        assert!(result.is_completed());
        assert!(!result.was_killed());
    }
}

// ============================================================================
// Tests for on_run returning Ok(false) (actor.rs)
// ============================================================================

mod on_run_disable_tests {
    use super::*;

    struct OnRunDisableActor {
        run_count: u32,
    }

    impl Actor for OnRunDisableActor {
        type Args = ();
        type Error = String;

        async fn on_start(_: Self::Args, _: &ActorRef<Self>) -> Result<Self, Self::Error> {
            Ok(Self { run_count: 0 })
        }

        async fn on_run(&mut self, _: &ActorWeak<Self>) -> Result<bool, Self::Error> {
            self.run_count += 1;
            // Return false after first run to disable further on_run calls
            Ok(false)
        }
    }

    struct GetRunCount;

    #[rsactor::message_handlers]
    impl OnRunDisableActor {
        #[handler]
        async fn handle(&mut self, _: GetRunCount, _: &ActorRef<Self>) -> u32 {
            self.run_count
        }
    }

    #[tokio::test]
    async fn test_on_run_returns_false_disables_idle_processing() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<OnRunDisableActor>(());

        // Wait for on_run to execute once
        tokio::time::sleep(Duration::from_millis(100)).await;

        // Check run count - should be 1 (on_run was called once, returned false)
        let run_count: u32 = actor_ref.ask(GetRunCount).await.unwrap();
        assert_eq!(run_count, 1, "on_run should have been called exactly once");

        // Wait more and check again - should still be 1
        tokio::time::sleep(Duration::from_millis(100)).await;
        let run_count: u32 = actor_ref.ask(GetRunCount).await.unwrap();
        assert_eq!(
            run_count, 1,
            "on_run should not have been called again after returning false"
        );

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }
}

// ============================================================================
// Tests for Message trait handle method (actor.rs)
// ============================================================================

mod message_trait_tests {
    use super::*;

    struct MessageTraitActor {
        received: Vec<String>,
    }

    impl Actor for MessageTraitActor {
        type Args = ();
        type Error = String;

        async fn on_start(_: Self::Args, _: &ActorRef<Self>) -> Result<Self, Self::Error> {
            Ok(Self {
                received: Vec::new(),
            })
        }
    }

    struct StringMsg(String);
    struct IntMsg(i32);
    struct GetReceived;

    impl rsactor::Message<StringMsg> for MessageTraitActor {
        type Reply = String;

        async fn handle(&mut self, msg: StringMsg, _: &ActorRef<Self>) -> Self::Reply {
            self.received.push(format!("string:{}", msg.0));
            format!("received:{}", msg.0)
        }
    }

    impl rsactor::Message<IntMsg> for MessageTraitActor {
        type Reply = i32;

        async fn handle(&mut self, msg: IntMsg, _: &ActorRef<Self>) -> Self::Reply {
            self.received.push(format!("int:{}", msg.0));
            msg.0 * 2
        }
    }

    impl rsactor::Message<GetReceived> for MessageTraitActor {
        type Reply = Vec<String>;

        async fn handle(&mut self, _: GetReceived, _: &ActorRef<Self>) -> Self::Reply {
            self.received.clone()
        }
    }

    #[tokio::test]
    async fn test_message_trait_multiple_message_types() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<MessageTraitActor>(());

        // Test sending different message types
        let str_reply: String = actor_ref.ask(StringMsg("hello".to_string())).await.unwrap();
        assert_eq!(str_reply, "received:hello");

        let int_reply: i32 = actor_ref.ask(IntMsg(21)).await.unwrap();
        assert_eq!(int_reply, 42);

        // Verify received messages
        let received: Vec<String> = actor_ref.ask(GetReceived).await.unwrap();
        assert_eq!(received.len(), 2);
        assert_eq!(received[0], "string:hello");
        assert_eq!(received[1], "int:21");

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }
}

// ============================================================================
// Tests for ActorRef::is_alive edge cases (actor_ref.rs)
// ============================================================================

mod is_alive_edge_cases_tests {
    use super::*;

    #[derive(Actor)]
    struct IsAliveTestActor;

    struct Ping;

    #[rsactor::message_handlers]
    impl IsAliveTestActor {
        #[handler]
        async fn handle(&mut self, _: Ping, _: &ActorRef<Self>) -> bool {
            true
        }
    }

    #[tokio::test]
    async fn test_is_alive_during_message_processing() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<IsAliveTestActor>(IsAliveTestActor);

        // Actor should be alive during message processing
        assert!(actor_ref.is_alive());

        let _: bool = actor_ref.ask(Ping).await.unwrap();
        assert!(actor_ref.is_alive());

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_is_alive_after_kill() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<IsAliveTestActor>(IsAliveTestActor);

        assert!(actor_ref.is_alive());
        actor_ref.kill().unwrap();

        // Wait for actor to complete
        handle.await.unwrap();

        // After kill and completion, should not be alive
        assert!(!actor_ref.is_alive());
    }

    #[tokio::test]
    async fn test_is_alive_cloned_ref_after_original_dropped() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<IsAliveTestActor>(IsAliveTestActor);

        let cloned_ref = actor_ref.clone();

        // Both should be alive
        assert!(actor_ref.is_alive());
        assert!(cloned_ref.is_alive());

        // Drop original (but actor continues due to cloned ref)
        drop(actor_ref);

        // Cloned ref should still be alive
        assert!(cloned_ref.is_alive());

        cloned_ref.stop().await.unwrap();
        handle.await.unwrap();
    }
}

// ============================================================================
// Tests for timeout scenarios with actual timeouts (actor_ref.rs)
// ============================================================================

mod actual_timeout_tests {
    use super::*;

    struct TimeoutTestActor;

    impl Actor for TimeoutTestActor {
        type Args = ();
        type Error = String;

        async fn on_start(_: (), _: &ActorRef<Self>) -> Result<Self, Self::Error> {
            Ok(Self)
        }
    }

    struct VerySlowMsg;
    struct QuickMsg;

    impl rsactor::Message<VerySlowMsg> for TimeoutTestActor {
        type Reply = String;

        async fn handle(&mut self, _: VerySlowMsg, _: &ActorRef<Self>) -> Self::Reply {
            tokio::time::sleep(Duration::from_secs(60)).await;
            "done".to_string()
        }
    }

    impl rsactor::Message<QuickMsg> for TimeoutTestActor {
        type Reply = String;

        async fn handle(&mut self, _: QuickMsg, _: &ActorRef<Self>) -> Self::Reply {
            "quick".to_string()
        }
    }

    #[tokio::test]
    async fn test_ask_with_timeout_actually_times_out() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<TimeoutTestActor>(());

        // Very short timeout with slow message should timeout
        let result: rsactor::Result<String> = actor_ref
            .ask_with_timeout(VerySlowMsg, Duration::from_millis(10))
            .await;

        assert!(result.is_err());
        match result.unwrap_err() {
            rsactor::Error::Timeout { operation, .. } => {
                assert_eq!(operation, "ask");
            }
            e => panic!("Expected Timeout error, got: {:?}", e),
        }

        actor_ref.kill().unwrap();
        let _ = handle.await;
    }

    #[tokio::test]
    async fn test_tell_with_timeout_success_path() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<TimeoutTestActor>(());

        // Tell with sufficient timeout should succeed
        let result = actor_ref
            .tell_with_timeout(QuickMsg, Duration::from_secs(5))
            .await;

        assert!(result.is_ok());

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }
}

// ============================================================================
// Tests for Actor lifecycle phases (actor.rs)
// ============================================================================

mod lifecycle_phase_tests {
    use super::*;
    use std::sync::atomic::{AtomicU32, Ordering};

    struct LifecyclePhaseActor {
        phase_tracker: std::sync::Arc<AtomicU32>,
    }

    impl Actor for LifecyclePhaseActor {
        type Args = std::sync::Arc<AtomicU32>;
        type Error = String;

        async fn on_start(tracker: Self::Args, _: &ActorRef<Self>) -> Result<Self, Self::Error> {
            tracker.fetch_add(1, Ordering::SeqCst); // 1
            Ok(Self {
                phase_tracker: tracker,
            })
        }

        async fn on_run(&mut self, _: &ActorWeak<Self>) -> Result<bool, Self::Error> {
            self.phase_tracker.fetch_add(10, Ordering::SeqCst); // 11
            Ok(false) // Don't continue
        }

        async fn on_stop(&mut self, _: &ActorWeak<Self>, _killed: bool) -> Result<(), Self::Error> {
            self.phase_tracker.fetch_add(100, Ordering::SeqCst); // 111
            Ok(())
        }
    }

    #[tokio::test]
    async fn test_lifecycle_phases_execute_in_order() {
        init_test_logger();
        let tracker = std::sync::Arc::new(AtomicU32::new(0));

        let (actor_ref, handle) = spawn::<LifecyclePhaseActor>(tracker.clone());

        // Wait for on_run to execute
        tokio::time::sleep(Duration::from_millis(100)).await;

        // After on_start and on_run, should be 11
        let value = tracker.load(Ordering::SeqCst);
        assert!(value >= 11, "Expected at least 11, got {}", value);

        actor_ref.stop().await.unwrap();
        let result = handle.await.unwrap();
        assert!(result.is_completed());

        // After on_stop, should be 111
        let final_value = tracker.load(Ordering::SeqCst);
        assert_eq!(
            final_value, 111,
            "All lifecycle phases should have executed"
        );
    }
}

// ============================================================================
// Tests for metrics API methods (actor_ref.rs)
// ============================================================================

#[cfg(feature = "metrics")]
mod metrics_api_tests {
    use super::*;

    struct MetricsTestActor;

    impl Actor for MetricsTestActor {
        type Args = ();
        type Error = String;

        async fn on_start(_: (), _: &ActorRef<Self>) -> Result<Self, Self::Error> {
            Ok(Self)
        }
    }

    struct SlowMsg;
    struct QuickMsg;
    struct ErrorMsg;

    impl rsactor::Message<SlowMsg> for MetricsTestActor {
        type Reply = ();

        async fn handle(&mut self, _: SlowMsg, _: &ActorRef<Self>) -> Self::Reply {
            tokio::time::sleep(Duration::from_millis(50)).await;
        }
    }

    impl rsactor::Message<QuickMsg> for MetricsTestActor {
        type Reply = i32;

        async fn handle(&mut self, _: QuickMsg, _: &ActorRef<Self>) -> Self::Reply {
            42
        }
    }

    impl rsactor::Message<ErrorMsg> for MetricsTestActor {
        type Reply = ();

        async fn handle(&mut self, _: ErrorMsg, _: &ActorRef<Self>) -> Self::Reply {
            // Simulating an error scenario (but we can't actually return error from Message trait)
            // This is for coverage of error_count method
        }
    }

    #[tokio::test]
    async fn test_metrics_snapshot() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<MetricsTestActor>(());

        // Send a few messages
        let _: i32 = actor_ref.ask(QuickMsg).await.unwrap();
        let _: i32 = actor_ref.ask(QuickMsg).await.unwrap();
        // Use ask instead of tell to ensure message is processed before checking metrics
        let _: () = actor_ref.ask(SlowMsg).await.unwrap();

        // Test metrics snapshot
        let metrics = actor_ref.metrics();
        assert!(
            metrics.message_count >= 3,
            "Should have processed at least 3 messages"
        );

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_metrics_message_count() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<MetricsTestActor>(());

        // Initial message count should be 0
        assert_eq!(actor_ref.message_count(), 0);

        // Send messages
        let _: i32 = actor_ref.ask(QuickMsg).await.unwrap();
        tokio::time::sleep(Duration::from_millis(10)).await;

        // Message count should be at least 1
        assert!(actor_ref.message_count() >= 1);

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_metrics_avg_processing_time() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<MetricsTestActor>(());

        // Initial avg processing time should be zero
        assert_eq!(actor_ref.avg_processing_time(), Duration::ZERO);

        // Send a slow message (use ask to ensure message is processed before checking metrics)
        let _: () = actor_ref.ask(SlowMsg).await.unwrap();

        // Avg processing time should be non-zero now
        let avg_time = actor_ref.avg_processing_time();
        assert!(
            avg_time > Duration::ZERO,
            "Avg processing time should be non-zero"
        );

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_metrics_max_processing_time() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<MetricsTestActor>(());

        // Send quick and slow messages
        let _: i32 = actor_ref.ask(QuickMsg).await.unwrap();
        // Use ask instead of tell to ensure message is processed before checking metrics
        let _: () = actor_ref.ask(SlowMsg).await.unwrap();

        // Max processing time should reflect the slow message
        let max_time = actor_ref.max_processing_time();
        assert!(
            max_time >= Duration::from_millis(40),
            "Max processing time should be at least 40ms"
        );

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_metrics_error_count() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<MetricsTestActor>(());

        // Error count should start at 0
        assert_eq!(actor_ref.error_count(), 0);

        // Even after sending messages, error_count stays 0 (no actual errors)
        let _: i32 = actor_ref.ask(QuickMsg).await.unwrap();
        tokio::time::sleep(Duration::from_millis(10)).await;
        assert_eq!(actor_ref.error_count(), 0);

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_metrics_uptime() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<MetricsTestActor>(());

        // Wait a bit
        tokio::time::sleep(Duration::from_millis(50)).await;

        // Uptime should be non-zero
        let uptime = actor_ref.uptime();
        assert!(
            uptime >= Duration::from_millis(40),
            "Uptime should be at least 40ms"
        );

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_metrics_last_activity() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<MetricsTestActor>(());

        // Initially no activity
        assert!(actor_ref.last_activity().is_none());

        // Send a message
        let _: i32 = actor_ref.ask(QuickMsg).await.unwrap();
        tokio::time::sleep(Duration::from_millis(10)).await;

        // Last activity should now be Some
        let last_activity = actor_ref.last_activity();
        assert!(
            last_activity.is_some(),
            "Last activity should be Some after processing message"
        );

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }
}

// ============================================================================
// Tests for tell_with_timeout actual timeout (actor_ref.rs)
// ============================================================================

mod tell_with_timeout_tests {
    use super::*;

    struct SlowTellActor;

    impl Actor for SlowTellActor {
        type Args = ();
        type Error = String;

        async fn on_start(_: (), _: &ActorRef<Self>) -> Result<Self, Self::Error> {
            Ok(Self)
        }
    }

    struct BlockingMsg;

    impl rsactor::Message<BlockingMsg> for SlowTellActor {
        type Reply = ();

        async fn handle(&mut self, _: BlockingMsg, _: &ActorRef<Self>) -> Self::Reply {
            // Block for a very long time
            tokio::time::sleep(Duration::from_secs(60)).await;
        }
    }

    #[tokio::test]
    async fn test_tell_with_timeout_actual_timeout() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<SlowTellActor>(());

        // First, send a blocking message that will occupy the actor
        actor_ref.tell(BlockingMsg).await.unwrap();

        // Now try to send another message with a very short timeout
        // The actor is busy processing the first message, so this should timeout
        let _result = actor_ref
            .tell_with_timeout(BlockingMsg, Duration::from_millis(5))
            .await;

        // This might succeed (if the message queue isn't full) or timeout
        // The timeout error occurs when waiting for the message to be sent,
        // not when waiting for the handler to complete

        // Clean up
        actor_ref.kill().unwrap();
        let _ = handle.await;
    }
}

// ============================================================================
// Tests for blocking methods with timeout expiry (actor_ref.rs)
// ============================================================================

mod blocking_timeout_expiry_tests {
    use super::*;

    struct BlockingTimeoutActor;

    impl Actor for BlockingTimeoutActor {
        type Args = ();
        type Error = String;

        async fn on_start(_: (), _: &ActorRef<Self>) -> Result<Self, Self::Error> {
            Ok(Self)
        }
    }

    struct VerySlowHandlerMsg;

    impl rsactor::Message<VerySlowHandlerMsg> for BlockingTimeoutActor {
        type Reply = String;

        async fn handle(&mut self, _: VerySlowHandlerMsg, _: &ActorRef<Self>) -> Self::Reply {
            // Very long operation
            tokio::time::sleep(Duration::from_secs(120)).await;
            "done".to_string()
        }
    }

    #[tokio::test]
    async fn test_blocking_tell_timeout_with_slow_handler() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<BlockingTimeoutActor>(());

        // Start processing a slow message
        actor_ref.tell(VerySlowHandlerMsg).await.unwrap();

        let actor_clone = actor_ref.clone();

        // Try blocking_tell with timeout while actor is busy
        let _result = tokio::task::spawn_blocking(move || {
            actor_clone.blocking_tell(VerySlowHandlerMsg, Some(Duration::from_millis(10)))
        })
        .await
        .unwrap();

        // This might succeed (queued) or timeout depending on timing
        // The important thing is that the timeout path is exercised

        actor_ref.kill().unwrap();
        let _ = handle.await;
    }

    #[tokio::test]
    async fn test_blocking_ask_timeout_with_slow_handler() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<BlockingTimeoutActor>(());

        // Start processing a slow message first
        actor_ref.tell(VerySlowHandlerMsg).await.unwrap();

        let actor_clone = actor_ref.clone();

        // Try blocking_ask with timeout while actor is busy processing
        let result: rsactor::Result<String> = tokio::task::spawn_blocking(move || {
            actor_clone.blocking_ask(VerySlowHandlerMsg, Some(Duration::from_millis(10)))
        })
        .await
        .unwrap();

        // Should timeout since actor is busy
        // The exact behavior depends on whether the message gets queued before timeout
        match result {
            Ok(_) => {}                               // Message was processed before timeout
            Err(rsactor::Error::Timeout { .. }) => {} // Expected timeout
            Err(e) => panic!("Unexpected error: {:?}", e),
        }

        actor_ref.kill().unwrap();
        let _ = handle.await;
    }
}

// ============================================================================
// Tests for ActorWeak upgrade scenarios (actor_ref.rs)
// ============================================================================

mod actor_weak_upgrade_tests {
    use super::*;

    #[derive(Actor)]
    struct WeakUpgradeActor;

    struct GetIdentity;

    #[rsactor::message_handlers]
    impl WeakUpgradeActor {
        #[handler]
        async fn handle(&mut self, _: GetIdentity, actor_ref: &ActorRef<Self>) -> String {
            actor_ref.identity().to_string()
        }
    }

    #[tokio::test]
    async fn test_actor_weak_upgrade_before_stop() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<WeakUpgradeActor>(WeakUpgradeActor);

        let weak = ActorRef::downgrade(&actor_ref);

        // Upgrade should succeed while actor is running
        let upgraded = weak.upgrade();
        assert!(upgraded.is_some());

        // Use the upgraded ref
        let upgraded_ref = upgraded.unwrap();
        let _: String = upgraded_ref.ask(GetIdentity).await.unwrap();

        actor_ref.stop().await.unwrap();
        handle.await.unwrap();
    }

    #[tokio::test]
    async fn test_actor_weak_upgrade_after_all_refs_dropped() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<WeakUpgradeActor>(WeakUpgradeActor);

        let weak = ActorRef::downgrade(&actor_ref);

        // Drop the strong reference - this should trigger actor termination
        drop(actor_ref);

        // Wait for actor to terminate
        let _ = handle.await;

        // Now upgrade should fail
        let upgraded = weak.upgrade();
        assert!(
            upgraded.is_none(),
            "Upgrade should fail after all refs dropped"
        );
    }

    #[tokio::test]
    async fn test_actor_weak_is_alive_transitions() {
        init_test_logger();
        let (actor_ref, handle) = spawn::<WeakUpgradeActor>(WeakUpgradeActor);

        let weak = ActorRef::downgrade(&actor_ref);

        // Should be alive while running
        assert!(weak.is_alive());

        // Drop the actor_ref to trigger termination (is_alive checks if mailbox is open)
        drop(actor_ref);
        let _ = handle.await;

        // Give the runtime a moment to close channels
        tokio::time::sleep(Duration::from_millis(10)).await;

        // Should not be alive after actor terminates (this checks the mailbox sender)
        // Note: is_alive() checks if the mailbox sender can still accept messages
        // After actor termination, the receiver side is closed
        assert!(!weak.is_alive());
    }
}