rmux-server 0.1.1

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
use super::*;

#[tokio::test]
async fn send_prefix_reports_the_configured_prefix_key() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");

    let created = handler
        .handle(Request::NewSession(NewSessionRequest {
            session_name: alpha.clone(),
            detached: true,
            size: Some(TerminalSize { cols: 80, rows: 24 }),
            environment: None,
        }))
        .await;
    assert!(matches!(created, Response::NewSession(_)));

    let response = handler
        .handle(Request::SendPrefix(SendPrefixRequest {
            target: Some(PaneTarget::new(alpha, 0)),
            secondary: false,
        }))
        .await;
    assert!(matches!(
        response,
        Response::SendPrefix(ref success) if success.key == "C-b"
    ));
}

#[tokio::test]
async fn bind_key_without_a_command_requires_an_existing_binding() {
    let handler = RequestHandler::new();

    let response = handler
        .handle(Request::BindKey(BindKeyRequest {
            table_name: "root".to_owned(),
            key: "User1000".to_owned(),
            note: Some("missing".to_owned()),
            repeat: true,
            command: None,
        }))
        .await;

    assert!(matches!(response, Response::Error(_)));
}

#[tokio::test]
async fn bind_key_without_a_command_updates_note_and_repeat_in_place() {
    let handler = RequestHandler::new();

    let response = handler
        .handle(Request::BindKey(BindKeyRequest {
            table_name: "prefix".to_owned(),
            key: "C-b".to_owned(),
            note: Some("updated note".to_owned()),
            repeat: true,
            command: None,
        }))
        .await;
    assert!(matches!(response, Response::BindKey(_)));

    let listed = handler
        .handle(Request::ListKeys(ListKeysRequest {
            table_name: Some("prefix".to_owned()),
            first_only: true,
            notes: false,
            include_unnoted: true,
            reversed: false,
            format: Some("#{key_note}|#{key_repeat}|#{key_command}".to_owned()),
            sort_order: None,
            prefix: None,
            key: Some("C-b".to_owned()),
        }))
        .await;
    let Response::ListKeys(response) = listed else {
        panic!("expected list-keys response");
    };
    let stdout = String::from_utf8(response.command_output().stdout().to_vec()).unwrap();
    assert_eq!(stdout.trim_end(), "updated note|1|send-prefix");
}

#[tokio::test]
async fn list_keys_single_key_filter_uses_tmux_unpadded_alignment() {
    let handler = RequestHandler::new();

    let listed = handler
        .handle(Request::ListKeys(ListKeysRequest {
            table_name: Some("prefix".to_owned()),
            first_only: false,
            notes: false,
            include_unnoted: true,
            reversed: false,
            format: None,
            sort_order: None,
            prefix: None,
            key: Some("C-b".to_owned()),
        }))
        .await;
    let Response::ListKeys(response) = listed else {
        panic!("expected list-keys response");
    };

    let stdout = String::from_utf8(response.command_output().stdout().to_vec()).unwrap();
    assert_eq!(stdout, "bind-key -T prefix C-b send-prefix\n");
    assert_eq!(response.match_count, 1);
}

#[tokio::test]
async fn list_keys_single_key_filter_aligns_multiple_matching_tables() {
    let handler = RequestHandler::new();

    let listed = handler
        .handle(Request::ListKeys(ListKeysRequest {
            table_name: None,
            first_only: false,
            notes: false,
            include_unnoted: true,
            reversed: false,
            format: None,
            sort_order: None,
            prefix: None,
            key: Some("C-b".to_owned()),
        }))
        .await;
    let Response::ListKeys(response) = listed else {
        panic!("expected list-keys response");
    };

    let stdout = String::from_utf8(response.command_output().stdout().to_vec()).unwrap();
    assert_eq!(
        stdout,
        "bind-key -T copy-mode    C-b send-keys -X cursor-left\n\
bind-key -T copy-mode-vi C-b send-keys -X page-up\n\
bind-key -T prefix       C-b send-prefix\n"
    );
    assert_eq!(response.match_count, 3);
}

#[tokio::test]
async fn list_keys_single_key_filter_errors_when_unbound() {
    let handler = RequestHandler::new();

    let listed = handler
        .handle(Request::ListKeys(ListKeysRequest {
            table_name: Some("prefix".to_owned()),
            first_only: false,
            notes: false,
            include_unnoted: true,
            reversed: false,
            format: None,
            sort_order: None,
            prefix: None,
            key: Some("Z".to_owned()),
        }))
        .await;

    assert_eq!(
        listed,
        Response::Error(ErrorResponse {
            error: RmuxError::Message("unknown key: Z".to_owned())
        })
    );
}

#[tokio::test]
async fn list_keys_rejects_unknown_sort_orders() {
    let handler = RequestHandler::new();

    let response = handler
        .handle(Request::ListKeys(ListKeysRequest {
            table_name: None,
            first_only: false,
            notes: false,
            include_unnoted: true,
            reversed: false,
            format: None,
            sort_order: Some("bogus".to_owned()),
            prefix: None,
            key: None,
        }))
        .await;

    assert!(matches!(response, Response::Error(_)));
}

#[tokio::test]
async fn repeating_non_repeat_lookup_restarts_in_the_default_table() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    let requester_pid = std::process::id();

    let created = handler
        .handle(Request::NewSession(NewSessionRequest {
            session_name: alpha.clone(),
            detached: true,
            size: Some(TerminalSize { cols: 80, rows: 24 }),
            environment: None,
        }))
        .await;
    assert!(matches!(created, Response::NewSession(_)));

    let (control_tx, _control_rx) = mpsc::unbounded_channel();
    let _attach_id = handler
        .register_attach(requester_pid, alpha.clone(), control_tx)
        .await;

    for request in [
        BindKeyRequest {
            table_name: "root".to_owned(),
            key: "x".to_owned(),
            note: Some("root".to_owned()),
            repeat: false,
            command: Some(vec![
                "set-buffer".to_owned(),
                "-b".to_owned(),
                "dispatch-source".to_owned(),
                "root".to_owned(),
            ]),
        },
        BindKeyRequest {
            table_name: "my-table".to_owned(),
            key: "r".to_owned(),
            note: Some("repeat".to_owned()),
            repeat: true,
            command: Some(vec![
                "set-buffer".to_owned(),
                "-b".to_owned(),
                "repeat-hit".to_owned(),
                "yes".to_owned(),
            ]),
        },
        BindKeyRequest {
            table_name: "my-table".to_owned(),
            key: "x".to_owned(),
            note: Some("custom".to_owned()),
            repeat: false,
            command: Some(vec![
                "set-buffer".to_owned(),
                "-b".to_owned(),
                "dispatch-source".to_owned(),
                "custom".to_owned(),
            ]),
        },
    ] {
        let response = handler.handle(Request::BindKey(request)).await;
        assert!(matches!(response, Response::BindKey(_)));
    }

    let switched = handler
        .handle(Request::SwitchClientExt(SwitchClientExtRequest {
            target: None,
            key_table: Some("my-table".to_owned()),
        }))
        .await;
    assert!(matches!(switched, Response::SwitchClient(_)));

    let dispatched = handler
        .handle(Request::SendKeysExt(SendKeysExtRequest {
            target: Some(PaneTarget::new(alpha, 0)),
            keys: vec!["r".to_owned(), "x".to_owned()],
            expand_formats: false,
            hex: false,
            literal: false,
            dispatch_key_table: true,
            copy_mode_command: false,
            forward_mouse_event: false,
            reset_terminal: false,
            repeat_count: None,
        }))
        .await;
    assert_eq!(
        dispatched,
        Response::SendKeys(SendKeysResponse { key_count: 2 })
    );

    let shown = handler
        .handle(Request::ShowBuffer(ShowBufferRequest {
            name: Some("dispatch-source".to_owned()),
        }))
        .await;
    let Response::ShowBuffer(response) = shown else {
        panic!("expected show-buffer response");
    };
    assert_eq!(response.command_output().stdout(), b"root");
}

#[tokio::test]
async fn prefix_timeout_clears_the_prefix_table_without_waiting_for_the_next_key() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    let requester_pid = std::process::id();

    let created = handler
        .handle(Request::NewSession(NewSessionRequest {
            session_name: alpha.clone(),
            detached: true,
            size: Some(TerminalSize { cols: 80, rows: 24 }),
            environment: None,
        }))
        .await;
    assert!(matches!(created, Response::NewSession(_)));

    let configured = handler
        .handle(Request::SetOption(SetOptionRequest {
            scope: ScopeSelector::Global,
            option: OptionName::PrefixTimeout,
            value: "25".to_owned(),
            mode: SetOptionMode::Replace,
        }))
        .await;
    assert!(matches!(configured, Response::SetOption(_)));

    let (control_tx, _control_rx) = mpsc::unbounded_channel();
    let _attach_id = handler
        .register_attach(requester_pid, alpha.clone(), control_tx)
        .await;

    let dispatched = handler
        .handle(Request::SendKeysExt(SendKeysExtRequest {
            target: Some(PaneTarget::new(alpha, 0)),
            keys: vec!["C-b".to_owned()],
            expand_formats: false,
            hex: false,
            literal: false,
            dispatch_key_table: true,
            copy_mode_command: false,
            forward_mouse_event: false,
            reset_terminal: false,
            repeat_count: None,
        }))
        .await;
    assert_eq!(
        dispatched,
        Response::SendKeys(SendKeysResponse { key_count: 1 })
    );

    {
        let active_attach = handler.active_attach.lock().await;
        let active = active_attach
            .by_pid
            .get(&requester_pid)
            .expect("attached client should remain registered");
        assert_eq!(active.key_table_name.as_deref(), Some("prefix"));
    }

    sleep(Duration::from_millis(100)).await;

    let active_attach = handler.active_attach.lock().await;
    let active = active_attach
        .by_pid
        .get(&requester_pid)
        .expect("attached client should remain registered");
    assert_eq!(active.key_table_name, None);
    assert_eq!(active.key_table_set_at, None);
    assert!(!active.repeat_active);
    assert_eq!(active.repeat_deadline, None);
}

#[tokio::test]
async fn repeat_timeout_clears_custom_key_tables_without_waiting_for_the_next_key() {
    let handler = RequestHandler::new();
    let alpha = session_name("alpha");
    let requester_pid = std::process::id();

    let created = handler
        .handle(Request::NewSession(NewSessionRequest {
            session_name: alpha.clone(),
            detached: true,
            size: Some(TerminalSize { cols: 80, rows: 24 }),
            environment: None,
        }))
        .await;
    assert!(matches!(created, Response::NewSession(_)));

    let configured = handler
        .handle(Request::SetOption(SetOptionRequest {
            scope: ScopeSelector::Session(alpha.clone()),
            option: OptionName::RepeatTime,
            value: "25".to_owned(),
            mode: SetOptionMode::Replace,
        }))
        .await;
    assert!(matches!(configured, Response::SetOption(_)));

    let (control_tx, _control_rx) = mpsc::unbounded_channel();
    let _attach_id = handler
        .register_attach(requester_pid, alpha.clone(), control_tx)
        .await;

    let bound = handler
        .handle(Request::BindKey(BindKeyRequest {
            table_name: "my-table".to_owned(),
            key: "r".to_owned(),
            note: Some("repeat".to_owned()),
            repeat: true,
            command: Some(vec![
                "set-buffer".to_owned(),
                "-b".to_owned(),
                "repeat-hit".to_owned(),
                "yes".to_owned(),
            ]),
        }))
        .await;
    assert!(matches!(bound, Response::BindKey(_)));

    let switched = handler
        .handle(Request::SwitchClientExt(SwitchClientExtRequest {
            target: None,
            key_table: Some("my-table".to_owned()),
        }))
        .await;
    assert!(matches!(switched, Response::SwitchClient(_)));

    let dispatched = handler
        .handle(Request::SendKeysExt(SendKeysExtRequest {
            target: Some(PaneTarget::new(alpha, 0)),
            keys: vec!["r".to_owned()],
            expand_formats: false,
            hex: false,
            literal: false,
            dispatch_key_table: true,
            copy_mode_command: false,
            forward_mouse_event: false,
            reset_terminal: false,
            repeat_count: None,
        }))
        .await;
    assert_eq!(
        dispatched,
        Response::SendKeys(SendKeysResponse { key_count: 1 })
    );

    {
        let active_attach = handler.active_attach.lock().await;
        let active = active_attach
            .by_pid
            .get(&requester_pid)
            .expect("attached client should remain registered");
        assert_eq!(active.key_table_name.as_deref(), Some("my-table"));
        assert!(active.repeat_active);
        assert!(active.repeat_deadline.is_some());
    }

    sleep(Duration::from_millis(100)).await;

    let active_attach = handler.active_attach.lock().await;
    let active = active_attach
        .by_pid
        .get(&requester_pid)
        .expect("attached client should remain registered");
    assert_eq!(active.key_table_name, None);
    assert_eq!(active.key_table_set_at, None);
    assert!(!active.repeat_active);
    assert_eq!(active.repeat_deadline, None);
}

#[tokio::test]
async fn unbind_key_all_removes_active_bindings_without_dropping_default_tables() {
    let handler = RequestHandler::new();

    let response = handler
        .handle(Request::UnbindKey(UnbindKeyRequest {
            table_name: "prefix".to_owned(),
            all: true,
            key: None,
            quiet: false,
        }))
        .await;
    assert!(matches!(
        response,
        Response::UnbindKey(ref success) if success.removed && success.all
    ));

    let listed = handler
        .handle(Request::ListKeys(ListKeysRequest {
            table_name: Some("prefix".to_owned()),
            first_only: false,
            notes: false,
            include_unnoted: true,
            reversed: false,
            format: None,
            sort_order: None,
            prefix: None,
            key: None,
        }))
        .await;
    let Response::ListKeys(response) = listed else {
        panic!("expected list-keys response");
    };
    assert_eq!(response.match_count, 0);

    let rebound = handler
        .handle(Request::BindKey(BindKeyRequest {
            table_name: "prefix".to_owned(),
            key: "User1000".to_owned(),
            note: Some("user".to_owned()),
            repeat: false,
            command: Some(vec!["send-prefix".to_owned()]),
        }))
        .await;
    assert!(matches!(rebound, Response::BindKey(_)));
}