rmux-server 0.10.0

Tokio daemon and request dispatcher for the RMUX terminal multiplexer.
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
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::Arc;
use std::time::Duration;

use super::RequestHandler;
use crate::client_names::control_client_name;
use crate::control::{ControlModeUpgrade, ControlServerEvent, CONTROL_SERVER_EVENT_CAPACITY};
use crate::pane_io::AttachControl;
use rmux_core::LifecycleEvent;
use rmux_proto::{
    ControlMode, DeleteBufferRequest, DetachClientRequest, DisplayMessageExtRequest,
    DisplayMessageRequest, HookLifecycle, HookName, KillSessionRequest, KillWindowRequest,
    NewSessionRequest, NewWindowRequest, RenameSessionRequest, RenameWindowRequest, Request,
    Response, ScopeSelector, SelectWindowRequest, SessionName, SetBufferRequest, SetHookRequest,
    ShowOptionsRequest, SwitchClientRequest, Target, TerminalSize, WindowTarget,
};
use tokio::sync::mpsc;

fn session_name(value: &str) -> SessionName {
    SessionName::new(value).expect("valid session name")
}

async fn new_session(handler: &RequestHandler, session_name: &SessionName) {
    assert!(matches!(
        handler
            .handle(Request::NewSession(NewSessionRequest {
                session_name: session_name.clone(),
                detached: true,
                size: Some(TerminalSize { cols: 80, rows: 24 }),
                environment: None,
            }))
            .await,
        Response::NewSession(_)
    ));
}

async fn new_window(
    handler: &RequestHandler,
    session_name: &SessionName,
    name: Option<&str>,
) -> WindowTarget {
    let response = handler
        .handle(Request::NewWindow(Box::new(NewWindowRequest {
            target: session_name.clone(),
            name: name.map(str::to_owned),
            detached: true,
            start_directory: None,
            environment: None,
            command: None,
            process_command: None,
            target_window_index: None,
            insert_at_target: false,
        })))
        .await;

    let Response::NewWindow(response) = response else {
        panic!("expected new-window response");
    };

    response.target
}

async fn register_control_client(
    handler: &RequestHandler,
    requester_pid: u32,
    session_name: Option<SessionName>,
) -> mpsc::Receiver<ControlServerEvent> {
    let (event_tx, event_rx) = mpsc::channel(CONTROL_SERVER_EVENT_CAPACITY);
    let _control_id = handler
        .register_control_with_closing(
            requester_pid,
            ControlModeUpgrade {
                initial_command_count: 0,
                mode: ControlMode::Plain,
                terminal_context: crate::outer_terminal::OuterTerminalContext::default()
                    .with_client_terminal(&rmux_proto::ClientTerminalContext {
                        terminal_features: Vec::new(),
                        utf8: true,
                    }),
            },
            event_tx,
            Arc::new(AtomicBool::new(false)),
        )
        .await;
    if let Some(session_name) = session_name {
        handler
            .set_control_session(requester_pid, Some(session_name))
            .await
            .expect("control session set succeeds");
    }
    event_rx
}

fn drain_control_notifications(rx: &mut mpsc::Receiver<ControlServerEvent>) -> Vec<String> {
    let mut lines = Vec::new();
    loop {
        match rx.try_recv() {
            Ok(ControlServerEvent::Notification(line)) => lines.push(line),
            Ok(
                ControlServerEvent::SessionChanged(_)
                | ControlServerEvent::SessionChangedAt { .. }
                | ControlServerEvent::Refresh,
            ) => {}
            Ok(ControlServerEvent::Exit(reason)) => {
                panic!("unexpected control exit: {reason:?}");
            }
            Err(mpsc::error::TryRecvError::Empty | mpsc::error::TryRecvError::Disconnected) => {
                break;
            }
        }
    }
    lines
}

fn collect_control_events(rx: &mut mpsc::Receiver<ControlServerEvent>) -> Vec<ControlServerEvent> {
    let mut events = Vec::new();
    while let Ok(event) = rx.try_recv() {
        events.push(event);
    }
    events
}

#[tokio::test]
async fn full_control_server_event_queue_defers_removal_until_transport_finishes() {
    let handler = RequestHandler::new();
    let requester_pid = 4242;
    let attached_session = session_name("full-control-event-queue");
    new_session(&handler, &attached_session).await;
    let attached_session_id = {
        let state = handler.state.lock().await;
        state
            .sessions
            .session(&attached_session)
            .expect("attached session exists")
            .id()
    };
    let (event_tx, mut event_rx) = mpsc::channel(CONTROL_SERVER_EVENT_CAPACITY);
    let closing = Arc::new(AtomicBool::new(false));
    let control_id = handler
        .register_control_with_closing(
            requester_pid,
            ControlModeUpgrade {
                initial_command_count: 0,
                mode: ControlMode::Plain,
                terminal_context: crate::outer_terminal::OuterTerminalContext::default(),
            },
            event_tx,
            Arc::clone(&closing),
        )
        .await;
    handler
        .set_control_session(requester_pid, Some(attached_session.clone()))
        .await
        .expect("control session set succeeds");
    assert!(matches!(
        event_rx.try_recv(),
        Ok(ControlServerEvent::SessionChanged(Some(ref session_name)))
            | Ok(ControlServerEvent::SessionChangedAt {
                ref session_name,
                ..
            })
            if session_name == &attached_session
    ));
    let mut lifecycle = handler.subscribe_lifecycle_events();

    for index in 0..CONTROL_SERVER_EVENT_CAPACITY {
        handler
            .send_control_notification_to(requester_pid, format!("%message queued-{index}"))
            .await;
    }

    assert_eq!(event_rx.len(), CONTROL_SERVER_EVENT_CAPACITY);
    assert_eq!(event_rx.max_capacity(), CONTROL_SERVER_EVENT_CAPACITY);
    assert!(!closing.load(Ordering::SeqCst));
    assert!(handler.is_control_client(requester_pid).await);

    handler
        .send_control_notification_to(requester_pid, "%message overflow".to_owned())
        .await;

    assert_eq!(event_rx.len(), CONTROL_SERVER_EVENT_CAPACITY);
    assert!(!event_rx.is_closed());
    assert!(closing.load(Ordering::SeqCst));
    assert!(!handler.is_control_client(requester_pid).await);
    {
        let active_control = handler.active_control.lock().await;
        let active = active_control
            .by_pid
            .get(&requester_pid)
            .expect("closing control stays registered until its transport finishes");
        assert_eq!(active.id, control_id);
        assert_eq!(active.session_id, Some(attached_session_id));
    }
    assert!(matches!(
        event_rx.try_recv(),
        Ok(ControlServerEvent::Notification(line)) if line == "%message queued-0"
    ));
    handler
        .send_control_notification_to(requester_pid, "%message after-closing".to_owned())
        .await;
    assert_eq!(
        event_rx.len(),
        CONTROL_SERVER_EVENT_CAPACITY - 1,
        "closing clients reject later server events even after capacity becomes available"
    );

    handler.finish_control(requester_pid, control_id).await;

    assert!(event_rx.is_closed());
    assert!(!handler
        .active_control
        .lock()
        .await
        .by_pid
        .contains_key(&requester_pid));
    let detached = tokio::time::timeout(Duration::from_secs(1), lifecycle.recv())
        .await
        .expect("transport finish publishes client-detached")
        .expect("lifecycle channel remains open");
    assert_eq!(detached.control_session_identity, Some(attached_session_id));
    assert!(matches!(
        detached.event,
        LifecycleEvent::ClientDetached {
            session_name,
            client_name: Some(client_name),
        } if session_name == attached_session
            && client_name == control_client_name(requester_pid)
    ));
}

async fn session_id(handler: &RequestHandler, session_name: &SessionName) -> u32 {
    let state = handler.state.lock().await;
    state
        .sessions
        .session(session_name)
        .expect("session exists")
        .id()
        .as_u32()
}

async fn window_id(handler: &RequestHandler, target: &WindowTarget) -> u32 {
    let state = handler.state.lock().await;
    state
        .sessions
        .session(target.session_name())
        .and_then(|session| session.window_at(target.window_index()))
        .expect("window exists")
        .id()
        .as_u32()
}

async fn dispatch_as(handler: &RequestHandler, requester_pid: u32, request: Request) -> Response {
    let mut lifecycle_events = handler.subscribe_lifecycle_events();
    let outcome = handler.dispatch(requester_pid, request).await;

    loop {
        match lifecycle_events.try_recv() {
            Ok(event) => handler.dispatch_lifecycle_hook(event).await,
            Err(
                tokio::sync::broadcast::error::TryRecvError::Empty
                | tokio::sync::broadcast::error::TryRecvError::Closed,
            ) => break,
            Err(tokio::sync::broadcast::error::TryRecvError::Lagged(skipped)) => {
                panic!("lifecycle events lagged during test: {skipped}");
            }
        }
    }

    outcome.response
}

/// Returns the `#{client_name}` `list-clients` reports for `pid`.
async fn listed_client_name(handler: &RequestHandler, pid: u32) -> String {
    let response = handler
        .handle(Request::ListClients(Box::new(
            rmux_proto::ListClientsRequest {
                format: Some("#{client_pid}|#{client_name}".to_owned()),
                target_session: None,
                filter: None,
                sort_order: None,
                reversed: false,
            },
        )))
        .await;
    let Response::ListClients(response) = response else {
        panic!("expected list-clients response");
    };
    let prefix = format!("{pid}|");
    String::from_utf8(response.output.stdout().to_vec())
        .expect("list-clients output is utf-8")
        .lines()
        .find_map(|line| line.strip_prefix(&prefix).map(str::to_owned))
        .expect("list-clients reports the client")
}

async fn prepared_client_session_changed(
    handler: &RequestHandler,
    session_name: SessionName,
    session_id: rmux_proto::SessionId,
    client_name: &str,
) -> super::QueuedLifecycleEvent {
    let mut events = handler.subscribe_lifecycle_events();
    handler
        .emit_for_session_identity(
            LifecycleEvent::ClientSessionChanged {
                session_name: session_name.clone(),
                client_name: Some(client_name.to_owned()),
            },
            &session_name,
            session_id,
        )
        .await;
    events
        .recv()
        .await
        .expect("exact client-session-changed event queued")
}

#[tokio::test]
async fn control_switch_client_sends_self_and_other_session_notifications() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    let beta = session_name("beta");
    new_session(&handler, &alpha).await;
    new_session(&handler, &beta).await;

    let mut self_rx = register_control_client(&handler, 101, Some(alpha.clone())).await;
    let mut other_rx = register_control_client(&handler, 202, Some(alpha.clone())).await;
    let mut detached_rx = register_control_client(&handler, 303, None).await;
    let _ = drain_control_notifications(&mut self_rx);
    let _ = drain_control_notifications(&mut other_rx);
    let _ = drain_control_notifications(&mut detached_rx);

    let response = dispatch_as(
        &handler,
        101,
        Request::SwitchClient(SwitchClientRequest {
            target: beta.clone(),
        }),
    )
    .await;

    assert_eq!(
        response,
        Response::SwitchClient(rmux_proto::SwitchClientResponse {
            session_name: beta.clone(),
        })
    );

    let beta_id = session_id(&handler, &beta).await;
    assert_eq!(
        drain_control_notifications(&mut self_rx),
        vec![format!("%session-changed ${beta_id} {beta}")]
    );
    assert_eq!(
        drain_control_notifications(&mut other_rx),
        vec![format!(
            "%client-session-changed client-101 ${beta_id} {beta}"
        )]
    );
    assert!(drain_control_notifications(&mut detached_rx).is_empty());
}

/// Frozen tmux 3.7b, measured 2026-07-25 with two `-C` clients (pids
/// 74711/74712) on session `alpha`: after 74711 runs `switch-client -t beta`
/// and then detaches, the surviving client is told
///
///     %client-session-changed client-74711 $1 beta
///     %client-detached client-74711
///
/// The token is the same name `list-clients -F '#{client_name}'` reports for
/// that client. A frontend keys its client table on that name, so the two
/// surfaces must never spell the same client differently.
#[tokio::test]
async fn control_notifications_name_clients_the_way_list_clients_does() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    let beta = session_name("beta");
    new_session(&handler, &alpha).await;
    new_session(&handler, &beta).await;

    let switching_pid = 74_711;
    let mut switching_rx =
        register_control_client(&handler, switching_pid, Some(alpha.clone())).await;
    let mut watching_rx = register_control_client(&handler, 74_712, Some(alpha.clone())).await;
    let _ = drain_control_notifications(&mut switching_rx);
    let _ = drain_control_notifications(&mut watching_rx);

    let listed = listed_client_name(&handler, switching_pid).await;
    assert_eq!(listed, format!("client-{switching_pid}"));

    let response = dispatch_as(
        &handler,
        switching_pid,
        Request::SwitchClient(SwitchClientRequest {
            target: beta.clone(),
        }),
    )
    .await;
    assert_eq!(
        response,
        Response::SwitchClient(rmux_proto::SwitchClientResponse {
            session_name: beta.clone(),
        })
    );

    let beta_id = session_id(&handler, &beta).await;
    assert_eq!(
        drain_control_notifications(&mut watching_rx),
        vec![format!(
            "%client-session-changed {listed} ${beta_id} {beta}"
        )]
    );
    assert_eq!(
        drain_control_notifications(&mut switching_rx),
        vec![format!("%session-changed ${beta_id} {beta}")],
        "the switching client still recognises its own move"
    );

    let response = dispatch_as(
        &handler,
        switching_pid,
        Request::DetachClient(DetachClientRequest),
    )
    .await;
    assert_eq!(
        response,
        Response::DetachClient(rmux_proto::DetachClientResponse)
    );
    assert_eq!(
        drain_control_notifications(&mut watching_rx),
        vec![format!("%client-detached {listed}")]
    );
}

#[tokio::test]
async fn control_window_notifications_follow_each_clients_session_visibility() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    let beta = session_name("beta");
    new_session(&handler, &alpha).await;
    new_session(&handler, &beta).await;

    let mut alpha_rx = register_control_client(&handler, 410, Some(alpha.clone())).await;
    let mut beta_rx = register_control_client(&handler, 420, Some(beta.clone())).await;
    let _ = drain_control_notifications(&mut alpha_rx);
    let _ = drain_control_notifications(&mut beta_rx);

    let target = new_window(&handler, &alpha, Some("logs")).await;
    let window_id = window_id(&handler, &target).await;

    assert_eq!(
        drain_control_notifications(&mut alpha_rx),
        vec![format!("%window-add @{window_id}")]
    );
    assert_eq!(
        drain_control_notifications(&mut beta_rx),
        vec![format!("%unlinked-window-add @{window_id}")]
    );

    let renamed = handler
        .handle(Request::RenameWindow(RenameWindowRequest {
            target: target.clone(),
            name: "build".to_owned(),
        }))
        .await;
    assert!(matches!(renamed, Response::RenameWindow(_)));

    assert_eq!(
        drain_control_notifications(&mut alpha_rx),
        vec![format!("%window-renamed @{window_id} build")]
    );
    assert_eq!(
        drain_control_notifications(&mut beta_rx),
        vec![format!("%unlinked-window-renamed @{window_id} build")]
    );

    let renamed = handler
        .handle(Request::RenameWindow(RenameWindowRequest {
            target: target.clone(),
            name: "bad\n%output %1 injected".to_owned(),
        }))
        .await;
    assert!(matches!(renamed, Response::RenameWindow(_)));

    assert_eq!(
        drain_control_notifications(&mut alpha_rx),
        vec![format!(
            "%window-renamed @{window_id} bad\\012%output %1 injected"
        )]
    );
    assert_eq!(
        drain_control_notifications(&mut beta_rx),
        vec![format!(
            "%unlinked-window-renamed @{window_id} bad\\012%output %1 injected"
        )]
    );
}

#[tokio::test]
async fn window_close_notifications_follow_each_clients_session_visibility() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    let beta = session_name("beta");
    new_session(&handler, &alpha).await;
    new_session(&handler, &beta).await;

    let mut alpha_rx = register_control_client(&handler, 430, Some(alpha.clone())).await;
    let mut beta_rx = register_control_client(&handler, 440, Some(beta)).await;
    let _ = drain_control_notifications(&mut alpha_rx);
    let _ = drain_control_notifications(&mut beta_rx);

    let target = new_window(&handler, &alpha, Some("logs")).await;
    let window_id = window_id(&handler, &target).await;
    let _ = drain_control_notifications(&mut alpha_rx);
    let _ = drain_control_notifications(&mut beta_rx);

    let response = handler
        .handle(Request::KillWindow(KillWindowRequest {
            target,
            kill_all_others: false,
        }))
        .await;
    assert!(matches!(response, Response::KillWindow(_)));

    assert_eq!(
        drain_control_notifications(&mut alpha_rx),
        vec![format!("%unlinked-window-close @{window_id}")]
    );
    assert_eq!(
        drain_control_notifications(&mut beta_rx),
        vec![format!("%unlinked-window-close @{window_id}")]
    );
}

#[tokio::test]
async fn killing_the_only_window_notifies_surviving_control_in_tmux_order() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    let beta = session_name("beta");
    new_session(&handler, &alpha).await;
    new_session(&handler, &beta).await;

    let alpha_window_id = window_id(&handler, &WindowTarget::new(alpha.clone())).await;

    let mut control_rx = register_control_client(&handler, 450, Some(beta)).await;
    let _ = drain_control_notifications(&mut control_rx);

    let response = handler
        .handle(Request::KillWindow(KillWindowRequest {
            target: WindowTarget::with_window(alpha.clone(), 0),
            kill_all_others: false,
        }))
        .await;
    assert!(matches!(response, Response::KillWindow(_)));
    assert!(handler
        .state
        .lock()
        .await
        .sessions
        .session(&alpha)
        .is_none());
    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec![
            format!("%unlinked-window-close @{alpha_window_id}"),
            "%sessions-changed".to_owned(),
        ]
    );
}

#[tokio::test]
async fn paste_buffer_notifications_use_the_buffer_name() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    new_session(&handler, &alpha).await;

    let mut control_rx = register_control_client(&handler, 510, Some(alpha)).await;
    let _ = drain_control_notifications(&mut control_rx);

    let set_response = handler
        .handle(Request::SetBuffer(Box::new(SetBufferRequest {
            name: Some("named".to_owned()),
            content: b"hello".to_vec(),
            append: false,
            set_clipboard: false,
            new_name: None,
            target_client: None,
        })))
        .await;
    assert!(matches!(set_response, Response::SetBuffer(_)));
    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec!["%paste-buffer-changed named".to_owned()]
    );

    let delete_response = handler
        .handle(Request::DeleteBuffer(DeleteBufferRequest {
            name: Some("named".to_owned()),
        }))
        .await;
    assert!(matches!(delete_response, Response::DeleteBuffer(_)));
    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec!["%paste-buffer-deleted named".to_owned()]
    );

    let set_response = handler
        .handle(Request::SetBuffer(Box::new(SetBufferRequest {
            name: Some("bad\nname".to_owned()),
            content: b"hello".to_vec(),
            append: false,
            set_clipboard: false,
            new_name: None,
            target_client: None,
        })))
        .await;
    assert!(matches!(set_response, Response::SetBuffer(_)));
    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec!["%paste-buffer-changed bad\\012name".to_owned()]
    );

    let delete_response = handler
        .handle(Request::DeleteBuffer(DeleteBufferRequest {
            name: Some("bad\nname".to_owned()),
        }))
        .await;
    assert!(matches!(delete_response, Response::DeleteBuffer(_)));
    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec!["%paste-buffer-deleted bad\\012name".to_owned()]
    );
}

#[tokio::test]
async fn sessions_changed_notifications_reach_control_clients_with_and_without_sessions() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    let beta = session_name("beta");
    new_session(&handler, &alpha).await;

    let mut attached_rx = register_control_client(&handler, 520, Some(alpha.clone())).await;
    let mut detached_rx = register_control_client(&handler, 530, None).await;
    let _ = drain_control_notifications(&mut attached_rx);
    let _ = drain_control_notifications(&mut detached_rx);

    new_session(&handler, &beta).await;
    let beta_window_id = window_id(&handler, &WindowTarget::new(beta.clone())).await;
    assert_eq!(
        drain_control_notifications(&mut attached_rx),
        vec![
            format!("%unlinked-window-add @{beta_window_id}"),
            "%sessions-changed".to_owned(),
        ]
    );
    assert_eq!(
        drain_control_notifications(&mut detached_rx),
        vec!["%sessions-changed".to_owned()]
    );

    let response = handler
        .handle(Request::KillSession(KillSessionRequest {
            target: beta,
            kill_all_except_target: false,
            clear_alerts: false,
            kill_group: false,
        }))
        .await;
    assert!(matches!(response, Response::KillSession(_)));
    assert_eq!(
        drain_control_notifications(&mut attached_rx),
        vec![
            "%sessions-changed".to_owned(),
            format!("%unlinked-window-close @{beta_window_id}")
        ]
    );
    assert_eq!(
        drain_control_notifications(&mut detached_rx),
        vec!["%sessions-changed".to_owned()]
    );
}

#[tokio::test]
async fn session_renamed_notifications_include_session_id_and_new_name() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    let beta = session_name("beta");
    new_session(&handler, &alpha).await;

    let mut attached_rx = register_control_client(&handler, 540, Some(alpha.clone())).await;
    let mut detached_rx = register_control_client(&handler, 550, None).await;
    let _ = drain_control_notifications(&mut attached_rx);
    let _ = drain_control_notifications(&mut detached_rx);

    let alpha_id = session_id(&handler, &alpha).await;
    let response = handler
        .handle(Request::RenameSession(RenameSessionRequest {
            target: alpha,
            new_name: beta.clone(),
        }))
        .await;
    assert!(matches!(response, Response::RenameSession(_)));

    let expected = vec![format!("%session-renamed ${alpha_id} {beta}")];
    assert_eq!(drain_control_notifications(&mut attached_rx), expected);
    assert_eq!(
        drain_control_notifications(&mut detached_rx),
        vec![format!("%session-renamed ${alpha_id} {beta}")]
    );
}

#[tokio::test]
async fn session_window_changed_notifications_are_broadcast_to_all_control_clients() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    new_session(&handler, &alpha).await;

    let target = new_window(&handler, &alpha, Some("logs")).await;
    let window_id = window_id(&handler, &target).await;
    let session_id = session_id(&handler, &alpha).await;

    let mut attached_rx = register_control_client(&handler, 560, Some(alpha.clone())).await;
    let mut detached_rx = register_control_client(&handler, 570, None).await;
    let _ = drain_control_notifications(&mut attached_rx);
    let _ = drain_control_notifications(&mut detached_rx);

    let response = handler
        .handle(Request::SelectWindow(SelectWindowRequest { target }))
        .await;
    assert!(matches!(response, Response::SelectWindow(_)));

    let expected = vec![format!(
        "%session-window-changed ${session_id} @{window_id}"
    )];
    assert_eq!(drain_control_notifications(&mut attached_rx), expected);
    assert_eq!(
        drain_control_notifications(&mut detached_rx),
        vec![format!(
            "%session-window-changed ${session_id} @{window_id}"
        )]
    );
}

#[tokio::test]
async fn detached_control_clients_skip_session_scoped_window_notifications() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    new_session(&handler, &alpha).await;

    let mut attached_rx = register_control_client(&handler, 580, Some(alpha.clone())).await;
    let mut detached_rx = register_control_client(&handler, 590, None).await;
    let _ = drain_control_notifications(&mut attached_rx);
    let _ = drain_control_notifications(&mut detached_rx);

    let target = new_window(&handler, &alpha, Some("logs")).await;
    let window_id = window_id(&handler, &target).await;

    assert_eq!(
        drain_control_notifications(&mut attached_rx),
        vec![format!("%window-add @{window_id}")]
    );
    assert!(drain_control_notifications(&mut detached_rx).is_empty());
}

#[tokio::test]
async fn display_message_for_control_client_uses_message_notification() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    let detached = session_name("detached");
    new_session(&handler, &alpha).await;
    new_session(&handler, &detached).await;

    let mut control_rx = register_control_client(&handler, 610, Some(alpha.clone())).await;
    let _ = drain_control_notifications(&mut control_rx);

    let response = dispatch_as(
        &handler,
        610,
        Request::DisplayMessage(DisplayMessageRequest {
            target: Some(Target::Session(alpha.clone())),
            print: false,
            message: Some(
                "hello\t#{session_name}|#{client_session}|#{client_name}|#{client_width}|#{client_height}"
                    .to_owned(),
            ),
            empty_target_context: false,
        }),
    )
    .await;

    assert_eq!(
        response,
        Response::DisplayMessage(rmux_proto::DisplayMessageResponse::no_output())
    );
    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec!["%message hello\\talpha|alpha|client-610|80|".to_owned()]
    );

    let response = dispatch_as(
        &handler,
        610,
        Request::DisplayMessage(DisplayMessageRequest {
            target: Some(Target::Session(detached.clone())),
            print: false,
            message: Some(
                "#{session_name}|#{client_session}|#{client_name}|#{client_width}|#{client_height}"
                    .to_owned(),
            ),
            empty_target_context: false,
        }),
    )
    .await;
    assert!(matches!(response, Response::DisplayMessage(_)));
    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec!["%message detached|alpha|client-610|80|".to_owned()]
    );

    let response = dispatch_as(
        &handler,
        99_610,
        Request::DisplayMessage(DisplayMessageRequest {
            target: Some(Target::Session(alpha)),
            print: false,
            message: Some("external #{client_session}|#{client_name}".to_owned()),
            empty_target_context: false,
        }),
    )
    .await;
    assert!(matches!(response, Response::DisplayMessage(_)));
    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec!["%message external alpha|client-610".to_owned()]
    );

    let response = dispatch_as(
        &handler,
        99_611,
        Request::DisplayMessageExt(Box::new(DisplayMessageExtRequest {
            target: Some(Target::Session(detached.clone())),
            print: true,
            message: Some(
                "#{session_name}|#{client_session}|#{client_name}|#{client_width}|#{client_height}"
                    .to_owned(),
            ),
            target_client: Some("610".to_owned()),
            empty_target_context: false,
            duration_ms: None,
            ignore_input: false,
        })),
    )
    .await;
    assert_eq!(
        response.command_output().map(|output| output.stdout()),
        Some(b"detached|alpha|client-610|80|\n".as_slice())
    );

    let response = dispatch_as(
        &handler,
        99_612,
        Request::DisplayMessageExt(Box::new(DisplayMessageExtRequest {
            target: Some(Target::Session(detached.clone())),
            print: false,
            message: Some("targeted #{client_session}|#{client_name}".to_owned()),
            target_client: Some("610".to_owned()),
            empty_target_context: false,
            duration_ms: None,
            ignore_input: false,
        })),
    )
    .await;
    assert!(matches!(response, Response::DisplayMessage(_)));
    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec!["%message targeted alpha|client-610".to_owned()]
    );

    let mut second_alpha_rx =
        register_control_client(&handler, 611, Some(session_name("alpha"))).await;
    let mut beta_rx = register_control_client(&handler, 612, Some(detached)).await;
    let _ = drain_control_notifications(&mut second_alpha_rx);
    let _ = drain_control_notifications(&mut beta_rx);
    let pane_id = handler
        .state
        .lock()
        .await
        .sessions
        .session(&session_name("alpha"))
        .and_then(rmux_core::Session::active_pane_id)
        .expect("alpha active pane");
    let response = handler
        .handle_display_message_for_stable_pane(
            99_613,
            pane_id,
            DisplayMessageRequest {
                target: Some(Target::Session(session_name("alpha"))),
                print: false,
                message: Some("stable #{client_session}|#{client_name}".to_owned()),
                empty_target_context: false,
            },
        )
        .await;
    assert!(matches!(response, Response::DisplayMessage(_)));
    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec!["%message stable alpha|client-611".to_owned()]
    );
    assert_eq!(
        drain_control_notifications(&mut second_alpha_rx),
        vec!["%message stable alpha|client-611".to_owned()]
    );
    assert!(drain_control_notifications(&mut beta_rx).is_empty());
}

#[tokio::test]
async fn rejected_control_display_message_is_not_added_to_show_messages() {
    let handler = RequestHandler::new();
    let alpha = session_name("full-display-message-queue");
    new_session(&handler, &alpha).await;

    let requester_pid = 620;
    let mut control_rx =
        register_control_client(&handler, requester_pid, Some(alpha.clone())).await;
    let _ = drain_control_notifications(&mut control_rx);
    for index in 0..CONTROL_SERVER_EVENT_CAPACITY {
        handler
            .send_control_notification_to(requester_pid, format!("%message queued-{index}"))
            .await;
    }
    assert_eq!(control_rx.len(), CONTROL_SERVER_EVENT_CAPACITY);

    let response = dispatch_as(
        &handler,
        99_620,
        Request::DisplayMessageExt(Box::new(DisplayMessageExtRequest {
            target: Some(Target::Session(alpha)),
            print: false,
            message: Some("must-not-be-logged".to_owned()),
            target_client: Some(requester_pid.to_string()),
            empty_target_context: false,
            duration_ms: None,
            ignore_input: false,
        })),
    )
    .await;

    assert!(matches!(response, Response::DisplayMessage(_)));
    assert!(handler.state.lock().await.message_log.is_empty());
}

#[tokio::test]
async fn rejected_session_control_message_is_not_added_to_show_messages() {
    let handler = RequestHandler::new();
    let alpha = session_name("full-session-display-queue");
    new_session(&handler, &alpha).await;

    let requester_pid = 621;
    let mut control_rx =
        register_control_client(&handler, requester_pid, Some(alpha.clone())).await;
    let _ = drain_control_notifications(&mut control_rx);
    for index in 0..CONTROL_SERVER_EVENT_CAPACITY {
        handler
            .send_control_notification_to(requester_pid, format!("%message queued-{index}"))
            .await;
    }
    let pane_id = handler
        .state
        .lock()
        .await
        .sessions
        .session(&alpha)
        .and_then(rmux_core::Session::active_pane_id)
        .expect("active pane");

    let response = handler
        .handle_display_message_for_stable_pane(
            99_621,
            pane_id,
            DisplayMessageRequest {
                target: Some(Target::Session(alpha)),
                print: false,
                message: Some("must-not-be-logged".to_owned()),
                empty_target_context: false,
            },
        )
        .await;

    assert!(matches!(response, Response::DisplayMessage(_)));
    assert!(handler.state.lock().await.message_log.is_empty());
}

#[tokio::test]
async fn display_message_orders_attached_and_control_clients_by_tmux_activity_semantics() {
    // tmux 3.7b uses registration as the control client's initial activity,
    // but commands read from control mode do not update client_activity.
    // Later accepted attached input therefore keeps the attached client ahead.
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    new_session(&handler, &alpha).await;

    let attach_pid = 620;
    let (attach_tx, mut attach_rx) = mpsc::unbounded_channel();
    handler
        .register_attach(attach_pid, alpha.clone(), attach_tx)
        .await;
    let mut control_rx = register_control_client(&handler, 621, Some(alpha.clone())).await;
    let _ = drain_control_notifications(&mut control_rx);

    let request = || {
        Request::DisplayMessage(DisplayMessageRequest {
            target: Some(Target::Session(alpha.clone())),
            print: false,
            message: Some("activity".to_owned()),
            empty_target_context: false,
        })
    };
    assert!(matches!(
        dispatch_as(&handler, 99_620, request()).await,
        Response::DisplayMessage(_)
    ));
    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec!["%message activity".to_owned()]
    );
    assert!(attach_rx.try_recv().is_err());

    let activity_sequence = handler.next_client_activity_sequence();
    assert!(handler
        .active_attach
        .lock()
        .await
        .record_client_activity(attach_pid, activity_sequence));
    assert!(matches!(
        dispatch_as(&handler, 99_621, request()).await,
        Response::DisplayMessage(_)
    ));
    assert!(drain_control_notifications(&mut control_rx).is_empty());
    assert!(matches!(
        attach_rx.recv().await,
        Some(AttachControl::Overlay(_))
    ));

    let control_id = handler
        .active_control
        .lock()
        .await
        .by_pid
        .get(&621)
        .expect("control client remains active")
        .id;
    let commands = handler
        .parse_control_commands("display-message -p control-activity")
        .await
        .expect("control command parses");
    let result = handler
        .execute_control_commands_identity(621, control_id, commands)
        .await;
    assert!(result.error.is_none(), "{:?}", result.error);
    assert!(matches!(
        dispatch_as(&handler, 99_622, request()).await,
        Response::DisplayMessage(_)
    ));
    assert!(drain_control_notifications(&mut control_rx).is_empty());
    assert!(matches!(
        attach_rx.recv().await,
        Some(AttachControl::Overlay(_))
    ));
}

#[tokio::test]
async fn startup_config_errors_are_queued_as_percent_config_error_notifications() {
    let handler = RequestHandler::new();
    handler
        .startup_config_errors
        .lock()
        .await
        .push(rmux_proto::RmuxError::Server(
            "first startup error\nsecond startup error".to_owned(),
        ));

    let mut control_rx = register_control_client(&handler, 710, None).await;

    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec![
            "%config-error first startup error".to_owned(),
            "%config-error second startup error".to_owned(),
        ]
    );
}

#[tokio::test]
async fn startup_config_errors_do_not_block_first_regular_command() {
    let handler = RequestHandler::new();
    handler
        .startup_config_errors
        .lock()
        .await
        .push(rmux_proto::RmuxError::Server(
            "startup config failed".to_owned(),
        ));

    let response = dispatch_as(
        &handler,
        711,
        Request::NewSession(NewSessionRequest {
            session_name: session_name("alpha"),
            detached: true,
            size: Some(TerminalSize { cols: 80, rows: 24 }),
            environment: None,
        }),
    )
    .await;

    assert!(matches!(response, Response::NewSession(_)));

    let mut control_rx = register_control_client(&handler, 711, None).await;
    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec!["%config-error startup config failed".to_owned()]
    );
}

#[tokio::test]
async fn control_detach_exits_self_and_notifies_other_controls() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    new_session(&handler, &alpha).await;

    let mut self_rx = register_control_client(&handler, 810, Some(alpha.clone())).await;
    let mut other_rx = register_control_client(&handler, 820, Some(alpha)).await;
    let _ = drain_control_notifications(&mut self_rx);
    let _ = drain_control_notifications(&mut other_rx);

    let response = dispatch_as(&handler, 810, Request::DetachClient(DetachClientRequest)).await;
    assert_eq!(
        response,
        Response::DetachClient(rmux_proto::DetachClientResponse)
    );

    let self_events = collect_control_events(&mut self_rx);
    assert_eq!(self_events.len(), 1, "{self_events:?}");
    assert!(matches!(self_events[0], ControlServerEvent::Exit(None)));
    assert_eq!(
        drain_control_notifications(&mut other_rx),
        vec!["%client-detached client-810".to_owned()]
    );
}

#[tokio::test]
async fn hook_commands_emit_distinct_lifecycle_control_notifications() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    new_session(&handler, &alpha).await;

    let mut control_rx = register_control_client(&handler, 910, Some(alpha)).await;
    let _ = drain_control_notifications(&mut control_rx);

    let set_hook = handler
        .handle(Request::SetHook(SetHookRequest {
            scope: ScopeSelector::Global,
            hook: HookName::AfterShowOptions,
            command: "new-session -d -s beta".to_owned(),
            lifecycle: HookLifecycle::OneShot,
        }))
        .await;
    assert!(matches!(set_hook, Response::SetHook(_)));

    let response = handler
        .handle(Request::ShowOptions(ShowOptionsRequest {
            scope: rmux_proto::OptionScopeSelector::SessionGlobal,
            name: None,
            value_only: false,
            include_inherited: true,
            quiet: false,
            include_hooks: false,
        }))
        .await;
    assert!(matches!(response, Response::ShowOptions(_)));
    let beta_window_id = window_id(&handler, &WindowTarget::new(session_name("beta"))).await;
    assert_eq!(
        drain_control_notifications(&mut control_rx),
        vec![
            format!("%unlinked-window-add @{beta_window_id}"),
            "%sessions-changed".to_owned(),
        ]
    );

    let has_beta = handler
        .handle(Request::HasSession(rmux_proto::HasSessionRequest {
            target: session_name("beta"),
        }))
        .await;
    assert_eq!(
        has_beta,
        Response::HasSession(rmux_proto::HasSessionResponse { exists: true })
    );
}

#[tokio::test]
async fn exact_client_attached_event_follows_rename_and_name_reuse_by_session_id() {
    let handler = RequestHandler::new();
    let original = session_name("client-attached-original");
    let renamed = session_name("client-attached-renamed");
    new_session(&handler, &original).await;
    let original_id = {
        let state = handler.state.lock().await;
        state
            .sessions
            .session(&original)
            .expect("original session exists")
            .id()
    };

    let response = handler
        .handle(Request::RenameSession(RenameSessionRequest {
            target: original.clone(),
            new_name: renamed.clone(),
        }))
        .await;
    assert!(
        matches!(response, Response::RenameSession(_)),
        "{response:?}"
    );
    new_session(&handler, &original).await;

    let mut events = handler.subscribe_lifecycle_events();
    handler
        .emit_client_attached_identity(control_client_name(9_901), original, original_id)
        .await;
    let queued = events
        .recv()
        .await
        .expect("exact client-attached event queued");
    assert_eq!(queued.control_session_identity, Some(original_id));
    assert!(matches!(
        queued.event,
        LifecycleEvent::ClientAttached { session_name, .. } if session_name == renamed
    ));
}

#[tokio::test]
async fn client_session_changed_notification_follows_rename_not_reused_name() {
    let handler = RequestHandler::new();
    let original = session_name("notify-session-original");
    let renamed = session_name("notify-session-renamed");
    let observer = session_name("notify-session-observer");
    new_session(&handler, &original).await;
    new_session(&handler, &observer).await;
    let original_id = {
        let state = handler.state.lock().await;
        state
            .sessions
            .session(&original)
            .expect("session exists")
            .id()
    };
    let mut observer_rx = register_control_client(&handler, 9_903, Some(observer)).await;
    let _ = drain_control_notifications(&mut observer_rx);

    let response = handler
        .handle(Request::RenameSession(RenameSessionRequest {
            target: original.clone(),
            new_name: renamed.clone(),
        }))
        .await;
    assert!(
        matches!(response, Response::RenameSession(_)),
        "{response:?}"
    );
    new_session(&handler, &original).await;
    let _ = drain_control_notifications(&mut observer_rx);

    handler
        .emit_client_session_changed(control_client_name(9_902), original, original_id)
        .await;
    assert_eq!(
        drain_control_notifications(&mut observer_rx),
        vec![format!(
            "%client-session-changed client-9902 ${} {renamed}",
            original_id.as_u32()
        )]
    );
}

#[tokio::test]
async fn deactivated_lifecycle_dispatch_still_delivers_control_effects() {
    let handler = RequestHandler::new();
    let attached = session_name("notify-after-lifecycle-shutdown");
    let observer = session_name("notify-after-lifecycle-shutdown-observer");
    new_session(&handler, &attached).await;
    new_session(&handler, &observer).await;
    let attached_id = {
        let state = handler.state.lock().await;
        state
            .sessions
            .session(&attached)
            .expect("attached session exists")
            .id()
    };
    let queued = {
        let mut state = handler.state.lock().await;
        let mut queued = super::prepare_lifecycle_event(
            &mut state,
            &LifecycleEvent::ClientSessionChanged {
                session_name: attached.clone(),
                client_name: Some(control_client_name(9_910)),
            },
        );
        queued.control_session_identity = Some(attached_id);
        queued
    };

    let lifecycle_events = handler
        .take_lifecycle_dispatch_receiver()
        .expect("test activates the lifecycle queue once");
    handler.lifecycle_dispatch.deactivate();
    drop(lifecycle_events);
    let mut observer_rx = register_control_client(&handler, 9_911, Some(observer)).await;
    let _ = drain_control_notifications(&mut observer_rx);

    handler.emit_prepared(queued.clone()).await;

    let expected = vec![format!(
        "%client-session-changed client-9910 ${} {attached}",
        attached_id.as_u32()
    )];
    assert_eq!(drain_control_notifications(&mut observer_rx), expected);

    handler.emit_prepared_and_wait(queued).await;
    assert_eq!(drain_control_notifications(&mut observer_rx), expected);
}

#[tokio::test]
async fn hooks_disabled_client_session_changed_skips_deleted_reused_session() {
    let handler = RequestHandler::new();
    let replaced = session_name("notify-session-replaced");
    let observer = session_name("notify-session-disabled-observer");
    new_session(&handler, &replaced).await;
    new_session(&handler, &observer).await;
    let replaced_id = {
        let state = handler.state.lock().await;
        state
            .sessions
            .session(&replaced)
            .expect("session exists")
            .id()
    };
    let queued =
        prepared_client_session_changed(&handler, replaced.clone(), replaced_id, "9904").await;
    let mut observer_rx = register_control_client(&handler, 9_905, Some(observer)).await;
    let _ = drain_control_notifications(&mut observer_rx);

    let response = handler
        .handle(Request::KillSession(KillSessionRequest {
            target: replaced.clone(),
            kill_all_except_target: false,
            clear_alerts: false,
            kill_group: false,
        }))
        .await;
    assert!(matches!(response, Response::KillSession(_)), "{response:?}");
    new_session(&handler, &replaced).await;
    let _ = drain_control_notifications(&mut observer_rx);

    crate::hook_runtime::with_hook_execution(
        crate::hook_runtime::HookExecutionContext::lifecycle(
            rmux_proto::HookName::ClientSessionChanged,
        ),
        Vec::new(),
        async {
            handler.emit_prepared(queued).await;
        },
    )
    .await;
    assert!(drain_control_notifications(&mut observer_rx).is_empty());
}

#[tokio::test]
async fn control_notification_delivery_cannot_jump_to_reused_pid_registration() {
    let handler = RequestHandler::new();
    let requester_pid = 9_906;
    let (old_tx, mut old_rx) = mpsc::channel(CONTROL_SERVER_EVENT_CAPACITY);
    let old_id = handler
        .register_control_with_closing(
            requester_pid,
            ControlModeUpgrade {
                initial_command_count: 0,
                mode: ControlMode::Plain,
                terminal_context: crate::outer_terminal::OuterTerminalContext::default(),
            },
            old_tx,
            Arc::new(AtomicBool::new(false)),
        )
        .await;
    let queued = {
        let mut state = handler.state.lock().await;
        super::prepare_lifecycle_event(
            &mut state,
            &LifecycleEvent::PasteBufferChanged {
                buffer_name: "recipient-aba".to_owned(),
            },
        )
    };
    let pause = handler.install_control_notification_delivery_pause();
    let dispatch_handler = handler.clone();
    let dispatch = tokio::spawn(async move {
        dispatch_handler
            .dispatch_control_notifications(&queued)
            .await;
    });
    pause.reached.notified().await;

    let replacement_handler = handler.clone();
    let replacement = tokio::spawn(async move {
        let (event_tx, event_rx) = mpsc::channel(CONTROL_SERVER_EVENT_CAPACITY);
        let control_id = replacement_handler
            .register_control_with_closing(
                requester_pid,
                ControlModeUpgrade {
                    initial_command_count: 0,
                    mode: ControlMode::Plain,
                    terminal_context: crate::outer_terminal::OuterTerminalContext::default(),
                },
                event_tx,
                Arc::new(AtomicBool::new(false)),
            )
            .await;
        (control_id, event_rx)
    });
    tokio::task::yield_now().await;
    assert!(
        !replacement.is_finished(),
        "replacement registration waits for the identity-locked delivery"
    );

    pause.release.notify_one();
    dispatch.await.expect("notification dispatch completes");
    let (replacement_id, mut replacement_rx) = replacement
        .await
        .expect("replacement registration completes");
    assert_ne!(replacement_id, old_id);
    assert!(collect_control_events(&mut old_rx).iter().any(|event| {
        matches!(
            event,
            ControlServerEvent::Notification(line)
                if line == "%paste-buffer-changed recipient-aba"
        )
    }));
    assert!(drain_control_notifications(&mut replacement_rx).is_empty());
}