crabka-raft 0.3.6

Metadata KRaft quorum (KIP-595 KraftController) for Crabka
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
//! The `KRaft` quorum state machine: `on_event(event, log, now) -> Vec<Action>`.

use std::collections::{BTreeMap, BTreeSet};

use crate::kraft::action::{Action, TimerKind};
use crate::kraft::event::{Event, LogEnd};
use crate::kraft::role::{ReplicaProgress, Role};
use crate::kraft::types::{
    LeaderEpoch, LogOffsetMetadata, LogView, NodeId, QuorumState, ReplicaKey, SimInstant,
};

/// Deterministic per-`(node, epoch)` election-timeout jitter in
/// `[0, base_ms)` — Raft's randomized backoff, made reproducible for the
/// deterministic sims. Different nodes (and the same node across re-election
/// epochs) get different spreads, so closely-synchronized voters don't arm their
/// election timers in lockstep and split the vote indefinitely. Shared by the
/// pure core and the async engine's initial timer arm so production self-staggers
/// without per-node config.
#[must_use]
pub(crate) fn election_jitter_ms(me: NodeId, epoch: LeaderEpoch, base_ms: u64) -> u64 {
    if base_ms == 0 {
        return 0;
    }
    // Cheap integer hash of (node id, epoch); avoids any RNG so the sims stay
    // deterministic.
    let mix = me.wrapping_mul(0x9E37_79B9_7F4A_7C15)
        ^ u64::from(epoch).wrapping_mul(0xD1B5_4A32_D192_ED03);
    mix % base_ms
}

/// The hand-rolled KIP-595 + KIP-996 quorum state machine. Pure and
/// deterministic: it consumes [`Event`]s, reads the log through [`LogView`],
/// takes the current time as an injected [`SimInstant`], and produces a list of
/// [`Action`]s for the caller to execute. It never touches the clock, the wire,
/// or the log bytes directly.
pub struct QuorumStateMachine {
    me: NodeId,
    state: QuorumState,
    role: Role,
    /// Base election timeout in ms; callers vary it per node for liveness.
    election_timeout_ms: u64,
}

impl QuorumStateMachine {
    #[must_use]
    pub fn new(me: NodeId, state: QuorumState, election_timeout_ms: u64) -> Self {
        let observer = !state.voters.contains(me);
        let role = if observer {
            Role::Observer {
                leader_id: None,
                fetch_deadline: SimInstant(0),
            }
        } else {
            Role::default()
        };
        Self {
            me,
            state,
            role,
            election_timeout_ms,
        }
    }

    #[must_use]
    pub fn quorum_state(&self) -> &QuorumState {
        &self.state
    }
    /// This replica's own node id.
    #[must_use]
    pub fn me(&self) -> NodeId {
        self.me
    }
    #[must_use]
    pub fn role(&self) -> &Role {
        &self.role
    }
    #[must_use]
    pub fn is_voter(&self) -> bool {
        self.state.voters.contains(self.me)
    }

    #[cfg(test)]
    pub(crate) fn force_epoch(&mut self, e: LeaderEpoch) {
        self.state.leader_epoch = e;
    }

    /// `true` if `candidate_log` is at least as up-to-date as ours
    /// (KIP-595: higher last epoch wins; on tie, higher/equal offset wins).
    fn log_is_up_to_date(log: &dyn LogView, cand: LogEnd) -> bool {
        let my_epoch = log.last_epoch();
        let my_end = log.end_offset();
        cand.last_epoch > my_epoch || (cand.last_epoch == my_epoch && cand.last_offset >= my_end)
    }

    /// The deadline for an election timer armed at `now`. Adds deterministic
    /// per-`(node, epoch)` jitter (standard Raft randomized backoff, made
    /// deterministic for the sims) so competing voters do not arm their election
    /// timers in lockstep. Without this, a bare majority of in-process /
    /// closely-synchronized voters (e.g. exactly 2 of a 3-voter set) splits the
    /// vote every round — both become candidates, self-vote, and neither reaches
    /// majority — livelocking elections until natural skew breaks the tie.
    fn election_deadline(&self, now: SimInstant) -> SimInstant {
        now.saturating_add_ms(
            self.election_timeout_ms
                + election_jitter_ms(self.me, self.state.leader_epoch, self.election_timeout_ms),
        )
    }

    // `event` is taken by value: it models a consumed input message and hands
    // ownership to the machine. The current arms happen to only read Copy
    // fields, but future events can carry owned records/snapshots.
    #[allow(clippy::needless_pass_by_value)]
    pub fn on_event(&mut self, event: Event, log: &dyn LogView, now: SimInstant) -> Vec<Action> {
        match event {
            Event::ReceiveVoteRequest {
                from,
                voter_id,
                candidate_epoch,
                candidate,
                candidate_log_end,
                pre_vote,
            } => self.handle_vote_request(
                log,
                from,
                voter_id,
                candidate_epoch,
                candidate,
                candidate_log_end,
                pre_vote,
                now,
            ),
            Event::ElectionTimeout => self.handle_election_timeout(log, now),
            Event::ReceiveVoteResponse {
                from,
                epoch,
                vote_granted,
            } => self.handle_vote_response(log, from, epoch, vote_granted, now),
            Event::ReceiveBeginQuorumEpoch {
                leader_id,
                leader_epoch,
            } => self.handle_begin_quorum_epoch(leader_id, leader_epoch, now),
            Event::ReceiveEndQuorumEpoch {
                leader_id,
                leader_epoch,
            } => self.handle_end_quorum_epoch(log, leader_id, leader_epoch, now),
            Event::ReceiveFetch {
                from,
                fetch_epoch,
                fetch_offset,
            } => self.handle_fetch(log, from, fetch_epoch, fetch_offset),
            Event::ReceiveFetchResponse {
                leader_id,
                leader_epoch,
                diverging,
            } => self.handle_fetch_response(leader_id, leader_epoch, diverging, now),
            Event::FetchTimeout => self.handle_fetch_timeout(log, now),
        }
    }

    /// (Leader side) a follower fetched at `fetch_offset` claiming it last
    /// replicated up to `fetch_epoch`. If the follower's claimed epoch extends
    /// past where that epoch ends in our log, the logs diverged: reply with the
    /// truncation point. Otherwise record its progress and advance the HWM.
    fn handle_fetch(
        &mut self,
        log: &dyn LogView,
        from: NodeId,
        fetch_epoch: LeaderEpoch,
        fetch_offset: i64,
    ) -> Vec<Action> {
        // Only a leader tracks follower progress / serves divergence hints.
        if !self.role.is_leader() {
            return Vec::new();
        }
        // Divergence check: if the follower claims to have replicated `fetch_epoch`
        // beyond where that epoch ends in our log, it must truncate.
        if fetch_offset > 0
            && let Some(div_end) = log.end_offset_for_epoch(fetch_epoch)
            && fetch_offset > div_end
        {
            return vec![Action::TruncateTo(LogOffsetMetadata {
                offset: div_end,
                epoch: fetch_epoch,
            })];
        }
        // Consistent: record the follower's fetch offset and recompute the HWM.
        let log_end = log.end_offset();
        if let Role::Leader { replicas, .. } = &mut self.role
            && let Some(progress) = replicas.get_mut(&from)
        {
            progress.fetch_offset = fetch_offset;
        }
        let new_hwm = self.recompute_high_watermark(log_end);
        if let Role::Leader { high_watermark, .. } = &mut self.role
            && new_hwm > *high_watermark
        {
            *high_watermark = new_hwm;
            return vec![Action::AdvanceHighWatermark(new_hwm)];
        }
        Vec::new()
    }

    /// The HWM as the `majority()`-th largest match offset across the leader's
    /// own log end and every follower's acknowledged fetch offset, gated on the
    /// current leader epoch (Raft Fig.8 / KIP-595 leader completeness): the HWM
    /// may only advance once a *current-epoch* entry has been majority-replicated.
    /// We approximate that here by requiring the majority offset to be strictly
    /// past `epoch_start_offset` (where this leader's first current-epoch record
    /// sits). Otherwise the HWM is left unchanged. Never regresses.
    ///
    /// Full per-offset epoch validation happens against the durable log; the
    /// core tracks `epoch_start_offset` as its in-memory stand-in.
    fn recompute_high_watermark(&self, log_end: i64) -> i64 {
        let Role::Leader {
            replicas,
            high_watermark,
            epoch_start_offset,
        } = &self.role
        else {
            return 0;
        };
        let mut match_offsets: Vec<i64> = Vec::with_capacity(replicas.len() + 1);
        match_offsets.push(log_end);
        for progress in replicas.values() {
            match_offsets.push(progress.fetch_offset);
        }
        // Sort descending; the majority-th largest sits at index `majority - 1`.
        match_offsets.sort_unstable_by(|a, b| b.cmp(a));
        let majority_offset = match_offsets[self.state.majority() - 1];
        // Leader-completeness gate: only commit once the current-epoch entry at
        // `epoch_start_offset` is itself majority-replicated. Until then, hold.
        let new_hwm = if majority_offset > *epoch_start_offset {
            majority_offset
        } else {
            *high_watermark
        };
        debug_assert!(
            new_hwm <= log_end,
            "HWM {new_hwm} must not exceed leader log end {log_end}"
        );
        debug_assert!(
            new_hwm >= *high_watermark,
            "HWM {new_hwm} must not regress below {high_watermark}"
        );
        new_hwm
    }

    /// (Follower side) the leader answered our Fetch. A diverging hint means we
    /// must truncate; otherwise we re-arm the fetch timer and fetch again.
    fn handle_fetch_response(
        &mut self,
        leader_id: NodeId,
        _leader_epoch: LeaderEpoch,
        diverging: Option<LogOffsetMetadata>,
        now: SimInstant,
    ) -> Vec<Action> {
        if let Some(point) = diverging {
            return vec![Action::TruncateTo(point)];
        }
        let fetch_deadline = now.saturating_add_ms(self.election_timeout_ms);
        vec![
            Action::SendFetch { leader_id },
            Action::ResetTimer {
                kind: TimerKind::Fetch,
                deadline: fetch_deadline,
            },
        ]
    }

    /// The fetch timer fired: a follower/observer lost contact with the leader.
    /// A voter starts an election; an observer just keeps trying to find a leader.
    fn handle_fetch_timeout(&mut self, log: &dyn LogView, now: SimInstant) -> Vec<Action> {
        if self.is_voter() {
            self.start_election(log, now)
        } else {
            Vec::new()
        }
    }

    /// A leader announced its epoch. If it is at least our current epoch, follow
    /// it (becoming `Follower`/an attached `Observer`); a stale (lower-epoch)
    /// announcement is ignored.
    fn handle_begin_quorum_epoch(
        &mut self,
        leader_id: NodeId,
        leader_epoch: LeaderEpoch,
        now: SimInstant,
    ) -> Vec<Action> {
        // KIP-595 / leadership-hijack defense: only adopt a leader that belongs
        // to our current applied voter set. A peer with network access must not
        // be able to install an arbitrary `leader_id` we will then fetch from
        // and replicate metadata from. Guard on a NON-EMPTY voter set so a
        // bootstrapping node that has not yet learned its voters is unaffected
        // (it has no basis to reject), and so KIP-853 add/remove-voter — which
        // legitimately changes the set — is honored by reading the *current*
        // voter set rather than a stale view.
        if !self.state.voters.is_empty() && !self.state.voters.contains(leader_id) {
            tracing::warn!(
                rejected_leader = leader_id,
                leader_epoch,
                "rejecting BeginQuorumEpoch from non-voter leader (not in current voter set)"
            );
            return Vec::new();
        }
        // Accept a strictly-higher epoch, or an equal epoch only if we do not
        // already know a leader for it (one leader per epoch). Otherwise ignore.
        let accept = leader_epoch > self.state.leader_epoch
            || (leader_epoch == self.state.leader_epoch && self.state.leader_id.is_none());
        if !accept {
            return Vec::new();
        }
        self.state.leader_epoch = leader_epoch;
        self.state.leader_id = Some(leader_id);
        self.state.voted_key = None;
        let fetch_deadline = now.saturating_add_ms(self.election_timeout_ms);
        self.role = if self.is_voter() {
            Role::Follower {
                leader_id,
                fetch_deadline,
            }
        } else {
            Role::Observer {
                leader_id: Some(leader_id),
                fetch_deadline,
            }
        };
        vec![
            Action::PersistQuorumState,
            Action::TransitionedTo(self.role.name()),
            Action::SendFetch { leader_id },
            Action::ResetTimer {
                kind: TimerKind::Fetch,
                deadline: fetch_deadline,
            },
        ]
    }

    /// A resigning leader asked us to start an election. If it is not stale, a
    /// voter immediately begins a pre-vote round (no waiting for the election
    /// timer); an observer simply detaches and keeps observing.
    fn handle_end_quorum_epoch(
        &mut self,
        log: &dyn LogView,
        _leader_id: NodeId,
        leader_epoch: LeaderEpoch,
        now: SimInstant,
    ) -> Vec<Action> {
        if leader_epoch < self.state.leader_epoch {
            return Vec::new();
        }
        if self.is_voter() {
            self.start_election(log, now)
        } else {
            let mut actions = Vec::new();
            self.transition_to_unattached(self.state.leader_epoch, now, &mut actions);
            actions
        }
    }

    /// The election timer fired. A voter begins a KIP-996 pre-vote round
    /// (becomes `Prospective`); an observer never elects.
    fn handle_election_timeout(&mut self, log: &dyn LogView, now: SimInstant) -> Vec<Action> {
        if !self.is_voter() {
            return Vec::new();
        }
        self.start_election(log, now)
    }

    /// Shared election-start path (used by `ElectionTimeout` and a resigning
    /// leader's `EndQuorumEpoch`): become `Prospective` and broadcast a
    /// non-binding pre-vote at the *current* epoch (epoch is not bumped until the
    /// pre-vote succeeds).
    fn start_election(&mut self, log: &dyn LogView, now: SimInstant) -> Vec<Action> {
        // Starting a pre-vote round means we have given up on the current leader
        // (our fetch timed out, or the leader resigned). Drop the leader belief:
        // KIP-996 only grants a pre-vote when the voter is no longer following a
        // live leader, and the grant check keys off `leader_id.is_none()`. If we
        // kept `leader_id = Some(old)` here, a `Prospective` voter would refuse to
        // grant pre-votes to an equally-stranded peer, and re-election after the
        // leader is lost would deadlock (no voter can ever clear its stale leader
        // belief without a new leader, which can never be elected). The epoch is
        // unchanged — this is not a step-up to a new epoch, just abandoning the
        // dead leader for the current one.
        self.state.leader_id = None;
        let mut granted = BTreeSet::new();
        granted.insert(self.me);
        let deadline = self.election_deadline(now);
        self.role = Role::Prospective {
            granted,
            election_deadline: deadline,
        };
        let mut actions = vec![
            Action::TransitionedTo(self.role.name()),
            Action::SendVoteRequest {
                epoch: self.state.leader_epoch,
                pre_vote: true,
            },
            Action::ResetTimer {
                kind: TimerKind::Election,
                deadline,
            },
        ];
        // A lone voter wins its own pre-vote immediately.
        if self.tally_prevote_reached_majority() {
            actions.extend(self.promote_to_candidate(log, now));
        }
        actions
    }

    fn handle_vote_response(
        &mut self,
        log: &dyn LogView,
        from: NodeId,
        epoch: LeaderEpoch,
        vote_granted: bool,
        now: SimInstant,
    ) -> Vec<Action> {
        // A higher-epoch rejection fences us: step down to that epoch.
        if !vote_granted && epoch > self.state.leader_epoch {
            let mut actions = Vec::new();
            self.transition_to_unattached(epoch, now, &mut actions);
            return actions;
        }
        if !vote_granted {
            return Vec::new();
        }
        // Match the grant to our round by our OWN role + epoch — exactly as
        // Kafka does (its `VoteResponse` carries no pre-vote flag). `Prospective`
        // ⇒ this is a pre-vote grant; `Candidate` ⇒ a real-vote grant. The epoch
        // guard drops a stale grant from a superseded round (e.g. a late pre-vote
        // grant at epoch E arriving after we bumped to E+1 and became Candidate).
        match &mut self.role {
            Role::Prospective { granted, .. } if epoch == self.state.leader_epoch => {
                granted.insert(from);
                if self.tally_prevote_reached_majority() {
                    self.promote_to_candidate(log, now)
                } else {
                    Vec::new()
                }
            }
            Role::Candidate { granted, .. } if epoch == self.state.leader_epoch => {
                granted.insert(from);
                if self.tally_candidate_reached_majority() {
                    self.promote_to_leader(log)
                } else {
                    Vec::new()
                }
            }
            _ => Vec::new(),
        }
    }

    /// Whether the current `Prospective` grant set has reached a quorum.
    fn tally_prevote_reached_majority(&self) -> bool {
        match &self.role {
            Role::Prospective { granted, .. } => granted.len() >= self.state.majority(),
            _ => false,
        }
    }

    /// Whether the current `Candidate` grant set has reached a quorum.
    fn tally_candidate_reached_majority(&self) -> bool {
        match &self.role {
            Role::Candidate { granted, .. } => granted.len() >= self.state.majority(),
            _ => false,
        }
    }

    /// Pre-vote succeeded: bump the epoch, self-vote, and broadcast a real vote.
    fn promote_to_candidate(&mut self, log: &dyn LogView, now: SimInstant) -> Vec<Action> {
        self.state.leader_epoch = self.state.leader_epoch.saturating_add(1);
        self.state.leader_id = None;
        self.state.voted_key = Some(ReplicaKey {
            id: self.me,
            directory_id: uuid::Uuid::nil(),
        });
        let mut granted = BTreeSet::new();
        granted.insert(self.me);
        let deadline = self.election_deadline(now);
        self.role = Role::Candidate {
            granted,
            election_deadline: deadline,
        };
        let mut actions = vec![
            Action::PersistQuorumState,
            Action::TransitionedTo(self.role.name()),
            Action::SendVoteRequest {
                epoch: self.state.leader_epoch,
                pre_vote: false,
            },
            Action::ResetTimer {
                kind: TimerKind::Election,
                deadline,
            },
        ];
        // A lone voter wins its own election immediately.
        if self.tally_candidate_reached_majority() {
            actions.extend(self.promote_to_leader_inner(log));
        }
        actions
    }

    /// Real vote succeeded: become leader for the current epoch.
    fn promote_to_leader(&mut self, log: &dyn LogView) -> Vec<Action> {
        self.promote_to_leader_inner(log)
    }

    fn promote_to_leader_inner(&mut self, log: &dyn LogView) -> Vec<Action> {
        let epoch = self.state.leader_epoch;
        self.state.leader_id = Some(self.me);
        let mut replicas = BTreeMap::new();
        for id in self.state.voters.ids() {
            if id != self.me {
                replicas.insert(id, ReplicaProgress::default());
            }
        }
        // The leader's `LeaderChange` / first current-epoch record sits at the
        // current log end. The HWM may only advance past this offset (Fig.8).
        let epoch_start_offset = log.end_offset();
        self.role = Role::Leader {
            replicas,
            high_watermark: 0,
            epoch_start_offset,
        };
        vec![
            Action::AppendLeaderChange { epoch },
            Action::SendBeginQuorumEpoch { epoch },
            Action::PersistQuorumState,
            Action::TransitionedTo(self.role.name()),
        ]
    }

    #[allow(clippy::too_many_arguments)]
    fn handle_vote_request(
        &mut self,
        log: &dyn LogView,
        from: NodeId,
        voter_id: NodeId,
        candidate_epoch: LeaderEpoch,
        candidate: NodeId,
        cand_log: LogEnd,
        pre_vote: bool,
        now: SimInstant,
    ) -> Vec<Action> {
        let mut actions = Vec::new();
        // Recipient-targeting check (KIP-595 / `KafkaRaftClient`): a Vote carries
        // the id of the voter it is addressed to. If it targets a different node
        // (a stale/misrouted/forged request), ignore it silently — do not even
        // reply, exactly as the JVM does. Only enforce once the addressing field
        // is meaningful: a `-1`/unset `voter_id` (decoded as 0) and the
        // bootstrap case where we have no voter set yet are not rejected here.
        if voter_id != self.me && voter_id != 0 {
            tracing::warn!(
                addressed_to = voter_id,
                me = self.me,
                "ignoring Vote addressed to a different voter"
            );
            return Vec::new();
        }
        // Leadership-hijack defense: only consider a vote from a candidate that
        // belongs to our current applied voter set. Guarded on a NON-EMPTY voter
        // set so a bootstrapping node is unaffected, and read from the current
        // set so KIP-853 reconfiguration is honored. A non-voter candidate is
        // ignored (no reply), mirroring the JVM which drops votes from replicas
        // it does not recognize as voters.
        if !self.state.voters.is_empty() && !self.state.voters.contains(candidate) {
            tracing::warn!(
                candidate,
                candidate_epoch,
                "ignoring Vote from non-voter candidate (not in current voter set)"
            );
            return Vec::new();
        }
        // Fenced: candidate is behind our epoch.
        if candidate_epoch < self.state.leader_epoch {
            actions.push(Action::ReplyVote {
                to: from,
                epoch: self.state.leader_epoch,
                granted: false,
            });
            return actions;
        }
        // A standard vote at a higher epoch first advances us to that epoch
        // (Unattached), clearing any prior vote. Pre-vote never changes epoch.
        if !pre_vote && candidate_epoch > self.state.leader_epoch {
            self.transition_to_unattached(candidate_epoch, now, &mut actions);
        }
        let up_to_date = Self::log_is_up_to_date(log, cand_log);
        let granted = if pre_vote {
            // Non-binding: grant if log is up to date and we don't already
            // follow a leader in this (or a higher) epoch.
            up_to_date && self.state.leader_id.is_none()
        } else {
            let not_voted_other = match self.state.voted_key {
                None => true,
                Some(k) => k.id == candidate,
            };
            up_to_date && not_voted_other && self.state.leader_id.is_none()
        };
        if granted && !pre_vote {
            // Binding: persist the vote, become Voted.
            self.state.voted_key = Some(ReplicaKey {
                id: candidate,
                directory_id: uuid::Uuid::nil(),
            });
            let deadline = self.election_deadline(now);
            self.role = Role::Voted {
                election_deadline: deadline,
            };
            actions.push(Action::PersistQuorumState);
            actions.push(Action::TransitionedTo(self.role.name()));
            // Arm the election timer: if the candidate we voted for dies, this
            // node must time out and start its own election (else deadlock).
            actions.push(Action::ResetTimer {
                kind: TimerKind::Election,
                deadline,
            });
        }
        actions.push(Action::ReplyVote {
            to: from,
            epoch: self.state.leader_epoch,
            granted,
        });
        actions
    }

    fn transition_to_unattached(
        &mut self,
        epoch: LeaderEpoch,
        deadline: SimInstant,
        actions: &mut Vec<Action>,
    ) {
        self.state.leader_epoch = epoch;
        self.state.leader_id = None;
        self.state.voted_key = None;
        self.role = Role::Unattached {
            election_deadline: deadline,
        };
        actions.push(Action::PersistQuorumState);
        actions.push(Action::TransitionedTo("Unattached"));
        // Arm the election timer so a fenced/stepped-down node will eventually
        // re-elect if no leader emerges (without this it would deadlock).
        actions.push(Action::ResetTimer {
            kind: TimerKind::Election,
            deadline,
        });
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::kraft::event::{Event, LogEnd};
    use crate::kraft::types::*;
    use assert2::assert;

    struct FakeLog {
        end: i64,
        last_epoch: LeaderEpoch,
    }
    impl LogView for FakeLog {
        fn end_offset(&self) -> i64 {
            self.end
        }
        fn last_epoch(&self) -> LeaderEpoch {
            self.last_epoch
        }
        fn end_offset_for_epoch(&self, epoch: LeaderEpoch) -> Option<i64> {
            if epoch <= self.last_epoch {
                Some(self.end)
            } else {
                None
            }
        }
    }
    /// A `LogView` whose `end_offset` can change between calls, so a test can
    /// model a leader promoted at a small log end (low `epoch_start_offset`)
    /// and then growing before followers fetch.
    struct CellLog {
        end: std::cell::Cell<i64>,
        last_epoch: LeaderEpoch,
    }
    impl LogView for CellLog {
        fn end_offset(&self) -> i64 {
            self.end.get()
        }
        fn last_epoch(&self) -> LeaderEpoch {
            self.last_epoch
        }
        fn end_offset_for_epoch(&self, epoch: LeaderEpoch) -> Option<i64> {
            if epoch <= self.last_epoch {
                Some(self.end.get())
            } else {
                None
            }
        }
    }
    fn voters(ids: &[NodeId]) -> crabka_metadata::voters::VoterSet {
        crabka_metadata::voters::VoterSet::from_voters(ids.iter().map(|&id| {
            crabka_metadata::voters::Voter {
                id,
                directory_id: uuid::Uuid::nil(),
                endpoints: vec![],
                kraft_version: crabka_metadata::voters::KRaftVersionRange::default(),
            }
        }))
    }
    fn machine(me: NodeId, ids: &[NodeId]) -> QuorumStateMachine {
        QuorumStateMachine::new(
            me,
            QuorumState::bootstrap(uuid::Uuid::nil(), voters(ids)),
            1000,
        )
    }

    #[test]
    fn grants_standard_vote_when_log_up_to_date_and_not_voted() {
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        let actions = m.on_event(
            Event::ReceiveVoteRequest {
                from: 2,
                voter_id: 1,
                candidate_epoch: 1,
                candidate: 2,
                candidate_log_end: LogEnd {
                    last_epoch: 1,
                    last_offset: 5,
                },
                pre_vote: false,
            },
            &log,
            SimInstant(0),
        );
        assert!(actions.iter().any(|a| matches!(
            a,
            Action::ReplyVote {
                to: 2,
                granted: true,
                ..
            }
        )));
        assert!(m.quorum_state().voted_key.map(|k| k.id) == Some(2)); // binding
    }

    #[test]
    fn denies_standard_vote_when_candidate_log_behind() {
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 10,
            last_epoch: 2,
        };
        let actions = m.on_event(
            Event::ReceiveVoteRequest {
                from: 2,
                voter_id: 1,
                candidate_epoch: 2,
                candidate: 2,
                candidate_log_end: LogEnd {
                    last_epoch: 1,
                    last_offset: 3,
                },
                pre_vote: false,
            },
            &log,
            SimInstant(0),
        );
        assert!(
            actions
                .iter()
                .any(|a| matches!(a, Action::ReplyVote { granted: false, .. }))
        );
    }

    #[test]
    fn pre_vote_grant_is_non_binding() {
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        m.on_event(
            Event::ReceiveVoteRequest {
                from: 2,
                voter_id: 1,
                candidate_epoch: 1,
                candidate: 2,
                candidate_log_end: LogEnd {
                    last_epoch: 1,
                    last_offset: 5,
                },
                pre_vote: true,
            },
            &log,
            SimInstant(0),
        );
        assert!(m.quorum_state().voted_key.is_none()); // pre-vote does NOT persist
        assert!(m.quorum_state().leader_epoch == 0); // epoch unchanged
    }

    #[test]
    fn denies_standard_vote_when_already_voted_for_other() {
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        // vote for 2 first
        m.on_event(
            Event::ReceiveVoteRequest {
                from: 2,
                voter_id: 1,
                candidate_epoch: 1,
                candidate: 2,
                candidate_log_end: LogEnd {
                    last_epoch: 1,
                    last_offset: 5,
                },
                pre_vote: false,
            },
            &log,
            SimInstant(0),
        );
        // now 3 asks in the same epoch
        let actions = m.on_event(
            Event::ReceiveVoteRequest {
                from: 3,
                voter_id: 1,
                candidate_epoch: 1,
                candidate: 3,
                candidate_log_end: LogEnd {
                    last_epoch: 1,
                    last_offset: 5,
                },
                pre_vote: false,
            },
            &log,
            SimInstant(0),
        );
        assert!(actions.iter().any(|a| matches!(
            a,
            Action::ReplyVote {
                to: 3,
                granted: false,
                ..
            }
        )));
    }

    #[test]
    fn fenced_when_candidate_epoch_below_current() {
        let mut m = machine(1, &[1, 2, 3]);
        m.force_epoch(5); // test helper
        let log = FakeLog {
            end: 5,
            last_epoch: 5,
        };
        let actions = m.on_event(
            Event::ReceiveVoteRequest {
                from: 2,
                voter_id: 1,
                candidate_epoch: 3,
                candidate: 2,
                candidate_log_end: LogEnd {
                    last_epoch: 5,
                    last_offset: 5,
                },
                pre_vote: false,
            },
            &log,
            SimInstant(0),
        );
        assert!(
            actions
                .iter()
                .any(|a| matches!(a, Action::ReplyVote { granted: false, .. }))
        );
    }

    #[test]
    fn election_timeout_starts_prevote_prospective() {
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        let actions = m.on_event(Event::ElectionTimeout, &log, SimInstant(2000));
        assert!(matches!(m.role(), Role::Prospective { .. }));
        assert!(
            actions
                .iter()
                .any(|a| matches!(a, Action::SendVoteRequest { pre_vote: true, .. }))
        );
        assert!(m.quorum_state().leader_epoch == 0); // pre-vote: epoch not bumped yet
    }

    #[test]
    fn prevote_majority_promotes_to_candidate_and_bumps_epoch() {
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        m.on_event(Event::ElectionTimeout, &log, SimInstant(2000)); // Prospective
        // 1 (self) + grant from 2 = majority of 3
        let actions = m.on_event(
            Event::ReceiveVoteResponse {
                from: 2,
                epoch: 0,
                vote_granted: true,
            },
            &log,
            SimInstant(2001),
        );
        assert!(matches!(m.role(), Role::Candidate { .. }));
        assert!(m.quorum_state().leader_epoch == 1);
        assert!(m.quorum_state().voted_key.map(|k| k.id) == Some(1)); // self-vote
        assert!(actions.iter().any(|a| matches!(
            a,
            Action::SendVoteRequest {
                pre_vote: false,
                epoch: 1
            }
        )));
    }

    #[test]
    fn real_majority_promotes_to_leader_and_appends_leader_change() {
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        m.on_event(Event::ElectionTimeout, &log, SimInstant(2000));
        m.on_event(
            Event::ReceiveVoteResponse {
                from: 2,
                epoch: 0,
                vote_granted: true,
            },
            &log,
            SimInstant(2001),
        );
        let actions = m.on_event(
            Event::ReceiveVoteResponse {
                from: 2,
                epoch: 1,
                vote_granted: true,
            },
            &log,
            SimInstant(2002),
        );
        assert!(m.role().is_leader());
        assert!(m.quorum_state().leader_id == Some(1));
        assert!(
            actions
                .iter()
                .any(|a| matches!(a, Action::AppendLeaderChange { epoch: 1 }))
        );
        assert!(
            actions
                .iter()
                .any(|a| matches!(a, Action::SendBeginQuorumEpoch { epoch: 1 }))
        );
    }

    #[test]
    fn observer_never_starts_election() {
        let mut m = machine(99, &[1, 2, 3]); // 99 is not a voter
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        let actions = m.on_event(Event::ElectionTimeout, &log, SimInstant(2000));
        assert!(matches!(m.role(), Role::Observer { .. }));
        assert!(
            !actions
                .iter()
                .any(|a| matches!(a, Action::SendVoteRequest { .. }))
        );
    }

    #[test]
    fn begin_quorum_epoch_makes_us_follower() {
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        let actions = m.on_event(
            Event::ReceiveBeginQuorumEpoch {
                leader_id: 2,
                leader_epoch: 4,
            },
            &log,
            SimInstant(10),
        );
        assert!(matches!(m.role(), Role::Follower { leader_id: 2, .. }));
        assert!(m.quorum_state().leader_epoch == 4);
        assert!(m.quorum_state().leader_id == Some(2));
        assert!(
            actions
                .iter()
                .any(|a| matches!(a, Action::SendFetch { leader_id: 2 }))
        );
        assert!(
            actions
                .iter()
                .any(|a| matches!(a, Action::PersistQuorumState))
        );
    }

    #[test]
    fn end_quorum_epoch_triggers_immediate_election() {
        let mut m = machine(1, &[1, 2, 3]);
        // follow leader 2 @ epoch 4 first
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        m.on_event(
            Event::ReceiveBeginQuorumEpoch {
                leader_id: 2,
                leader_epoch: 4,
            },
            &log,
            SimInstant(10),
        );
        let actions = m.on_event(
            Event::ReceiveEndQuorumEpoch {
                leader_id: 2,
                leader_epoch: 4,
            },
            &log,
            SimInstant(11),
        );
        // immediately start pre-vote (Prospective), not wait for timeout
        assert!(matches!(m.role(), Role::Prospective { .. }));
        assert!(
            actions
                .iter()
                .any(|a| matches!(a, Action::SendVoteRequest { pre_vote: true, .. }))
        );
    }

    #[test]
    fn stale_begin_quorum_epoch_ignored() {
        let mut m = machine(1, &[1, 2, 3]);
        m.force_epoch(7);
        let log = FakeLog {
            end: 5,
            last_epoch: 7,
        };
        let actions = m.on_event(
            Event::ReceiveBeginQuorumEpoch {
                leader_id: 2,
                leader_epoch: 4,
            },
            &log,
            SimInstant(10),
        );
        assert!(actions.is_empty()); // lower epoch → ignored
        assert!(m.quorum_state().leader_id.is_none());
    }

    #[test]
    fn leader_advances_hwm_at_majority_fetch_offset() {
        let mut m = machine(1, &[1, 2, 3]);
        // The log end is 0 at promotion so the leader's `epoch_start_offset` is
        // 0; the leader-completeness gate then permits advancing the HWM to any
        // majority offset > 0. After promotion the log grows to end 10, which is
        // what followers replicate against.
        let log = CellLog {
            end: std::cell::Cell::new(0),
            last_epoch: 0,
        };
        // drive to leader (epoch_start_offset captured as end_offset() == 0)
        m.on_event(Event::ElectionTimeout, &log, SimInstant(2000));
        m.on_event(
            Event::ReceiveVoteResponse {
                from: 2,
                epoch: 0,
                vote_granted: true,
            },
            &log,
            SimInstant(2001),
        );
        m.on_event(
            Event::ReceiveVoteResponse {
                from: 2,
                epoch: 1,
                vote_granted: true,
            },
            &log,
            SimInstant(2002),
        );
        assert!(matches!(
            m.role(),
            Role::Leader {
                epoch_start_offset: 0,
                ..
            }
        ));
        // Leader's log now ends at 10. follower 2 fetches at 8, follower 3 at 4.
        log.end.set(10);
        let a2 = m.on_event(
            Event::ReceiveFetch {
                from: 2,
                fetch_epoch: 1,
                fetch_offset: 8,
            },
            &log,
            SimInstant(2100),
        );
        // majority of {self=10, 2=8} = 8, and 8 > epoch_start_offset 0 → advances
        assert!(
            a2.iter()
                .any(|a| matches!(a, Action::AdvanceHighWatermark(8)))
        );
        let _ = m.on_event(
            Event::ReceiveFetch {
                from: 3,
                fetch_epoch: 1,
                fetch_offset: 4,
            },
            &log,
            SimInstant(2101),
        );
        // sorted match offsets {10,8,4}; majority (2nd highest) = 8 → no regress
        if let Role::Leader { high_watermark, .. } = m.role() {
            assert!(*high_watermark == 8);
        } else {
            panic!()
        }
    }

    #[test]
    fn leader_holds_hwm_for_prior_epoch_entries_until_current_epoch_committed() {
        // Leader-completeness (Raft Fig.8): a leader promoted at log end 10
        // (epoch_start_offset = 10) must NOT advance the HWM to a majority
        // offset that only covers prior-epoch entries (8 < 10).
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 10,
            last_epoch: 1,
        };
        m.on_event(Event::ElectionTimeout, &log, SimInstant(2000));
        m.on_event(
            Event::ReceiveVoteResponse {
                from: 2,
                epoch: 0,
                vote_granted: true,
            },
            &log,
            SimInstant(2001),
        );
        m.on_event(
            Event::ReceiveVoteResponse {
                from: 2,
                epoch: 1,
                vote_granted: true,
            },
            &log,
            SimInstant(2002),
        );
        assert!(matches!(
            m.role(),
            Role::Leader {
                epoch_start_offset: 10,
                ..
            }
        ));
        // follower 2 fetches at 8: majority of {10, 8} = 8, but 8 <= 10 → hold.
        let a2 = m.on_event(
            Event::ReceiveFetch {
                from: 2,
                fetch_epoch: 1,
                fetch_offset: 8,
            },
            &log,
            SimInstant(2100),
        );
        assert!(
            !a2.iter()
                .any(|a| matches!(a, Action::AdvanceHighWatermark(_)))
        );
        if let Role::Leader { high_watermark, .. } = m.role() {
            assert!(*high_watermark == 0);
        } else {
            panic!()
        }
    }

    #[test]
    fn leader_detects_divergence_and_returns_truncate() {
        // log has last_epoch 2 ending at 10; epoch-1 ended at 5.
        struct L;
        impl LogView for L {
            fn end_offset(&self) -> i64 {
                10
            }
            fn last_epoch(&self) -> LeaderEpoch {
                2
            }
            fn end_offset_for_epoch(&self, e: LeaderEpoch) -> Option<i64> {
                match e {
                    0 => Some(0),
                    1 => Some(5),
                    2 => Some(10),
                    _ => None,
                }
            }
        }
        let mut m = machine(1, &[1, 2, 3]);
        let log = L;
        m.on_event(Event::ElectionTimeout, &log, SimInstant(2000));
        m.on_event(
            Event::ReceiveVoteResponse {
                from: 2,
                epoch: 0,
                vote_granted: true,
            },
            &log,
            SimInstant(2001),
        );
        m.on_event(
            Event::ReceiveVoteResponse {
                from: 2,
                epoch: 1,
                vote_granted: true,
            },
            &log,
            SimInstant(2002),
        );
        // follower claims it fetched epoch 1 at offset 8, but epoch 1 ended at 5 → diverged.
        let actions = m.on_event(
            Event::ReceiveFetch {
                from: 2,
                fetch_epoch: 1,
                fetch_offset: 8,
            },
            &log,
            SimInstant(2100),
        );
        assert!(actions.iter().any(|a| matches!(
            a,
            Action::TruncateTo(LogOffsetMetadata {
                offset: 5,
                epoch: 1
            })
        )));
    }

    #[test]
    fn prospective_counts_grant_with_no_wire_prevote_signal() {
        // A JVM voter's `VoteResponse` carries no pre-vote flag. The candidate
        // must still count the grant as a PRE-VOTE because it is Prospective —
        // this is the KIP-996 interop fix (was dropped by the old echo-tag path).
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        m.on_event(Event::ElectionTimeout, &log, SimInstant(2000)); // → Prospective, epoch 0
        assert!(matches!(m.role(), Role::Prospective { .. }));
        let actions = m.on_event(
            Event::ReceiveVoteResponse {
                from: 2,
                epoch: 0,
                vote_granted: true,
            },
            &log,
            SimInstant(2001),
        );
        // Pre-vote majority (self + 2) → promote to Candidate and bump the epoch.
        assert!(matches!(m.role(), Role::Candidate { .. }));
        assert!(m.quorum_state().leader_epoch == 1);
        assert!(actions.iter().any(|a| matches!(
            a,
            Action::SendVoteRequest {
                pre_vote: false,
                epoch: 1
            }
        )));
    }

    #[test]
    fn stale_prevote_grant_ignored_after_promotion() {
        // A late pre-vote grant at the old epoch must not be miscounted toward
        // the real election once we have promoted to Candidate at epoch+1.
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        m.on_event(Event::ElectionTimeout, &log, SimInstant(2000));
        m.on_event(
            Event::ReceiveVoteResponse {
                from: 2,
                epoch: 0,
                vote_granted: true,
            },
            &log,
            SimInstant(2001),
        ); // → Candidate @ epoch 1
        assert!(matches!(m.role(), Role::Candidate { .. }));
        // A duplicate/late pre-vote grant still tagged epoch 0 arrives.
        let actions = m.on_event(
            Event::ReceiveVoteResponse {
                from: 3,
                epoch: 0,
                vote_granted: true,
            },
            &log,
            SimInstant(2002),
        );
        // Epoch guard (0 != 1) drops it: we stay Candidate, do NOT become leader.
        assert!(matches!(m.role(), Role::Candidate { .. }));
        assert!(!m.role().is_leader());
        assert!(actions.is_empty());
        // The ignored stale grant must not have entered the real-vote tally:
        // after promotion the Candidate's grant set holds only our self-vote.
        if let Role::Candidate { granted, .. } = m.role() {
            assert!(granted.len() == 1);
            assert!(!granted.contains(&3));
        } else {
            panic!("expected Candidate");
        }
    }

    #[test]
    fn begin_quorum_epoch_from_non_voter_leader_rejected() {
        // C-2: a BeginQuorumEpoch claiming a leader_id that is not in our
        // (non-empty) voter set must NOT be adopted — no leader installed, no
        // role transition, no actions.
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        let actions = m.on_event(
            Event::ReceiveBeginQuorumEpoch {
                leader_id: 99, // not a voter
                leader_epoch: 4,
            },
            &log,
            SimInstant(10),
        );
        assert!(actions.is_empty());
        assert!(m.quorum_state().leader_id.is_none());
        assert!(m.quorum_state().leader_epoch == 0); // epoch not advanced
        assert!(!matches!(m.role(), Role::Follower { .. }));
    }

    #[test]
    fn begin_quorum_epoch_from_voter_leader_still_accepted() {
        // C-2 must not break the legitimate path: a voter leader is adopted.
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        let actions = m.on_event(
            Event::ReceiveBeginQuorumEpoch {
                leader_id: 2, // a real voter
                leader_epoch: 4,
            },
            &log,
            SimInstant(10),
        );
        assert!(matches!(m.role(), Role::Follower { leader_id: 2, .. }));
        assert!(m.quorum_state().leader_id == Some(2));
        assert!(
            actions
                .iter()
                .any(|a| matches!(a, Action::SendFetch { leader_id: 2 }))
        );
    }

    #[test]
    fn vote_from_non_voter_candidate_not_granted() {
        // C-2: a Vote whose candidate is not in our (non-empty) voter set is
        // ignored — no reply, no vote recorded.
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        let actions = m.on_event(
            Event::ReceiveVoteRequest {
                from: 99,
                voter_id: 1, // addressed to us
                candidate_epoch: 1,
                candidate: 99, // not a voter
                candidate_log_end: LogEnd {
                    last_epoch: 1,
                    last_offset: 5,
                },
                pre_vote: false,
            },
            &log,
            SimInstant(0),
        );
        assert!(actions.is_empty());
        assert!(m.quorum_state().voted_key.is_none());
    }

    #[test]
    fn vote_addressed_to_other_voter_rejected() {
        // C-2: a Vote addressed (voter_id) to a different node than us is
        // ignored, even if the candidate is a legitimate voter.
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        let actions = m.on_event(
            Event::ReceiveVoteRequest {
                from: 2,
                voter_id: 3, // addressed to node 3, not us (node 1)
                candidate_epoch: 1,
                candidate: 2,
                candidate_log_end: LogEnd {
                    last_epoch: 1,
                    last_offset: 5,
                },
                pre_vote: false,
            },
            &log,
            SimInstant(0),
        );
        assert!(actions.is_empty());
        assert!(m.quorum_state().voted_key.is_none());
    }

    #[test]
    fn vote_from_voter_addressed_to_us_still_granted() {
        // C-2 must not break the legitimate path: a voter candidate addressing
        // us is still granted.
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 5,
            last_epoch: 1,
        };
        let actions = m.on_event(
            Event::ReceiveVoteRequest {
                from: 2,
                voter_id: 1, // addressed to us
                candidate_epoch: 1,
                candidate: 2,
                candidate_log_end: LogEnd {
                    last_epoch: 1,
                    last_offset: 5,
                },
                pre_vote: false,
            },
            &log,
            SimInstant(0),
        );
        assert!(actions.iter().any(|a| matches!(
            a,
            Action::ReplyVote {
                to: 2,
                granted: true,
                ..
            }
        )));
        assert!(m.quorum_state().voted_key.map(|k| k.id) == Some(2));
    }

    #[test]
    fn follower_truncates_on_diverging_fetch_response() {
        let mut m = machine(1, &[1, 2, 3]);
        let log = FakeLog {
            end: 10,
            last_epoch: 2,
        };
        m.on_event(
            Event::ReceiveBeginQuorumEpoch {
                leader_id: 2,
                leader_epoch: 3,
            },
            &log,
            SimInstant(10),
        );
        let actions = m.on_event(
            Event::ReceiveFetchResponse {
                leader_id: 2,
                leader_epoch: 3,
                diverging: Some(LogOffsetMetadata {
                    offset: 5,
                    epoch: 1,
                }),
            },
            &log,
            SimInstant(11),
        );
        assert!(actions.iter().any(|a| matches!(
            a,
            Action::TruncateTo(LogOffsetMetadata {
                offset: 5,
                epoch: 1
            })
        )));
    }
}