asupersync 0.3.1

Spec-first, cancel-correct, capability-secure async runtime 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
//! Cancel-Correctness Property Oracle
//!
//! This oracle continuously verifies that the cancellation protocol is followed
//! correctly, ensuring every cancel request leads to proper drain → finalize → complete(cancelled)
//! transitions without violations.
//!
//! # Key Detection Capabilities
//!
//! - **Protocol violations**: Illegal state transitions in cancel protocol
//! - **Premature completion**: Tasks completing without proper draining
//! - **Stuck cancellations**: Tasks not progressing through cancel protocol
//! - **Missing finalize steps**: Tasks skipping finalization before completion
//! - **Race conditions**: Concurrent cancellation state update violations
//! - **Post-completion witnesses**: Late stale witnesses reopening completed tasks
//!
//! # Integration Points
//!
//! - Hooks into `CancelWitness` validation in `types::cancel`
//! - Monitors cancellation state transitions per task/region
//! - Provides diagnostics with stack traces and cancellation path visualization
//! - Configurable enforcement modes (warn vs panic)

use crate::types::{
    CancelPhase, CancelReason, CancelWitness, CancelWitnessError, RegionId, TaskId, Time,
};
use crate::util::det_hash::{DetHashMap, DetHashSet};
use parking_lot::RwLock;
use std::backtrace::Backtrace;
use std::collections::VecDeque;
use std::fmt;
use std::sync::Arc;
use std::sync::atomic::{AtomicU64, Ordering};

#[cfg(test)]
use std::time::Duration;

/// Configuration for the cancel-correctness oracle.
#[derive(Debug, Clone)]
pub struct CancelCorrectnessConfig {
    /// Maximum time allowed for a task to transition between cancellation phases.
    /// Tasks that remain in a phase longer than this are considered stuck.
    pub max_phase_duration_ns: u64,

    /// Maximum number of violations to track before dropping old ones.
    pub max_violations: usize,

    /// Whether to panic immediately on violations (vs just recording them).
    pub panic_on_violation: bool,

    /// Whether to capture stack traces for violations (expensive).
    pub capture_stack_traces: bool,

    /// Maximum depth of stack traces to capture.
    pub max_stack_trace_depth: usize,
}

impl Default for CancelCorrectnessConfig {
    fn default() -> Self {
        Self {
            max_phase_duration_ns: 10_000_000_000, // 10 seconds
            max_violations: 1000,
            panic_on_violation: false,
            capture_stack_traces: true,
            max_stack_trace_depth: 32,
        }
    }
}

/// A cancellation protocol violation detected by the oracle.
#[derive(Debug, Clone)]
pub enum CancelCorrectnessViolation {
    /// The first witness for a task was malformed.
    InvalidInitialWitness {
        /// The task whose first witness was malformed.
        task_id: TaskId,
        /// The region containing the task.
        region_id: RegionId,
        /// The initial phase that was observed.
        phase: CancelPhase,
        /// The initial epoch that was observed.
        epoch: u64,
        /// The specific reason the initial witness was rejected.
        kind: InvalidInitialWitnessKind,
        /// When the invalid initial witness was observed.
        observed_at: Time,
        /// Optional stack trace for debugging.
        stack_trace: Option<Arc<Backtrace>>,
    },

    /// A stale witness arrived after the task had already completed.
    WitnessAfterCompletion {
        /// The task whose cancellation stream reopened after completion.
        task_id: TaskId,
        /// The region carried by the late witness.
        region_id: RegionId,
        /// The late witness phase that arrived after completion.
        phase: CancelPhase,
        /// The late witness epoch.
        epoch: u64,
        /// When the late witness was observed.
        observed_at: Time,
        /// Optional stack trace for debugging.
        stack_trace: Option<Arc<Backtrace>>,
    },

    /// Task completed without going through proper cancellation phases.
    PrematureCompletion {
        /// The task that completed prematurely.
        task_id: TaskId,
        /// The region containing the task.
        region_id: RegionId,
        /// The last cancellation phase reached before completion.
        last_phase: CancelPhase,
        /// When the premature completion was detected.
        completion_time: Time,
        /// Optional stack trace for debugging.
        stack_trace: Option<Arc<Backtrace>>,
    },

    /// Task stuck in a cancellation phase for too long.
    StuckCancellation {
        /// The task that is stuck in cancellation.
        task_id: TaskId,
        /// The region containing the stuck task.
        region_id: RegionId,
        /// The cancellation phase where the task is stuck.
        phase: CancelPhase,
        /// When the task first entered this phase.
        stuck_since: Time,
        /// When the stuck condition was detected.
        detected_at: Time,
        /// Optional stack trace for debugging.
        stack_trace: Option<Arc<Backtrace>>,
    },

    /// Invalid state transition detected.
    InvalidTransition {
        /// The task with invalid transition.
        task_id: TaskId,
        /// The region containing the task.
        region_id: RegionId,
        /// The phase the task was transitioning from.
        from_phase: CancelPhase,
        /// The invalid phase the task tried to transition to.
        to_phase: CancelPhase,
        /// When the invalid transition was attempted.
        transition_time: Time,
        /// Optional stack trace for debugging.
        stack_trace: Option<Arc<Backtrace>>,
    },

    /// Cancel witness stream violated canonical witness validation rules.
    WitnessValidationFailed {
        /// The task whose witness stream became inconsistent.
        task_id: TaskId,
        /// The region currently associated with the tracked task state.
        region_id: RegionId,
        /// The validation error returned by `CancelWitness::validate_transition`.
        error: CancelWitnessError,
        /// When the invalid witness was observed.
        transition_time: Time,
        /// Optional stack trace for debugging.
        stack_trace: Option<Arc<Backtrace>>,
    },

    /// Task skipped finalization phase.
    MissedFinalization {
        /// The task that skipped finalization.
        task_id: TaskId,
        /// The region containing the task.
        region_id: RegionId,
        /// The phase the task was in before skipping finalization.
        from_phase: CancelPhase,
        /// When the task completed without finalization.
        completion_time: Time,
        /// Optional stack trace for debugging.
        stack_trace: Option<Arc<Backtrace>>,
    },
}

/// The reason an initial cancellation witness was rejected.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum InvalidInitialWitnessKind {
    /// The first observed cancellation epoch must be non-zero.
    ZeroEpoch,
}

impl fmt::Display for CancelCorrectnessViolation {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::InvalidInitialWitness {
                task_id,
                region_id,
                phase,
                epoch,
                kind,
                observed_at,
                ..
            } => {
                let detail = match kind {
                    InvalidInitialWitnessKind::ZeroEpoch => {
                        "first witness used cancellation epoch 0"
                    }
                };
                write!(
                    f,
                    "Invalid initial witness: task {}@{} observed {:?} epoch {} at {} ({detail})",
                    task_id,
                    region_id,
                    phase,
                    epoch,
                    observed_at.as_nanos()
                )
            }
            Self::PrematureCompletion {
                task_id,
                region_id,
                last_phase,
                completion_time,
                ..
            } => {
                write!(
                    f,
                    "Premature completion: task {}@{} completed at {} without proper cancellation (last phase: {:?})",
                    task_id,
                    region_id,
                    completion_time.as_nanos(),
                    last_phase
                )
            }
            Self::WitnessAfterCompletion {
                task_id,
                region_id,
                phase,
                epoch,
                observed_at,
                ..
            } => {
                write!(
                    f,
                    "Witness after completion: task {}@{} observed stale {:?} epoch {} at {} after completion",
                    task_id,
                    region_id,
                    phase,
                    epoch,
                    observed_at.as_nanos()
                )
            }
            Self::StuckCancellation {
                task_id,
                region_id,
                phase,
                stuck_since,
                detected_at,
                ..
            } => {
                write!(
                    f,
                    "Stuck cancellation: task {}@{} stuck in {:?} phase from {} to {} ({} ns)",
                    task_id,
                    region_id,
                    phase,
                    stuck_since.as_nanos(),
                    detected_at.as_nanos(),
                    detected_at.as_nanos() - stuck_since.as_nanos()
                )
            }
            Self::InvalidTransition {
                task_id,
                region_id,
                from_phase,
                to_phase,
                transition_time,
                ..
            } => {
                write!(
                    f,
                    "Invalid transition: task {}@{} attempted {:?} → {:?} at {}",
                    task_id,
                    region_id,
                    from_phase,
                    to_phase,
                    transition_time.as_nanos()
                )
            }
            Self::MissedFinalization {
                task_id,
                region_id,
                from_phase,
                completion_time,
                ..
            } => {
                write!(
                    f,
                    "Missed finalization: task {}@{} jumped from {:?} to completion at {} without finalization",
                    task_id,
                    region_id,
                    from_phase,
                    completion_time.as_nanos()
                )
            }
            Self::WitnessValidationFailed {
                task_id,
                region_id,
                error,
                transition_time,
                ..
            } => {
                write!(
                    f,
                    "Witness validation failed: task {}@{} observed inconsistent cancellation witness ({error:?}) at {}",
                    task_id,
                    region_id,
                    transition_time.as_nanos()
                )
            }
        }
    }
}

#[derive(Debug, Default)]
struct CompletedTaskCache {
    task_ids: DetHashSet<TaskId>,
    order: VecDeque<TaskId>,
}

impl CompletedTaskCache {
    fn contains(&self, task_id: TaskId) -> bool {
        self.task_ids.contains(&task_id)
    }

    fn remember(&mut self, task_id: TaskId, limit: usize) {
        if self.task_ids.insert(task_id) {
            self.order.push_back(task_id);
        }

        while self.order.len() > limit {
            if let Some(evicted) = self.order.pop_front() {
                self.task_ids.remove(&evicted);
            }
        }
    }

    fn clear(&mut self) {
        self.task_ids.clear();
        self.order.clear();
    }
}

/// Current cancellation state for a task.
#[derive(Debug, Clone)]
struct TaskCancelState {
    task_id: TaskId,
    region_id: RegionId,
    current_phase: CancelPhase,
    epoch: u64,
    last_transition: Time,
    cancel_reason: CancelReason,
    witness_history: VecDeque<CancelWitness>,
    stuck_violation_reported: bool,
}

impl TaskCancelState {
    fn new(witness: CancelWitness, now: Time) -> Self {
        let task_id = witness.task_id;
        let region_id = witness.region_id;
        let current_phase = witness.phase;
        let epoch = witness.epoch;
        let cancel_reason = witness.reason.clone();

        let mut witness_history = VecDeque::new();
        witness_history.push_back(witness);

        Self {
            task_id,
            region_id,
            current_phase,
            epoch,
            last_transition: now,
            cancel_reason,
            witness_history,
            stuck_violation_reported: false,
        }
    }

    fn update_with_witness(&mut self, witness: CancelWitness, now: Time) {
        let phase_changed = witness.phase != self.current_phase;
        self.current_phase = witness.phase;
        self.epoch = witness.epoch;
        self.cancel_reason = witness.reason.clone();

        if phase_changed {
            self.last_transition = now;
            self.stuck_violation_reported = false;
        }

        self.witness_history.push_back(witness);

        // Keep only last few witnesses to avoid unbounded growth
        while self.witness_history.len() > 10 {
            self.witness_history.pop_front();
        }
    }
}

/// Snapshot of a tracked task's cancellation state.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct TrackedCancelTaskSnapshot {
    /// Task identifier.
    pub task_id: TaskId,
    /// Region containing the task.
    pub region_id: RegionId,
    /// Current cancellation phase.
    pub current_phase: CancelPhase,
    /// Latest cancellation epoch carried by the witness stream.
    pub epoch: u64,
    /// Latest cancellation reason observed for the task.
    pub cancel_reason: CancelReason,
    /// Time of the last phase transition.
    pub last_transition: Time,
    /// Number of witnesses retained in the local history window.
    pub witness_history_len: usize,
}

/// The cancel-correctness property oracle.
#[derive(Debug)]
pub struct CancelCorrectnessOracle {
    config: CancelCorrectnessConfig,

    /// Current cancellation states tracked by task ID.
    task_states: RwLock<DetHashMap<TaskId, TaskCancelState>>,

    /// Recently completed tasks retained long enough to reject stale late witnesses.
    completed_tasks: RwLock<CompletedTaskCache>,

    /// Detected violations.
    violations: RwLock<VecDeque<CancelCorrectnessViolation>>,

    /// Statistics counters.
    witnesses_processed: AtomicU64,
    violations_detected: AtomicU64,
    stuck_checks_performed: AtomicU64,
}

impl Default for CancelCorrectnessOracle {
    fn default() -> Self {
        Self::with_default_config()
    }
}

impl CancelCorrectnessOracle {
    /// Creates a new cancel-correctness oracle with the given configuration.
    #[must_use]
    pub fn new(config: CancelCorrectnessConfig) -> Self {
        Self {
            config,
            task_states: RwLock::new(DetHashMap::default()),
            completed_tasks: RwLock::new(CompletedTaskCache::default()),
            violations: RwLock::new(VecDeque::new()),
            witnesses_processed: AtomicU64::new(0),
            violations_detected: AtomicU64::new(0),
            stuck_checks_performed: AtomicU64::new(0),
        }
    }

    /// Creates a new oracle with default configuration.
    #[must_use]
    pub fn with_default_config() -> Self {
        Self::new(CancelCorrectnessConfig::default())
    }

    /// Notify the oracle of a cancellation witness.
    ///
    /// This is the main entry point called by the runtime when cancellation
    /// state transitions occur.
    pub fn notify_cancel_witness(&self, witness: CancelWitness, now: Time) {
        self.witnesses_processed.fetch_add(1, Ordering::Relaxed);

        let mut task_states = self.task_states.write();

        if let Some(existing_state) = task_states.get_mut(&witness.task_id) {
            // Validate transition
            if self
                .validate_transition(existing_state, &witness, now)
                .is_ok()
            {
                existing_state.update_with_witness(witness, now);
            }
        } else {
            if self.completed_tasks.read().contains(witness.task_id) {
                drop(task_states);
                self.record_violation(CancelCorrectnessViolation::WitnessAfterCompletion {
                    task_id: witness.task_id,
                    region_id: witness.region_id,
                    phase: witness.phase,
                    epoch: witness.epoch,
                    observed_at: now,
                    stack_trace: self.capture_stack_trace(),
                });
                return;
            }

            // First witness for this task. The oracle may attach after
            // cancellation has already progressed, so accept any initial phase
            // with a non-zero epoch and validate monotone transitions from
            // that point onward.
            if self.validate_initial_witness(&witness, now).is_ok() {
                let state = TaskCancelState::new(witness, now);
                task_states.insert(state.task_id, state);
            }
        }
    }

    /// Check for stuck cancellations and other time-based violations.
    ///
    /// This should be called periodically by the runtime to detect tasks
    /// that have been stuck in cancellation phases for too long.
    pub fn check_stuck_cancellations(&self, now: Time) {
        self.stuck_checks_performed.fetch_add(1, Ordering::Relaxed);

        let mut pending_violations = Vec::new();
        let mut task_states = self.task_states.write();
        let max_duration = self.config.max_phase_duration_ns;

        for state in task_states.values_mut() {
            // Check if task has been in current phase too long
            let duration_ns = now
                .as_nanos()
                .saturating_sub(state.last_transition.as_nanos());

            if duration_ns > max_duration
                && state.current_phase != CancelPhase::Completed
                && !state.stuck_violation_reported
            {
                state.stuck_violation_reported = true;
                pending_violations.push(CancelCorrectnessViolation::StuckCancellation {
                    task_id: state.task_id,
                    region_id: state.region_id,
                    phase: state.current_phase,
                    stuck_since: state.last_transition,
                    detected_at: now,
                    stack_trace: self.capture_stack_trace(),
                });
            }
        }
        drop(task_states);

        for violation in pending_violations {
            self.record_violation(violation);
        }
    }

    /// Notify the oracle that a task has completed.
    ///
    /// This allows the oracle to check if the completion was premature
    /// (i.e., without proper cancellation protocol).
    pub fn notify_task_completed(&self, task_id: TaskId, completion_time: Time) {
        let mut task_states = self.task_states.write();
        let premature_violation = task_states
            .get(&task_id)
            .filter(|state| state.current_phase != CancelPhase::Completed)
            .map(|state| CancelCorrectnessViolation::PrematureCompletion {
                task_id,
                region_id: state.region_id,
                last_phase: state.current_phase,
                completion_time,
                stack_trace: self.capture_stack_trace(),
            });

        // Clean up state for completed task
        task_states.remove(&task_id);
        let mut completed_tasks = self.completed_tasks.write();
        completed_tasks.remember(task_id, self.completed_task_cache_limit());
        drop(completed_tasks);
        drop(task_states);

        if let Some(violation) = premature_violation {
            self.record_violation(violation);
        }
    }

    /// Get statistics about oracle operation.
    pub fn get_statistics(&self) -> CancelCorrectnessStatistics {
        let task_states = self.task_states.read();
        let violations = self.violations.read();

        CancelCorrectnessStatistics {
            witnesses_processed: self.witnesses_processed.load(Ordering::Relaxed),
            violations_detected: self.violations_detected.load(Ordering::Relaxed),
            stuck_checks_performed: self.stuck_checks_performed.load(Ordering::Relaxed),
            active_tasks: task_states.len(),
            total_violations: violations.len(),
        }
    }

    /// Get recent violations for debugging.
    pub fn get_recent_violations(&self, limit: usize) -> Vec<CancelCorrectnessViolation> {
        let violations = self.violations.read();
        violations.iter().rev().take(limit).cloned().collect()
    }

    /// Returns snapshots of the currently tracked task cancellation states.
    pub fn tracked_tasks(&self) -> Vec<TrackedCancelTaskSnapshot> {
        let mut snapshots = self
            .task_states
            .read()
            .values()
            .map(|state| TrackedCancelTaskSnapshot {
                task_id: state.task_id,
                region_id: state.region_id,
                current_phase: state.current_phase,
                epoch: state.epoch,
                cancel_reason: state.cancel_reason.clone(),
                last_transition: state.last_transition,
                witness_history_len: state.witness_history.len(),
            })
            .collect::<Vec<_>>();
        snapshots.sort_by_key(|snapshot| snapshot.task_id);
        snapshots
    }

    /// Check for violations following the oracle pattern.
    ///
    /// Returns the first violation found, or Ok(()) if no violations are present.
    pub fn check(&self, now: Time) -> Result<(), CancelCorrectnessViolation> {
        // First check for stuck cancellations
        self.check_stuck_cancellations(now);

        // Return the first violation if any exist
        let violations = self.violations.read();
        if let Some(violation) = violations.front() {
            let violation = violation.clone();
            drop(violations);
            return Err(violation);
        }
        drop(violations);

        Ok(())
    }

    /// Reset the oracle to its initial state.
    pub fn reset(&self) {
        self.task_states.write().clear();
        self.completed_tasks.write().clear();
        self.violations.write().clear();
        self.witnesses_processed.store(0, Ordering::Relaxed);
        self.violations_detected.store(0, Ordering::Relaxed);
        self.stuck_checks_performed.store(0, Ordering::Relaxed);
    }

    /// Clear all tracked state (for testing).
    #[cfg(test)]
    pub fn clear_state(&self) {
        self.reset();
    }

    fn validate_transition(
        &self,
        current_state: &TaskCancelState,
        new_witness: &CancelWitness,
        now: Time,
    ) -> Result<(), ()> {
        if let Some(last_witness) = current_state.witness_history.back() {
            match CancelWitness::validate_transition(Some(last_witness), new_witness) {
                Ok(()) => {}
                Err(CancelWitnessError::PhaseRegression { from, to }) => {
                    let violation = CancelCorrectnessViolation::InvalidTransition {
                        task_id: current_state.task_id,
                        region_id: current_state.region_id,
                        from_phase: from,
                        to_phase: to,
                        transition_time: now,
                        stack_trace: self.capture_stack_trace(),
                    };

                    self.record_violation(violation);
                    return Err(());
                }
                Err(error) => {
                    let violation = CancelCorrectnessViolation::WitnessValidationFailed {
                        task_id: current_state.task_id,
                        region_id: current_state.region_id,
                        error,
                        transition_time: now,
                        stack_trace: self.capture_stack_trace(),
                    };

                    self.record_violation(violation);
                    return Err(());
                }
            }

            if new_witness.phase != CancelPhase::Completed
                && phase_step(new_witness.phase) > phase_step(current_state.current_phase) + 1
            {
                let violation = CancelCorrectnessViolation::InvalidTransition {
                    task_id: current_state.task_id,
                    region_id: current_state.region_id,
                    from_phase: current_state.current_phase,
                    to_phase: new_witness.phase,
                    transition_time: now,
                    stack_trace: self.capture_stack_trace(),
                };

                self.record_violation(violation);
                return Err(());
            }

            // Check for skipped finalization
            if new_witness.phase == CancelPhase::Completed
                && current_state.current_phase != CancelPhase::Finalizing
                && current_state.current_phase != CancelPhase::Completed
            {
                let violation = CancelCorrectnessViolation::MissedFinalization {
                    task_id: current_state.task_id,
                    region_id: current_state.region_id,
                    from_phase: current_state.current_phase,
                    completion_time: now,
                    stack_trace: self.capture_stack_trace(),
                };

                self.record_violation(violation);
                return Err(());
            }
        }

        Ok(())
    }

    fn completed_task_cache_limit(&self) -> usize {
        self.config.max_violations.max(64)
    }

    fn validate_initial_witness(&self, witness: &CancelWitness, now: Time) -> Result<(), ()> {
        if witness.epoch == 0 {
            self.record_violation(CancelCorrectnessViolation::InvalidInitialWitness {
                task_id: witness.task_id,
                region_id: witness.region_id,
                phase: witness.phase,
                epoch: witness.epoch,
                kind: InvalidInitialWitnessKind::ZeroEpoch,
                observed_at: now,
                stack_trace: self.capture_stack_trace(),
            });
            return Err(());
        }

        Ok(())
    }

    fn record_violation(&self, violation: CancelCorrectnessViolation) {
        self.violations_detected.fetch_add(1, Ordering::Relaxed);

        assert!(
            !self.config.panic_on_violation,
            "Cancel-correctness violation detected: {violation}"
        );

        // Record violation for later inspection
        let mut violations = self.violations.write();
        violations.push_back(violation);

        // Keep violations bounded
        while violations.len() > self.config.max_violations {
            violations.pop_front();
        }
        drop(violations);
    }

    fn capture_stack_trace(&self) -> Option<Arc<Backtrace>> {
        if self.config.capture_stack_traces {
            Some(Arc::new(Backtrace::capture()))
        } else {
            None
        }
    }
}

fn phase_step(phase: CancelPhase) -> u8 {
    match phase {
        CancelPhase::Requested => 0,
        CancelPhase::Cancelling => 1,
        CancelPhase::Finalizing => 2,
        CancelPhase::Completed => 3,
    }
}

/// Statistics about cancel-correctness oracle operation.
#[derive(Debug, Clone)]
pub struct CancelCorrectnessStatistics {
    /// Number of cancellation witnesses processed.
    pub witnesses_processed: u64,
    /// Number of violations detected.
    pub violations_detected: u64,
    /// Number of stuck cancellation checks performed.
    pub stuck_checks_performed: u64,
    /// Number of tasks currently being tracked.
    pub active_tasks: usize,
    /// Total number of violations recorded.
    pub total_violations: usize,
}

impl fmt::Display for CancelCorrectnessStatistics {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(
            f,
            "CancelCorrectnessStats {{ witnesses: {}, violations: {}, stuck_checks: {}, active: {}, total_violations: {} }}",
            self.witnesses_processed,
            self.violations_detected,
            self.stuck_checks_performed,
            self.active_tasks,
            self.total_violations
        )
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::test_utils::init_test_logging;
    use crate::types::{RegionId, TaskId, Time};

    #[test]
    fn test_normal_cancellation_flow() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::testing_default();
        let region_id = RegionId::testing_default();
        let now = Time::ZERO;

        // Normal flow: Requested → Cancelling → Finalizing → Completed
        let reason = CancelReason::user("test_cancel");

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Requested,
                reason.clone(),
            ),
            now,
        );

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Cancelling,
                reason.clone(),
            ),
            now,
        );

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Finalizing,
                reason.clone(),
            ),
            now,
        );

        oracle.notify_cancel_witness(
            CancelWitness::new(task_id, region_id, 1, CancelPhase::Completed, reason),
            now,
        );

        oracle.notify_task_completed(task_id, now);

        let stats = oracle.get_statistics();
        assert_eq!(stats.violations_detected, 0);
        assert_eq!(stats.witnesses_processed, 4);
    }

    #[test]
    fn test_premature_completion_detection() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::testing_default();
        let region_id = RegionId::testing_default();
        let now = Time::ZERO;

        let reason = CancelReason::user("test_cancel");

        // Task gets cancelled but completes prematurely
        oracle.notify_cancel_witness(
            CancelWitness::new(task_id, region_id, 1, CancelPhase::Requested, reason),
            now,
        );

        oracle.notify_task_completed(task_id, now);

        let stats = oracle.get_statistics();
        assert_eq!(stats.violations_detected, 1);

        let violations = oracle.get_recent_violations(1);
        assert_eq!(violations.len(), 1);
        assert!(matches!(
            violations[0],
            CancelCorrectnessViolation::PrematureCompletion { .. }
        ));
    }

    #[test]
    fn test_invalid_transition_detection() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::testing_default();
        let region_id = RegionId::testing_default();
        let now = Time::ZERO;

        let reason = CancelReason::user("test_cancel");

        // Normal start
        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Requested,
                reason.clone(),
            ),
            now,
        );

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Finalizing,
                reason.clone(),
            ),
            now,
        );

        // Invalid transition: Finalizing → Cancelling (backwards)
        oracle.notify_cancel_witness(
            CancelWitness::new(task_id, region_id, 1, CancelPhase::Cancelling, reason),
            now,
        );

        let stats = oracle.get_statistics();
        assert_eq!(stats.violations_detected, 1);

        let violations = oracle.get_recent_violations(1);
        assert!(matches!(
            violations[0],
            CancelCorrectnessViolation::InvalidTransition { .. }
        ));
    }

    #[test]
    fn test_missed_finalization_detection() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::testing_default();
        let region_id = RegionId::testing_default();
        let now = Time::ZERO;

        let reason = CancelReason::user("test_cancel");

        // Skip finalization: Requested → Cancelling → Completed (missing Finalizing)
        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Requested,
                reason.clone(),
            ),
            now,
        );

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Cancelling,
                reason.clone(),
            ),
            now,
        );

        oracle.notify_cancel_witness(
            CancelWitness::new(task_id, region_id, 1, CancelPhase::Completed, reason),
            now,
        );

        let stats = oracle.get_statistics();
        assert_eq!(stats.violations_detected, 1);

        let violations = oracle.get_recent_violations(1);
        assert!(matches!(
            violations[0],
            CancelCorrectnessViolation::MissedFinalization { .. }
        ));
    }

    #[test]
    fn test_concurrent_cancellation_safety() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::testing_default();
        let region_id = RegionId::testing_default();
        let now = Time::ZERO;
        let reason = CancelReason::user("concurrent_test");

        // Simulate concurrent witnesses for the same task
        std::thread::scope(|s| {
            for i in 0..4 {
                let oracle = &oracle;
                let reason = reason.clone();
                s.spawn(move || {
                    oracle.notify_cancel_witness(
                        CancelWitness::new(
                            task_id,
                            region_id,
                            1,
                            match i {
                                0 => CancelPhase::Requested,
                                1 => CancelPhase::Cancelling,
                                2 => CancelPhase::Finalizing,
                                _ => CancelPhase::Completed,
                            },
                            reason,
                        ),
                        now + Duration::from_nanos(i * 1000),
                    );
                });
            }
        });

        // Should handle concurrent updates without panicking
        let stats = oracle.get_statistics();
        assert!(stats.witnesses_processed >= 4);
    }

    #[test]
    fn test_multiple_task_tracking() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let region_id = RegionId::testing_default();
        let now = Time::ZERO;
        let reason = CancelReason::user("multi_task_test");

        // Track multiple tasks through normal cancellation flow
        for i in 0..5 {
            let task_id = TaskId::new_for_test(i, 0);

            oracle.notify_cancel_witness(
                CancelWitness::new(
                    task_id,
                    region_id,
                    1,
                    CancelPhase::Requested,
                    reason.clone(),
                ),
                now,
            );

            oracle.notify_cancel_witness(
                CancelWitness::new(
                    task_id,
                    region_id,
                    1,
                    CancelPhase::Cancelling,
                    reason.clone(),
                ),
                now + Duration::from_nanos(1000),
            );

            oracle.notify_cancel_witness(
                CancelWitness::new(
                    task_id,
                    region_id,
                    1,
                    CancelPhase::Finalizing,
                    reason.clone(),
                ),
                now + Duration::from_nanos(2000),
            );

            oracle.notify_cancel_witness(
                CancelWitness::new(
                    task_id,
                    region_id,
                    1,
                    CancelPhase::Completed,
                    reason.clone(),
                ),
                now + Duration::from_nanos(3000),
            );
        }

        let stats = oracle.get_statistics();
        assert_eq!(stats.witnesses_processed, 20); // 5 tasks × 4 witnesses each
        assert_eq!(stats.violations_detected, 0); // No violations in normal flow
    }

    #[test]
    fn test_stuck_cancellation_detection() {
        init_test_logging();

        let config = CancelCorrectnessConfig {
            max_phase_duration_ns: 1000, // Very short timeout for testing
            ..Default::default()
        };
        let oracle = CancelCorrectnessOracle::new(config);
        let task_id = TaskId::testing_default();
        let region_id = RegionId::testing_default();
        let now = Time::ZERO;
        let reason = CancelReason::user("stuck_test");

        // Task gets stuck in Cancelling phase
        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Requested,
                reason.clone(),
            ),
            now,
        );

        oracle.notify_cancel_witness(
            CancelWitness::new(task_id, region_id, 1, CancelPhase::Cancelling, reason),
            now + Duration::from_nanos(100),
        );

        // Check for stuck cancellations after timeout period
        oracle.check_stuck_cancellations(now + Duration::from_nanos(2000));

        let stats = oracle.get_statistics();
        assert_eq!(stats.violations_detected, 1);

        let violations = oracle.get_recent_violations(1);
        assert_eq!(violations.len(), 1);
        assert!(matches!(
            violations[0],
            CancelCorrectnessViolation::StuckCancellation { .. }
        ));
    }

    #[test]
    fn test_stuck_cancellation_is_reported_once_until_phase_changes() {
        init_test_logging();

        let config = CancelCorrectnessConfig {
            max_phase_duration_ns: 1000,
            ..Default::default()
        };
        let oracle = CancelCorrectnessOracle::new(config);
        let task_id = TaskId::new_for_test(41, 0);
        let region_id = RegionId::testing_default();
        let now = Time::ZERO;
        let reason = CancelReason::user("stuck-once");

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Requested,
                reason.clone(),
            ),
            now,
        );
        oracle.notify_cancel_witness(
            CancelWitness::new(task_id, region_id, 1, CancelPhase::Cancelling, reason),
            now + Duration::from_nanos(100),
        );

        oracle.check_stuck_cancellations(now + Duration::from_nanos(2000));
        oracle.check_stuck_cancellations(now + Duration::from_nanos(3000));

        let stats = oracle.get_statistics();
        assert_eq!(stats.violations_detected, 1);
        assert_eq!(oracle.get_recent_violations(10).len(), 1);
    }

    #[test]
    fn test_repeated_same_phase_witnesses_do_not_mask_stuck_detection() {
        init_test_logging();

        let config = CancelCorrectnessConfig {
            max_phase_duration_ns: 1000,
            ..Default::default()
        };
        let oracle = CancelCorrectnessOracle::new(config);
        let task_id = TaskId::new_for_test(42, 0);
        let region_id = RegionId::testing_default();
        let now = Time::ZERO;
        let reason = CancelReason::user("same-phase-repeat");

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Requested,
                reason.clone(),
            ),
            now,
        );
        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Cancelling,
                reason.clone(),
            ),
            now + Duration::from_nanos(100),
        );
        oracle.notify_cancel_witness(
            CancelWitness::new(task_id, region_id, 1, CancelPhase::Cancelling, reason),
            now + Duration::from_nanos(1500),
        );

        oracle.check_stuck_cancellations(now + Duration::from_nanos(2000));

        let violations = oracle.get_recent_violations(1);
        assert_eq!(violations.len(), 1);
        assert!(matches!(
            violations[0],
            CancelCorrectnessViolation::StuckCancellation {
                phase: CancelPhase::Cancelling,
                ..
            }
        ));
    }

    #[test]
    fn test_violation_statistics_tracking() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::testing_default();
        let region_id = RegionId::testing_default();
        let now = Time::ZERO;
        let reason = CancelReason::user("stats_test");

        // Create several violation types

        // 1. Premature completion
        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Requested,
                reason.clone(),
            ),
            now,
        );
        oracle.notify_task_completed(task_id, now);

        // 2. Invalid transition (different task)
        let task_id2 = TaskId::new_for_test(2, 0);
        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id2,
                region_id,
                1,
                CancelPhase::Finalizing,
                reason.clone(),
            ),
            now,
        );
        oracle.notify_cancel_witness(
            CancelWitness::new(task_id2, region_id, 1, CancelPhase::Cancelling, reason),
            now,
        );

        let stats = oracle.get_statistics();
        assert!(stats.violations_detected >= 2);

        let violations = oracle.get_recent_violations(10);
        assert!(!violations.is_empty());
    }

    #[test]
    fn test_oracle_configuration() {
        init_test_logging();

        // Test default configuration
        let oracle = CancelCorrectnessOracle::with_default_config();
        let stats = oracle.get_statistics();
        assert_eq!(stats.witnesses_processed, 0);
        assert_eq!(stats.violations_detected, 0);

        // Test custom configuration
        let config = CancelCorrectnessConfig {
            max_phase_duration_ns: 5000,
            max_violations: 50,
            panic_on_violation: false,
            capture_stack_traces: false,
            max_stack_trace_depth: 16,
        };

        let oracle = CancelCorrectnessOracle::new(config);
        let task_id = TaskId::testing_default();
        let region_id = RegionId::testing_default();
        let now = Time::ZERO;

        // Normal flow should work with custom config
        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Requested,
                CancelReason::user("config_test"),
            ),
            now,
        );

        let stats = oracle.get_statistics();
        assert_eq!(stats.witnesses_processed, 1);
    }

    #[test]
    fn test_tracked_tasks_expose_cancel_epoch_and_reason() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::new_for_test(9, 0);
        let region_id = RegionId::testing_default();
        let requested_at = Time::from_nanos(1234);
        let updated_at = Time::from_nanos(5678);
        let requested_reason = CancelReason::user("snapshot-test");
        let updated_reason = CancelReason::timeout().with_message("snapshot-updated");

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                7,
                CancelPhase::Requested,
                requested_reason,
            ),
            requested_at,
        );
        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                7,
                CancelPhase::Cancelling,
                updated_reason.clone(),
            ),
            updated_at,
        );

        let tracked = oracle.tracked_tasks();
        assert_eq!(tracked.len(), 1);

        let snapshot = &tracked[0];
        assert_eq!(snapshot.task_id, task_id);
        assert_eq!(snapshot.region_id, region_id);
        assert_eq!(snapshot.current_phase, CancelPhase::Cancelling);
        assert_eq!(snapshot.epoch, 7);
        assert_eq!(snapshot.cancel_reason, updated_reason);
        assert_eq!(snapshot.last_transition, updated_at);
        assert_eq!(snapshot.witness_history_len, 2);
    }

    #[test]
    fn test_epoch_mismatch_records_validation_failure_without_mutating_state() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::new_for_test(43, 0);
        let region_id = RegionId::testing_default();
        let requested_at = Time::from_nanos(10);
        let invalid_at = Time::from_nanos(20);
        let reason = CancelReason::timeout();

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                7,
                CancelPhase::Requested,
                reason.clone(),
            ),
            requested_at,
        );
        oracle.notify_cancel_witness(
            CancelWitness::new(task_id, region_id, 8, CancelPhase::Cancelling, reason),
            invalid_at,
        );

        let tracked = oracle.tracked_tasks();
        assert_eq!(tracked.len(), 1);
        assert_eq!(tracked[0].epoch, 7);
        assert_eq!(tracked[0].current_phase, CancelPhase::Requested);
        assert_eq!(tracked[0].last_transition, requested_at);

        let violations = oracle.get_recent_violations(1);
        assert!(matches!(
            violations[0],
            CancelCorrectnessViolation::WitnessValidationFailed {
                error: CancelWitnessError::EpochMismatch,
                ..
            }
        ));
    }

    #[test]
    fn test_reason_weakening_records_validation_failure_without_mutating_state() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::new_for_test(44, 0);
        let region_id = RegionId::testing_default();
        let requested_at = Time::from_nanos(10);
        let invalid_at = Time::from_nanos(20);
        let stronger_reason = CancelReason::timeout();
        let weaker_reason = CancelReason::user("weaker");

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Requested,
                stronger_reason.clone(),
            ),
            requested_at,
        );
        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Cancelling,
                weaker_reason,
            ),
            invalid_at,
        );

        let tracked = oracle.tracked_tasks();
        assert_eq!(tracked.len(), 1);
        assert_eq!(tracked[0].current_phase, CancelPhase::Requested);
        assert_eq!(tracked[0].cancel_reason, stronger_reason);
        assert_eq!(tracked[0].last_transition, requested_at);

        let violations = oracle.get_recent_violations(1);
        assert!(matches!(
            violations[0],
            CancelCorrectnessViolation::WitnessValidationFailed {
                error: CancelWitnessError::ReasonWeakened { .. },
                ..
            }
        ));
    }

    #[test]
    fn test_skipping_cancelling_phase_records_invalid_transition_without_mutating_state() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::new_for_test(47, 0);
        let region_id = RegionId::testing_default();
        let requested_at = Time::from_nanos(10);
        let invalid_at = Time::from_nanos(20);
        let reason = CancelReason::timeout();

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Requested,
                reason.clone(),
            ),
            requested_at,
        );
        oracle.notify_cancel_witness(
            CancelWitness::new(task_id, region_id, 1, CancelPhase::Finalizing, reason),
            invalid_at,
        );

        let tracked = oracle.tracked_tasks();
        assert_eq!(tracked.len(), 1);
        assert_eq!(tracked[0].current_phase, CancelPhase::Requested);
        assert_eq!(tracked[0].last_transition, requested_at);

        let violations = oracle.get_recent_violations(1);
        assert!(matches!(
            violations[0],
            CancelCorrectnessViolation::InvalidTransition {
                task_id: observed_task,
                region_id: observed_region,
                from_phase: CancelPhase::Requested,
                to_phase: CancelPhase::Finalizing,
                transition_time,
                ..
            } if observed_task == task_id && observed_region == region_id && transition_time == invalid_at
        ));
    }

    #[test]
    fn test_initial_midstream_witness_is_accepted_without_violation() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::new_for_test(45, 0);
        let region_id = RegionId::testing_default();
        let now = Time::from_nanos(10);
        let reason = CancelReason::timeout();

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Cancelling,
                reason.clone(),
            ),
            now,
        );

        let tracked = oracle.tracked_tasks();
        assert_eq!(tracked.len(), 1);
        assert_eq!(tracked[0].task_id, task_id);
        assert_eq!(tracked[0].region_id, region_id);
        assert_eq!(tracked[0].current_phase, CancelPhase::Cancelling);
        assert_eq!(tracked[0].epoch, 1);
        assert_eq!(tracked[0].cancel_reason, reason);

        let stats = oracle.get_statistics();
        assert_eq!(stats.violations_detected, 0);
    }

    #[test]
    fn test_initial_completed_witness_is_accepted_without_violation() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::new_for_test(451, 0);
        let region_id = RegionId::testing_default();
        let witness_at = Time::from_nanos(10);
        let completed_at = Time::from_nanos(20);
        let reason = CancelReason::timeout();

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Completed,
                reason.clone(),
            ),
            witness_at,
        );

        let tracked = oracle.tracked_tasks();
        assert_eq!(tracked.len(), 1);
        assert_eq!(tracked[0].current_phase, CancelPhase::Completed);
        assert_eq!(tracked[0].last_transition, witness_at);
        assert_eq!(tracked[0].cancel_reason, reason);

        oracle.notify_task_completed(task_id, completed_at);

        assert!(oracle.tracked_tasks().is_empty());
        let stats = oracle.get_statistics();
        assert_eq!(stats.violations_detected, 0);
    }

    #[test]
    fn test_initial_witness_rejects_zero_epoch_without_poisoning_state() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::new_for_test(46, 0);
        let region_id = RegionId::testing_default();
        let invalid_at = Time::from_nanos(10);
        let valid_at = Time::from_nanos(20);
        let reason = CancelReason::timeout();

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                0,
                CancelPhase::Requested,
                reason.clone(),
            ),
            invalid_at,
        );

        assert!(oracle.tracked_tasks().is_empty());

        oracle.notify_cancel_witness(
            CancelWitness::new(task_id, region_id, 1, CancelPhase::Requested, reason),
            valid_at,
        );

        let tracked = oracle.tracked_tasks();
        assert_eq!(tracked.len(), 1);
        assert_eq!(tracked[0].epoch, 1);
        assert_eq!(tracked[0].last_transition, valid_at);

        let violations = oracle.get_recent_violations(1);
        assert!(matches!(
            violations[0],
            CancelCorrectnessViolation::InvalidInitialWitness {
                phase: CancelPhase::Requested,
                epoch: 0,
                kind: InvalidInitialWitnessKind::ZeroEpoch,
                ..
            }
        ));
    }

    #[test]
    fn test_late_requested_witness_after_completion_does_not_reopen_task_state() {
        init_test_logging();

        let oracle = CancelCorrectnessOracle::with_default_config();
        let task_id = TaskId::new_for_test(48, 0);
        let region_id = RegionId::testing_default();
        let reason = CancelReason::timeout();

        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Requested,
                reason.clone(),
            ),
            Time::from_nanos(10),
        );
        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Cancelling,
                reason.clone(),
            ),
            Time::from_nanos(20),
        );
        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Finalizing,
                reason.clone(),
            ),
            Time::from_nanos(30),
        );
        oracle.notify_cancel_witness(
            CancelWitness::new(
                task_id,
                region_id,
                1,
                CancelPhase::Completed,
                reason.clone(),
            ),
            Time::from_nanos(40),
        );
        oracle.notify_task_completed(task_id, Time::from_nanos(50));

        oracle.notify_cancel_witness(
            CancelWitness::new(task_id, region_id, 1, CancelPhase::Requested, reason),
            Time::from_nanos(60),
        );

        assert!(oracle.tracked_tasks().is_empty());

        let violations = oracle.get_recent_violations(1);
        assert!(matches!(
            violations[0],
            CancelCorrectnessViolation::WitnessAfterCompletion {
                task_id: observed_task,
                region_id: observed_region,
                phase: CancelPhase::Requested,
                epoch: 1,
                observed_at,
                ..
            } if observed_task == task_id
                && observed_region == region_id
                && observed_at == Time::from_nanos(60)
        ));
    }
}