simulator-client 0.9.0

Async WebSocket client for the Solana simulator backtest API
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
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
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
use std::{net::SocketAddr, time::Duration};

use futures::{SinkExt, StreamExt};
use simulator_api::{
    AgentStatsReport, BacktestError, BacktestRequest, BacktestResponse, BacktestStatus,
    ContinueParams, CreateSessionParams, SequencedResponse, SessionEventKind, SessionSummary,
};
use simulator_client::{
    BacktestClient, BacktestClientError, Continue, CreateSession, ManagedBacktestSession,
    ReadyOutcome,
    managed::{
        ManagedEvent, ManagedParallelSession, ManagedSessionError, ParallelSubSession,
        SubscriptionNotification, spawn_account_diff_subscription_manager,
    },
};
use tokio::net::{TcpListener, TcpStream};
use tokio_tungstenite::{
    WebSocketStream, accept_async, accept_hdr_async,
    tungstenite::{
        Message,
        handshake::server::{ErrorResponse, Request, Response},
    },
};
use tokio_util::sync::CancellationToken;

fn assert_expected_api_key(req: &Request, expected_api_key: &str) {
    let api_key = req.headers().get("X-API-Key").and_then(|v| v.to_str().ok());
    assert_eq!(api_key, Some(expected_api_key));
}

#[allow(clippy::result_large_err)]
async fn accept_with_expected_api_key(
    stream: tokio::net::TcpStream,
    expected_api_key: &'static str,
) -> tokio_tungstenite::tungstenite::Result<tokio_tungstenite::WebSocketStream<tokio::net::TcpStream>>
{
    accept_hdr_async(stream, move |req: &Request, resp: Response| {
        assert_expected_api_key(req, expected_api_key);
        Ok::<_, ErrorResponse>(resp)
    })
    .await
}

async fn spawn_server(
    expected_api_key: &'static str,
    handler: impl FnOnce(
        tokio_tungstenite::WebSocketStream<tokio::net::TcpStream>,
    ) -> tokio::task::JoinHandle<()>
    + Send
    + 'static,
) -> (String, tokio::task::JoinHandle<()>) {
    let listener = TcpListener::bind("127.0.0.1:0").await.unwrap();
    let addr: SocketAddr = listener.local_addr().unwrap();
    let url = format!("ws://{addr}/backtest");

    let join = tokio::spawn(async move {
        let (stream, _) = listener.accept().await.unwrap();

        let ws = accept_with_expected_api_key(stream, expected_api_key)
            .await
            .unwrap();

        handler(ws).await.unwrap();
    });

    (url, join)
}

/// Spawn a bare data-plane (rpc_endpoint) WebSocket server. Unlike
/// [`spawn_server`] it does not assert an `X-API-Key` header, because the
/// subscription manager connects to the rpc endpoint without one. Returns an
/// `http://` URL (the manager rewrites the scheme to `ws://`).
async fn spawn_rpc_server(
    handler: impl FnOnce(WebSocketStream<TcpStream>) -> tokio::task::JoinHandle<()> + Send + 'static,
) -> (String, tokio::task::JoinHandle<()>) {
    let listener = TcpListener::bind("127.0.0.1:0").await.unwrap();
    let addr: SocketAddr = listener.local_addr().unwrap();
    let url = format!("http://{addr}");

    let join = tokio::spawn(async move {
        let (stream, _) = listener.accept().await.unwrap();
        let ws = accept_async(stream).await.unwrap();
        handler(ws).await.unwrap();
    });

    (url, join)
}

/// Regression test for the parallel-session transaction-drop race: the manager
/// must deliver every notification and then close its channel on the terminal,
/// without waiting for the socket to close. The server holds the socket open
/// after the terminal to prove the manager stops on the marker, not the close.
#[tokio::test]
async fn subscription_drains_all_notifications_then_terminal_closes_channel() {
    let (url, server) = spawn_rpc_server(|mut ws| {
        tokio::spawn(async move {
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let req: serde_json::Value = serde_json::from_str(&text).unwrap();
            assert_eq!(req["method"], "accountDiffSubscribe");
            let id = req["id"].clone();

            // Acknowledge with subscription id 1.
            ws.send(Message::Text(
                serde_json::json!({ "jsonrpc": "2.0", "id": id, "result": 1 }).to_string(),
            ))
            .await
            .unwrap();

            for slot in 0..5u64 {
                ws.send(Message::Text(
                    serde_json::json!({
                        "jsonrpc": "2.0",
                        "method": "accountDiffNotification",
                        "params": { "subscription": 1, "result": { "context": { "slot": slot } } },
                    })
                    .to_string(),
                ))
                .await
                .unwrap();
            }

            // Terminal marker, ordered after every notification.
            ws.send(Message::Text(
                serde_json::json!({
                    "jsonrpc": "2.0",
                    "method": "subscriptionComplete",
                    "params": { "subscription": 1 },
                })
                .to_string(),
            ))
            .await
            .unwrap();

            // Hold the socket open: the client must stop on the terminal, not on
            // a socket close.
            tokio::time::sleep(Duration::from_secs(2)).await;
        })
    })
    .await;

    let cancel = CancellationToken::new();
    let mut handle =
        spawn_account_diff_subscription_manager(url, vec!["prog".to_string()], cancel, None);

    let mut received = 0;
    while let Some(notification) = handle.notifications.recv().await {
        assert!(matches!(
            notification,
            SubscriptionNotification::AccountDiff(_)
        ));
        received += 1;
    }

    // `recv` returned `None`: the channel closed only after the terminal, having
    // first delivered every notification — no trailing event was dropped.
    assert_eq!(received, 5);
    server.await.unwrap();
}

/// The managed wrapper drains trailing subscription notifications automatically
/// on `Completed`: a caller pumping only `next_event` still sees every
/// notification, and `Completed` arrives last.
#[tokio::test]
async fn next_event_drains_subscriptions_before_completed() {
    // Data plane: ack the subscribe, emit 5 notifications + terminal, hold open.
    let (rpc_url, rpc_server) = spawn_rpc_server(|mut ws| {
        tokio::spawn(async move {
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let req: serde_json::Value = serde_json::from_str(&text).unwrap();
            assert_eq!(req["method"], "accountDiffSubscribe");
            let id = req["id"].clone();
            ws.send(Message::Text(
                serde_json::json!({ "jsonrpc": "2.0", "id": id, "result": 1 }).to_string(),
            ))
            .await
            .unwrap();

            for slot in 0..5u64 {
                ws.send(Message::Text(
                    serde_json::json!({
                        "jsonrpc": "2.0",
                        "method": "accountDiffNotification",
                        "params": { "subscription": 1, "result": { "context": { "slot": slot } } },
                    })
                    .to_string(),
                ))
                .await
                .unwrap();
            }

            ws.send(Message::Text(
                serde_json::json!({
                    "jsonrpc": "2.0",
                    "method": "subscriptionComplete",
                    "params": { "subscription": 1 },
                })
                .to_string(),
            ))
            .await
            .unwrap();

            tokio::time::sleep(Duration::from_secs(2)).await;
        })
    })
    .await;

    // Control plane: create -> ready -> completed (sent eagerly, so `Completed`
    // races the data-plane notifications — the drain must still collect them).
    let (ctrl_url, ctrl_server) = spawn_server("k", move |mut ws| {
        tokio::spawn(async move {
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let req: BacktestRequest = serde_json::from_str(&text).unwrap();
            assert!(matches!(req, BacktestRequest::CreateBacktestSession(_)));

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionCreated {
                    session_id: "s1".to_string(),
                    rpc_endpoint: rpc_url,
                    task_id: None,
                })
                .unwrap(),
            ))
            .await
            .unwrap();
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::ReadyForContinue).unwrap(),
            ))
            .await
            .unwrap();
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::Completed {
                    summary: Some(SessionSummary {
                        correct_simulation: 7,
                        incorrect_simulation: 2,
                        ..Default::default()
                    }),
                    agent_stats: Some(vec![AgentStatsReport {
                        name: "agent-1".to_string(),
                        slots_processed: 6,
                        ..Default::default()
                    }]),
                })
                .unwrap(),
            ))
            .await
            .unwrap();

            tokio::time::sleep(Duration::from_secs(2)).await;
        })
    })
    .await;

    let create = CreateSession::builder()
        .start_slot(100)
        .end_slot(105)
        .build()
        .into_request()
        .unwrap();
    let mut session = ManagedBacktestSession::start(ctrl_url, "k".to_string(), create)
        .await
        .unwrap();
    session.subscribe_account_diffs(vec!["prog".to_string()]);

    let mut account_diffs = 0;
    let (summary, agent_stats) = loop {
        match session.next_event().await.unwrap() {
            ManagedEvent::AccountDiff(_) => account_diffs += 1,
            ManagedEvent::Completed {
                summary,
                agent_stats,
            } => break (summary, agent_stats),
            ManagedEvent::Error(e) => panic!("unexpected error: {e}"),
            // ReadyForContinue / Slot / Status are not relevant here.
            _ => {}
        }
    };

    // All 5 trailing notifications arrived before `Completed`, with no explicit
    // drain call from this loop.
    assert_eq!(account_diffs, 5);

    let summary = summary.expect("summary must survive the completion drain");
    assert_eq!(summary.correct_simulation, 7);
    assert_eq!(summary.incorrect_simulation, 2);
    let agent_stats = agent_stats.expect("agent stats must survive the completion drain");
    assert_eq!(agent_stats.len(), 1);
    assert_eq!(agent_stats[0].name, "agent-1");
    assert_eq!(agent_stats[0].slots_processed, 6);

    session.shutdown().await;
    let _ = rpc_server.await;
    let _ = ctrl_server.await;
}

/// Regression for silent trailing-tx loss on slow links: the completion drain
/// must not truncate a slow-but-steady stream at a wall-clock deadline. The
/// server streams N notifications ~50ms apart (~1s total, far longer than the
/// 300ms drain timeout set below) then the terminal. Each *gap* (50ms) is well
/// under the timeout, so an idle timeout drains all N; the old absolute deadline
/// would stop at 300ms and drop the rest.
#[tokio::test]
async fn slow_notification_stream_is_not_truncated_by_drain_timeout() {
    const N: u64 = 20;
    let (rpc_url, rpc_server) = spawn_rpc_server(|mut ws| {
        tokio::spawn(async move {
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let req: serde_json::Value = serde_json::from_str(&text).unwrap();
            assert_eq!(req["method"], "accountDiffSubscribe");
            let id = req["id"].clone();
            ws.send(Message::Text(
                serde_json::json!({ "jsonrpc": "2.0", "id": id, "result": 1 }).to_string(),
            ))
            .await
            .unwrap();

            for slot in 0..N {
                ws.send(Message::Text(
                    serde_json::json!({
                        "jsonrpc": "2.0",
                        "method": "accountDiffNotification",
                        "params": { "subscription": 1, "result": { "context": { "slot": slot } } },
                    })
                    .to_string(),
                ))
                .await
                .unwrap();
                // Gap well under the 300ms idle timeout, but cumulatively far over it.
                if slot + 1 < N {
                    tokio::time::sleep(Duration::from_millis(50)).await;
                }
            }
            ws.send(Message::Text(
                serde_json::json!({
                    "jsonrpc": "2.0",
                    "method": "subscriptionComplete",
                    "params": { "subscription": 1 },
                })
                .to_string(),
            ))
            .await
            .unwrap();
            tokio::time::sleep(Duration::from_secs(2)).await;
        })
    })
    .await;

    // Complete immediately so the whole notification stream is "trailing" and
    // must be drained after `Completed`.
    let (ctrl_url, ctrl_server) = spawn_server("k", move |mut ws| {
        tokio::spawn(async move {
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let req: BacktestRequest = serde_json::from_str(&text).unwrap();
            assert!(matches!(req, BacktestRequest::CreateBacktestSession(_)));
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionCreated {
                    session_id: "s1".to_string(),
                    rpc_endpoint: rpc_url,
                    task_id: None,
                })
                .unwrap(),
            ))
            .await
            .unwrap();
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::ReadyForContinue).unwrap(),
            ))
            .await
            .unwrap();
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::Completed {
                    summary: None,
                    agent_stats: None,
                })
                .unwrap(),
            ))
            .await
            .unwrap();
            tokio::time::sleep(Duration::from_secs(2)).await;
        })
    })
    .await;

    let create = CreateSession::builder()
        .start_slot(100)
        .end_slot(105)
        .build()
        .into_request()
        .unwrap();
    let mut session = ManagedBacktestSession::start(ctrl_url, "k".to_string(), create)
        .await
        .unwrap();
    // 300ms idle timeout: >> the 50ms inter-notification gap, but << the ~1s total
    // stream. An absolute deadline truncates here; an idle timeout drains all N.
    session.set_completion_drain_timeout(Duration::from_millis(300));
    session.subscribe_account_diffs(vec!["prog".to_string()]);

    let mut account_diffs = 0u64;
    loop {
        match session.next_event().await.unwrap() {
            ManagedEvent::AccountDiff(_) => account_diffs += 1,
            ManagedEvent::Completed { .. } => break,
            ManagedEvent::Error(e) => panic!("unexpected error: {e}"),
            _ => {}
        }
    }

    assert_eq!(
        account_diffs, N,
        "drain truncated a slow stream: {account_diffs}/{N} delivered (idle timeout regressed to a wall-clock cap?)"
    );

    session.shutdown().await;
    let _ = rpc_server.await;
    let _ = ctrl_server.await;
}

/// If the control plane reports `Completed` but a subscription never delivers
/// its end-of-stream terminal (and never closes), the completion drain hits its
/// idle backstop with the subscription still open. That's a silently-truncated
/// run, so `next_event` must surface `SubscriptionFailed` after delivering what
/// was drained — never a clean `Completed`.
#[tokio::test]
async fn stalled_completion_drain_surfaces_failure_not_completed() {
    let (rpc_url, rpc_server) = spawn_rpc_server(|mut ws| {
        tokio::spawn(async move {
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let req: serde_json::Value = serde_json::from_str(&text).unwrap();
            let id = req["id"].clone();
            ws.send(Message::Text(
                serde_json::json!({ "jsonrpc": "2.0", "id": id, "result": 1 }).to_string(),
            ))
            .await
            .unwrap();

            // A few notifications, then hold the socket open forever WITHOUT a
            // `subscriptionComplete` terminal: the subscription never closes, so
            // the drain stalls on its idle backstop.
            for slot in 0..3u64 {
                ws.send(Message::Text(
                    serde_json::json!({
                        "jsonrpc": "2.0",
                        "method": "accountDiffNotification",
                        "params": { "subscription": 1, "result": { "context": { "slot": slot } } },
                    })
                    .to_string(),
                ))
                .await
                .unwrap();
            }
            tokio::time::sleep(Duration::from_secs(5)).await;
        })
    })
    .await;

    let (ctrl_url, ctrl_server) = spawn_server("k", move |mut ws| {
        tokio::spawn(async move {
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let req: BacktestRequest = serde_json::from_str(&text).unwrap();
            assert!(matches!(req, BacktestRequest::CreateBacktestSession(_)));
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionCreated {
                    session_id: "s1".to_string(),
                    rpc_endpoint: rpc_url,
                    task_id: None,
                })
                .unwrap(),
            ))
            .await
            .unwrap();
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::ReadyForContinue).unwrap(),
            ))
            .await
            .unwrap();
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::Completed {
                    summary: None,
                    agent_stats: None,
                })
                .unwrap(),
            ))
            .await
            .unwrap();
            tokio::time::sleep(Duration::from_secs(5)).await;
        })
    })
    .await;

    let create = CreateSession::builder()
        .start_slot(100)
        .end_slot(105)
        .build()
        .into_request()
        .unwrap();
    let mut session = ManagedBacktestSession::start(ctrl_url, "k".to_string(), create)
        .await
        .unwrap();
    session.set_completion_drain_timeout(Duration::from_millis(200));
    session.subscribe_account_diffs(vec!["prog".to_string()]);

    let mut account_diffs = 0u64;
    // The only non-panic exit is the `SubscriptionFailed` arm — that's the
    // behavior under test: a stalled drain fails loudly, never reports
    // `Completed`.
    loop {
        match session.next_event().await {
            Ok(ManagedEvent::AccountDiff(_)) => account_diffs += 1,
            Ok(ManagedEvent::Completed { .. }) => {
                panic!("a stalled drain must not report Completed");
            }
            Ok(ManagedEvent::Error(e)) => panic!("unexpected error event: {e}"),
            Ok(_) => {}
            Err(ManagedSessionError::SubscriptionFailed(_)) => break,
            Err(e) => panic!("unexpected error: {e}"),
        }
    }

    // The drained notifications are still delivered before the failure.
    assert_eq!(account_diffs, 3);

    session.shutdown().await;
    let _ = rpc_server.await;
    let _ = ctrl_server.await;
}

/// A connection dropped mid-stream must resume via the server's
/// `replayFromSlot` cursor rather than restreaming from the start or
/// truncating the tail. The server delivers slots 0..=2, drops the socket
/// without a terminal, then on the reconnect asserts the resubscribe carried
/// `replayFromSlot == 2` (the last slot delivered) before streaming the rest.
#[tokio::test]
async fn reconnect_resumes_from_last_slot_via_replay_cursor() {
    async fn next_subscribe(ws: &mut WebSocketStream<TcpStream>) -> serde_json::Value {
        loop {
            match ws.next().await.unwrap().unwrap() {
                Message::Text(t) => return serde_json::from_str(&t).unwrap(),
                _ => continue,
            }
        }
    }
    async fn send_diff(ws: &mut WebSocketStream<TcpStream>, slot: u64) {
        ws.send(Message::Text(
            serde_json::json!({
                "jsonrpc": "2.0",
                "method": "accountDiffNotification",
                "params": { "subscription": 1, "result": { "context": { "slot": slot } } },
            })
            .to_string(),
        ))
        .await
        .unwrap();
    }

    let listener = TcpListener::bind("127.0.0.1:0").await.unwrap();
    let addr: SocketAddr = listener.local_addr().unwrap();
    let url = format!("http://{addr}");

    let server = tokio::spawn(async move {
        // First connection: no cursor, deliver slots 0..=2, then drop the
        // socket mid-stream (no terminal marker).
        let (stream, _) = listener.accept().await.unwrap();
        let mut ws = accept_async(stream).await.unwrap();
        let req = next_subscribe(&mut ws).await;
        assert_eq!(req["method"], "accountDiffSubscribe");
        assert!(
            req["params"][1].get("replayFromSlot").is_none(),
            "first subscribe must not carry a resume cursor"
        );
        ws.send(Message::Text(
            serde_json::json!({ "jsonrpc": "2.0", "id": req["id"], "result": 1 }).to_string(),
        ))
        .await
        .unwrap();
        for slot in 0..=2u64 {
            send_diff(&mut ws, slot).await;
        }
        drop(ws);

        // Reconnect: the resubscribe must resume from the last slot delivered.
        let (stream, _) = listener.accept().await.unwrap();
        let mut ws = accept_async(stream).await.unwrap();
        let req = next_subscribe(&mut ws).await;
        assert_eq!(
            req["params"][1]["replayFromSlot"],
            serde_json::json!(2),
            "reconnect must resume from the last slot delivered (inclusive)"
        );
        ws.send(Message::Text(
            serde_json::json!({ "jsonrpc": "2.0", "id": req["id"], "result": 1 }).to_string(),
        ))
        .await
        .unwrap();
        // Re-deliver the boundary slot 2, then 3..=4, then the terminal.
        for slot in 2..=4u64 {
            send_diff(&mut ws, slot).await;
        }
        ws.send(Message::Text(
            serde_json::json!({
                "jsonrpc": "2.0",
                "method": "subscriptionComplete",
                "params": { "subscription": 1 },
            })
            .to_string(),
        ))
        .await
        .unwrap();
        tokio::time::sleep(Duration::from_millis(200)).await;
    });

    let cancel = CancellationToken::new();
    let mut handle =
        spawn_account_diff_subscription_manager(url, vec!["prog".to_string()], cancel, None);

    let mut slots = Vec::new();
    while let Some(SubscriptionNotification::AccountDiff(diff)) = handle.notifications.recv().await
    {
        slots.push(diff.context.slot);
    }
    server.await.unwrap();

    // No slot was skipped across the gap. The boundary slot (2) is delivered
    // twice — once before the drop, once on resume — which downstream consumers
    // dedup by signature / diff key; the cursor's job is only to guarantee no
    // gap.
    assert_eq!(slots, vec![0, 1, 2, 2, 3, 4]);
}

/// The client opts into compression and decodes zstd-compressed notifications
/// delivered as `Binary` frames, while the (uncompressed) subscribe ack stays a
/// `Text` frame. Uses the real shared codec, so this is the cross-end contract.
#[tokio::test]
async fn compressed_binary_notifications_are_decoded() {
    use simulator_api::ws_compression::{WS_COMPRESSION_LEVEL, WsStreamCompressor};

    let (url, server) = spawn_rpc_server(|mut ws| {
        tokio::spawn(async move {
            let req: serde_json::Value = loop {
                match ws.next().await.unwrap().unwrap() {
                    Message::Text(t) => break serde_json::from_str(&t).unwrap(),
                    _ => continue,
                }
            };
            assert_eq!(req["method"], "accountDiffSubscribe");
            assert_eq!(
                req["params"][1]["compression"],
                serde_json::json!("zstd"),
                "client must opt into compression"
            );
            // Ack stays uncompressed Text.
            ws.send(Message::Text(
                serde_json::json!({ "jsonrpc": "2.0", "id": req["id"], "result": 1 }).to_string(),
            ))
            .await
            .unwrap();

            // Notifications + terminal are zstd-compressed Binary frames, fed
            // through one per-connection compressor (context-takeover).
            let mut comp = WsStreamCompressor::new(WS_COMPRESSION_LEVEL).unwrap();
            let mut frames: Vec<String> = (0..5u64)
                .map(|slot| {
                    serde_json::json!({
                        "jsonrpc": "2.0",
                        "method": "accountDiffNotification",
                        "params": { "subscription": 1, "result": { "context": { "slot": slot } } },
                    })
                    .to_string()
                })
                .collect();
            frames.push(
                serde_json::json!({
                    "jsonrpc": "2.0",
                    "method": "subscriptionComplete",
                    "params": { "subscription": 1 },
                })
                .to_string(),
            );
            for json in frames {
                let frame = comp.compress(json.as_bytes()).unwrap();
                ws.send(Message::Binary(frame)).await.unwrap();
            }
            tokio::time::sleep(Duration::from_secs(2)).await;
        })
    })
    .await;

    let cancel = CancellationToken::new();
    let mut handle =
        spawn_account_diff_subscription_manager(url, vec!["prog".to_string()], cancel, None);
    let mut slots = Vec::new();
    while let Some(SubscriptionNotification::AccountDiff(diff)) = handle.notifications.recv().await
    {
        slots.push(diff.context.slot);
    }
    server.await.unwrap();
    assert_eq!(slots, vec![0, 1, 2, 3, 4]);
}

/// Multi-program subscribe on one connection: an already-active subscription
/// can stream compressed notifications while a later subscribe is still being
/// acked. Those frames must be buffered (not dropped), or they'd be lost and
/// the per-connection zstd stream would desync. Asserts every notification —
/// including the one delivered mid-handshake — arrives.
#[tokio::test]
async fn multi_program_compressed_handshake_buffers_interleaved_notifications() {
    use simulator_api::ws_compression::{WS_COMPRESSION_LEVEL, WsStreamCompressor};

    let (url, server) = spawn_rpc_server(|mut ws| {
        tokio::spawn(async move {
            async fn next_req(ws: &mut WebSocketStream<TcpStream>) -> serde_json::Value {
                loop {
                    if let Message::Text(t) = ws.next().await.unwrap().unwrap() {
                        return serde_json::from_str(&t).unwrap();
                    }
                }
            }
            let notif = |sub: u64, slot: u64| {
                serde_json::json!({
                    "jsonrpc": "2.0",
                    "method": "accountDiffNotification",
                    "params": { "subscription": sub, "result": { "context": { "slot": slot } } },
                })
                .to_string()
            };
            let complete = |sub: u64| {
                serde_json::json!({
                    "jsonrpc": "2.0",
                    "method": "subscriptionComplete",
                    "params": { "subscription": sub },
                })
                .to_string()
            };

            let mut comp = WsStreamCompressor::new(WS_COMPRESSION_LEVEL).unwrap();

            // Subscribe #1 → ack, then stream a compressed notification for it
            // BEFORE reading subscribe #2 (so it lands during #2's ack wait).
            let req1 = next_req(&mut ws).await;
            ws.send(Message::Text(
                serde_json::json!({ "jsonrpc": "2.0", "id": req1["id"], "result": 1 }).to_string(),
            ))
            .await
            .unwrap();
            ws.send(Message::Binary(
                comp.compress(notif(1, 0).as_bytes()).unwrap(),
            ))
            .await
            .unwrap();

            // Subscribe #2 → ack, then the remaining notifications + terminals,
            // all compressed through the same per-connection stream in order.
            let req2 = next_req(&mut ws).await;
            ws.send(Message::Text(
                serde_json::json!({ "jsonrpc": "2.0", "id": req2["id"], "result": 2 }).to_string(),
            ))
            .await
            .unwrap();
            for json in [notif(1, 1), notif(2, 0), complete(1), complete(2)] {
                ws.send(Message::Binary(comp.compress(json.as_bytes()).unwrap()))
                    .await
                    .unwrap();
            }
            tokio::time::sleep(Duration::from_secs(2)).await;
        })
    })
    .await;

    let cancel = CancellationToken::new();
    let mut handle = spawn_account_diff_subscription_manager(
        url,
        vec!["progA".to_string(), "progB".to_string()],
        cancel,
        None,
    );
    let mut slots = Vec::new();
    while let Some(SubscriptionNotification::AccountDiff(diff)) = handle.notifications.recv().await
    {
        slots.push(diff.context.slot);
    }
    server.await.unwrap();

    // sub1 slot0 (buffered mid-handshake), sub1 slot1, sub2 slot0 — none lost.
    slots.sort_unstable();
    assert_eq!(slots, vec![0, 0, 1]);
}

#[tokio::test]
async fn creates_session_waits_ready_advances_and_closes() {
    let (url, server) = spawn_server("k", |mut ws| {
        tokio::spawn(async move {
            eprintln!("server: waiting for resume request");
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let req: BacktestRequest = serde_json::from_str(&text).unwrap();
            let BacktestRequest::CreateBacktestSession(request) = req else {
                panic!("expected create");
            };
            let (
                CreateSessionParams {
                    start_slot,
                    end_slot,
                    ..
                },
                parallel,
            ) = request.into_request_and_parallel();
            assert!(!parallel);
            assert_eq!(start_slot, 100);
            assert_eq!(end_slot, 105);

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionCreated {
                    session_id: "s1".to_string(),
                    rpc_endpoint: "http://rpc".to_string(),
                    task_id: None,
                })
                .unwrap(),
            ))
            .await
            .unwrap();

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::ReadyForContinue).unwrap(),
            ))
            .await
            .unwrap();

            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let req: BacktestRequest = serde_json::from_str(&text).unwrap();
            assert!(matches!(req, BacktestRequest::Continue(_)));

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::Status {
                    status: BacktestStatus::DecodedTransactions,
                })
                .unwrap(),
            ))
            .await
            .unwrap();

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SlotNotification(101)).unwrap(),
            ))
            .await
            .unwrap();
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SlotNotification(102)).unwrap(),
            ))
            .await
            .unwrap();
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::ReadyForContinue).unwrap(),
            ))
            .await
            .unwrap();

            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let req: BacktestRequest = serde_json::from_str(&text).unwrap();
            assert!(matches!(req, BacktestRequest::CloseBacktestSession));

            eprintln!("server: sending success");
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::Success).unwrap(),
            ))
            .await
            .unwrap();
        })
    })
    .await;

    let client = BacktestClient::builder().url(url).api_key("k").build();

    let mut session = client
        .create_session(
            CreateSession::builder()
                .start_slot(100)
                .slot_count(5)
                .build(),
        )
        .await
        .unwrap();

    assert_eq!(session.session_id(), Some("s1"));
    assert_eq!(session.rpc_endpoint(), Some("http://rpc"));

    let ready = session
        .ensure_ready(Some(Duration::from_secs(2)))
        .await
        .unwrap();
    assert_eq!(ready, ReadyOutcome::Ready);

    let result = session
        .advance(
            Continue::builder().advance_count(2).build(),
            Some(Duration::from_secs(2)),
            |_| {},
        )
        .await
        .unwrap();

    assert_eq!(result.slot_notifications, 2);
    assert_eq!(result.last_slot, Some(102));
    assert!(result.ready_for_continue);

    session.close(Some(Duration::from_secs(2))).await.unwrap();

    server.await.unwrap();
}

#[tokio::test]
async fn surfaces_remote_error() {
    let (url, server) = spawn_server("k", |mut ws| {
        tokio::spawn(async move {
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let req: BacktestRequest = serde_json::from_str(&text).unwrap();
            assert!(matches!(req, BacktestRequest::CreateBacktestSession(_)));

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionCreated {
                    session_id: "s1".to_string(),
                    rpc_endpoint: "http://rpc".to_string(),
                    task_id: None,
                })
                .unwrap(),
            ))
            .await
            .unwrap();

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::ReadyForContinue).unwrap(),
            ))
            .await
            .unwrap();

            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let req: BacktestRequest = serde_json::from_str(&text).unwrap();
            assert!(matches!(req, BacktestRequest::Continue(_)));

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::Error(BacktestError::NoMoreBlocks))
                    .unwrap(),
            ))
            .await
            .unwrap();
        })
    })
    .await;

    let client = BacktestClient::builder().url(url).api_key("k").build();

    let mut session = client
        .create_session(
            CreateSession::builder()
                .start_slot(100)
                .end_slot(100)
                .build(),
        )
        .await
        .unwrap();

    session
        .ensure_ready(Some(Duration::from_secs(2)))
        .await
        .unwrap();

    let err = session
        .continue_until_ready(
            Continue::builder().advance_count(1).build(),
            Some(Duration::from_secs(2)),
            |_| {},
        )
        .await
        .unwrap_err();

    assert!(matches!(
        err,
        BacktestClientError::Remote(BacktestError::NoMoreBlocks)
    ));

    server.await.unwrap();
}

#[tokio::test]
async fn creates_parallel_sessions_and_returns_ids() {
    let (url, server) = spawn_server("k", |mut ws| {
        tokio::spawn(async move {
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let payload: serde_json::Value = serde_json::from_str(&text).unwrap();
            assert_eq!(payload["method"], "createBacktestSession");
            assert_eq!(payload["params"]["parallel"], true);
            assert_eq!(payload["params"]["startSlot"], 100);
            assert!(payload["params"].get("request").is_none());

            let req: BacktestRequest = serde_json::from_str(&text).unwrap();
            let BacktestRequest::CreateBacktestSession(request) = req else {
                panic!("expected create");
            };
            let (_, parallel) = request.into_request_and_parallel();
            assert!(parallel);

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionsCreated {
                    session_ids: vec!["s1".to_string(), "s2".to_string()],
                })
                .unwrap(),
            ))
            .await
            .unwrap();
        })
    })
    .await;

    let client = BacktestClient::builder().url(url).api_key("k").build();

    let session_ids = client
        .create_sessions(
            CreateSession::builder()
                .start_slot(100)
                .end_slot(105)
                .parallel(true)
                .build(),
        )
        .await
        .unwrap();

    assert_eq!(session_ids, vec!["s1".to_string(), "s2".to_string()]);
    server.await.unwrap();
}

#[tokio::test]
async fn creates_parallel_sessions_from_streamed_session_created_events() {
    let (url, server) = spawn_server("k", |mut ws| {
        tokio::spawn(async move {
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };

            let req: BacktestRequest = serde_json::from_str(&text).unwrap();
            let BacktestRequest::CreateBacktestSession(request) = req else {
                panic!("expected create");
            };
            let (_, parallel) = request.into_request_and_parallel();
            assert!(parallel);

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionCreated {
                    session_id: "s1".to_string(),
                    rpc_endpoint: "/backtest/s1".to_string(),
                    task_id: None,
                })
                .unwrap(),
            ))
            .await
            .unwrap();

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionCreated {
                    session_id: "s2".to_string(),
                    rpc_endpoint: "/backtest/s2".to_string(),
                    task_id: None,
                })
                .unwrap(),
            ))
            .await
            .unwrap();

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionsCreated {
                    session_ids: Vec::new(),
                })
                .unwrap(),
            ))
            .await
            .unwrap();
        })
    })
    .await;

    let client = BacktestClient::builder().url(url).api_key("k").build();
    let mut streamed = Vec::new();

    let session_ids = client
        .create_sessions_with_progress(
            CreateSession::builder()
                .start_slot(100)
                .end_slot(105)
                .parallel(true)
                .build(),
            |session_id| streamed.push(session_id),
        )
        .await
        .unwrap();

    assert_eq!(streamed, vec!["s1".to_string(), "s2".to_string()]);
    assert_eq!(session_ids, vec!["s1".to_string(), "s2".to_string()]);
    server.await.unwrap();
}

#[tokio::test]
async fn attaches_to_existing_session() {
    let (url, server) = spawn_server("k", |mut ws| {
        tokio::spawn(async move {
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };

            let req: BacktestRequest = serde_json::from_str(&text).unwrap();
            let BacktestRequest::AttachBacktestSession {
                session_id,
                last_sequence,
            } = req
            else {
                panic!("expected attach");
            };
            assert_eq!(session_id, "s1");
            assert_eq!(last_sequence, Some(7));

            eprintln!("server: sending session attached");
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionAttached {
                    session_id: "s1".to_string(),
                    rpc_endpoint: "http://rpc/s1".to_string(),
                    task_id: None,
                })
                .unwrap(),
            ))
            .await
            .unwrap();
        })
    })
    .await;

    let client = BacktestClient::builder().url(url).api_key("k").build();
    let session = client.attach_session("s1", Some(7)).await.unwrap();

    assert_eq!(session.session_id(), Some("s1"));
    assert_eq!(session.rpc_endpoint(), Some("http://rpc/s1"));
    server.await.unwrap();
}

#[tokio::test]
async fn tracks_last_sequence_from_sequenced_control_responses() {
    let (url, server) = spawn_server("k", |mut ws| {
        tokio::spawn(async move {
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };

            let req: BacktestRequest = serde_json::from_str(&text).unwrap();
            let BacktestRequest::AttachBacktestSession {
                session_id,
                last_sequence,
            } = req
            else {
                panic!("expected attach");
            };
            assert_eq!(session_id, "s1");
            assert_eq!(last_sequence, None);

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionAttached {
                    session_id: "s1".to_string(),
                    rpc_endpoint: "http://rpc/s1".to_string(),
                    task_id: None,
                })
                .unwrap(),
            ))
            .await
            .unwrap();

            ws.send(Message::Text(
                serde_json::to_string(&SequencedResponse {
                    seq_id: 41,
                    response: BacktestResponse::ReadyForContinue,
                })
                .unwrap(),
            ))
            .await
            .unwrap();

            ws.send(Message::Text(
                serde_json::to_string(&SequencedResponse {
                    seq_id: 42,
                    response: BacktestResponse::Status {
                        status: BacktestStatus::DecodedTransactions,
                    },
                })
                .unwrap(),
            ))
            .await
            .unwrap();
        })
    })
    .await;

    let client = BacktestClient::builder().url(url).api_key("k").build();
    let mut session = client.attach_session("s1", None).await.unwrap();

    assert_eq!(session.last_sequence(), None);
    let ready = session
        .ensure_ready(Some(Duration::from_secs(2)))
        .await
        .unwrap();
    assert_eq!(ready, ReadyOutcome::Ready);
    assert_eq!(session.last_sequence(), Some(41));

    session
        .wait_for_status(
            BacktestStatus::DecodedTransactions,
            Some(Duration::from_secs(2)),
        )
        .await
        .unwrap();
    assert_eq!(session.last_sequence(), Some(42));

    server.await.unwrap();
}

/// Read the next text frame from a control WS, skipping client keepalive
/// Ping/Pong frames (the managed control loop pings on its first tick).
async fn read_text(ws: &mut WebSocketStream<TcpStream>) -> String {
    loop {
        match ws.next().await.unwrap().unwrap() {
            Message::Text(text) => return text,
            Message::Ping(_) | Message::Pong(_) | Message::Frame(_) => {}
            other => panic!("expected text, got {other:?}"),
        }
    }
}

/// Send a `SessionEventV2` for one sub-session over the multiplexed control WS.
async fn send_session_event(
    ws: &mut WebSocketStream<TcpStream>,
    session_id: &str,
    seq_id: u64,
    event: SessionEventKind,
) {
    let response = BacktestResponse::SessionEventV2 {
        session_id: session_id.to_string(),
        seq_id,
        event,
    };
    ws.send(Message::Text(serde_json::to_string(&response).unwrap()))
        .await
        .unwrap();
}

/// Drive one sub-session to `Completed`, sending a `Continue` on each
/// `ReadyForContinue`. Returns the session id and completion summary.
async fn drive_sub_to_completion(
    mut session: ParallelSubSession,
) -> (String, Option<SessionSummary>) {
    loop {
        match session.next_event().await.unwrap() {
            ManagedEvent::ReadyForContinue => {
                session
                    .send_continue(ContinueParams {
                        advance_count: 100,
                        transactions: Vec::new(),
                        modify_account_states: Default::default(),
                    })
                    .await
                    .unwrap();
            }
            ManagedEvent::Completed { summary, .. } => {
                return (session.session_info().session_id.clone(), summary);
            }
            _ => {}
        }
    }
}

/// The server-side parallel multiplex path: one `CreateBacktestSession` with
/// `parallel: true` streams N `SessionCreated`s + `SessionsCreatedV2`, then
/// multiplexes per-session control events as `SessionEventV2`. The driver must
/// demultiplex events to the right sub-session, route each `Continue` as
/// `ContinueSessionV1`, and drive every sub-session to `Completed`.
#[tokio::test]
async fn parallel_multiplex_drives_all_sub_sessions_to_completion() {
    let (url, server) = spawn_server("k", |mut ws| {
        tokio::spawn(async move {
            let msg = ws.next().await.unwrap().unwrap();
            let Message::Text(text) = msg else {
                panic!("expected text");
            };
            let req: BacktestRequest = serde_json::from_str(&text).unwrap();
            let BacktestRequest::CreateBacktestSession(request) = req else {
                panic!("expected create");
            };
            let (_, parallel) = request.into_request_and_parallel();
            assert!(parallel, "create should request the parallel path");

            // Stream one SessionCreated + initial SlotNotification per sub-session.
            for (session_id, rpc, start) in [
                ("s1", "http://rpc/s1", 100u64),
                ("s2", "http://rpc/s2", 200u64),
            ] {
                ws.send(Message::Text(
                    serde_json::to_string(&BacktestResponse::SessionCreated {
                        session_id: session_id.to_string(),
                        rpc_endpoint: rpc.to_string(),
                        task_id: None,
                    })
                    .unwrap(),
                ))
                .await
                .unwrap();
                send_session_event(
                    &mut ws,
                    session_id,
                    1,
                    SessionEventKind::SlotNotification(start),
                )
                .await;
            }

            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionsCreatedV2 {
                    control_session_id: "parallel_test".to_string(),
                    session_ids: vec!["s1".to_string(), "s2".to_string()],
                    task_ids: Vec::new(),
                    start_slots: vec![100, 200],
                    end_slots: vec![199, 299],
                })
                .unwrap(),
            ))
            .await
            .unwrap();

            // Each sub-session becomes ready to continue.
            send_session_event(&mut ws, "s1", 2, SessionEventKind::ReadyForContinue).await;
            send_session_event(&mut ws, "s2", 2, SessionEventKind::ReadyForContinue).await;

            // Read each sub-session's ContinueSessionV1 (any order) and complete
            // it with a per-session summary.
            for _ in 0..2 {
                let text = read_text(&mut ws).await;
                let req: BacktestRequest = serde_json::from_str(&text).unwrap();
                let BacktestRequest::ContinueSessionV1(c) = req else {
                    panic!("expected continueSessionV1, got {req:?}");
                };
                let correct_simulation = if c.session_id == "s1" { 1 } else { 2 };
                send_session_event(
                    &mut ws,
                    &c.session_id,
                    3,
                    SessionEventKind::Completed {
                        summary: Some(SessionSummary {
                            correct_simulation,
                            ..Default::default()
                        }),
                    },
                )
                .await;
            }
        })
    })
    .await;

    let create = CreateSession::builder()
        .start_slot(100)
        .end_slot(299)
        .parallel(true)
        .build()
        .into_request()
        .unwrap();

    let mut parallel = ManagedParallelSession::start_with_cancel(
        url,
        "k".to_string(),
        create,
        CancellationToken::new(),
    )
    .await
    .unwrap();
    assert_eq!(parallel.control_session_id(), "parallel_test");

    let subs = parallel.take_sub_sessions();
    assert_eq!(subs.len(), 2);

    let mut handles = Vec::new();
    for sub in subs {
        handles.push(tokio::spawn(drive_sub_to_completion(sub)));
    }
    let mut completed = Vec::new();
    for handle in handles {
        completed.push(handle.await.unwrap());
    }
    completed.sort_by(|(a, _), (b, _)| a.cmp(b));
    let ids: Vec<&str> = completed.iter().map(|(id, _)| id.as_str()).collect();
    assert_eq!(ids, ["s1", "s2"]);

    for ((id, summary), expected) in completed.iter().zip([1, 2]) {
        let summary = summary
            .as_ref()
            .unwrap_or_else(|| panic!("sub-session {id} should carry a summary"));
        assert_eq!(summary.correct_simulation, expected);
    }

    parallel.shutdown().await;
    server.await.unwrap();
}

/// On a control-connection drop, the parallel manager must re-attach with
/// `AttachParallelControlSessionV2` carrying the per-session sequence cursors,
/// deduplicate replayed events, and drive the sub-session to completion.
#[tokio::test]
async fn parallel_multiplex_reconnects_and_dedups_replay() {
    let listener = TcpListener::bind("127.0.0.1:0").await.unwrap();
    let addr: SocketAddr = listener.local_addr().unwrap();
    let url = format!("ws://{addr}/backtest");

    let server = tokio::spawn(async move {
        // Connection 1: create one sub-session, deliver its initial slot, then drop.
        let (stream, _) = listener.accept().await.unwrap();
        let mut ws = accept_with_expected_api_key(stream, "k").await.unwrap();
        let _ = ws.next().await.unwrap().unwrap();
        ws.send(Message::Text(
            serde_json::to_string(&BacktestResponse::SessionCreated {
                session_id: "s1".to_string(),
                rpc_endpoint: "http://rpc/s1".to_string(),
                task_id: None,
            })
            .unwrap(),
        ))
        .await
        .unwrap();
        send_session_event(&mut ws, "s1", 1, SessionEventKind::SlotNotification(100)).await;
        ws.send(Message::Text(
            serde_json::to_string(&BacktestResponse::SessionsCreatedV2 {
                control_session_id: "p".to_string(),
                session_ids: vec!["s1".to_string()],
                task_ids: Vec::new(),
                start_slots: vec![100],
                end_slots: vec![199],
            })
            .unwrap(),
        ))
        .await
        .unwrap();
        // Abruptly drop the TCP connection to force a reconnect. (A WS close
        // handshake would block waiting for the client's echo, which the manager
        // does not send when it treats the drop as a connection loss.)
        drop(ws);

        // Connection 2: the client re-attaches with the seq cursor it has seen.
        let (stream, _) = listener.accept().await.unwrap();
        let mut ws = accept_with_expected_api_key(stream, "k").await.unwrap();
        let text = read_text(&mut ws).await;
        let req: BacktestRequest = serde_json::from_str(&text).unwrap();
        let BacktestRequest::AttachParallelControlSessionV2 {
            control_session_id,
            last_sequences,
        } = req
        else {
            panic!("expected attachParallelControlSessionV2, got {req:?}");
        };
        assert_eq!(control_session_id, "p");
        assert_eq!(
            last_sequences.get("s1"),
            Some(&1),
            "client should resume from the last seq it saw"
        );

        ws.send(Message::Text(
            serde_json::to_string(&BacktestResponse::ParallelSessionAttachedV2 {
                control_session_id: "p".to_string(),
                session_ids: vec!["s1".to_string()],
                task_ids: Vec::new(),
            })
            .unwrap(),
        ))
        .await
        .unwrap();

        // Replay the already-seen initial slot (must be deduped), then progress.
        send_session_event(&mut ws, "s1", 1, SessionEventKind::SlotNotification(100)).await;
        send_session_event(&mut ws, "s1", 2, SessionEventKind::ReadyForContinue).await;

        let text = read_text(&mut ws).await;
        let req: BacktestRequest = serde_json::from_str(&text).unwrap();
        let BacktestRequest::ContinueSessionV1(c) = req else {
            panic!("expected continueSessionV1, got {req:?}");
        };
        assert_eq!(c.session_id, "s1");
        send_session_event(
            &mut ws,
            "s1",
            3,
            SessionEventKind::Completed { summary: None },
        )
        .await;
    });

    let create = CreateSession::builder()
        .start_slot(100)
        .end_slot(199)
        .parallel(true)
        .build()
        .into_request()
        .unwrap();

    let mut parallel = ManagedParallelSession::start_with_cancel(
        url,
        "k".to_string(),
        create,
        CancellationToken::new(),
    )
    .await
    .unwrap();

    let mut subs = parallel.take_sub_sessions();
    assert_eq!(subs.len(), 1);
    let (session_id, _) = drive_sub_to_completion(subs.pop().unwrap()).await;
    assert_eq!(session_id, "s1");

    parallel.shutdown().await;
    server.await.unwrap();
}

/// A server that streams `SessionsCreatedV2` without per-sub-session ranges
/// (older peer: the `start_slots`/`end_slots` arrays default to empty) must be
/// rejected at create time. Binding a sub-session to a `(0, 0)` range would
/// silently degrade the run to advancing one slot per `Continue`, so the client
/// fails loudly instead.
#[tokio::test]
async fn parallel_multiplex_rejects_missing_sub_session_ranges() {
    let (url, server) = spawn_server("k", |mut ws| {
        tokio::spawn(async move {
            let _ = ws.next().await.unwrap().unwrap();
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionCreated {
                    session_id: "s1".to_string(),
                    rpc_endpoint: "http://rpc/s1".to_string(),
                    task_id: None,
                })
                .unwrap(),
            ))
            .await
            .unwrap();
            // No start_slots/end_slots — mimics a server too old to report them.
            ws.send(Message::Text(
                serde_json::to_string(&BacktestResponse::SessionsCreatedV2 {
                    control_session_id: "p".to_string(),
                    session_ids: vec!["s1".to_string()],
                    task_ids: Vec::new(),
                    start_slots: Vec::new(),
                    end_slots: Vec::new(),
                })
                .unwrap(),
            ))
            .await
            .unwrap();
        })
    })
    .await;

    let create = CreateSession::builder()
        .start_slot(100)
        .end_slot(199)
        .parallel(true)
        .build()
        .into_request()
        .unwrap();

    let result = ManagedParallelSession::start_with_cancel(
        url,
        "k".to_string(),
        create,
        CancellationToken::new(),
    )
    .await;

    let err = result
        .err()
        .expect("create should fail without sub-session ranges");
    assert!(
        matches!(err, ManagedSessionError::Create(_)),
        "expected a create error, got {err:?}"
    );

    server.await.unwrap();
}