room-cli 3.0.0-rc.6

Multi-user chat room for agent/human coordination over Unix domain sockets
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
use std::{collections::HashMap, path::Path};

use room_protocol::SubscriptionTier;

use crate::{
    message::{make_system, Message},
    plugin::{
        builtin_command_infos, ChatWriter, CommandContext, CommandInfo, HistoryReader, ParamType,
        PluginResult, RoomMetadata,
    },
};

use super::{
    admin::{handle_admin_cmd, ADMIN_CMD_NAMES},
    fanout::broadcast_and_persist,
    state::RoomState,
};

// ── Subscription persistence ─────────────────────────────────────────────────

/// Write a subscription map to disk as JSON.
pub(crate) fn save_subscription_map(
    map: &HashMap<String, SubscriptionTier>,
    path: &Path,
) -> Result<(), String> {
    let json =
        serde_json::to_string_pretty(map).map_err(|e| format!("serialize subscriptions: {e}"))?;
    std::fs::write(path, json).map_err(|e| format!("write {}: {e}", path.display()))
}

/// Load a subscription map from disk. Returns an empty map if the file does
/// not exist or contains invalid JSON.
pub(crate) fn load_subscription_map(path: &Path) -> HashMap<String, SubscriptionTier> {
    let contents = match std::fs::read_to_string(path) {
        Ok(c) => c,
        Err(_) => return HashMap::new(),
    };
    serde_json::from_str(&contents).unwrap_or_else(|e| {
        eprintln!(
            "[broker] corrupt subscription file {}: {e} — starting empty",
            path.display()
        );
        HashMap::new()
    })
}

/// Persist the current subscription map to disk (fire-and-forget logging).
///
/// Called after every mutation to the in-memory map. Uses synchronous I/O
/// because the file is tiny (a few KB at most) and consistency matters more
/// than shaving microseconds.
pub(crate) async fn persist_subscriptions(state: &RoomState) {
    let snapshot = state.subscription_snapshot().await;
    if let Err(e) = save_subscription_map(&snapshot, &state.subscription_map_path) {
        eprintln!("[broker] subscription persist failed: {e}");
    }
}

/// The result of routing an inbound command line.
pub(crate) enum CommandResult {
    /// The command was fully handled with a broadcast or no-op; nothing to send back privately.
    Handled,
    /// The command was handled with a broadcast; oneshot callers should receive this JSON echo.
    ///
    /// Interactive clients already receive the message via the broadcast channel, so
    /// `handle_client` treats this identically to `Handled`. One-shot senders are not
    /// subscribed to the broadcast, so `handle_oneshot_send` writes the JSON back to them
    /// directly, avoiding the EOF parse error the client would otherwise see.
    HandledWithReply(String),
    /// The command was handled privately; send this JSON line back only to the issuer.
    Reply(String),
    /// The command was handled and the broker is shutting down.
    Shutdown,
    /// Not a special command; the caller should broadcast or DM `msg` normally.
    Passthrough(Message),
}

/// Route a parsed `Message` for a given `username` against `state`.
///
/// Handles `set_status`, `who`, and all admin commands inline. For any other
/// message (including regular chat) returns `CommandResult::Passthrough(msg)`
/// so the caller can broadcast or DM it.
///
/// This is the unified entry point used by both the interactive inbound task
/// and `handle_oneshot_send` — previously the logic was duplicated in both.
pub(crate) async fn route_command(
    msg: Message,
    username: &str,
    state: &RoomState,
) -> anyhow::Result<CommandResult> {
    if let Message::Command {
        ref cmd,
        ref params,
        ..
    } = msg
    {
        // Validate params against built-in schema before dispatching.
        let builtins = builtin_command_infos();
        if let Some(cmd_info) = builtins.iter().find(|c| c.name == *cmd) {
            if let Err(err_msg) = validate_params(params, cmd_info) {
                let sys = make_system(&state.room_id, "broker", err_msg);
                let json = serde_json::to_string(&sys)?;
                return Ok(CommandResult::Reply(json));
            }
        }

        if cmd == "set_status" {
            let status = params.first().cloned().unwrap_or_default();
            state.set_status(username, status.clone()).await;
            let display = if status.is_empty() {
                format!("{username} cleared their status")
            } else {
                format!("{username} set status: {status}")
            };
            let sys = make_system(&state.room_id, "broker", display);
            broadcast_and_persist(&sys, &state.clients, &state.chat_path, &state.seq_counter)
                .await?;
            // Broadcast already delivers to all interactive clients. One-shot callers are not
            // subscribed to the broadcast channel, so we carry the JSON in HandledWithReply so
            // handle_oneshot_send can write it back — preventing the EOF parse error.
            let json = serde_json::to_string(&sys)?;
            return Ok(CommandResult::HandledWithReply(json));
        }

        if cmd == "who" {
            let entries: Vec<String> = state
                .status_entries()
                .await
                .into_iter()
                .map(|(u, s)| if s.is_empty() { u } else { format!("{u}: {s}") })
                .collect();
            let content = if entries.is_empty() {
                "no users online".to_owned()
            } else {
                format!("online — {}", entries.join(", "))
            };
            let sys = make_system(&state.room_id, "broker", content);
            let json = serde_json::to_string(&sys)?;
            return Ok(CommandResult::Reply(json));
        }

        // Task claim commands.
        if cmd == "claim" {
            let task = params.join(" ");
            state.set_claim(username, task.clone()).await;
            let display = format!("{username} claimed: {task}");
            let sys = make_system(&state.room_id, "broker", display);
            broadcast_and_persist(&sys, &state.clients, &state.chat_path, &state.seq_counter)
                .await?;
            let json = serde_json::to_string(&sys)?;
            return Ok(CommandResult::HandledWithReply(json));
        }

        if cmd == "unclaim" {
            let removed = state.remove_claim(username).await;
            let display = match removed {
                Some(task) => format!("{username} released claim: {task}"),
                None => format!("{username} has no active claim"),
            };
            let sys = make_system(&state.room_id, "broker", display);
            broadcast_and_persist(&sys, &state.clients, &state.chat_path, &state.seq_counter)
                .await?;
            let json = serde_json::to_string(&sys)?;
            return Ok(CommandResult::HandledWithReply(json));
        }

        if cmd == "claimed" {
            let raw = state.claim_entries().await;
            let content = if raw.is_empty() {
                "no active claims".to_owned()
            } else {
                let entries: Vec<String> =
                    raw.into_iter().map(|(u, t)| format!("{u}: {t}")).collect();
                format!("claimed — {}", entries.join(", "))
            };
            let sys = make_system(&state.room_id, "broker", content);
            let json = serde_json::to_string(&sys)?;
            return Ok(CommandResult::Reply(json));
        }

        // Subscription commands.
        if cmd == "subscribe" || cmd == "set_subscription" {
            let tier_str = params.first().map(String::as_str).unwrap_or("full");
            let tier: SubscriptionTier = match tier_str.parse() {
                Ok(t) => t,
                Err(e) => {
                    let sys = make_system(&state.room_id, "broker", e);
                    let json = serde_json::to_string(&sys)?;
                    return Ok(CommandResult::Reply(json));
                }
            };
            state.set_subscription(username, tier).await;
            persist_subscriptions(state).await;
            let display = format!("{username} subscribed to {} (tier: {tier})", state.room_id);
            let sys = make_system(&state.room_id, "broker", display);
            broadcast_and_persist(&sys, &state.clients, &state.chat_path, &state.seq_counter)
                .await?;
            let json = serde_json::to_string(&sys)?;
            return Ok(CommandResult::HandledWithReply(json));
        }

        if cmd == "unsubscribe" {
            state
                .set_subscription(username, SubscriptionTier::Unsubscribed)
                .await;
            persist_subscriptions(state).await;
            let display = format!("{username} unsubscribed from {}", state.room_id);
            let sys = make_system(&state.room_id, "broker", display);
            broadcast_and_persist(&sys, &state.clients, &state.chat_path, &state.seq_counter)
                .await?;
            let json = serde_json::to_string(&sys)?;
            return Ok(CommandResult::HandledWithReply(json));
        }

        if cmd == "subscriptions" {
            let raw = state.subscription_entries().await;
            let content = if raw.is_empty() {
                "no subscriptions".to_owned()
            } else {
                let entries: Vec<String> =
                    raw.into_iter().map(|(u, t)| format!("{u}: {t}")).collect();
                format!("subscriptions — {}", entries.join(", "))
            };
            let sys = make_system(&state.room_id, "broker", content);
            let json = serde_json::to_string(&sys)?;
            return Ok(CommandResult::Reply(json));
        }

        // Room management commands.
        if cmd == "room-info" {
            let result = handle_room_info(state).await;
            let sys = make_system(&state.room_id, "broker", result);
            let json = serde_json::to_string(&sys)?;
            return Ok(CommandResult::Reply(json));
        }

        if ADMIN_CMD_NAMES.contains(&cmd.as_str()) {
            let cmd_line = format!("{cmd} {}", params.join(" "));
            let error = handle_admin_cmd(&cmd_line, username, state).await;
            if let Some(err) = error {
                // Permission denied or invalid args — send error back privately.
                let sys = make_system(&state.room_id, "broker", err);
                let json = serde_json::to_string(&sys)?;
                return Ok(CommandResult::Reply(json));
            }
            // Admin command succeeded — the command itself may have broadcast a notice.
            // If it was /exit the shutdown signal was already sent; signal the caller.
            if cmd == "exit" {
                return Ok(CommandResult::Shutdown);
            }
            return Ok(CommandResult::Handled);
        }

        // Plugin dispatch — check registry before falling through to Passthrough.
        if let Some(plugin) = state.plugin_registry.resolve(cmd) {
            let plugin_name = plugin.name().to_owned();
            match dispatch_plugin(plugin, &msg, username, state).await {
                Ok(result) => return Ok(result),
                Err(e) => {
                    // Plugin errors are sent as private replies, never swallowed.
                    let err_msg = format!("plugin:{plugin_name} error: {e}");
                    let sys = make_system(&state.room_id, "broker", err_msg);
                    let json = serde_json::to_string(&sys)?;
                    return Ok(CommandResult::Reply(json));
                }
            }
        }
    }

    Ok(CommandResult::Passthrough(msg))
}

/// Validate `params` against a command's [`CommandInfo`] schema.
///
/// Returns `Ok(())` if all constraints pass, or `Err(message)` with a
/// human-readable error suitable for sending back as a reply.
///
/// Validation rules:
/// - Required params must be present (not blank).
/// - `ParamType::Choice` values must be in the allowed set.
/// - `ParamType::Number` values must parse as `i64` and respect min/max bounds.
/// - `ParamType::Text` and `ParamType::Username` are accepted as-is (no
///   server-side validation — username existence is not checked here).
fn validate_params(params: &[String], schema: &CommandInfo) -> Result<(), String> {
    for (i, ps) in schema.params.iter().enumerate() {
        let value = params.get(i).map(String::as_str).unwrap_or("");
        if ps.required && value.is_empty() {
            return Err(format!(
                "/{}: missing required parameter <{}>",
                schema.name, ps.name
            ));
        }
        if value.is_empty() {
            continue;
        }
        match &ps.param_type {
            ParamType::Choice(allowed) => {
                if !allowed.iter().any(|a| a == value) {
                    return Err(format!(
                        "/{}: <{}> must be one of: {}",
                        schema.name,
                        ps.name,
                        allowed.join(", ")
                    ));
                }
            }
            ParamType::Number { min, max } => {
                let Ok(n) = value.parse::<i64>() else {
                    return Err(format!(
                        "/{}: <{}> must be a number, got '{}'",
                        schema.name, ps.name, value
                    ));
                };
                if let Some(lo) = min {
                    if n < *lo {
                        return Err(format!("/{}: <{}> must be >= {lo}", schema.name, ps.name));
                    }
                }
                if let Some(hi) = max {
                    if n > *hi {
                        return Err(format!("/{}: <{}> must be <= {hi}", schema.name, ps.name));
                    }
                }
            }
            ParamType::Text | ParamType::Username => {}
        }
    }
    Ok(())
}

/// Build a [`CommandContext`] and call a plugin's `handle` method, translating
/// the [`PluginResult`] into a [`CommandResult`] the broker understands.
async fn dispatch_plugin(
    plugin: &dyn crate::plugin::Plugin,
    msg: &Message,
    username: &str,
    state: &RoomState,
) -> anyhow::Result<CommandResult> {
    let (cmd, params, id, ts) = match msg {
        Message::Command {
            cmd,
            params,
            id,
            ts,
            ..
        } => (cmd, params, id, ts),
        _ => return Ok(CommandResult::Passthrough(msg.clone())),
    };

    // Schema validation — check params against the plugin's declared schema
    // before invoking the handler.
    if let Some(cmd_info) = plugin.commands().iter().find(|c| c.name == *cmd) {
        if let Err(err_msg) = validate_params(params, cmd_info) {
            let sys = make_system(
                &state.room_id,
                &format!("plugin:{}", plugin.name()),
                err_msg,
            );
            let json = serde_json::to_string(&sys)?;
            return Ok(CommandResult::Reply(json));
        }
    }

    let history = HistoryReader::new(&state.chat_path, username);
    let writer = ChatWriter::new(
        &state.clients,
        &state.chat_path,
        &state.room_id,
        &state.seq_counter,
        plugin.name(),
    );
    let metadata =
        RoomMetadata::snapshot(&state.status_map, &state.host_user, &state.chat_path).await;
    let available_commands = state.plugin_registry.all_commands();

    let ctx = CommandContext {
        command: cmd.clone(),
        params: params.clone(),
        sender: username.to_owned(),
        room_id: state.room_id.as_ref().clone(),
        message_id: id.clone(),
        timestamp: *ts,
        history,
        writer,
        metadata,
        available_commands,
    };

    let result = plugin.handle(ctx).await?;

    Ok(match result {
        PluginResult::Reply(text) => {
            let sys = make_system(&state.room_id, &format!("plugin:{}", plugin.name()), text);
            let json = serde_json::to_string(&sys)?;
            CommandResult::Reply(json)
        }
        PluginResult::Broadcast(text) => {
            let sys = make_system(&state.room_id, &format!("plugin:{}", plugin.name()), text);
            broadcast_and_persist(&sys, &state.clients, &state.chat_path, &state.seq_counter)
                .await?;
            CommandResult::Handled
        }
        PluginResult::Handled => CommandResult::Handled,
    })
}

// ── Room management commands ──────────────────────────────────────────────────

/// Handle `/room-info` — display room visibility, config, and member count.
async fn handle_room_info(state: &RoomState) -> String {
    let member_count = state.status_count().await;
    let sub_count = state.subscription_count().await;
    match &state.config {
        Some(config) => {
            let vis = serde_json::to_string(&config.visibility).unwrap_or_default();
            let max = config
                .max_members
                .map(|n| n.to_string())
                .unwrap_or_else(|| "unlimited".to_owned());
            let invites: Vec<&str> = config.invite_list.iter().map(|s| s.as_str()).collect();
            format!(
                "room: {} | visibility: {} | max members: {} | members online: {} | subscribers: {} | invited: [{}] | created by: {}",
                state.room_id, vis, max, member_count, sub_count, invites.join(", "), config.created_by
            )
        }
        None => {
            format!(
                "room: {} | visibility: public (legacy) | members online: {} | subscribers: {}",
                state.room_id, member_count, sub_count
            )
        }
    }
}

// ── Tests ─────────────────────────────────────────────────────────────────────

#[cfg(test)]
mod tests {
    use super::{handle_room_info, route_command, CommandResult};
    use crate::{
        broker::state::RoomState,
        message::{make_command, make_dm, make_message},
    };
    use room_protocol::SubscriptionTier;
    use std::{collections::HashMap, sync::Arc};
    use tempfile::NamedTempFile;
    use tokio::sync::Mutex;

    fn make_state(chat_path: std::path::PathBuf) -> Arc<RoomState> {
        let token_map_path = chat_path.with_extension("tokens");
        let subscription_map_path = chat_path.with_extension("subscriptions");
        RoomState::new(
            "test-room".to_owned(),
            chat_path,
            token_map_path,
            subscription_map_path,
            Arc::new(Mutex::new(HashMap::new())),
            Arc::new(Mutex::new(HashMap::new())),
            None,
        )
        .unwrap()
    }

    // ── route_command: passthrough ─────────────────────────────────────────

    #[tokio::test]
    async fn route_command_regular_message_is_passthrough() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_message("test-room", "alice", "hello");
        let result = route_command(msg, "alice", &state).await.unwrap();
        assert!(matches!(result, CommandResult::Passthrough(_)));
    }

    #[tokio::test]
    async fn route_command_dm_message_is_passthrough() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_dm("test-room", "alice", "bob", "secret");
        let result = route_command(msg, "alice", &state).await.unwrap();
        assert!(matches!(result, CommandResult::Passthrough(_)));
    }

    // ── route_command: set_status ──────────────────────────────────────────

    #[tokio::test]
    async fn route_command_set_status_returns_handled_with_reply_and_updates_map() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command("test-room", "alice", "set_status", vec!["busy".to_owned()]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::HandledWithReply(json) = result else {
            panic!("expected HandledWithReply, got Handled or other");
        };
        assert!(
            json.contains("set status"),
            "reply JSON should contain status announcement"
        );
        assert!(
            json.contains("busy"),
            "reply JSON should contain the status text"
        );
        assert_eq!(
            state
                .status_map
                .lock()
                .await
                .get("alice")
                .map(String::as_str),
            Some("busy")
        );
    }

    #[tokio::test]
    async fn route_command_set_status_empty_params_clears_status() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        state
            .status_map
            .lock()
            .await
            .insert("alice".to_owned(), "busy".to_owned());
        let msg = make_command("test-room", "alice", "set_status", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        assert!(matches!(result, CommandResult::HandledWithReply(_)));
        assert_eq!(
            state
                .status_map
                .lock()
                .await
                .get("alice")
                .map(String::as_str),
            Some("")
        );
    }

    // ── route_command: who ─────────────────────────────────────────────────

    #[tokio::test]
    async fn route_command_who_with_online_user_in_reply() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        state
            .status_map
            .lock()
            .await
            .insert("alice".to_owned(), String::new());
        let msg = make_command("test-room", "alice", "who", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::Reply(json) = result else {
            panic!("expected Reply");
        };
        assert!(json.contains("alice"), "reply should list alice");
    }

    #[tokio::test]
    async fn route_command_who_empty_room_says_no_users_online() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command("test-room", "alice", "who", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::Reply(json) = result else {
            panic!("expected Reply");
        };
        assert!(json.contains("no users online"));
    }

    #[tokio::test]
    async fn route_command_who_shows_status_alongside_name() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        state
            .status_map
            .lock()
            .await
            .insert("alice".to_owned(), "reviewing PR".to_owned());
        let msg = make_command("test-room", "alice", "who", vec![]);
        let CommandResult::Reply(json) = route_command(msg, "alice", &state).await.unwrap() else {
            panic!("expected Reply");
        };
        assert!(json.contains("reviewing PR"));
    }

    // ── route_command: admin permission gating ────────────────────────────

    #[tokio::test]
    async fn route_command_admin_as_non_host_gets_permission_denied_reply() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        *state.host_user.lock().await = Some("host-user".to_owned());
        let msg = make_command("test-room", "alice", "kick", vec!["bob".to_owned()]);
        let CommandResult::Reply(json) = route_command(msg, "alice", &state).await.unwrap() else {
            panic!("expected Reply");
        };
        assert!(json.contains("permission denied"));
    }

    #[tokio::test]
    async fn route_command_admin_when_no_host_set_gets_permission_denied() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        // host_user is None
        let msg = make_command("test-room", "alice", "exit", vec![]);
        let CommandResult::Reply(json) = route_command(msg, "alice", &state).await.unwrap() else {
            panic!("expected Reply");
        };
        assert!(json.contains("permission denied"));
    }

    // ── route_command: admin commands as host ─────────────────────────────

    #[tokio::test]
    async fn route_command_kick_as_host_returns_handled_and_invalidates_token() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        *state.host_user.lock().await = Some("alice".to_owned());
        state
            .token_map
            .lock()
            .await
            .insert("some-uuid".to_owned(), "bob".to_owned());
        let msg = make_command("test-room", "alice", "kick", vec!["bob".to_owned()]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        assert!(matches!(result, CommandResult::Handled));
        let guard = state.token_map.lock().await;
        assert!(
            !guard.contains_key("some-uuid"),
            "original token must be revoked"
        );
        assert_eq!(
            guard.get("KICKED:bob").map(String::as_str),
            Some("bob"),
            "KICKED sentinel must be inserted"
        );
    }

    #[tokio::test]
    async fn route_command_exit_as_host_returns_shutdown() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        *state.host_user.lock().await = Some("alice".to_owned());
        let msg = make_command("test-room", "alice", "exit", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        assert!(matches!(result, CommandResult::Shutdown));
    }

    // ── route_command: built-in param validation ────────────────────────

    #[tokio::test]
    async fn route_command_kick_missing_user_gets_validation_error() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        *state.host_user.lock().await = Some("alice".to_owned());
        let msg = make_command("test-room", "alice", "kick", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::Reply(json) = result else {
            panic!("expected Reply with validation error");
        };
        assert!(
            json.contains("missing required"),
            "should report missing param"
        );
        assert!(json.contains("<user>"), "should name the missing param");
    }

    #[tokio::test]
    async fn route_command_reauth_missing_user_gets_validation_error() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        *state.host_user.lock().await = Some("alice".to_owned());
        let msg = make_command("test-room", "alice", "reauth", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::Reply(json) = result else {
            panic!("expected Reply with validation error");
        };
        assert!(json.contains("missing required"));
    }

    #[tokio::test]
    async fn route_command_kick_with_valid_params_passes_validation() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        *state.host_user.lock().await = Some("alice".to_owned());
        // Kick with valid username — should not be rejected by validation.
        let msg = make_command("test-room", "alice", "kick", vec!["bob".to_owned()]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        // kick succeeds (Handled), not a validation error Reply
        assert!(matches!(result, CommandResult::Handled));
    }

    #[tokio::test]
    async fn route_command_claim_missing_task_gets_validation_error() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        // /claim has a required "task" param
        let msg = make_command("test-room", "alice", "claim", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::Reply(json) = result else {
            panic!("expected Reply with validation error");
        };
        assert!(json.contains("missing required"));
        assert!(json.contains("<task>"));
    }

    #[tokio::test]
    async fn route_command_claim_with_task_is_handled() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command("test-room", "alice", "claim", vec!["fix bug".to_owned()]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::HandledWithReply(json) = result else {
            panic!("expected HandledWithReply for /claim");
        };
        assert!(json.contains("alice claimed: fix bug"));
    }

    #[tokio::test]
    async fn route_command_who_no_params_passes_validation() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        // /who has no required params — should always pass validation
        let msg = make_command("test-room", "alice", "who", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        assert!(matches!(result, CommandResult::Reply(_)));
    }

    #[tokio::test]
    async fn route_command_reply_missing_params_gets_validation_error() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        // /reply requires both id and message
        let msg = make_command("test-room", "alice", "reply", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::Reply(json) = result else {
            panic!("expected Reply with validation error");
        };
        assert!(json.contains("missing required"));
    }

    #[tokio::test]
    async fn route_command_nonbuiltin_command_skips_validation() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        // A command not in builtin_command_infos — no schema to validate against
        let msg = make_command("test-room", "alice", "unknown_cmd", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        // Falls through to Passthrough (no schema, no handler)
        assert!(matches!(result, CommandResult::Passthrough(_)));
    }

    // ── validate_params tests ─────────────────────────────────────────────

    mod validation_tests {
        use super::super::validate_params;
        use crate::plugin::{CommandInfo, ParamSchema, ParamType};

        fn cmd_with_params(params: Vec<ParamSchema>) -> CommandInfo {
            CommandInfo {
                name: "test".to_owned(),
                description: "test".to_owned(),
                usage: "/test".to_owned(),
                params,
            }
        }

        #[test]
        fn validate_empty_schema_always_passes() {
            let cmd = cmd_with_params(vec![]);
            assert!(validate_params(&[], &cmd).is_ok());
            assert!(validate_params(&["extra".to_owned()], &cmd).is_ok());
        }

        #[test]
        fn validate_required_param_missing() {
            let cmd = cmd_with_params(vec![ParamSchema {
                name: "user".to_owned(),
                param_type: ParamType::Text,
                required: true,
                description: "target user".to_owned(),
            }]);
            let err = validate_params(&[], &cmd).unwrap_err();
            assert!(err.contains("missing required"));
            assert!(err.contains("<user>"));
        }

        #[test]
        fn validate_required_param_present() {
            let cmd = cmd_with_params(vec![ParamSchema {
                name: "user".to_owned(),
                param_type: ParamType::Text,
                required: true,
                description: "target user".to_owned(),
            }]);
            assert!(validate_params(&["alice".to_owned()], &cmd).is_ok());
        }

        #[test]
        fn validate_optional_param_missing_is_ok() {
            let cmd = cmd_with_params(vec![ParamSchema {
                name: "count".to_owned(),
                param_type: ParamType::Number {
                    min: None,
                    max: None,
                },
                required: false,
                description: "count".to_owned(),
            }]);
            assert!(validate_params(&[], &cmd).is_ok());
        }

        #[test]
        fn validate_choice_valid_value() {
            let cmd = cmd_with_params(vec![ParamSchema {
                name: "color".to_owned(),
                param_type: ParamType::Choice(vec!["red".to_owned(), "blue".to_owned()]),
                required: true,
                description: "pick a color".to_owned(),
            }]);
            assert!(validate_params(&["red".to_owned()], &cmd).is_ok());
            assert!(validate_params(&["blue".to_owned()], &cmd).is_ok());
        }

        #[test]
        fn validate_choice_invalid_value() {
            let cmd = cmd_with_params(vec![ParamSchema {
                name: "color".to_owned(),
                param_type: ParamType::Choice(vec!["red".to_owned(), "blue".to_owned()]),
                required: true,
                description: "pick a color".to_owned(),
            }]);
            let err = validate_params(&["green".to_owned()], &cmd).unwrap_err();
            assert!(err.contains("must be one of"));
            assert!(err.contains("red"));
            assert!(err.contains("blue"));
        }

        #[test]
        fn validate_number_valid() {
            let cmd = cmd_with_params(vec![ParamSchema {
                name: "count".to_owned(),
                param_type: ParamType::Number {
                    min: Some(1),
                    max: Some(100),
                },
                required: true,
                description: "count".to_owned(),
            }]);
            assert!(validate_params(&["50".to_owned()], &cmd).is_ok());
            assert!(validate_params(&["1".to_owned()], &cmd).is_ok());
            assert!(validate_params(&["100".to_owned()], &cmd).is_ok());
        }

        #[test]
        fn validate_number_not_a_number() {
            let cmd = cmd_with_params(vec![ParamSchema {
                name: "count".to_owned(),
                param_type: ParamType::Number {
                    min: None,
                    max: None,
                },
                required: true,
                description: "count".to_owned(),
            }]);
            let err = validate_params(&["abc".to_owned()], &cmd).unwrap_err();
            assert!(err.contains("must be a number"));
        }

        #[test]
        fn validate_number_below_min() {
            let cmd = cmd_with_params(vec![ParamSchema {
                name: "count".to_owned(),
                param_type: ParamType::Number {
                    min: Some(10),
                    max: None,
                },
                required: true,
                description: "count".to_owned(),
            }]);
            let err = validate_params(&["5".to_owned()], &cmd).unwrap_err();
            assert!(err.contains("must be >= 10"));
        }

        #[test]
        fn validate_number_above_max() {
            let cmd = cmd_with_params(vec![ParamSchema {
                name: "count".to_owned(),
                param_type: ParamType::Number {
                    min: None,
                    max: Some(50),
                },
                required: true,
                description: "count".to_owned(),
            }]);
            let err = validate_params(&["100".to_owned()], &cmd).unwrap_err();
            assert!(err.contains("must be <= 50"));
        }

        #[test]
        fn validate_text_always_passes() {
            let cmd = cmd_with_params(vec![ParamSchema {
                name: "msg".to_owned(),
                param_type: ParamType::Text,
                required: true,
                description: "message".to_owned(),
            }]);
            assert!(validate_params(&["anything at all".to_owned()], &cmd).is_ok());
        }

        #[test]
        fn validate_username_always_passes() {
            let cmd = cmd_with_params(vec![ParamSchema {
                name: "user".to_owned(),
                param_type: ParamType::Username,
                required: true,
                description: "user".to_owned(),
            }]);
            assert!(validate_params(&["alice".to_owned()], &cmd).is_ok());
        }

        #[test]
        fn validate_multiple_params() {
            let cmd = cmd_with_params(vec![
                ParamSchema {
                    name: "user".to_owned(),
                    param_type: ParamType::Username,
                    required: true,
                    description: "target".to_owned(),
                },
                ParamSchema {
                    name: "count".to_owned(),
                    param_type: ParamType::Number {
                        min: Some(1),
                        max: Some(100),
                    },
                    required: false,
                    description: "count".to_owned(),
                },
            ]);
            // Both present and valid
            assert!(validate_params(&["alice".to_owned(), "50".to_owned()], &cmd).is_ok());
            // First present, second omitted (optional)
            assert!(validate_params(&["alice".to_owned()], &cmd).is_ok());
            // First missing (required)
            assert!(validate_params(&[], &cmd).is_err());
        }

        #[test]
        fn validate_choice_optional_missing_is_ok() {
            let cmd = cmd_with_params(vec![ParamSchema {
                name: "level".to_owned(),
                param_type: ParamType::Choice(vec!["low".to_owned(), "high".to_owned()]),
                required: false,
                description: "level".to_owned(),
            }]);
            assert!(validate_params(&[], &cmd).is_ok());
        }
    }

    // ── room management commands ──────────────────────────────────────────

    fn make_state_with_config(
        chat_path: std::path::PathBuf,
        config: room_protocol::RoomConfig,
    ) -> Arc<RoomState> {
        let token_map_path = chat_path.with_extension("tokens");
        let subscription_map_path = chat_path.with_extension("subscriptions");
        RoomState::new(
            "test-room".to_owned(),
            chat_path,
            token_map_path,
            subscription_map_path,
            Arc::new(Mutex::new(HashMap::new())),
            Arc::new(Mutex::new(HashMap::new())),
            Some(config),
        )
        .unwrap()
    }

    #[tokio::test]
    async fn room_info_no_config() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let result = handle_room_info(&state).await;
        assert!(result.contains("legacy"));
        assert!(result.contains("test-room"));
    }

    #[tokio::test]
    async fn room_info_with_config() {
        let tmp = NamedTempFile::new().unwrap();
        let config = room_protocol::RoomConfig::dm("alice", "bob");
        let state = make_state_with_config(tmp.path().to_path_buf(), config);
        let result = handle_room_info(&state).await;
        assert!(result.contains("dm"));
        assert!(result.contains("alice"));
    }

    #[tokio::test]
    async fn route_command_room_info_returns_reply() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command("test-room", "alice", "room-info", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        assert!(matches!(result, CommandResult::Reply(_)));
    }

    // ── task claim commands ──────────────────────────────────────────────

    #[tokio::test]
    async fn route_command_claim_stores_task_and_broadcasts() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command(
            "test-room",
            "alice",
            "claim",
            vec!["fix bug #42".to_owned()],
        );
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::HandledWithReply(json) = result else {
            panic!("expected HandledWithReply");
        };
        assert!(json.contains("claimed"));
        assert!(json.contains("fix bug #42"));
        assert_eq!(
            state
                .claim_map
                .lock()
                .await
                .get("alice")
                .map(String::as_str),
            Some("fix bug #42")
        );
    }

    #[tokio::test]
    async fn route_command_claim_overwrites_previous() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg1 = make_command("test-room", "alice", "claim", vec!["task A".to_owned()]);
        route_command(msg1, "alice", &state).await.unwrap();
        let msg2 = make_command("test-room", "alice", "claim", vec!["task B".to_owned()]);
        route_command(msg2, "alice", &state).await.unwrap();
        assert_eq!(
            state
                .claim_map
                .lock()
                .await
                .get("alice")
                .map(String::as_str),
            Some("task B"),
            "new claim should overwrite the old one"
        );
    }

    #[tokio::test]
    async fn route_command_unclaim_removes_claim() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        state
            .claim_map
            .lock()
            .await
            .insert("alice".to_owned(), "task A".to_owned());
        let msg = make_command("test-room", "alice", "unclaim", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::HandledWithReply(json) = result else {
            panic!("expected HandledWithReply");
        };
        assert!(json.contains("released"));
        assert!(json.contains("task A"));
        assert!(state.claim_map.lock().await.get("alice").is_none());
    }

    #[tokio::test]
    async fn route_command_unclaim_no_active_claim() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command("test-room", "alice", "unclaim", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::HandledWithReply(json) = result else {
            panic!("expected HandledWithReply");
        };
        assert!(json.contains("no active claim"));
    }

    #[tokio::test]
    async fn route_command_claimed_empty_board() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command("test-room", "alice", "claimed", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::Reply(json) = result else {
            panic!("expected Reply");
        };
        assert!(json.contains("no active claims"));
    }

    #[tokio::test]
    async fn route_command_claimed_shows_all_claims() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        {
            let mut map = state.claim_map.lock().await;
            map.insert("alice".to_owned(), "task A".to_owned());
            map.insert("bob".to_owned(), "task B".to_owned());
        }
        let msg = make_command("test-room", "alice", "claimed", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::Reply(json) = result else {
            panic!("expected Reply");
        };
        assert!(json.contains("alice: task A"));
        assert!(json.contains("bob: task B"));
    }

    #[tokio::test]
    async fn route_command_claimed_is_sorted() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        {
            let mut map = state.claim_map.lock().await;
            map.insert("zara".to_owned(), "z-task".to_owned());
            map.insert("alice".to_owned(), "a-task".to_owned());
        }
        let msg = make_command("test-room", "alice", "claimed", vec![]);
        let CommandResult::Reply(json) = route_command(msg, "alice", &state).await.unwrap() else {
            panic!("expected Reply");
        };
        // alice should appear before zara in sorted output
        let alice_pos = json.find("alice: a-task").unwrap();
        let zara_pos = json.find("zara: z-task").unwrap();
        assert!(alice_pos < zara_pos, "claims should be sorted by username");
    }

    // ── subscription commands ──────────────────────────────────────────────

    #[tokio::test]
    async fn set_subscription_alias_works() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command(
            "test-room",
            "alice",
            "set_subscription",
            vec!["full".to_owned()],
        );
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::HandledWithReply(json) = result else {
            panic!("expected HandledWithReply");
        };
        assert!(json.contains("subscribed"));
        assert!(json.contains("full"));
        assert_eq!(
            *state.subscription_map.lock().await.get("alice").unwrap(),
            SubscriptionTier::Full
        );
    }

    #[tokio::test]
    async fn set_subscription_alias_mentions_only() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command(
            "test-room",
            "bob",
            "set_subscription",
            vec!["mentions_only".to_owned()],
        );
        let result = route_command(msg, "bob", &state).await.unwrap();
        let CommandResult::HandledWithReply(json) = result else {
            panic!("expected HandledWithReply");
        };
        assert!(json.contains("subscribed"));
        assert_eq!(
            *state.subscription_map.lock().await.get("bob").unwrap(),
            SubscriptionTier::MentionsOnly
        );
    }

    #[tokio::test]
    async fn subscribe_default_tier_is_full() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command("test-room", "alice", "subscribe", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::HandledWithReply(json) = result else {
            panic!("expected HandledWithReply");
        };
        assert!(json.contains("subscribed"));
        assert!(json.contains("full"));
        assert_eq!(
            *state.subscription_map.lock().await.get("alice").unwrap(),
            SubscriptionTier::Full
        );
    }

    #[tokio::test]
    async fn subscribe_explicit_mentions_only() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command(
            "test-room",
            "bob",
            "subscribe",
            vec!["mentions_only".to_owned()],
        );
        let result = route_command(msg, "bob", &state).await.unwrap();
        let CommandResult::HandledWithReply(json) = result else {
            panic!("expected HandledWithReply");
        };
        assert!(json.contains("mentions_only"));
        assert_eq!(
            *state.subscription_map.lock().await.get("bob").unwrap(),
            SubscriptionTier::MentionsOnly
        );
    }

    #[tokio::test]
    async fn subscribe_overwrites_previous_tier() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg1 = make_command("test-room", "alice", "subscribe", vec!["full".to_owned()]);
        route_command(msg1, "alice", &state).await.unwrap();
        let msg2 = make_command(
            "test-room",
            "alice",
            "subscribe",
            vec!["mentions_only".to_owned()],
        );
        route_command(msg2, "alice", &state).await.unwrap();
        assert_eq!(
            *state.subscription_map.lock().await.get("alice").unwrap(),
            SubscriptionTier::MentionsOnly,
            "second subscribe should overwrite the first"
        );
    }

    #[tokio::test]
    async fn unsubscribe_sets_tier_to_unsubscribed() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        // Subscribe first
        let msg = make_command("test-room", "alice", "subscribe", vec!["full".to_owned()]);
        route_command(msg, "alice", &state).await.unwrap();
        // Then unsubscribe
        let msg = make_command("test-room", "alice", "unsubscribe", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::HandledWithReply(json) = result else {
            panic!("expected HandledWithReply");
        };
        assert!(json.contains("unsubscribed"));
        assert_eq!(
            *state.subscription_map.lock().await.get("alice").unwrap(),
            SubscriptionTier::Unsubscribed
        );
    }

    #[tokio::test]
    async fn unsubscribe_without_prior_subscription() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command("test-room", "alice", "unsubscribe", vec![]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        // Should still work — sets to Unsubscribed even without prior entry
        assert!(matches!(result, CommandResult::HandledWithReply(_)));
        assert_eq!(
            *state.subscription_map.lock().await.get("alice").unwrap(),
            SubscriptionTier::Unsubscribed
        );
    }

    #[tokio::test]
    async fn subscriptions_empty() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command("test-room", "alice", "subscriptions", vec![]);
        let CommandResult::Reply(json) = route_command(msg, "alice", &state).await.unwrap() else {
            panic!("expected Reply");
        };
        assert!(json.contains("no subscriptions"));
    }

    #[tokio::test]
    async fn subscriptions_lists_all_sorted() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        {
            let mut map = state.subscription_map.lock().await;
            map.insert("zara".to_owned(), SubscriptionTier::Full);
            map.insert("alice".to_owned(), SubscriptionTier::MentionsOnly);
        }
        let msg = make_command("test-room", "alice", "subscriptions", vec![]);
        let CommandResult::Reply(json) = route_command(msg, "alice", &state).await.unwrap() else {
            panic!("expected Reply");
        };
        assert!(json.contains("alice: mentions_only"));
        assert!(json.contains("zara: full"));
        // Verify sorted order
        let alice_pos = json.find("alice: mentions_only").unwrap();
        let zara_pos = json.find("zara: full").unwrap();
        assert!(
            alice_pos < zara_pos,
            "subscriptions should be sorted by username"
        );
    }

    #[tokio::test]
    async fn subscribe_invalid_tier_returns_error() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command("test-room", "alice", "subscribe", vec!["banana".to_owned()]);
        let result = route_command(msg, "alice", &state).await.unwrap();
        let CommandResult::Reply(json) = result else {
            panic!("expected Reply for invalid tier");
        };
        assert!(json.contains("must be one of"));
        // Should not have stored anything
        assert!(state.subscription_map.lock().await.get("alice").is_none());
    }

    #[tokio::test]
    async fn subscribe_broadcasts_system_message() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command("test-room", "alice", "subscribe", vec![]);
        route_command(msg, "alice", &state).await.unwrap();
        // Verify the broadcast was persisted to chat history
        let history = std::fs::read_to_string(tmp.path()).unwrap();
        assert!(history.contains("subscribed"));
        assert!(history.contains("alice"));
    }

    #[tokio::test]
    async fn unsubscribe_broadcasts_system_message() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command("test-room", "alice", "unsubscribe", vec![]);
        route_command(msg, "alice", &state).await.unwrap();
        let history = std::fs::read_to_string(tmp.path()).unwrap();
        assert!(history.contains("unsubscribed"));
        assert!(history.contains("alice"));
    }

    // ── subscription persistence ─────────────────────────────────────────

    #[test]
    fn load_subscription_map_missing_file_returns_empty() {
        let dir = tempfile::tempdir().unwrap();
        let path = dir.path().join("nonexistent.subscriptions");
        let map = super::load_subscription_map(&path);
        assert!(map.is_empty());
    }

    #[test]
    fn save_and_load_subscription_map_round_trip() {
        let dir = tempfile::tempdir().unwrap();
        let path = dir.path().join("test.subscriptions");

        let mut original = HashMap::new();
        original.insert("alice".to_owned(), SubscriptionTier::Full);
        original.insert("bob".to_owned(), SubscriptionTier::MentionsOnly);
        original.insert("carol".to_owned(), SubscriptionTier::Unsubscribed);

        super::save_subscription_map(&original, &path).unwrap();
        let loaded = super::load_subscription_map(&path);
        assert_eq!(loaded, original);
    }

    #[test]
    fn load_subscription_map_corrupt_file_returns_empty() {
        let dir = tempfile::tempdir().unwrap();
        let path = dir.path().join("corrupt.subscriptions");
        std::fs::write(&path, "not json{{{").unwrap();
        let map = super::load_subscription_map(&path);
        assert!(map.is_empty());
    }

    #[tokio::test]
    async fn subscribe_persists_to_disk() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());
        let msg = make_command("test-room", "alice", "subscribe", vec![]);
        route_command(msg, "alice", &state).await.unwrap();

        let loaded = super::load_subscription_map(&state.subscription_map_path);
        assert_eq!(loaded.get("alice"), Some(&SubscriptionTier::Full));
    }

    #[tokio::test]
    async fn unsubscribe_persists_to_disk() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());

        // Subscribe first, then unsubscribe.
        let msg = make_command("test-room", "alice", "subscribe", vec![]);
        route_command(msg, "alice", &state).await.unwrap();
        let msg = make_command("test-room", "alice", "unsubscribe", vec![]);
        route_command(msg, "alice", &state).await.unwrap();

        let loaded = super::load_subscription_map(&state.subscription_map_path);
        assert_eq!(loaded.get("alice"), Some(&SubscriptionTier::Unsubscribed));
    }

    #[tokio::test]
    async fn subscribe_accumulates_on_disk() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());

        let msg = make_command("test-room", "alice", "subscribe", vec![]);
        route_command(msg, "alice", &state).await.unwrap();
        let msg = make_command(
            "test-room",
            "bob",
            "subscribe",
            vec!["mentions_only".to_owned()],
        );
        route_command(msg, "bob", &state).await.unwrap();

        let loaded = super::load_subscription_map(&state.subscription_map_path);
        assert_eq!(loaded.len(), 2);
        assert_eq!(loaded.get("alice"), Some(&SubscriptionTier::Full));
        assert_eq!(loaded.get("bob"), Some(&SubscriptionTier::MentionsOnly));
    }

    #[tokio::test]
    async fn subscribe_survives_simulated_restart() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());

        let msg = make_command("test-room", "alice", "subscribe", vec![]);
        route_command(msg, "alice", &state).await.unwrap();

        // Simulate restart: new state, load from disk.
        let loaded = super::load_subscription_map(&state.subscription_map_path);
        assert_eq!(loaded.get("alice"), Some(&SubscriptionTier::Full));

        // Verify it can be populated into a new RoomState.
        let state2 = RoomState::new(
            state.room_id.as_ref().clone(),
            state.chat_path.as_ref().clone(),
            state.token_map_path.as_ref().clone(),
            state.subscription_map_path.as_ref().clone(),
            Arc::new(Mutex::new(HashMap::new())),
            Arc::new(Mutex::new(loaded)),
            None,
        )
        .unwrap();
        assert_eq!(
            *state2.subscription_map.lock().await.get("alice").unwrap(),
            SubscriptionTier::Full
        );
    }

    #[tokio::test]
    async fn subscribe_overwrite_persists_latest_tier() {
        let tmp = NamedTempFile::new().unwrap();
        let state = make_state(tmp.path().to_path_buf());

        let msg = make_command("test-room", "alice", "subscribe", vec![]);
        route_command(msg, "alice", &state).await.unwrap();
        let msg = make_command(
            "test-room",
            "alice",
            "subscribe",
            vec!["mentions_only".to_owned()],
        );
        route_command(msg, "alice", &state).await.unwrap();

        let loaded = super::load_subscription_map(&state.subscription_map_path);
        assert_eq!(loaded.get("alice"), Some(&SubscriptionTier::MentionsOnly));
    }
}