errand-bot 0.2.0

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

use std::future::Future;
use std::pin::Pin;
use std::sync::{Arc, Mutex};

use serde_json::{Value, json};
use tokio::sync::watch;

use super::{
    CreatedThread, DetachedRequest, FoundView, MadeThread, ManagerOptions, SandboxPool,
    SessionManager, StartOutcome, ThreadFactory,
};
use crate::admission::scheduler::{Clock, Scheduler, Timer};
use crate::agent::client::AgentProcess;
use crate::config::schema::Config;
use crate::config::schema::SandboxBackend;
use crate::config::validate::validate_config;
use crate::log::{LogFields, Logger};
use crate::memory::store::MemoryStore;
use crate::sandbox::backend::{
    CapabilityReport, SandboxLaunch, SandboxLaunchError, SandboxUnavailableError,
};
use crate::sandbox::paths;
use crate::session::event::EndReason;
use crate::session::event::SessionEvent;
use crate::session::record::record_dir;
use crate::session::registry::ThreadRegistry;
use crate::session::session::Unavailable;
use crate::session::session::{IncomingMessage, RunningBox, SessionHandle};
use crate::session::transcript::TRANSCRIPT_FILENAME;
use crate::session::views::{SessionView, ViewError};

const OWNER: &str = "100000000000000001";

fn silent() -> Logger {
    Logger::new(LogFields::new(), Arc::new(|_level, _line| {}))
}

async fn settle() {
    tokio::time::sleep(std::time::Duration::from_millis(20)).await;
}

/// An agent that answers its readiness call and then says nothing.
struct QuietAgent {
    queue: Mutex<std::collections::VecDeque<u8>>,
    written: Mutex<Vec<String>>,
    closed: Mutex<bool>,
    exit: watch::Receiver<Option<i32>>,
}

#[derive(Clone)]
struct QuietControls {
    fake: Arc<QuietAgent>,
    sender: Arc<Mutex<Option<watch::Sender<Option<i32>>>>>,
}

impl QuietAgent {
    fn new() -> (Arc<Self>, QuietControls) {
        let (exit_sender, exit_receiver) = watch::channel(None);
        let fake = Arc::new(Self {
            queue: Mutex::new(std::collections::VecDeque::new()),
            written: Mutex::new(Vec::new()),
            closed: Mutex::new(false),
            exit: exit_receiver.clone(),
        });
        let controls = QuietControls {
            fake: Arc::clone(&fake),
            sender: Arc::new(Mutex::new(Some(exit_sender))),
        };
        (fake, controls)
    }
}

impl QuietControls {
    fn send(&self, record: &serde_json::Value) {
        self.fake
            .queue
            .lock()
            .unwrap()
            .extend(format!("{record}\n").into_bytes());
    }

    fn end(&self, code: i32) {
        {
            let mut closed = self.fake.closed.lock().unwrap();
            if *closed {
                return;
            }
            *closed = true;
        }
        self.fake.queue.lock().unwrap().clear();
        if let Some(sender) = self.sender.lock().unwrap().take() {
            let _ = sender.send(Some(code));
        }
    }
}

impl AgentProcess for QuietAgent {
    fn write(&self, bytes: &[u8]) -> std::io::Result<()> {
        let line = String::from_utf8_lossy(bytes).trim().to_owned();
        let id = serde_json::from_str::<Value>(&line)
            .ok()
            .and_then(|parsed| parsed.get("id").cloned());
        self.written.lock().unwrap().push(line);
        if let Some(id) = id {
            self.queue.lock().unwrap().extend(
                json!({ "type": "response", "id": id, "success": true })
                    .to_string()
                    .into_bytes(),
            );
            self.queue.lock().unwrap().push_back(b'\n');
        }
        Ok(())
    }

    fn read_stdout<'a>(
        &'a self,
        buf: &'a mut [u8],
    ) -> Pin<Box<dyn Future<Output = std::io::Result<usize>> + Send + 'a>> {
        Box::pin(async move {
            loop {
                {
                    let mut queue = self.queue.lock().unwrap();
                    let count = queue.len().min(buf.len());
                    if count > 0 {
                        for (index, byte) in queue.drain(..count).enumerate() {
                            buf[index] = byte;
                        }
                        return Ok(count);
                    }
                    if *self.closed.lock().unwrap() {
                        return Ok(0);
                    }
                }
                tokio::time::sleep(std::time::Duration::from_millis(1)).await;
            }
        })
    }

    fn read_stderr<'a>(
        &'a self,
        _buf: &'a mut [u8],
    ) -> Pin<Box<dyn Future<Output = std::io::Result<usize>> + Send + 'a>> {
        Box::pin(async { Ok(0) })
    }

    fn exited(&self) -> Pin<Box<dyn Future<Output = Option<i32>> + Send>> {
        let mut receiver = self.exit.clone();
        Box::pin(async move {
            let _ = receiver.changed().await;
            *receiver.borrow()
        })
    }
}

/// A sandbox whose launches are quiet agents the manager drives.
struct FakeSandbox {
    launched: Mutex<Vec<SandboxLaunch>>,
    agents: Mutex<Vec<(Arc<QuietAgent>, QuietControls)>>,
    orphans: Mutex<Vec<String>>,
    removed: Mutex<Vec<String>>,
}

impl FakeSandbox {
    fn new() -> Arc<Self> {
        Arc::new(Self {
            launched: Mutex::new(Vec::new()),
            agents: Mutex::new(Vec::new()),
            orphans: Mutex::new(Vec::new()),
            removed: Mutex::new(Vec::new()),
        })
    }

    fn written(&self) -> String {
        self.agents
            .lock()
            .unwrap()
            .first()
            .map(|(agent, _)| agent.written.lock().unwrap().join("\n"))
            .unwrap_or_default()
    }

    /// Settles the newest agent's turn, the way a finished model would.
    fn settle_latest(&self) {
        let controls = self
            .agents
            .lock()
            .unwrap()
            .last()
            .map(|(_, controls)| controls.clone())
            .expect("no agent has been launched");
        controls.send(&json!({ "type": "agent_start" }));
        controls.send(&json!({
            "type": "message_end",
            "message": { "role": "assistant", "content": [{ "type": "text", "text": "done" }] },
        }));
        controls.send(&json!({ "type": "turn_end", "usage": {
            "input": 1, "output": 1, "cacheRead": 0, "cacheWrite": 0, "totalTokens": 2, "cost": 0,
        } }));
        controls.send(&json!({ "type": "agent_settled" }));
    }
}

impl SandboxPool for FakeSandbox {
    fn probe(
        &self,
    ) -> Pin<Box<dyn Future<Output = Result<CapabilityReport, SandboxUnavailableError>> + Send + '_>>
    {
        Box::pin(async move {
            Ok(CapabilityReport {
                backend: SandboxBackend::Bailey,
                gaps: Vec::new(),
                notes: Vec::new(),
            })
        })
    }

    fn launch(
        self: Arc<Self>,
        launch: SandboxLaunch,
    ) -> Pin<Box<dyn Future<Output = Result<RunningBox, SandboxLaunchError>> + Send>> {
        Box::pin(async move {
            let (agent, controls) = QuietAgent::new();
            self.agents.lock().unwrap().push((agent, controls.clone()));
            self.launched.lock().unwrap().push(launch.clone());
            let project_path = launch.project_path.clone();
            Ok(RunningBox {
                process: controls.fake.clone(),
                to_host_path: Arc::new(move |path: &str| {
                    paths::host_path_under("/workspace", &project_path, path)
                }),
                stop: Arc::new(move || {
                    controls.end(0);
                    Box::pin(async { false }) as Pin<Box<dyn Future<Output = bool> + Send>>
                }),
            })
        })
    }

    fn list_orphans(&self) -> Pin<Box<dyn Future<Output = Vec<String>> + Send + '_>> {
        Box::pin(async { self.orphans.lock().unwrap().clone() })
    }

    fn remove_orphans<'a>(
        &'a self,
        names: &'a [String],
    ) -> Pin<Box<dyn Future<Output = usize> + Send + 'a>> {
        Box::pin(async move {
            self.removed.lock().unwrap().extend(names.iter().cloned());
            names.len()
        })
    }
}

/// Threads a test can inspect: what was created, and what was let go.
struct FakeThreads {
    created: Mutex<Vec<String>>,
    released: Mutex<Vec<String>>,
    closed: Arc<Mutex<Vec<EndReason>>>,
    refuse: Mutex<Option<String>>,
    next: Mutex<u32>,
}

impl FakeThreads {
    fn new() -> Arc<Self> {
        Arc::new(Self {
            created: Mutex::new(Vec::new()),
            released: Mutex::new(Vec::new()),
            closed: Arc::new(Mutex::new(Vec::new())),
            refuse: Mutex::new(None),
            next: Mutex::new(1),
        })
    }

    fn view(&self) -> Arc<QuietView> {
        Arc::new(QuietView {
            closed: Arc::clone(&self.closed),
        })
    }

    fn refuse_with(&self, why: Option<&str>) {
        *self.refuse.lock().unwrap() = why.map(str::to_owned);
    }

    fn made(&self) -> Vec<String> {
        self.created.lock().unwrap().clone()
    }
}

/// A thread view that keeps only what a manager test needs to look at.
struct QuietView {
    closed: Arc<Mutex<Vec<EndReason>>>,
}

impl SessionView for QuietView {
    fn observe<'a>(
        &'a self,
        event: &'a SessionEvent,
    ) -> Pin<Box<dyn Future<Output = Result<(), ViewError>> + Send + 'a>> {
        Box::pin(async move {
            if let SessionEvent::Close { reason } = event {
                self.closed.lock().unwrap().push(*reason);
            }
            Ok(())
        })
    }
}

impl ThreadFactory for FakeThreads {
    fn create(self: Arc<Self>, _message: IncomingMessage, name: String) -> MadeThread {
        Box::pin(async move {
            if let Some(refuse) = self.refuse.lock().unwrap().clone() {
                return Err(refuse);
            }
            self.created.lock().unwrap().push(name);
            let id = format!("thread-{}", *self.next.lock().unwrap());
            *self.next.lock().unwrap() += 1;
            Ok(CreatedThread {
                id,
                view: self.view(),
            })
        })
    }

    fn open(self: Arc<Self>, name: String, _opener: String) -> MadeThread {
        Box::pin(async move {
            if let Some(refuse) = self.refuse.lock().unwrap().clone() {
                return Err(refuse);
            }
            self.created.lock().unwrap().push(name);
            let id = format!("thread-{}", *self.next.lock().unwrap());
            *self.next.lock().unwrap() += 1;
            Ok(CreatedThread {
                id,
                view: self.view(),
            })
        })
    }

    fn port_for(self: Arc<Self>, thread_id: String) -> FoundView {
        Box::pin(async move {
            if thread_id.starts_with("thread-") {
                return Some(self.view() as Arc<dyn SessionView>);
            }
            None
        })
    }

    fn release(&self, thread_id: &str) {
        self.released.lock().unwrap().push(thread_id.to_owned());
    }
}

struct NoClock;

impl Clock for NoClock {
    fn now(&self) -> i64 {
        0
    }

    fn set_timeout(&self, _action: Timer, _ms: i64) -> u64 {
        0
    }

    fn clear_timeout(&self, _handle: u64) {}
}

fn message(content: &str, id: &str) -> IncomingMessage {
    IncomingMessage {
        id: id.to_owned(),
        author_id: OWNER.to_owned(),
        channel_id: String::new(),
        author_name: Some("amelia".to_owned()),
        content: content.to_owned(),
        attachments: Vec::new(),
    }
}

struct Harness {
    manager: SessionManager,
    sandbox: Arc<FakeSandbox>,
    threads: Arc<FakeThreads>,
    registry: Arc<Mutex<ThreadRegistry>>,
    root: tempfile::TempDir,
}

fn config_with(root: &std::path::Path, overrides: &serde_json::Value) -> Config {
    let mut base = json!({
        "chat": {
            "token": "a.token.value",
            "channelId": "chan",
            "allowedUserIds": [OWNER],
        },
        "agent": {
            "provider": "anthropic",
            "providers": {
                "anthropic": { "credentialName": "ANTHROPIC_API_KEY", "credential": "secret" },
            },
        },
        "projectRoot": root.join("projects").display().to_string(),
        "stateDir": root.join("state").display().to_string(),
    });
    if let Some(overrides) = overrides.as_object() {
        for (key, value) in overrides {
            base[key.as_str()] = value.clone();
        }
    }
    validate_config(&base).expect("the test configuration is accepted")
}

async fn with_manager(run: impl FnOnce(&Harness) -> Pin<Box<dyn Future<Output = ()> + '_>>) {
    with_manager_options(&json!({}), None, run).await;
}

/// A manager that remembers, which is what puts a system prompt on a launch.
async fn with_remembering_manager(
    run: impl FnOnce(&Harness) -> Pin<Box<dyn Future<Output = ()> + '_>>,
) {
    with_everything(&json!({}), None, true, run).await;
}

async fn with_manager_options(
    overrides: &serde_json::Value,
    unavailable: Option<Unavailable>,
    run: impl FnOnce(&Harness) -> Pin<Box<dyn Future<Output = ()> + '_>>,
) {
    with_everything(overrides, unavailable, false, run).await;
}

async fn with_everything(
    overrides: &serde_json::Value,
    unavailable: Option<Unavailable>,
    remembering: bool,
    run: impl FnOnce(&Harness) -> Pin<Box<dyn Future<Output = ()> + '_>>,
) {
    let root = tempfile::tempdir().expect("a temp directory");
    let settings = config_with(root.path(), overrides);
    let sandbox = FakeSandbox::new();
    let threads = FakeThreads::new();
    let registry = Arc::new(Mutex::new(ThreadRegistry::new(
        ThreadRegistry::path_for(root.path().display().to_string().as_str()),
        silent(),
    )));
    let scheduler = Scheduler::start(
        settings.limits.clone(),
        Arc::new(NoClock),
        5_000,
        300_000,
        750,
    );
    let id = Mutex::new(0);

    let manager = SessionManager::new(ManagerOptions {
        config: settings,
        sandbox: Arc::clone(&sandbox) as Arc<dyn SandboxPool>,
        scheduler: Arc::clone(&scheduler),
        threads: Arc::clone(&threads) as Arc<dyn ThreadFactory>,
        registry: Arc::clone(&registry),
        log: silent(),
        make_id: Some(Arc::new(move || {
            let mut id = id.lock().unwrap();
            *id += 1;
            format!("s{id}")
        })),
        unavailable,
        operator_ids: None,
        memory: remembering.then(|| {
            Arc::new(MemoryStore::open(root.path().join("memory.db")).expect("the store opens"))
        }),
        describe_images: None,
        public_url: None,
        available_models: Vec::new(),
        delegate_base_url: None,
        now: Some(Arc::new(|| 1_000)),
    });

    let harness = Harness {
        manager,
        sandbox,
        threads,
        registry,
        root,
    };

    run(&harness).await;

    harness.manager.shutdown().await;
}

fn started(outcome: &StartOutcome) -> &SessionHandle {
    outcome.session().expect("the session started")
}

fn refused_reason(outcome: &StartOutcome) -> String {
    outcome.refused_reason().to_owned()
}

#[tokio::test]
async fn starting_a_session_creates_its_thread_project_and_state() {
    with_manager(|harness| {
        Box::pin(async move {
            let outcome = harness
                .manager
                .start(message("demo: fix the parser", "m1"))
                .await;

            assert!(outcome.is_started());
            assert_eq!(harness.threads.made(), ["demo: fix the parser"]);
            assert!(harness.root.path().join("projects").join("demo").is_dir());
            assert_eq!(
                harness.sandbox.launched.lock().unwrap()[0].project_path,
                harness
                    .root
                    .path()
                    .join("projects")
                    .join("demo")
                    .display()
                    .to_string()
            );
            assert_eq!(
                harness
                    .registry
                    .lock()
                    .unwrap()
                    .get("thread-1")
                    .map(|record| record.project_name.clone()),
                Some("demo".to_owned())
            );
        })
    })
    .await;
}

/// The prefix names the project; what follows it is what was asked.
#[tokio::test]
async fn the_project_prefix_is_stripped_from_the_prompt_the_agent_sees() {
    with_manager(|harness| {
        Box::pin(async move {
            harness
                .manager
                .start(message("demo: fix the parser", "m1"))
                .await;
            settle().await;

            let sent = harness.sandbox.written();
            assert!(sent.contains("fix the parser"));
            assert!(!sent.contains("demo: fix"));
        })
    })
    .await;
}

/// Two agents in one working tree edit the same files with neither able to
/// see the other's changes.
#[tokio::test]
async fn a_project_that_already_has_a_session_is_refused_a_second_one() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: first", "m1")).await;

            let second = harness.manager.start(message("demo: second", "m2")).await;

            assert!(!second.is_started());
            assert!(refused_reason(&second).contains("already has a live session"));
        })
    })
    .await;
}

#[tokio::test]
async fn two_different_projects_run_side_by_side() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("one: work", "m1")).await;
            let second = harness.manager.start(message("two: work", "m2")).await;

            assert!(second.is_started());
            assert_eq!(harness.manager.sessions().len(), 2);
        })
    })
    .await;
}

/// A thread nobody can see would leave an agent running that nobody can stop.
#[tokio::test]
async fn no_thread_means_no_sandbox_and_the_slot_is_given_back() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.threads.refuse_with(Some("the channel is gone"));

            let outcome = harness.manager.start(message("demo: go", "m1")).await;

            assert!(!outcome.is_started());
            assert!(harness.sandbox.launched.lock().unwrap().is_empty());
            assert!(harness.manager.sessions().is_empty());
            // The slot came back, so the next start is not refused for want
            // of one.
            harness.threads.refuse_with(None);
            assert!(
                harness
                    .manager
                    .start(message("demo: go", "m2"))
                    .await
                    .is_started()
            );
        })
    })
    .await;
}

#[tokio::test]
async fn a_spent_window_refuses_before_a_thread_or_a_sandbox_exists() {
    with_manager_options(
        &json!({}),
        Some(Arc::new(|_provider| {
            Box::pin(async { Some("come back at nine".to_owned()) })
                as Pin<Box<dyn Future<Output = Option<String>> + Send>>
        })),
        |harness| {
            Box::pin(async move {
                let outcome = harness.manager.start(message("demo: go", "m1")).await;

                assert!(!outcome.is_started());
                assert!(refused_reason(&outcome).contains("come back at nine"));
                assert!(harness.threads.made().is_empty());
                assert!(harness.sandbox.launched.lock().unwrap().is_empty());
            })
        },
    )
    .await;
}

#[tokio::test]
async fn more_sessions_than_the_host_allows_are_refused_with_a_reason() {
    with_manager_options(
        &json!({ "limits": { "maxLiveSessions": 1 } }),
        None,
        |harness| {
            Box::pin(async move {
                harness.manager.start(message("one: work", "m1")).await;

                let second = harness.manager.start(message("two: work", "m2")).await;

                assert!(!second.is_started());
                assert!(refused_reason(&second).contains("session"));
            })
        },
    )
    .await;
}

#[tokio::test]
async fn a_message_reaches_the_session_bound_to_its_thread_and_no_other() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;

            assert!(
                harness
                    .manager
                    .deliver("thread-1", message("more", "m2"))
                    .await
            );
            assert!(
                !harness
                    .manager
                    .deliver("thread-404", message("more", "m3"))
                    .await
            );
        })
    })
    .await;
}

#[tokio::test]
async fn a_session_that_ends_lets_go_of_its_thread_and_can_be_resumed() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;

            harness
                .manager
                .end_thread("thread-1", EndReason::Idle)
                .await;
            settle().await;

            assert!(harness.manager.for_thread("thread-1").is_none());
            assert!(harness.manager.is_finished_thread("thread-1"));
            assert_eq!(
                *harness.threads.released.lock().unwrap(),
                ["thread-1".to_owned()]
            );
            // Idling out is not being finished with: the history outlives the
            // sandbox.
            assert_eq!(
                harness
                    .registry
                    .lock()
                    .unwrap()
                    .get("thread-1")
                    .map(|record| record.session_id.clone()),
                Some("demo-s1".to_owned())
            );
            assert!(harness.manager.can_resume("thread-1"));
            assert_eq!(harness.manager.resumable().len(), 1);
        })
    })
    .await;
}

/// Stopping is how somebody says they are finished with a thread.
#[tokio::test]
async fn a_session_that_was_stopped_is_not_offered_for_resuming() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;

            harness
                .manager
                .end_thread("thread-1", EndReason::Stopped)
                .await;
            settle().await;

            assert!(harness.registry.lock().unwrap().get("thread-1").is_none());
            assert!(!harness.manager.can_resume("thread-1"));
            assert!(harness.manager.resumable().is_empty());
        })
    })
    .await;
}

#[tokio::test]
async fn resuming_picks_the_thread_up_where_it_stopped() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;
            harness
                .manager
                .end_thread("thread-1", EndReason::Idle)
                .await;
            settle().await;

            let outcome = harness
                .manager
                .resume("thread-1", message("carry on", "m2"))
                .await;

            assert!(outcome.is_started());
            assert_eq!(started(&outcome).id(), "demo-s1");
            let launched = harness.sandbox.launched.lock().unwrap();
            assert!(launched[1].resume);
            assert_eq!(
                launched[1].state_dir,
                harness
                    .root
                    .path()
                    .join("state")
                    .join("demo-s1")
                    .display()
                    .to_string()
            );
        })
    })
    .await;
}

/// A new exchange labelled with a number already used reads as the same one.
#[tokio::test]
async fn a_resumed_session_carries_on_the_turn_numbering() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;
            harness
                .manager
                .end_thread("thread-1", EndReason::Idle)
                .await;
            settle().await;
            let state = harness
                .root
                .path()
                .join("state")
                .join("demo-s1")
                .display()
                .to_string();
            let record = record_dir(state.as_str());
            let transcript = std::path::Path::new(&record).join(TRANSCRIPT_FILENAME);
            let written = std::fs::read_to_string(&transcript).unwrap();
            assert!(written.contains("\"turn\":1"));

            harness
                .manager
                .resume("thread-1", message("carry on", "m2"))
                .await;

            let after = std::fs::read_to_string(&transcript).unwrap();
            assert!(after.contains("\"turn\":2"));
        })
    })
    .await;
}

#[tokio::test]
async fn a_thread_this_daemon_never_saw_is_not_resumed() {
    with_manager(|harness| {
        Box::pin(async move {
            let outcome = harness
                .manager
                .resume("thread-404", message("carry on", "m1"))
                .await;

            assert!(!outcome.is_started());
            assert!(refused_reason(&outcome).contains("not one of mine to resume"));
        })
    })
    .await;
}

#[tokio::test]
async fn a_thread_that_already_has_a_session_is_not_resumed_on_top_of_it() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;

            let outcome = harness
                .manager
                .resume("thread-1", message("again", "m2"))
                .await;

            assert!(!outcome.is_started());
            assert!(refused_reason(&outcome).contains("already has a live session"));
        })
    })
    .await;
}

/// Somebody invited before a restart must not be silently withdrawn.
#[tokio::test]
async fn who_was_invited_survives_the_session_ending_and_coming_back() {
    with_manager(|harness| {
        Box::pin(async move {
            let started_session = harness
                .manager
                .start(message("demo: go", "m1"))
                .await
                .session()
                .cloned();
            started_session
                .as_ref()
                .expect("a session")
                .handle(IncomingMessage {
                    id: "m2".to_owned(),
                    author_id: OWNER.to_owned(),
                    channel_id: String::new(),
                    author_name: None,
                    content: "!allow <@200000000000000002>".to_owned(),
                    attachments: Vec::new(),
                })
                .await;
            assert_eq!(
                harness
                    .registry
                    .lock()
                    .unwrap()
                    .get("thread-1")
                    .map(|record| record.guests.clone()),
                Some(vec!["200000000000000002".to_owned()])
            );

            harness
                .manager
                .end_thread("thread-1", EndReason::Idle)
                .await;
            settle().await;
            let resumed = harness
                .manager
                .resume("thread-1", message("carry on", "m3"))
                .await;

            let guests = match resumed.session() {
                Some(session) => session.guest_list().await,
                None => Vec::new(),
            };
            assert_eq!(guests, vec!["200000000000000002".to_owned()]);
        })
    })
    .await;
}

#[tokio::test]
async fn a_view_can_be_attached_to_a_live_session_and_detached_again() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;
            let watcher = harness.threads.view() as Arc<dyn SessionView>;

            let attached = harness
                .manager
                .attach_view("demo-s1", watcher.clone())
                .await;
            assert!(attached.is_some());
            assert!(
                harness
                    .manager
                    .attach_view("nobody", watcher)
                    .await
                    .is_none()
            );
            if let Some(attached) = attached {
                attached.detach();
            }
        })
    })
    .await;
}

#[tokio::test]
async fn the_thread_a_session_belongs_to_is_known_live_or_remembered() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;
            assert_eq!(
                harness.manager.thread_id_for("demo-s1"),
                Some("thread-1".to_owned())
            );

            harness
                .manager
                .end_thread("thread-1", EndReason::Idle)
                .await;
            settle().await;

            assert_eq!(
                harness.manager.thread_id_for("demo-s1"),
                Some("thread-1".to_owned())
            );
            assert_eq!(harness.manager.thread_id_for("s404"), None);
        })
    })
    .await;
}

/// A crashed daemon must not leave containers running against a project.
#[tokio::test]
async fn sandboxes_left_by_a_previous_run_are_swept_before_anything_starts() {
    with_manager(|harness| {
        Box::pin(async move {
            *harness.sandbox.orphans.lock().unwrap() =
                vec!["errand-old-1".to_owned(), "errand-old-2".to_owned()];

            assert_eq!(harness.manager.sweep_orphans().await, 2);
            assert_eq!(
                *harness.sandbox.removed.lock().unwrap(),
                ["errand-old-1".to_owned(), "errand-old-2".to_owned()]
            );
        })
    })
    .await;
}

#[tokio::test]
async fn shutting_down_ends_every_live_session() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("one: work", "m1")).await;
            harness.manager.start(message("two: work", "m2")).await;
            settle().await;

            harness.manager.shutdown().await;

            assert!(harness.manager.sessions().is_empty());
            assert_eq!(
                *harness.threads.closed.lock().unwrap(),
                [EndReason::Shutdown, EndReason::Shutdown]
            );
        })
    })
    .await;
}

/// A session begun at a keyboard is still announced where a phone will see it.
#[tokio::test]
async fn a_session_started_with_no_message_still_gets_a_thread() {
    with_manager(|harness| {
        Box::pin(async move {
            let outcome = harness
                .manager
                .start_detached(DetachedRequest {
                    project: "demo".to_owned(),
                    prompt: "fix the parser".to_owned(),
                    owner_id: "web-interface".to_owned(),
                    owner_name: Some("the interface".to_owned()),
                })
                .await;

            assert!(outcome.is_started());
            assert_eq!(harness.threads.made(), ["demo: fix the parser"]);
            assert_eq!(
                harness
                    .registry
                    .lock()
                    .unwrap()
                    .get("thread-1")
                    .map(|record| record.owner_id.clone()),
                Some("web-interface".to_owned())
            );
        })
    })
    .await;
}

#[tokio::test]
async fn a_session_started_with_no_project_named_gets_one_of_its_own() {
    with_manager(|harness| {
        Box::pin(async move {
            let outcome = harness
                .manager
                .start_detached(DetachedRequest {
                    project: String::new(),
                    prompt: "have a look at this".to_owned(),
                    owner_id: "web-interface".to_owned(),
                    owner_name: None,
                })
                .await;

            assert_eq!(
                outcome
                    .session()
                    .map(|session| session.project().name.clone()),
                Some("s1".to_owned())
            );
        })
    })
    .await;
}

/// The browser knows sessions, not threads: a thread is one of the surfaces.
#[tokio::test]
async fn a_session_can_be_written_to_by_its_own_identifier() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;

            assert!(
                harness
                    .manager
                    .deliver_to_session("demo-s1", message("more", "m2"))
                    .await
            );
            assert!(
                !harness
                    .manager
                    .deliver_to_session("s404", message("more", "m3"))
                    .await
            );
        })
    })
    .await;
}

/// Sending to a stopped session is asking for it back.
#[tokio::test]
async fn writing_to_a_session_that_stopped_picks_it_up_again() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;
            harness
                .manager
                .end_thread("thread-1", EndReason::Idle)
                .await;
            settle().await;

            assert!(
                harness
                    .manager
                    .deliver_to_session("demo-s1", message("carry on", "m2"))
                    .await
            );
            assert_eq!(harness.manager.sessions().len(), 1);
        })
    })
    .await;
}

/// By the time there is a thread to type `!model` in, the session has already
/// started on whichever model the configuration named.
#[tokio::test]
async fn the_opening_message_can_choose_the_model_the_session_starts_on() {
    with_manager(|harness| {
        Box::pin(async move {
            harness
                .manager
                .start(message("demo: --model glm-5.3-air look at this", "m1"))
                .await;

            let launched = harness.sandbox.launched.lock().unwrap();
            assert_eq!(launched[0].model, Some("glm-5.3-air".to_owned()));
            // The provider is untouched, because the value named no known one.
            assert_eq!(launched[0].provider, "anthropic");
        })
    })
    .await;
}

#[tokio::test]
async fn a_known_provider_in_front_of_the_model_switches_provider_too() {
    with_manager_options(
        &json!({
            "agent": {
                "provider": "anthropic",
                "providers": {
                    "anthropic": { "credentialName": "ANTHROPIC_API_KEY", "credential": "secret" },
                    "meta": { "baseUrl": "https://api.meta.example/v1" },
                },
            },
        }),
        None,
        |harness| {
            Box::pin(async move {
                harness
                    .manager
                    .start(message(
                        "demo: --model meta/muse-spark-1.3-contributor:max look at this",
                        "m1",
                    ))
                    .await;

                let launched = harness.sandbox.launched.lock().unwrap();
                assert_eq!(launched[0].provider, "meta");
                // The thinking level rides along on the model, for the agent
                // to read.
                assert_eq!(
                    launched[0].model,
                    Some("muse-spark-1.3-contributor:max".to_owned())
                );
            })
        },
    )
    .await;
}

#[tokio::test]
async fn the_flag_is_taken_off_the_prompt_the_agent_is_given() {
    with_manager(|harness| {
        Box::pin(async move {
            harness
                .manager
                .start(message("demo: --model glm-5.3-air look at this", "m1"))
                .await;
            // Nothing of the flag survives into the work the session was
            // asked to do.
            assert_eq!(
                harness.manager.sessions()[0].project().prompt,
                "look at this"
            );
        })
    })
    .await;
}

/// Coming back on a different model is a change nobody asked for, and a quiet
/// one: the answers simply start reading differently.
#[tokio::test]
async fn a_resumed_thread_comes_back_on_the_model_it_was_started_with() {
    with_manager_options(
        &json!({
            "agent": {
                "provider": "anthropic",
                "providers": {
                    "anthropic": { "credentialName": "ANTHROPIC_API_KEY", "credential": "secret" },
                    "meta": { "baseUrl": "https://api.meta.example/v1" },
                },
            },
        }),
        None,
        |harness| {
            Box::pin(async move {
                harness
                    .manager
                    .start(message(
                        "demo: --model meta/muse-spark-1.3-contributor:xhigh go",
                        "m1",
                    ))
                    .await;
                assert_eq!(harness.sandbox.launched.lock().unwrap()[0].provider, "meta");
                harness
                    .manager
                    .end_thread("thread-1", EndReason::Idle)
                    .await;
                settle().await;

                harness
                    .manager
                    .resume("thread-1", message("carry on", "m2"))
                    .await;

                let launched = harness.sandbox.launched.lock().unwrap();
                assert_eq!(launched[1].provider, "meta");
                assert_eq!(
                    launched[1].model,
                    Some("muse-spark-1.3-contributor:xhigh".to_owned())
                );
            })
        },
    )
    .await;
}

#[tokio::test]
async fn a_thread_started_on_the_configured_model_still_resumes_on_it() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;
            harness
                .manager
                .end_thread("thread-1", EndReason::Idle)
                .await;
            settle().await;

            harness
                .manager
                .resume("thread-1", message("carry on", "m2"))
                .await;

            // Nothing was chosen, so nothing is restored over the
            // configuration.
            assert_eq!(
                harness.sandbox.launched.lock().unwrap()[1].provider,
                "anthropic"
            );
        })
    })
    .await;
}

/// Typing the whole name every time is what a short one is for.
#[tokio::test]
async fn a_short_name_starts_the_session_on_the_model_it_stands_for() {
    with_manager_options(
        &json!({
            "agent": {
                "provider": "anthropic",
                "providers": {
                    "anthropic": { "credentialName": "ANTHROPIC_API_KEY", "credential": "secret" },
                    "meta": { "baseUrl": "https://api.meta.example/v1" },
                },
                "aliases": { "muse": "meta/muse-spark-1.3-contributor" },
            },
        }),
        None,
        |harness| {
            Box::pin(async move {
                harness
                    .manager
                    .start(message("demo: --model muse:xhigh go", "m1"))
                    .await;

                let launched = harness.sandbox.launched.lock().unwrap();
                assert_eq!(launched[0].provider, "meta");
                assert_eq!(
                    launched[0].model,
                    Some("muse-spark-1.3-contributor:xhigh".to_owned())
                );
            })
        },
    )
    .await;
}

/// A turn that would not let go is not somebody saying they are done with the
/// thread, so what was being worked on is still there to pick up.
#[tokio::test]
async fn a_thread_force_stopped_for_not_answering_can_still_be_resumed() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;

            harness
                .manager
                .end_thread("thread-1", EndReason::Unresponsive)
                .await;
            settle().await;

            // The record survives, unlike a deliberate stop.
            assert!(harness.registry.lock().unwrap().get("thread-1").is_some());
            let outcome = harness
                .manager
                .resume("thread-1", message("carry on", "m2"))
                .await;
            assert!(outcome.is_started());
        })
    })
    .await;
}

#[tokio::test]
async fn a_deliberate_stop_still_ends_the_thread_for_good() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;

            harness
                .manager
                .end_thread("thread-1", EndReason::Stopped)
                .await;
            settle().await;

            assert!(harness.registry.lock().unwrap().get("thread-1").is_none());
            let outcome = harness
                .manager
                .resume("thread-1", message("carry on", "m2"))
                .await;
            assert!(!outcome.is_started());
        })
    })
    .await;
}

/// A thread that has been resumed can still be moved to another model, and
/// that has to be kept the same way a first run's is, or the move lasts only
/// until the next restart.
#[tokio::test]
async fn a_model_switch_inside_a_resumed_thread_is_remembered_too() {
    with_manager_options(
        &json!({
            "agent": {
                "provider": "anthropic",
                "providers": {
                    "anthropic": { "credentialName": "ANTHROPIC_API_KEY", "credential": "secret" },
                    "meta": { "baseUrl": "https://api.meta.example/v1" },
                },
            },
        }),
        None,
        |harness| {
            Box::pin(async move {
                harness
                    .manager
                    .start(message("demo: --model meta/one go", "m1"))
                    .await;
                harness
                    .manager
                    .end_thread("thread-1", EndReason::Idle)
                    .await;
                settle().await;

                let resumed = harness
                    .manager
                    .resume("thread-1", message("carry on", "m2"))
                    .await;
                assert!(resumed.is_started());
                assert_eq!(
                    harness.sandbox.launched.lock().unwrap()[1].model,
                    Some("one".to_owned())
                );

                // Moved while resumed, the way `!model` does it.
                let session = started(&resumed);
                // The carry-on turn is still running; settle it, the way
                // the agent finishing would, before `!model` is accepted.
                harness.sandbox.settle_latest();
                settle().await;

                session.handle(message("!model two", "m9")).await;
                settle().await;

                assert_eq!(
                    harness
                        .registry
                        .lock()
                        .unwrap()
                        .get("thread-1")
                        .and_then(|record| record.model.clone()),
                    Some("two".to_owned())
                );
                harness
                    .manager
                    .end_thread("thread-1", EndReason::Idle)
                    .await;
                settle().await;

                // And the next resume comes back on it, not on what it
                // started with.
                harness
                    .manager
                    .resume("thread-1", message("again", "m3"))
                    .await;
                assert_eq!(
                    harness.sandbox.launched.lock().unwrap()[2].model,
                    Some("two".to_owned())
                );
            })
        },
    )
    .await;
}

/// Hitting the limit on the configured provider must not take the others with
/// it. The window that matters is the one the prompt would actually be
/// charged to, which the opening message may name with `-m`.
#[tokio::test]
async fn a_spent_default_provider_does_not_refuse_another_provider() {
    with_manager_options(
        &json!({
            "agent": {
                "provider": "anthropic",
                "providers": {
                    "anthropic": { "credentialName": "ANTHROPIC_API_KEY", "credential": "secret" },
                    "meta": { "baseUrl": "https://api.meta.example/v1" },
                },
            },
        }),
        Some(Arc::new(|provider: &str| {
            let known = provider.to_owned();
            Box::pin(async move {
                (known == "anthropic").then(|| "anthropic's usage window is spent".to_owned())
            }) as Pin<Box<dyn Future<Output = Option<String>> + Send>>
        })),
        |harness| {
            Box::pin(async move {
                // Only the configured provider is out of window.
                let started_session = harness
                    .manager
                    .start(message("demo: -m meta/muse explain yourself", "m1"))
                    .await;
                assert!(started_session.is_started());
                assert_eq!(harness.sandbox.launched.lock().unwrap()[0].provider, "meta");
            })
        },
    )
    .await;
}

/// And the configured one is still refused when it is the one being used.
#[tokio::test]
async fn a_spent_provider_still_refuses_a_prompt_that_would_use_it() {
    with_manager_options(
        &json!({
            "agent": {
                "provider": "anthropic",
                "providers": {
                    "anthropic": { "credentialName": "ANTHROPIC_API_KEY", "credential": "secret" },
                    "meta": { "baseUrl": "https://api.meta.example/v1" },
                },
            },
        }),
        Some(Arc::new(|provider: &str| {
            let known = provider.to_owned();
            Box::pin(async move {
                (known == "anthropic").then(|| "anthropic's usage window is spent".to_owned())
            }) as Pin<Box<dyn Future<Output = Option<String>> + Send>>
        })),
        |harness| {
            Box::pin(async move {
                let refused = harness.manager.start(message("demo: just go", "m1")).await;
                assert!(!refused.is_started());
                assert!(refused_reason(&refused).contains("usage window is spent"));
            })
        },
    )
    .await;
}

/// A message deleted after its session ended is reconciled where it lies, and
/// no session is started for it.
#[tokio::test]
async fn an_ended_session_is_not_restarted_for_a_withdrawal() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;
            settle().await;
            harness
                .manager
                .end_thread("thread-1", EndReason::Idle)
                .await;
            settle().await;
            assert!(harness.manager.sessions().is_empty());
            let launches_before = harness.sandbox.launched.lock().unwrap().len();

            // The live session recorded the opening prompt under its chat id.
            assert!(
                harness.manager.withdraw("m1", "thread-1").await,
                "the record held a copy of that message"
            );

            // Nothing was restarted for it: one launch, and the record was
            // reconciled in place.
            assert_eq!(
                harness.sandbox.launched.lock().unwrap().len(),
                launches_before
            );
            let record = record_dir(
                &harness
                    .root
                    .path()
                    .join("state")
                    .join("demo-s1")
                    .display()
                    .to_string(),
            );
            let transcript =
                std::fs::read_to_string(std::path::Path::new(&record).join("transcript.jsonl"))
                    .unwrap();
            assert!(transcript.contains(r#""withdrawn":true"#));
        })
    })
    .await;
}

/// A message nobody here sent withdraws nothing anywhere.
#[tokio::test]
async fn a_withdrawal_nobody_holds_reports_nothing() {
    with_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;
            // Let the opening turn settle, so a withdrawal is applied at once
            // rather than held by a turn in progress.
            harness.sandbox.settle_latest();
            settle().await;

            assert!(!harness.manager.withdraw("not-a-message", "thread-1").await);
            assert!(!harness.manager.withdraw("m1", "thread-404").await);
        })
    })
    .await;
}

/// The notes files already exist on a resume, and treating that as a failure
/// loses the whole system prompt with it: the house rules, the memory block,
/// the attribution instructions and the delegate instructions all vanish.
#[tokio::test]
async fn a_resumed_session_is_still_given_its_system_prompt() {
    with_remembering_manager(|harness| {
        Box::pin(async move {
            harness.manager.start(message("demo: go", "m1")).await;
            settle().await;
            let first = harness.sandbox.launched.lock().unwrap()[0]
                .system_prompt_path
                .clone();
            assert!(first.is_some(), "the first launch has one");

            harness
                .manager
                .end_thread("thread-1", EndReason::Idle)
                .await;
            settle().await;
            harness
                .manager
                .resume("thread-1", message("carry on", "m2"))
                .await;
            settle().await;

            let launched = harness.sandbox.launched.lock().unwrap();
            let resumed = launched.last().expect("a second launch");
            assert_eq!(
                resumed.system_prompt_path, first,
                "a resumed session keeps the system prompt it was started with"
            );
        })
    })
    .await;
}