dynamo-mocker 1.5.0

Mock LLM scheduler and KV manager for testing
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
// SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

//! Tokio/wall-clock driver for one logical generalized mock engine.
//!
//! The AISimulate engine remains runtime-neutral: it eagerly computes a pass
//! and returns an absolute modeled completion time. This module owns the live
//! concerns around that contract: bounded control lanes, wall-clock sleeps,
//! mid-pass cancellation, attention-DP barrier release, and ordered effect
//! delivery. Dynamo-specific transport and metric publication stay outside the
//! driver and consume [`GroupedLiveEvent`] values.

use std::collections::VecDeque;
use std::fmt;
use std::sync::Arc;
use std::sync::atomic::{AtomicU64, Ordering};
use std::time::Duration;

use aisimulate_core::engine::generalized::{
    EngineEffects, EnginePassCompleted, EnginePassStarted, GeneralizedMockerEngine,
    SchedulerCommand,
};
use aisimulate_core::engine::{
    Command, CommandEffects, PassCompletionEffects, PassStartEffects, SchedulerRank,
};
use anyhow::{Context, Result, anyhow, bail};
use tokio::sync::{mpsc, oneshot};
use tokio::task::JoinHandle;
use tokio::time::Instant;
use tokio_util::sync::CancellationToken;
#[cfg(test)]
use uuid::Uuid;

#[cfg(not(test))]
use crate::common::utils::sleep_until_precise;

/// Engine type driven by the native live runtime.
pub type GroupedEngine = GeneralizedMockerEngine<SchedulerRank>;

/// Bounded-channel sizing for one grouped live engine.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct GroupedLiveDriverConfig {
    /// Capacity shared independently by the ordinary-command and cancellation
    /// lanes.
    pub control_capacity: usize,
    /// Capacity of the ordered neutral-effect lane.
    pub event_capacity: usize,
}

impl Default for GroupedLiveDriverConfig {
    fn default() -> Self {
        Self {
            control_capacity: 64,
            event_capacity: 64,
        }
    }
}

impl GroupedLiveDriverConfig {
    fn validate(self) -> Result<Self> {
        if self.control_capacity == 0 {
            bail!("grouped live control capacity must be positive");
        }
        if self.event_capacity == 0 {
            bail!("grouped live event capacity must be positive");
        }
        Ok(self)
    }
}

/// Ordered, runtime-neutral effects released by the grouped live driver.
///
/// A Dynamo adapter consumes this stream and owns router event publication,
/// request output delivery, lifecycle transport, FPM publication, and
/// production metric updates. Backpressure on this lane deliberately pauses
/// the engine before it exposes later effects.
#[derive(Debug)]
pub enum GroupedLiveEvent {
    /// One command was applied. This is enqueued before the command caller is
    /// acknowledged.
    CommandApplied {
        command_id: u64,
        pass_in_flight: bool,
        is_request_cancellation: bool,
        effects: EngineEffects<CommandEffects>,
    },
    /// Start-visible admissions and KV events for a grouped pass.
    PassStarted(EnginePassStarted<PassStartEffects>),
    /// Completion-visible outputs, lifecycle events, KV events, and metrics.
    ///
    /// The adapter owns this boundary until it calls
    /// [`GroupedPassBoundary::finish`]. It may synchronously apply cleanup
    /// commands first (for example when an output receiver has closed),
    /// preventing the actor from starting another pass with stale ownership.
    PassCompleted {
        completed: EnginePassCompleted<PassCompletionEffects>,
        boundary: GroupedPassBoundary,
    },
}

struct ControlEnvelope {
    command_id: u64,
    command: SchedulerCommand<Command>,
    reply: oneshot::Sender<Result<()>>,
}

enum BoundaryRequest {
    Apply {
        command: SchedulerCommand<Command>,
        reply: oneshot::Sender<Result<EngineEffects<CommandEffects>>>,
    },
    Finish {
        reply: oneshot::Sender<()>,
    },
}

/// Adapter-owned handle that keeps a completed pass at its publication
/// boundary until Dynamo has handled delivery-dependent cleanup.
#[derive(Debug)]
pub struct GroupedPassBoundary {
    request_tx: mpsc::Sender<BoundaryRequest>,
}

impl GroupedPassBoundary {
    pub(crate) async fn apply_command(
        &self,
        command: SchedulerCommand<Command>,
    ) -> Result<EngineEffects<CommandEffects>> {
        let (reply, response) = oneshot::channel();
        self.request_tx
            .send(BoundaryRequest::Apply { command, reply })
            .await
            .map_err(|_| anyhow!("grouped live pass boundary is closed"))?;
        response
            .await
            .context("grouped live engine stopped while applying a boundary command")?
    }

    pub(crate) async fn finish(self) -> Result<()> {
        let (reply, acknowledged) = oneshot::channel();
        self.request_tx
            .send(BoundaryRequest::Finish { reply })
            .await
            .map_err(|_| anyhow!("grouped live pass boundary is closed"))?;
        acknowledged
            .await
            .context("grouped live engine stopped before acknowledging pass-boundary finish")
    }
}

struct LiveCancelGuard(CancellationToken);

impl Drop for LiveCancelGuard {
    fn drop(&mut self) {
        self.0.cancel();
    }
}

/// Cloneable control handle for one logical live engine.
///
/// Ordinary commands preserve FIFO order on one bounded lane. Request
/// cancellation has a separate lane so it can suppress retained output while
/// a modeled pass is in flight even when an ordinary command is deferred.
#[derive(Clone)]
pub struct GroupedLiveEngineHandle {
    command_tx: mpsc::Sender<ControlEnvelope>,
    cancellation_tx: mpsc::Sender<ControlEnvelope>,
    #[cfg(test)]
    cancel_token: CancellationToken,
    next_command_id: Arc<AtomicU64>,
    _cancel_guard: Arc<LiveCancelGuard>,
}

impl GroupedLiveEngineHandle {
    /// Apply one rank-addressed command and wait until its effects have been
    /// placed on the ordered event lane.
    ///
    /// [`Command::CancelRequest`] is automatically routed through the
    /// dedicated cancellation lane. Other commands retain ordinary FIFO
    /// ordering.
    #[cfg(test)]
    async fn apply_command(&self, command: SchedulerCommand<Command>) -> Result<()> {
        let queued = self.enqueue_command(command).await?;
        queued
            .response
            .await
            .context("grouped live engine stopped before acknowledging a command")?
    }

    /// Enqueue a command without waiting for its modeled application.
    ///
    /// The compatibility adapter uses the returned correlation ID to delay a
    /// legacy acknowledgement until the matching [`GroupedLiveEvent`] has
    /// been published through Dynamo's existing sinks.
    #[cfg(test)]
    async fn enqueue_command(
        &self,
        command: SchedulerCommand<Command>,
    ) -> Result<QueuedGroupedLiveCommand> {
        let command_id = self.reserve_command_id()?;
        self.enqueue_reserved_command(command_id, command).await
    }

    pub(crate) fn reserve_command_id(&self) -> Result<u64> {
        self.next_command_id
            .fetch_update(Ordering::Relaxed, Ordering::Relaxed, |id| id.checked_add(1))
            .map_err(|_| anyhow!("grouped live command ID overflow"))
    }

    pub(crate) async fn enqueue_reserved_command(
        &self,
        command_id: u64,
        command: SchedulerCommand<Command>,
    ) -> Result<QueuedGroupedLiveCommand> {
        let is_cancellation = matches!(command.command, Command::CancelRequest { .. });
        let sender = if is_cancellation {
            &self.cancellation_tx
        } else {
            &self.command_tx
        };
        let (reply, response) = oneshot::channel();
        sender
            .send(ControlEnvelope {
                command_id,
                command,
                reply,
            })
            .await
            .map_err(|_| anyhow!("grouped live engine control lane is closed"))?;
        Ok(QueuedGroupedLiveCommand {
            command_id,
            response,
        })
    }

    /// Cancel one request through the mid-pass-safe cancellation lane.
    #[cfg(test)]
    async fn cancel_request(&self, dp_rank: u32, request_id: Uuid) -> Result<()> {
        self.apply_command(SchedulerCommand::new(
            dp_rank,
            Command::CancelRequest {
                request_id,
                discard_pending_output: true,
            },
        ))
        .await
    }

    /// Request an orderly actor shutdown.
    #[cfg(test)]
    fn shutdown(&self) {
        self.cancel_token.cancel();
    }
}

pub(crate) struct QueuedGroupedLiveCommand {
    pub(crate) command_id: u64,
    pub(crate) response: oneshot::Receiver<Result<()>>,
}

/// Spawned grouped live engine and its Dynamo-owned effect boundary.
pub struct GroupedLiveRuntime {
    pub handle: GroupedLiveEngineHandle,
    pub events: mpsc::Receiver<GroupedLiveEvent>,
    pub actor: JoinHandle<Result<()>>,
}

/// Drive one single-rank or attention-DP engine using Tokio's wall
/// clock.
///
/// `cancel_token` may be shared with the owning Dynamo component. Dropping the
/// last [`GroupedLiveEngineHandle`] also cancels it.
pub fn spawn_grouped_live_engine(
    engine: GroupedEngine,
    config: GroupedLiveDriverConfig,
    cancel_token: Option<CancellationToken>,
) -> Result<GroupedLiveRuntime> {
    let config = config.validate()?;
    let (command_tx, command_rx) = mpsc::channel(config.control_capacity);
    let (cancellation_tx, cancellation_rx) = mpsc::channel(config.control_capacity);
    let (event_tx, events) = mpsc::channel(config.event_capacity);
    let cancel_token = cancel_token.unwrap_or_default();
    let actor_cancel_token = cancel_token.clone();
    let cancel_guard = Arc::new(LiveCancelGuard(cancel_token.clone()));
    let next_command_id = Arc::new(AtomicU64::new(0));
    let clock_origin = Instant::now();
    let actor = tokio::spawn(async move {
        GroupedLiveActor {
            engine,
            command_rx,
            cancellation_rx,
            event_tx,
            cancel_token: actor_cancel_token,
            clock_origin,
            deferred_commands: VecDeque::new(),
        }
        .run()
        .await
    });
    Ok(GroupedLiveRuntime {
        handle: GroupedLiveEngineHandle {
            command_tx,
            cancellation_tx,
            #[cfg(test)]
            cancel_token,
            next_command_id,
            _cancel_guard: cancel_guard,
        },
        events,
        actor,
    })
}

struct GroupedLiveActor {
    engine: GroupedEngine,
    command_rx: mpsc::Receiver<ControlEnvelope>,
    cancellation_rx: mpsc::Receiver<ControlEnvelope>,
    event_tx: mpsc::Sender<GroupedLiveEvent>,
    cancel_token: CancellationToken,
    clock_origin: Instant,
    deferred_commands: VecDeque<ControlEnvelope>,
}

#[derive(Debug)]
struct PublishCancelled;

impl fmt::Display for PublishCancelled {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter.write_str("grouped live engine stopped while publishing effects")
    }
}

impl std::error::Error for PublishCancelled {}

impl GroupedLiveActor {
    async fn run(&mut self) -> Result<()> {
        match self.run_until_stopped().await {
            Err(error) if error.is::<PublishCancelled>() => Ok(()),
            result => result,
        }
    }

    async fn run_until_stopped(&mut self) -> Result<()> {
        loop {
            if self.cancel_token.is_cancelled() {
                return Ok(());
            }

            self.process_due_internal_work().await?;
            if !self.engine.is_ready() {
                if !self.wait_for_idle_work().await? {
                    return Ok(());
                }
                continue;
            }

            // Bound this turn to work already queued at the readiness boundary,
            // so a continuously refilled control lane cannot starve a pass.
            self.apply_idle_control_snapshot().await?;
            if !self.engine.is_ready() {
                continue;
            }

            let started_at_ms = self.elapsed_ms();
            let Some(started) = self.engine.execute_pass(started_at_ms)? else {
                continue;
            };
            let pass_id = started.pass_id;
            let end_ms = started.end_ms;
            let zero_duration = end_ms <= started_at_ms;
            self.publish(GroupedLiveEvent::PassStarted(started)).await?;

            if !self.wait_for_pass_boundary(end_ms).await? {
                return Ok(());
            }
            let completed_at_ms = self.elapsed_ms().max(end_ms);
            let completed = self.engine.complete_pass(pass_id, completed_at_ms)?;
            let (boundary_tx, boundary_rx) = mpsc::channel(1);
            self.publish(GroupedLiveEvent::PassCompleted {
                completed,
                boundary: GroupedPassBoundary {
                    request_tx: boundary_tx,
                },
            })
            .await?;
            if !self.serve_pass_boundary(boundary_rx).await? {
                return Ok(());
            }
            self.apply_post_pass_controls().await?;

            // A zero-duration engine can remain continuously ready. Yielding
            // keeps cancellation and sibling tasks responsive without adding
            // modeled latency.
            if zero_duration {
                tokio::task::yield_now().await;
            }
        }
    }

    fn elapsed_ms(&self) -> f64 {
        self.clock_origin.elapsed().as_secs_f64() * 1_000.0
    }

    async fn publish(&self, event: GroupedLiveEvent) -> Result<()> {
        tokio::select! {
            biased;
            result = self.event_tx.send(event) => {
                match result {
                    Ok(()) => Ok(()),
                    Err(_) if self.cancel_token.is_cancelled() => Err(PublishCancelled.into()),
                    Err(_) => Err(anyhow!("grouped live engine event lane is closed")),
                }
            },
            _ = self.cancel_token.cancelled() => {
                Err(PublishCancelled.into())
            },
        }
    }

    async fn serve_pass_boundary(
        &mut self,
        mut requests: mpsc::Receiver<BoundaryRequest>,
    ) -> Result<bool> {
        loop {
            let request = tokio::select! {
                biased;
                _ = self.cancel_token.cancelled() => return Ok(false),
                request = requests.recv() => request,
            };
            let Some(request) = request else {
                bail!("grouped live pass boundary adapter stopped without finishing");
            };
            match request {
                BoundaryRequest::Apply { command, reply } => {
                    let result = self
                        .engine
                        .apply_command_effects(command, self.elapsed_ms());
                    let _ = reply.send(result);
                }
                BoundaryRequest::Finish { reply } => {
                    let _ = reply.send(());
                    return Ok(true);
                }
            }
        }
    }

    async fn apply_control(&mut self, envelope: ControlEnvelope) -> Result<()> {
        let command_id = envelope.command_id;
        let is_request_cancellation =
            matches!(&envelope.command.command, Command::CancelRequest { .. });
        let now_ms = self.elapsed_ms();
        let result = self.engine.apply_command_effects(envelope.command, now_ms);
        match result {
            Ok(effects) => {
                let event = GroupedLiveEvent::CommandApplied {
                    command_id,
                    pass_in_flight: false,
                    is_request_cancellation,
                    effects,
                };
                if let Err(error) = self.publish(event).await {
                    let _ = envelope.reply.send(Err(anyhow!(error.to_string())));
                    return Err(error);
                }
                let _ = envelope.reply.send(Ok(()));
                Ok(())
            }
            Err(error) => {
                let _ = envelope.reply.send(Err(error));
                Ok(())
            }
        }
    }

    async fn wait_for_idle_work(&mut self) -> Result<bool> {
        let deadline_ms = self.engine.next_internal_deadline_ms();
        let deadline = sleep_until_ms(self.clock_origin, deadline_ms);
        tokio::pin!(deadline);
        tokio::select! {
            biased;
            _ = self.cancel_token.cancelled() => Ok(false),
            cancellation = self.cancellation_rx.recv() => {
                let Some(cancellation) = cancellation else {
                    return Ok(false);
                };
                self.apply_control(cancellation).await?;
                Ok(true)
            }
            command = self.command_rx.recv() => {
                let Some(command) = command else {
                    return Ok(false);
                };
                self.apply_control(command).await?;
                Ok(true)
            }
            _ = &mut deadline, if deadline_ms.is_some() => {
                self.process_due_internal_work().await?;
                Ok(true)
            }
        }
    }

    async fn apply_idle_control_snapshot(&mut self) -> Result<()> {
        let cancellation_count = self.cancellation_rx.len();
        let command_count = self.command_rx.len();
        for _ in 0..cancellation_count {
            let Ok(cancellation) = self.cancellation_rx.try_recv() else {
                break;
            };
            self.apply_control(cancellation).await?;
        }
        for _ in 0..command_count {
            let Ok(command) = self.command_rx.try_recv() else {
                break;
            };
            self.apply_control(command).await?;
        }
        Ok(())
    }

    async fn wait_for_pass_boundary(&mut self, end_ms: f64) -> Result<bool> {
        let pass_deadline = sleep_until_ms(self.clock_origin, Some(end_ms));
        tokio::pin!(pass_deadline);
        let mut accept_commands = true;
        loop {
            let internal_deadline_ms = self.engine.next_internal_deadline_ms();
            let internal_deadline = sleep_until_ms(self.clock_origin, internal_deadline_ms);
            tokio::pin!(internal_deadline);
            tokio::select! {
                biased;
                _ = self.cancel_token.cancelled() => return Ok(false),
                cancellation = self.cancellation_rx.recv() => {
                    let Some(cancellation) = cancellation else {
                        return Ok(false);
                    };
                    self.apply_control_during_pass(cancellation).await?;
                }
                _ = &mut pass_deadline => return Ok(true),
                _ = &mut internal_deadline, if internal_deadline_ms.is_some() => {
                    self.process_due_internal_work().await?;
                }
                command = self.command_rx.recv(), if accept_commands => {
                    let Some(command) = command else {
                        return Ok(false);
                    };
                    if command_can_apply_during_pass(&command.command.command) {
                        self.apply_control_during_pass(command).await?;
                    } else {
                        self.deferred_commands.push_back(command);
                        accept_commands = false;
                    }
                }
            }
        }
    }

    async fn apply_control_during_pass(&mut self, envelope: ControlEnvelope) -> Result<()> {
        let command_id = envelope.command_id;
        let is_request_cancellation =
            matches!(&envelope.command.command, Command::CancelRequest { .. });
        let now_ms = self.elapsed_ms();
        let result = self.engine.apply_command_effects(envelope.command, now_ms);
        match result {
            Ok(effects) => {
                let event = GroupedLiveEvent::CommandApplied {
                    command_id,
                    pass_in_flight: true,
                    is_request_cancellation,
                    effects,
                };
                if let Err(error) = self.publish(event).await {
                    let _ = envelope.reply.send(Err(anyhow!(error.to_string())));
                    return Err(error);
                }
                let _ = envelope.reply.send(Ok(()));
            }
            Err(error) => {
                let _ = envelope.reply.send(Err(error));
            }
        }
        Ok(())
    }

    async fn apply_post_pass_controls(&mut self) -> Result<()> {
        let cancellation_count = self.cancellation_rx.len();
        let command_count = self.command_rx.len();
        for _ in 0..cancellation_count {
            let Ok(cancellation) = self.cancellation_rx.try_recv() else {
                break;
            };
            self.apply_control(cancellation).await?;
        }
        while let Some(command) = self.deferred_commands.pop_front() {
            self.apply_control(command).await?;
        }
        for _ in 0..command_count {
            let Ok(command) = self.command_rx.try_recv() else {
                break;
            };
            self.apply_control(command).await?;
        }
        Ok(())
    }

    async fn process_due_internal_work(&mut self) -> Result<()> {
        let now_ms = self.elapsed_ms();
        if !self
            .engine
            .next_internal_deadline_ms()
            .is_some_and(|deadline| deadline <= now_ms)
        {
            return Ok(());
        }
        self.engine.process_internal_work(now_ms)?;
        Ok(())
    }
}

fn command_can_apply_during_pass(command: &Command) -> bool {
    matches!(
        command,
        Command::SubmitHandoffPrefill { .. } | Command::ReserveDestination { .. }
    )
}

async fn sleep_until_ms(origin: Instant, deadline_ms: Option<f64>) {
    let Some(deadline_ms) = deadline_ms else {
        std::future::pending::<()>().await;
        return;
    };
    let deadline = origin + Duration::from_secs_f64(deadline_ms.max(0.0) / 1_000.0);
    #[cfg(test)]
    tokio::time::sleep_until(deadline).await;
    #[cfg(not(test))]
    sleep_until_precise(deadline.into_std()).await;
}

#[cfg(test)]
mod tests {
    use std::num::NonZeroU32;
    use std::sync::Arc;

    use aisimulate_core::engine::generalized::EngineIdentity;
    use aisimulate_core::engine::{
        CommandResult, EngineConfig, EngineFactory, HandoffId, Request, TimingModel,
        TimingModelConfig, WorkerType,
    };

    use super::*;

    fn request(id: u128, prompt_len: usize, output_len: usize) -> Request {
        Request {
            request_id: Uuid::from_u128(id),
            tokens: (0..prompt_len as u32).collect(),
            max_output_tokens: output_len,
            output_token_ids: Some((0..output_len as u32).map(|token| token + 10_000).collect()),
        }
    }

    fn runtime(dp_size: u32, pass_ms: f64) -> GroupedLiveRuntime {
        runtime_with_config(
            dp_size,
            EngineConfig {
                num_gpu_blocks: 128,
                block_size: 4,
                max_num_seqs: 8,
                max_num_batched_tokens: 256,
                timing_model: TimingModelConfig::Fixed {
                    prefill_ms: pass_ms,
                    decode_ms: 0.0,
                },
                ..EngineConfig::default()
            },
        )
    }

    fn runtime_with_config(dp_size: u32, config: EngineConfig) -> GroupedLiveRuntime {
        let engine = EngineFactory::new(config)
            .unwrap()
            .build(EngineIdentity::new(7), NonZeroU32::new(dp_size).unwrap())
            .unwrap();
        spawn_grouped_live_engine(engine, GroupedLiveDriverConfig::default(), None).unwrap()
    }

    struct PromptLengthTiming;

    impl TimingModel for PromptLengthTiming {
        fn predict_prefill_ms(
            &self,
            _batch_size: usize,
            mean_isl: usize,
            _mean_prefix: usize,
        ) -> Result<f64> {
            Ok(mean_isl as f64 * 10.0)
        }

        fn predict_decode_ms(
            &self,
            _batch_size: usize,
            _active_kv_tokens: usize,
            _mean_context_length: usize,
            _total_kv_tokens: usize,
        ) -> Result<f64> {
            Ok(0.0)
        }
    }

    fn unequal_rank_runtime() -> GroupedLiveRuntime {
        let config = EngineConfig {
            num_gpu_blocks: 128,
            block_size: 4,
            max_num_seqs: 8,
            max_num_batched_tokens: 256,
            ..EngineConfig::default()
        };
        let engine = EngineFactory::with_timing_model(config, Arc::new(PromptLengthTiming))
            .unwrap()
            .build(EngineIdentity::new(7), NonZeroU32::new(2).unwrap())
            .unwrap();
        spawn_grouped_live_engine(engine, GroupedLiveDriverConfig::default(), None).unwrap()
    }

    async fn next_event(events: &mut mpsc::Receiver<GroupedLiveEvent>) -> GroupedLiveEvent {
        events.recv().await.expect("live actor must remain active")
    }

    fn ready_actor(
        event_tx: mpsc::Sender<GroupedLiveEvent>,
        cancel_token: CancellationToken,
    ) -> GroupedLiveActor {
        let mut engine = EngineFactory::new(EngineConfig {
            num_gpu_blocks: 128,
            block_size: 4,
            max_num_seqs: 8,
            max_num_batched_tokens: 256,
            timing_model: TimingModelConfig::Fixed {
                prefill_ms: 100.0,
                decode_ms: 0.0,
            },
            ..EngineConfig::default()
        })
        .unwrap()
        .build(EngineIdentity::new(7), NonZeroU32::new(1).unwrap())
        .unwrap();
        engine
            .apply_command_effects(
                SchedulerCommand::new(0, Command::Submit(request(90, 4, 1))),
                0.0,
            )
            .unwrap();
        let (_command_tx, command_rx) = mpsc::channel(1);
        let (_cancellation_tx, cancellation_rx) = mpsc::channel(1);
        GroupedLiveActor {
            engine,
            command_rx,
            cancellation_rx,
            event_tx,
            cancel_token,
            clock_origin: Instant::now(),
            deferred_commands: VecDeque::new(),
        }
    }

    #[tokio::test]
    async fn cancellation_while_blocked_publishing_is_orderly() {
        let (event_tx, mut events) = mpsc::channel(1);
        event_tx
            .send(GroupedLiveEvent::CommandApplied {
                command_id: 0,
                pass_in_flight: false,
                is_request_cancellation: false,
                effects: EngineEffects::default(),
            })
            .await
            .unwrap();
        let cancel = CancellationToken::new();
        let mut live_actor = ready_actor(event_tx, cancel.clone());
        let actor = tokio::spawn(async move { live_actor.run().await });

        tokio::task::yield_now().await;
        assert!(
            !actor.is_finished(),
            "the actor should be blocked on the full event lane"
        );
        cancel.cancel();
        tokio::time::timeout(Duration::from_secs(1), actor)
            .await
            .expect("cancellation should release a blocked publication")
            .unwrap()
            .unwrap();

        assert!(matches!(
            events.try_recv(),
            Ok(GroupedLiveEvent::CommandApplied { .. })
        ));
    }

    #[tokio::test]
    async fn unexpectedly_closed_event_lane_remains_an_error() {
        let (event_tx, events) = mpsc::channel(1);
        drop(events);
        let error = ready_actor(event_tx, CancellationToken::new())
            .run()
            .await
            .unwrap_err();
        assert!(
            error
                .to_string()
                .contains("grouped live engine event lane is closed"),
            "{error:#}"
        );
    }

    #[tokio::test(start_paused = true)]
    async fn attention_dp_releases_completion_only_at_the_shared_boundary() {
        let GroupedLiveRuntime {
            handle,
            mut events,
            actor,
        } = runtime(2, 100.0);
        let rank0 =
            handle.apply_command(SchedulerCommand::new(0, Command::Submit(request(1, 4, 1))));
        let rank1 =
            handle.apply_command(SchedulerCommand::new(1, Command::Submit(request(2, 8, 1))));
        let (rank0, rank1) = tokio::join!(rank0, rank1);
        rank0.unwrap();
        rank1.unwrap();

        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::CommandApplied { .. }
        ));
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::CommandApplied { .. }
        ));
        let GroupedLiveEvent::PassStarted(started) = next_event(&mut events).await else {
            panic!("expected grouped pass start");
        };
        assert_eq!(started.participating_ranks.get(), 2);
        assert_eq!(started.by_rank.len(), 2);

        tokio::time::advance(Duration::from_millis(99)).await;
        tokio::task::yield_now().await;
        assert!(events.try_recv().is_err());
        tokio::time::advance(Duration::from_millis(1)).await;
        let GroupedLiveEvent::PassCompleted {
            completed,
            boundary,
        } = next_event(&mut events).await
        else {
            panic!("expected grouped pass completion");
        };
        assert_eq!(completed.effects.by_rank.len(), 2);
        boundary.finish().await.unwrap();

        handle.shutdown();
        actor.await.unwrap().unwrap();
    }

    #[tokio::test(start_paused = true)]
    async fn attention_dp_active_rank_fpm_uses_the_modeled_shared_boundary() {
        let GroupedLiveRuntime {
            handle,
            mut events,
            actor,
        } = unequal_rank_runtime();
        let rank0 = handle.apply_command(SchedulerCommand::new(
            0,
            Command::Submit(request(101, 4, 1)),
        ));
        let rank1 = handle.apply_command(SchedulerCommand::new(
            1,
            Command::Submit(request(102, 8, 1)),
        ));
        let (rank0, rank1) = tokio::join!(rank0, rank1);
        rank0.unwrap();
        rank1.unwrap();
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::CommandApplied { .. }
        ));
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::CommandApplied { .. }
        ));
        let GroupedLiveEvent::PassStarted(started) = next_event(&mut events).await else {
            panic!("expected grouped pass start");
        };
        let rank_durations = started
            .by_rank
            .iter()
            .map(|rank| rank.rank_end_ms - started.started_at_ms)
            .collect::<Vec<_>>();
        assert_eq!(rank_durations.len(), 2);
        assert!(rank_durations[0] < rank_durations[1]);
        let modeled_group_duration_ms = started.end_ms - started.started_at_ms;

        // Wake the actor after the modeled boundary. Wall-clock scheduling
        // delay must not inflate either active rank's modeled FPM duration.
        tokio::time::advance(Duration::from_millis(100)).await;
        let GroupedLiveEvent::PassCompleted {
            completed,
            boundary,
        } = next_event(&mut events).await
        else {
            panic!("expected grouped pass completion");
        };
        assert_eq!(
            completed
                .effects
                .by_rank
                .iter()
                .map(|rank| rank.effects.forward_pass_metrics.duration_ms)
                .collect::<Vec<_>>(),
            vec![modeled_group_duration_ms, modeled_group_duration_ms]
        );
        boundary.finish().await.unwrap();

        handle.shutdown();
        actor.await.unwrap().unwrap();
    }

    #[tokio::test(start_paused = true)]
    async fn cancellation_suppresses_retained_output_during_a_grouped_pass() {
        let GroupedLiveRuntime {
            handle,
            mut events,
            actor,
        } = runtime(1, 100.0);
        let request_id = Uuid::from_u128(11);
        handle
            .apply_command(SchedulerCommand::new(0, Command::Submit(request(11, 4, 1))))
            .await
            .unwrap();
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::CommandApplied { .. }
        ));
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::PassStarted(_)
        ));

        handle.cancel_request(0, request_id).await.unwrap();
        let GroupedLiveEvent::CommandApplied {
            pass_in_flight,
            effects,
            ..
        } = next_event(&mut events).await
        else {
            panic!("expected cancellation effects");
        };
        assert!(pass_in_flight);
        assert!(effects.by_rank[0].effects.suppressed_pending_output);

        tokio::time::advance(Duration::from_millis(100)).await;
        let GroupedLiveEvent::PassCompleted {
            completed,
            boundary,
        } = next_event(&mut events).await
        else {
            panic!("expected grouped pass completion");
        };
        assert!(completed.effects.by_rank[0].effects.outputs.is_empty());
        boundary.finish().await.unwrap();

        handle.shutdown();
        actor.await.unwrap().unwrap();
    }

    #[tokio::test(start_paused = true)]
    async fn queued_cancellation_preempts_an_overdue_pass_boundary() {
        let mut engine = EngineFactory::new(EngineConfig {
            num_gpu_blocks: 128,
            block_size: 4,
            max_num_seqs: 8,
            max_num_batched_tokens: 256,
            timing_model: TimingModelConfig::Fixed {
                prefill_ms: 100.0,
                decode_ms: 0.0,
            },
            ..EngineConfig::default()
        })
        .unwrap()
        .build(EngineIdentity::new(7), NonZeroU32::new(1).unwrap())
        .unwrap();
        let request_id = Uuid::from_u128(12);
        engine
            .apply_command_effects(
                SchedulerCommand::new(0, Command::Submit(request(12, 4, 2))),
                0.0,
            )
            .unwrap();
        let started = engine.execute_pass(0.0).unwrap().unwrap();

        let (_command_tx, command_rx) = mpsc::channel(1);
        let (cancellation_tx, cancellation_rx) = mpsc::channel(1);
        let (event_tx, mut events) = mpsc::channel(1);
        let (reply, mut response) = oneshot::channel();
        cancellation_tx
            .send(ControlEnvelope {
                command_id: 99,
                command: SchedulerCommand::new(
                    0,
                    Command::CancelRequest {
                        request_id,
                        discard_pending_output: true,
                    },
                ),
                reply,
            })
            .await
            .unwrap();

        // Both the pass timer and cancellation receive are ready on the first
        // poll. The dedicated cancellation lane must win so scheduler/KV
        // cleanup and retained-output suppression happen before completion.
        let mut actor = GroupedLiveActor {
            engine,
            command_rx,
            cancellation_rx,
            event_tx,
            cancel_token: CancellationToken::new(),
            clock_origin: Instant::now() - Duration::from_millis(200),
            deferred_commands: VecDeque::new(),
        };
        assert!(actor.wait_for_pass_boundary(started.end_ms).await.unwrap());
        response
            .try_recv()
            .expect("queued cancellation must be applied before the overdue boundary")
            .unwrap();

        let GroupedLiveEvent::CommandApplied {
            command_id,
            pass_in_flight,
            is_request_cancellation,
            effects,
        } = events
            .try_recv()
            .expect("cancellation effects must precede pass completion")
        else {
            panic!("expected cancellation effects");
        };
        assert_eq!(command_id, 99);
        assert!(pass_in_flight);
        assert!(is_request_cancellation);
        assert!(effects.by_rank[0].effects.suppressed_pending_output);
        assert_eq!(
            effects.by_rank[0].effects.retired_requests,
            vec![request_id]
        );

        let completed = actor
            .engine
            .complete_pass(started.pass_id, actor.elapsed_ms().max(started.end_ms))
            .unwrap();
        assert!(completed.effects.by_rank[0].effects.outputs.is_empty());
    }

    async fn noop_cancellation_outcome(discard_pending_output: bool) -> (bool, usize) {
        let GroupedLiveRuntime {
            handle,
            mut events,
            actor,
        } = runtime(1, 100.0);
        let request_id = Uuid::from_u128(21);
        handle
            .apply_command(SchedulerCommand::new(0, Command::Submit(request(21, 4, 1))))
            .await
            .unwrap();
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::CommandApplied { .. }
        ));
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::PassStarted(_)
        ));

        handle
            .apply_command(SchedulerCommand::new(
                0,
                Command::CancelRequest {
                    request_id,
                    discard_pending_output,
                },
            ))
            .await
            .unwrap();
        let GroupedLiveEvent::CommandApplied { effects, .. } = next_event(&mut events).await else {
            panic!("expected cancellation effects");
        };
        assert_eq!(effects.by_rank[0].effects.result, CommandResult::Noop);
        let suppressed = effects.by_rank[0].effects.suppressed_pending_output;

        tokio::time::advance(Duration::from_millis(100)).await;
        let GroupedLiveEvent::PassCompleted {
            completed,
            boundary,
        } = next_event(&mut events).await
        else {
            panic!("expected grouped pass completion");
        };
        let outputs = completed.effects.by_rank[0].effects.outputs.len();
        boundary.finish().await.unwrap();
        handle.shutdown();
        actor.await.unwrap().unwrap();
        (suppressed, outputs)
    }

    #[tokio::test(start_paused = true)]
    async fn noop_cancellation_without_discard_preserves_pending_output() {
        let (suppressed, outputs) = noop_cancellation_outcome(false).await;
        assert!(!suppressed);
        assert_eq!(outputs, 1);
    }

    #[tokio::test(start_paused = true)]
    async fn explicit_discard_suppresses_pending_output_after_noop_cancellation() {
        let (suppressed, outputs) = noop_cancellation_outcome(true).await;
        assert!(suppressed);
        assert_eq!(outputs, 0);
    }

    #[tokio::test(start_paused = true)]
    async fn held_source_waits_for_release_without_empty_passes() {
        let GroupedLiveRuntime {
            handle,
            mut events,
            actor,
        } = runtime_with_config(
            1,
            EngineConfig {
                worker_type: WorkerType::Prefill,
                num_gpu_blocks: 128,
                block_size: 4,
                max_num_seqs: 8,
                max_num_batched_tokens: 256,
                timing_model: TimingModelConfig::Fixed {
                    prefill_ms: 10.0,
                    decode_ms: 0.0,
                },
                ..EngineConfig::default()
            },
        );
        let handoff_id = HandoffId::from(Uuid::from_u128(51));
        handle
            .apply_command(SchedulerCommand::new(
                0,
                Command::SubmitHandoffPrefill {
                    handoff_id,
                    request: request(52, 4, 1),
                },
            ))
            .await
            .unwrap();
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::CommandApplied { .. }
        ));
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::PassStarted(_)
        ));
        tokio::time::advance(Duration::from_millis(10)).await;
        let GroupedLiveEvent::PassCompleted {
            completed,
            boundary,
        } = next_event(&mut events).await
        else {
            panic!("expected source-hold pass completion");
        };
        assert!(matches!(
            completed.effects.by_rank[0].effects.lifecycle_events.as_slice(),
            [aisimulate_core::engine::LifecycleEvent::SourceHeld { handoff_id: observed, .. }]
                if *observed == handoff_id
        ));
        boundary.finish().await.unwrap();

        for _ in 0..8 {
            tokio::task::yield_now().await;
        }
        assert!(
            events.try_recv().is_err(),
            "a held source must not generate effect-free passes"
        );

        handle
            .apply_command(SchedulerCommand::new(
                0,
                Command::ReleaseSource { handoff_id },
            ))
            .await
            .unwrap();
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::CommandApplied { .. }
        ));
        handle.shutdown();
        actor.await.unwrap().unwrap();
    }

    #[tokio::test(start_paused = true)]
    async fn reserved_destination_waits_for_activation_without_empty_passes() {
        let GroupedLiveRuntime {
            handle,
            mut events,
            actor,
        } = runtime_with_config(
            1,
            EngineConfig {
                worker_type: WorkerType::Decode,
                num_gpu_blocks: 128,
                block_size: 4,
                max_num_seqs: 8,
                max_num_batched_tokens: 256,
                timing_model: TimingModelConfig::Fixed {
                    prefill_ms: 10.0,
                    decode_ms: 0.0,
                },
                ..EngineConfig::default()
            },
        );
        let handoff_id = HandoffId::from(Uuid::from_u128(61));
        handle
            .apply_command(SchedulerCommand::new(
                0,
                Command::ReserveDestination {
                    handoff_id,
                    request: request(62, 4, 1),
                },
            ))
            .await
            .unwrap();
        let GroupedLiveEvent::CommandApplied { effects, .. } = next_event(&mut events).await else {
            panic!("expected destination reservation effects");
        };
        assert!(matches!(
            effects.by_rank[0].effects.result,
            CommandResult::DestinationAccepted { .. }
        ));

        for _ in 0..8 {
            tokio::task::yield_now().await;
        }
        assert!(
            events.try_recv().is_err(),
            "a reserved destination must not generate effect-free passes"
        );

        handle
            .apply_command(SchedulerCommand::new(
                0,
                Command::CancelDestination { handoff_id },
            ))
            .await
            .unwrap();
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::CommandApplied { .. }
        ));
        handle.shutdown();
        actor.await.unwrap().unwrap();
    }

    #[tokio::test(start_paused = true)]
    async fn midpass_idle_sibling_completes_with_group_metrics() {
        let GroupedLiveRuntime {
            handle,
            mut events,
            actor,
        } = runtime_with_config(
            2,
            EngineConfig {
                worker_type: WorkerType::Decode,
                num_gpu_blocks: 128,
                block_size: 4,
                max_num_seqs: 8,
                max_num_batched_tokens: 256,
                timing_model: TimingModelConfig::Fixed {
                    prefill_ms: 100.0,
                    decode_ms: 0.0,
                },
                ..EngineConfig::default()
            },
        );
        handle
            .apply_command(SchedulerCommand::new(0, Command::Submit(request(71, 4, 1))))
            .await
            .unwrap();
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::CommandApplied { .. }
        ));
        let GroupedLiveEvent::PassStarted(started) = next_event(&mut events).await else {
            panic!("expected grouped pass start");
        };
        let group_duration_ms = started.end_ms - started.started_at_ms;

        let handoff_id = HandoffId::from(Uuid::from_u128(72));
        handle
            .apply_command(SchedulerCommand::new(
                1,
                Command::ReserveDestination {
                    handoff_id,
                    request: request(73, 4, 1),
                },
            ))
            .await
            .unwrap();
        let GroupedLiveEvent::CommandApplied {
            pass_in_flight,
            effects,
            ..
        } = next_event(&mut events).await
        else {
            panic!("expected idle-sibling command effects");
        };
        assert!(pass_in_flight);
        assert_eq!(effects.by_rank[0].dp_rank, 1);

        tokio::time::advance(Duration::from_millis(100)).await;
        let GroupedLiveEvent::PassCompleted {
            completed,
            boundary,
        } = next_event(&mut events).await
        else {
            panic!("expected grouped pass completion");
        };
        let idle = completed
            .effects
            .by_rank
            .iter()
            .find(|rank| rank.dp_rank == 1)
            .expect("idle sibling must cross the shared completion boundary");
        assert_eq!(
            idle.effects.forward_pass_metrics.duration_ms,
            group_duration_ms
        );
        boundary.finish().await.unwrap();

        handle
            .apply_command(SchedulerCommand::new(
                1,
                Command::CancelDestination { handoff_id },
            ))
            .await
            .unwrap();
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::CommandApplied { .. }
        ));
        handle.shutdown();
        actor.await.unwrap().unwrap();
    }

    #[tokio::test(start_paused = true)]
    async fn cancellation_does_not_end_a_pass_with_unrelated_pending_output() {
        let GroupedLiveRuntime {
            handle,
            mut events,
            actor,
        } = runtime(1, 100.0);
        let cancelled =
            handle.apply_command(SchedulerCommand::new(0, Command::Submit(request(31, 4, 2))));
        let unrelated =
            handle.apply_command(SchedulerCommand::new(0, Command::Submit(request(32, 4, 1))));
        let (cancelled, unrelated) = tokio::join!(cancelled, unrelated);
        cancelled.unwrap();
        unrelated.unwrap();
        for _ in 0..2 {
            assert!(matches!(
                next_event(&mut events).await,
                GroupedLiveEvent::CommandApplied { .. }
            ));
        }
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::PassStarted(_)
        ));

        handle
            .apply_command(SchedulerCommand::new(
                0,
                Command::CancelRequest {
                    request_id: Uuid::from_u128(31),
                    discard_pending_output: true,
                },
            ))
            .await
            .unwrap();
        let GroupedLiveEvent::CommandApplied { effects, .. } = next_event(&mut events).await else {
            panic!("expected cancellation effects");
        };
        assert_eq!(effects.by_rank[0].effects.result, CommandResult::Applied);
        assert!(effects.by_rank[0].effects.suppressed_pending_output);
        assert_eq!(effects.by_rank[0].effects.metrics.running_requests, 0);
        assert_eq!(effects.by_rank[0].effects.metrics.waiting_requests, 0);

        tokio::time::advance(Duration::from_millis(99)).await;
        tokio::task::yield_now().await;
        assert!(
            events.try_recv().is_err(),
            "empty occupancy must not release unrelated completion effects early"
        );
        tokio::time::advance(Duration::from_millis(1)).await;
        let GroupedLiveEvent::PassCompleted {
            completed,
            boundary,
        } = next_event(&mut events).await
        else {
            panic!("expected grouped pass completion");
        };
        assert_eq!(completed.effects.by_rank[0].effects.outputs.len(), 1);
        assert_eq!(
            completed.effects.by_rank[0].effects.outputs[0].request_id,
            Uuid::from_u128(32)
        );
        boundary.finish().await.unwrap();
        handle.shutdown();
        actor.await.unwrap().unwrap();
    }

    // Regression: a productive zero-duration engine must yield so another
    // current-thread task can trigger external shutdown.
    #[tokio::test(flavor = "current_thread")]
    async fn external_shutdown_stops_a_nonempty_zero_duration_progress_loop() {
        let GroupedLiveRuntime {
            handle,
            mut events,
            actor,
        } = runtime(1, 0.0);
        handle
            .apply_command(SchedulerCommand::new(
                0,
                Command::Submit(request(41, 4, 32)),
            ))
            .await
            .unwrap();
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::CommandApplied { .. }
        ));
        assert!(matches!(
            next_event(&mut events).await,
            GroupedLiveEvent::PassStarted(_)
        ));
        let GroupedLiveEvent::PassCompleted { boundary, .. } = next_event(&mut events).await else {
            panic!("expected zero-duration pass completion");
        };

        let external = handle.clone();
        let shutdown = tokio::spawn(async move {
            tokio::task::yield_now().await;
            external.shutdown();
        });
        boundary.finish().await.unwrap();
        tokio::time::timeout(Duration::from_secs(1), actor)
            .await
            .expect("zero-duration engine monopolized the current-thread runtime")
            .unwrap()
            .unwrap();
        shutdown.await.unwrap();
    }
}