strike48-connector 0.3.9

Rust SDK for the Strike48 Connector Framework
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
//! Per-registration runner for `MultiConnectorRunner`.
//!
//! Drives the lifecycle of one logical connector against a stream returned
//! by [`crate::multi::shared_channel::SharedChannel`]:
//!
//! 1. Build the `RegisterConnectorRequest` (mirrors the canonical fields used
//!    by the existing `ConnectorRunner::build_register_request`).
//! 2. Open a stream on the shared channel with the register request folded
//!    into the outbound stream (avoids the bidi-gRPC deadlock with elixir-grpc).
//! 3. Wait for `RegisterResponse`.
//! 4. Run a select loop:
//!      - inbound message -> dispatch (`ExecuteRequest`, `HeartbeatRequest`,
//!        `HeartbeatResponse`, ...).
//!      - heartbeat tick -> send `HeartbeatRequest`.
//!      - shutdown -> exit.
//!
//! Existing single-registration callers go through `ConnectorRunner` and are
//! unaffected.

use std::sync::Arc;
use std::sync::atomic::{AtomicBool, Ordering};
use std::time::{Duration, Instant, SystemTime, UNIX_EPOCH};

use futures::StreamExt;
use rand::{Rng, thread_rng};
use tokio::sync::{Mutex, RwLock, Semaphore, mpsc};
use tokio::time::{MissedTickBehavior, interval};

use crate::auth::OttProvider;
use crate::connector::{BaseConnector, ConnectorConfig};
use crate::error::{ConnectorError, Result};
use crate::logger::Logger;
use crate::multi::MultiTransportOptions;
use crate::multi::RegistrationKey;
use crate::multi::shared_channel::{SharedChannel, SharedStream};
use crate::types::ConnectorMetrics;
use crate::types::{ExecuteRequest as SdkExecuteRequest, ExecuteResponse, PayloadEncoding};
use crate::utils::{deserialize_payload, error_response, sanitize_identifier, serialize_payload};

use strike48_proto::proto::{
    self, ConnectorCapabilities, CredentialsIssued, HeartbeatRequest, HeartbeatResponse,
    InstanceMetadata, RegisterConnectorRequest, StreamMessage, stream_message,
};

/// Drives one logical registration against a shared transport.
pub(crate) struct RegistrationRunner {
    pub key: RegistrationKey,
    /// Wrapped so post-approval `CredentialsIssued` can update `auth_token`
    /// in place; subsequent reconnects pick up the new JWT.
    pub config: Arc<RwLock<ConnectorConfig>>,
    pub connector: Arc<dyn BaseConnector>,
    pub shared_channel: Arc<SharedChannel>,
    pub shutdown: Arc<AtomicBool>,
    pub metrics: Arc<Mutex<ConnectorMetrics>>,
    pub opts: MultiTransportOptions,
    /// Caps in-flight user `execute()` invocations for this registration.
    /// Mirrors the single-runner `max_concurrent_requests` pattern; protects
    /// the runtime from OOM under burst load.
    pub request_semaphore: Arc<Semaphore>,
    /// Session token granted by the server on a successful `RegisterResponse`.
    /// Sent back on subsequent in-stream re-registrations (e.g. after an
    /// OTT-driven `CredentialsIssued`) so the server can recognise this
    /// connector instance instead of treating it as a fresh registration.
    /// Mirrors the single-runner pattern in `connector.rs`.
    pub session_token: Arc<RwLock<Option<String>>>,
}

/// Default heartbeat interval — matches Matrix's session-reaper expectation.
/// Per-runner override lives on [`MultiTransportOptions::heartbeat_interval`].
const HEARTBEAT_INTERVAL: Duration = Duration::from_secs(30);
/// Default heartbeat watchdog timeout. Per-runner override lives on
/// [`MultiTransportOptions::heartbeat_timeout`].
const HEARTBEAT_TIMEOUT: Duration = Duration::from_secs(45);
const SHUTDOWN_POLL: Duration = Duration::from_millis(100);
/// Granularity for shutdown-aware sleep so reconnect backoff can be
/// interrupted promptly.
const RECONNECT_POLL: Duration = Duration::from_millis(50);

#[derive(Debug)]
enum StreamOutcome {
    Shutdown,
    ServerClosed,
    StreamError(String),
    HeartbeatTimeout,
    OutboundClosed,
}

impl StreamOutcome {
    fn summary(&self) -> &'static str {
        match self {
            StreamOutcome::Shutdown => "shutdown",
            StreamOutcome::ServerClosed => "server-closed",
            StreamOutcome::StreamError(_) => "stream-error",
            StreamOutcome::HeartbeatTimeout => "heartbeat-timeout",
            StreamOutcome::OutboundClosed => "outbound-closed",
        }
    }
}

impl std::fmt::Display for StreamOutcome {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            StreamOutcome::StreamError(s) => write!(f, "stream-error: {s}"),
            other => write!(f, "{}", other.summary()),
        }
    }
}

/// Compute exponential backoff with jitter, hard-capped at `max_backoff_delay_ms`.
///
/// Order is intentional: scale exponentially → add jitter → clamp to the cap.
/// The cap applies to the post-jitter value so the effective max wait is never
/// `max_backoff_delay_ms + reconnect_jitter_ms`; some operators size the cap
/// against an SLA and depend on it being a true upper bound.
fn compute_backoff(opts: &MultiTransportOptions, attempt: u32) -> Duration {
    let base = opts.reconnect_delay_ms;
    let max = opts.max_backoff_delay_ms;
    let exp = (attempt.saturating_sub(1)).min(20);
    let scaled = base.saturating_mul(1u64 << exp);
    let jitter = if opts.reconnect_jitter_ms > 0 {
        thread_rng().gen_range(0..=opts.reconnect_jitter_ms)
    } else {
        0
    };
    let with_jitter = scaled.saturating_add(jitter);
    Duration::from_millis(with_jitter.min(max))
}

/// Reset the in-stream heartbeat watchdog timestamp to `now`.
///
/// Extracted as a free function so the post-OTT heartbeat-reset path can be
/// regression-tested without standing up a Keycloak / Matrix server.
fn bump_heartbeat(last_heartbeat_response: &mut Instant) {
    *last_heartbeat_response = Instant::now();
}

/// Sleep for `total` while polling the shutdown flag every `RECONNECT_POLL`.
/// Returns `true` if the full sleep completed, `false` if shutdown fired.
async fn sleep_with_shutdown(total: Duration, shutdown: &Arc<AtomicBool>) -> bool {
    let deadline = Instant::now() + total;
    loop {
        if shutdown.load(Ordering::SeqCst) {
            return false;
        }
        let remaining = deadline.saturating_duration_since(Instant::now());
        if remaining.is_zero() {
            return true;
        }
        let step = remaining.min(RECONNECT_POLL);
        tokio::time::sleep(step).await;
    }
}

impl RegistrationRunner {
    pub async fn run(self) -> Result<()> {
        let logger = Logger::new("multi/registration");

        if self.shutdown.load(Ordering::SeqCst) {
            logger.debug(&format!(
                "registration {} skipped: shutdown signalled before run",
                self.key
            ));
            return Ok(());
        }

        let mut attempt: u32 = 0;
        let mut ever_registered = false;

        loop {
            if self.shutdown.load(Ordering::SeqCst) {
                logger.debug(&format!(
                    "registration {}: shutdown signalled, exiting reconnect loop",
                    self.key
                ));
                return Ok(());
            }

            // Open a fresh stream (lazily acquires a channel from the pool).
            let register = {
                let cfg = self.config.read().await;
                let token = self.session_token.read().await.clone().unwrap_or_default();
                build_register_message_with_token(&cfg, self.connector.as_ref(), &token)
            };
            let stream = match self.shared_channel.open_stream(register, 64).await {
                Ok(s) => s,
                Err(e) => {
                    logger.warn(&format!(
                        "registration {}: open_stream failed: {e}",
                        self.key
                    ));
                    if !self.opts.reconnect_enabled {
                        return Ok(());
                    }
                    attempt = attempt.saturating_add(1);
                    let backoff = compute_backoff(&self.opts, attempt);
                    {
                        let mut m = self.metrics.lock().await;
                        m.reconnection_attempts += 1;
                        m.current_backoff_ms = backoff.as_millis() as u64;
                    }
                    if !sleep_with_shutdown(backoff, &self.shutdown).await {
                        return Ok(());
                    }
                    continue;
                }
            };

            // Wait for the register response, racing against shutdown so a
            // server that accepts the bidi stream but never replies cannot
            // wedge us until the gRPC keepalive (~40s) fires.
            let mut stream = stream;
            let response_deadline =
                Duration::from_millis(self.opts.connect_timeout_ms.max(1)).saturating_mul(3);
            match wait_for_register_response(&mut stream.inbound, &self.shutdown, response_deadline)
                .await
            {
                Ok(accepted) => {
                    let arn = &accepted.connector_arn;
                    logger.info(&format!("registration {} registered (arn={arn})", self.key));
                    if !accepted.session_token.is_empty() {
                        *self.session_token.write().await = Some(accepted.session_token.clone());
                    }
                    {
                        let mut m = self.metrics.lock().await;
                        m.last_connected_at_ms = Some(now_ms());
                        m.current_backoff_ms = 0;
                        if ever_registered {
                            m.successful_reconnects += 1;
                        }
                    }
                    ever_registered = true;
                    attempt = 0;
                }
                Err(e) => {
                    logger.warn(&format!("registration {}: register failed: {e}", self.key));
                    if !self.opts.reconnect_enabled {
                        return Ok(());
                    }
                    attempt = attempt.saturating_add(1);
                    let backoff = compute_backoff(&self.opts, attempt);
                    {
                        let mut m = self.metrics.lock().await;
                        m.reconnection_attempts += 1;
                        m.current_backoff_ms = backoff.as_millis() as u64;
                    }
                    if !sleep_with_shutdown(backoff, &self.shutdown).await {
                        return Ok(());
                    }
                    continue;
                }
            }

            // Drive the stream until it errors / closes / shutdown fires.
            let outcome = self.drive_stream(stream, &logger).await;
            {
                let mut m = self.metrics.lock().await;
                m.total_disconnects += 1;
                m.last_disconnected_at_ms = Some(now_ms());
                m.last_disconnect_reason = Some(outcome.summary().to_string());
            }

            // Shutdown observed inside drive_stream → exit cleanly.
            if self.shutdown.load(Ordering::SeqCst) {
                return Ok(());
            }

            if !self.opts.reconnect_enabled {
                logger.debug(&format!(
                    "registration {}: reconnect disabled, exiting after {outcome}",
                    self.key
                ));
                return Ok(());
            }

            attempt = attempt.saturating_add(1);
            let backoff = compute_backoff(&self.opts, attempt);
            logger.warn(&format!(
                "registration {}: stream ended ({outcome}); reconnecting in {}ms (attempt {})",
                self.key,
                backoff.as_millis(),
                attempt
            ));
            {
                let mut m = self.metrics.lock().await;
                m.reconnection_attempts += 1;
                m.current_backoff_ms = backoff.as_millis() as u64;
            }
            if !sleep_with_shutdown(backoff, &self.shutdown).await {
                return Ok(());
            }
        }
    }

    /// Main select loop: dispatch inbound, send heartbeats, observe shutdown.
    /// Returns the reason the loop exited so the outer reconnect loop can
    /// log/decide whether to retry.
    async fn drive_stream(&self, stream: SharedStream, logger: &Logger) -> StreamOutcome {
        let SharedStream {
            tx, mut inbound, ..
        } = stream;

        let mut last_heartbeat_response = Instant::now();
        let hb_interval_dur = self.opts.heartbeat_interval.unwrap_or(HEARTBEAT_INTERVAL);
        let hb_timeout_dur = self.opts.heartbeat_timeout.unwrap_or(HEARTBEAT_TIMEOUT);
        let mut hb_interval = interval(hb_interval_dur);
        // If the runtime stalls (e.g. user `execute()` blocks the runtime
        // briefly) we don't want to emit a burst of catch-up heartbeat ticks.
        // `Skip` collapses missed ticks into one — heartbeats are about
        // liveness, not delivery exactly N per interval.
        hb_interval.set_missed_tick_behavior(MissedTickBehavior::Skip);
        // Skip the immediate tick — first heartbeat fires after one full interval.
        hb_interval.tick().await;

        loop {
            if self.shutdown.load(Ordering::SeqCst) {
                logger.debug(&format!(
                    "registration {}: shutting down on signal",
                    self.key
                ));
                return StreamOutcome::Shutdown;
            }

            tokio::select! {
                msg_opt = inbound.next() => {
                    match msg_opt {
                        Some(Ok(msg)) => {
                            if let Some(outcome) = self
                                .dispatch_inbound(msg, &tx, &mut last_heartbeat_response, logger)
                                .await
                            {
                                return outcome;
                            }
                        }
                        Some(Err(status)) => {
                            logger.warn(&format!(
                                "registration {}: stream error: {status}",
                                self.key
                            ));
                            return StreamOutcome::StreamError(status.to_string());
                        }
                        None => {
                            logger.debug(&format!(
                                "registration {}: server closed stream",
                                self.key
                            ));
                            return StreamOutcome::ServerClosed;
                        }
                    }
                }
                _ = hb_interval.tick() => {
                    if last_heartbeat_response.elapsed() > hb_timeout_dur {
                        logger.warn(&format!(
                            "registration {}: no heartbeat response for {}s, presumed dead",
                            self.key,
                            last_heartbeat_response.elapsed().as_secs()
                        ));
                        return StreamOutcome::HeartbeatTimeout;
                    }
                    let hb = StreamMessage {
                        message: Some(stream_message::Message::HeartbeatRequest(HeartbeatRequest {
                            gateway_id: String::new(),
                            timestamp_ms: now_ms() as i64,
                        })),
                    };
                    if tx.send(hb).await.is_err() {
                        logger.debug(&format!(
                            "registration {}: outbound channel closed; exiting",
                            self.key
                        ));
                        return StreamOutcome::OutboundClosed;
                    }
                }
                _ = tokio::time::sleep(SHUTDOWN_POLL) => {
                    // Re-check shutdown flag at the top of the loop.
                }
            }
        }
    }

    /// Dispatch one inbound message. Returns `Some(outcome)` if the drive
    /// loop should exit (e.g. server-rejected approval that needs a fresh
    /// register cycle, or post-credentials in-stream re-register failed and
    /// we want the outer loop to reconnect with the new JWT).
    async fn dispatch_inbound(
        &self,
        msg: StreamMessage,
        tx: &mpsc::Sender<StreamMessage>,
        last_heartbeat_response: &mut Instant,
        logger: &Logger,
    ) -> Option<StreamOutcome> {
        match msg.message {
            Some(stream_message::Message::ExecuteRequest(req)) => {
                let request = SdkExecuteRequest {
                    request_id: req.request_id.clone(),
                    payload: req.payload.clone(),
                    payload_encoding: PayloadEncoding::from(req.payload_encoding),
                    context: req.context.clone(),
                    capability_id: if req.capability_id.is_empty() {
                        None
                    } else {
                        Some(req.capability_id.clone())
                    },
                };

                let connector = self.connector.clone();
                let metrics = self.metrics.clone();
                let tx = tx.clone();
                let key = self.key.clone();
                let semaphore = self.request_semaphore.clone();
                let logger = Logger::new("multi/registration/execute");

                tokio::spawn(async move {
                    // Acquire a permit BEFORE doing user work; released on
                    // task exit. If the semaphore is closed (only happens
                    // on runner teardown), drop the request silently.
                    let permit = match semaphore.acquire_owned().await {
                        Ok(p) => p,
                        Err(_) => {
                            logger.debug(&format!(
                                "registration {key}: request semaphore closed, dropping execute"
                            ));
                            return;
                        }
                    };
                    if let Err(e) =
                        handle_execute(connector, request, tx, metrics, &logger, &key).await
                    {
                        logger.error(
                            &format!("registration {key}: execute dispatch failed"),
                            &e.to_string(),
                        );
                    }
                    drop(permit);
                });
                None
            }
            Some(stream_message::Message::HeartbeatRequest(_)) => {
                let resp = StreamMessage {
                    message: Some(stream_message::Message::HeartbeatResponse(
                        HeartbeatResponse {
                            gateway_id: String::new(),
                            timestamp_ms: now_ms() as i64,
                            should_reconnect: false,
                        },
                    )),
                };
                let _ = tx.send(resp).await;
                None
            }
            Some(stream_message::Message::HeartbeatResponse(_)) => {
                *last_heartbeat_response = Instant::now();
                None
            }
            Some(stream_message::Message::RegisterResponse(resp)) => {
                // Post-approval JWT re-registration: the server sends another
                // RegisterResponse on the same stream after we re-register
                // with the JWT. Log the upgrade and persist any session token.
                if resp.success {
                    logger.info(&format!(
                        "registration {}: in-stream re-register succeeded (arn={})",
                        self.key, resp.connector_arn
                    ));
                    if !resp.session_token.is_empty() {
                        *self.session_token.write().await = Some(resp.session_token.clone());
                    }
                    let mut m = self.metrics.lock().await;
                    m.last_connected_at_ms = Some(now_ms());
                } else {
                    logger.warn(&format!(
                        "registration {}: in-stream re-register failed: status='{}' error='{}'",
                        self.key, resp.status, resp.error
                    ));
                }
                None
            }
            Some(stream_message::Message::CredentialsIssued(creds)) => {
                self.handle_credentials_issued(creds, tx, last_heartbeat_response, logger)
                    .await
            }
            Some(stream_message::Message::ApprovalNotification(notif)) => {
                let status = proto::RegistrationStatus::try_from(notif.status);
                match status {
                    Ok(proto::RegistrationStatus::Approved) => {
                        logger.info(&format!(
                            "registration {}: approved by admin (CredentialsIssued imminent)",
                            self.key
                        ));
                        None
                    }
                    Ok(proto::RegistrationStatus::Pending) => {
                        logger.info(&format!(
                            "registration {}: pending approval — {}",
                            self.key,
                            if notif.message.is_empty() {
                                "awaiting admin"
                            } else {
                                &notif.message
                            }
                        ));
                        None
                    }
                    Ok(proto::RegistrationStatus::Rejected) => {
                        logger.warn(&format!(
                            "registration {}: REJECTED by admin — {}",
                            self.key,
                            if notif.message.is_empty() {
                                "no reason given"
                            } else {
                                &notif.message
                            }
                        ));
                        // Force a reconnect so the next register cycle goes
                        // back through pending approval. The OTT provider is
                        // rebuilt per `CredentialsIssued`, so there is no
                        // cached credential state to clear here.
                        Some(StreamOutcome::ServerClosed)
                    }
                    _ => {
                        logger.debug(&format!(
                            "registration {}: ApprovalNotification status={} message={}",
                            self.key, notif.status, notif.message
                        ));
                        None
                    }
                }
            }
            Some(other) => {
                // InvokeRequest/Response and WS subprotocol variants are not
                // wired yet; log at debug. Tracked as follow-up work.
                logger.debug(&format!(
                    "registration {}: ignoring inbound variant {:?}",
                    self.key,
                    std::mem::discriminant(&other)
                ));
                None
            }
            None => {
                logger.debug(&format!("registration {}: empty inbound message", self.key));
                None
            }
        }
    }

    /// Handle `CredentialsIssued`: do the OTT exchange against the Matrix
    /// HTTP API, persist the JWT in `config.auth_token`, and re-register on
    /// the same stream so the server can transition this connector from
    /// pending to registered without a full reconnect.
    async fn handle_credentials_issued(
        &self,
        creds: CredentialsIssued,
        tx: &mpsc::Sender<StreamMessage>,
        last_heartbeat_response: &mut Instant,
        logger: &Logger,
    ) -> Option<StreamOutcome> {
        if creds.ott.is_empty() {
            logger.error(
                &format!("registration {}: CredentialsIssued without OTT", self.key),
                "",
            );
            return None;
        }
        if creds.matrix_api_url.is_empty() {
            logger.error(
                &format!(
                    "registration {}: CredentialsIssued without matrix_api_url",
                    self.key
                ),
                "",
            );
            return None;
        }

        let (instance_id, connector_type) = (
            self.config.read().await.instance_id.clone(),
            self.connector.connector_type().to_string(),
        );

        let mut provider =
            OttProvider::new(Some(connector_type.clone()), Some(instance_id.clone()));

        match provider
            .register_public_key_with_ott_data(
                &creds.ott,
                &creds.matrix_api_url,
                &creds.register_url,
                &connector_type,
                Some(&instance_id),
            )
            .await
        {
            Ok(response) => {
                logger.debug(&format!(
                    "registration {}: registered public key with OTT (client_id={})",
                    self.key, response.client_id
                ));
            }
            Err(e) => {
                logger.error(
                    &format!(
                        "registration {}: failed to complete OTT registration",
                        self.key
                    ),
                    &e.to_string(),
                );
                return None;
            }
        }

        let jwt_token = match provider.get_token().await {
            Ok(t) => t,
            Err(e) => {
                logger.error(
                    &format!(
                        "registration {}: failed to fetch JWT after OTT exchange",
                        self.key
                    ),
                    &e.to_string(),
                );
                return None;
            }
        };

        // Persist the JWT in our config so future reconnects use it.
        self.config.write().await.auth_token = jwt_token.clone();
        // The provider itself is intentionally dropped here. We rebuild a
        // fresh OttProvider on every `CredentialsIssued` because the keypair
        // and Keycloak client_id are scoped to this approval cycle.
        drop(provider);

        // Re-register on the same stream. The server will respond with a
        // success RegisterResponse, which the dispatch loop logs.
        let register = {
            let cfg = self.config.read().await;
            let token = self.session_token.read().await.clone().unwrap_or_default();
            build_register_message_with_token(&cfg, self.connector.as_ref(), &token)
        };
        match tx.send(register).await {
            Ok(()) => {
                // The OTT/Keycloak HTTPS round-trip can take many seconds
                // (observed up to ~22s in the wild). Without resetting the
                // heartbeat watchdog, the very next heartbeat tick after this
                // function returns can find that more than HEARTBEAT_TIMEOUT
                // (45s) has elapsed since the last `HeartbeatResponse` —
                // because we were busy doing the OTT exchange — and tear the
                // stream down immediately after a *successful* re-register.
                bump_heartbeat(last_heartbeat_response);
                logger.info(&format!(
                    "registration {}: sent JWT re-registration on existing stream",
                    self.key
                ));
                None
            }
            Err(e) => {
                logger.warn(&format!(
                    "registration {}: in-stream re-register send failed: {e}; reconnecting",
                    self.key
                ));
                Some(StreamOutcome::OutboundClosed)
            }
        }
    }
}

async fn handle_execute(
    connector: Arc<dyn BaseConnector>,
    request: SdkExecuteRequest,
    tx: mpsc::Sender<StreamMessage>,
    metrics: Arc<Mutex<ConnectorMetrics>>,
    logger: &Logger,
    key: &RegistrationKey,
) -> Result<()> {
    let start = Instant::now();
    {
        let mut m = metrics.lock().await;
        m.requests_received += 1;
        m.bytes_received += request.payload.len() as u64;
        m.last_request_at_ms = chrono::Utc::now().timestamp_millis().max(0) as u64;
    }

    let response = match deserialize_payload::<serde_json::Value>(
        &request.payload,
        request.payload_encoding,
    ) {
        Ok(req_data) => match connector
            .execute_with_context(req_data, request.capability_id.as_deref(), &request.context)
            .await
        {
            Ok(resp_data) => match serialize_payload(&resp_data, PayloadEncoding::Json) {
                Ok(payload) => {
                    let duration_ms = start.elapsed().as_millis() as u64;
                    {
                        let mut m = metrics.lock().await;
                        m.requests_processed += 1;
                        m.bytes_sent += payload.len() as u64;
                        m.total_duration_ms += duration_ms;
                    }
                    ExecuteResponse {
                        request_id: request.request_id,
                        success: true,
                        payload,
                        payload_encoding: PayloadEncoding::Json,
                        error: String::new(),
                        duration_ms,
                    }
                }
                Err(e) => {
                    logger.error(
                        &format!("registration {key}: serialization failed"),
                        &e.to_string(),
                    );
                    {
                        let mut m = metrics.lock().await;
                        m.requests_failed += 1;
                    }
                    ExecuteResponse {
                        request_id: request.request_id,
                        success: false,
                        payload: error_response(&e.to_string()).unwrap_or_default(),
                        payload_encoding: PayloadEncoding::Json,
                        error: e.to_string(),
                        duration_ms: start.elapsed().as_millis() as u64,
                    }
                }
            },
            Err(e) => {
                logger.error(
                    &format!("registration {key}: execute failed"),
                    &e.to_string(),
                );
                {
                    let mut m = metrics.lock().await;
                    m.requests_failed += 1;
                }
                ExecuteResponse {
                    request_id: request.request_id,
                    success: false,
                    payload: error_response(&e.to_string()).unwrap_or_default(),
                    payload_encoding: PayloadEncoding::Json,
                    error: e.to_string(),
                    duration_ms: start.elapsed().as_millis() as u64,
                }
            }
        },
        Err(e) => {
            logger.error(
                &format!("registration {key}: deserialization failed"),
                &e.to_string(),
            );
            {
                let mut m = metrics.lock().await;
                m.requests_failed += 1;
            }
            ExecuteResponse {
                request_id: request.request_id,
                success: false,
                payload: error_response(&e.to_string()).unwrap_or_default(),
                payload_encoding: PayloadEncoding::Json,
                error: e.to_string(),
                duration_ms: start.elapsed().as_millis() as u64,
            }
        }
    };

    let message = StreamMessage {
        message: Some(stream_message::Message::ExecuteResponse(
            proto::ExecuteResponse {
                request_id: response.request_id,
                success: response.success,
                payload: response.payload,
                payload_encoding: response.payload_encoding as i32,
                error: response.error,
                duration_ms: response.duration_ms as i64,
            },
        )),
    };

    tx.send(message).await.map_err(|e| {
        ConnectorError::StreamError(format!("failed to send execute response: {e}"))
    })?;
    Ok(())
}

fn now_ms() -> u64 {
    SystemTime::now()
        .duration_since(UNIX_EPOCH)
        .unwrap_or_default()
        .as_millis() as u64
}

fn build_register_message_with_token(
    config: &ConnectorConfig,
    connector: &dyn BaseConnector,
    session_token: &str,
) -> StreamMessage {
    let mut msg = build_register_message(config, connector);
    if let Some(stream_message::Message::RegisterRequest(ref mut req)) = msg.message {
        req.session_token = session_token.to_string();
    }
    msg
}

fn build_register_message(
    config: &ConnectorConfig,
    connector: &dyn BaseConnector,
) -> StreamMessage {
    let capabilities = ConnectorCapabilities {
        connector_type: connector.connector_type().to_string(),
        version: connector.version().to_string(),
        supported_encodings: connector
            .supported_encodings()
            .iter()
            .map(|e| *e as i32)
            .collect(),
        behaviors: connector.behaviors().iter().map(|b| *b as i32).collect(),
        metadata: crate::connector::build_registration_metadata(connector),
        task_types: connector
            .capabilities()
            .iter()
            .map(|tt| proto::TaskTypeSchema {
                task_type_id: tt.task_type_id.clone(),
                name: tt.name.clone(),
                description: tt.description.clone(),
                category: tt.category.clone(),
                icon: tt.icon.clone(),
                input_schema_json: tt.input_schema_json.clone(),
                output_schema_json: tt.output_schema_json.clone(),
            })
            .collect(),
    };

    let sanitized_instance = sanitize_identifier(&config.instance_id);

    let mut metadata = config.metadata.clone();
    crate::sdk_metadata::merge_into(
        &mut metadata,
        &config.transport_type.to_string(),
        config.use_tls,
    );

    let instance_metadata = Some(InstanceMetadata {
        display_name: config
            .display_name
            .clone()
            .unwrap_or_else(|| sanitized_instance.clone()),
        tags: config.tags.clone(),
        metadata,
    });

    let request = RegisterConnectorRequest {
        tenant_id: sanitize_identifier(&config.tenant_id),
        connector_type: sanitize_identifier(connector.connector_type()),
        instance_id: sanitized_instance,
        capabilities: Some(capabilities),
        jwt_token: config.auth_token.clone(),
        session_token: String::new(),
        scope: 0,
        instance_metadata,
    };

    StreamMessage {
        message: Some(stream_message::Message::RegisterRequest(request)),
    }
}

/// Outcome of a successful `RegisterResponse`. Includes the connector ARN
/// (echoed back in logs) and the session token the server allocated, which
/// the runner persists for subsequent in-stream re-registers.
#[derive(Debug, Clone)]
pub(crate) struct RegisterAccepted {
    pub connector_arn: String,
    pub session_token: String,
}

async fn wait_for_register_response(
    inbound: &mut tonic::Streaming<StreamMessage>,
    shutdown: &Arc<AtomicBool>,
    deadline: Duration,
) -> Result<RegisterAccepted> {
    let started = Instant::now();
    loop {
        let remaining = deadline.saturating_sub(started.elapsed());
        if remaining.is_zero() {
            return Err(ConnectorError::Timeout(
                "register response not received within deadline".into(),
            ));
        }
        tokio::select! {
            biased;
            _ = wait_for_shutdown(shutdown) => {
                return Err(ConnectorError::StreamError(
                    "shutdown signalled while waiting for register response".into(),
                ));
            }
            _ = tokio::time::sleep(remaining) => {
                return Err(ConnectorError::Timeout(
                    "register response not received within deadline".into(),
                ));
            }
            inbound_result = inbound.next() => match inbound_result {
                None => {
                    return Err(ConnectorError::StreamError(
                        "stream closed before register response".into(),
                    ));
                }
                Some(Err(status)) => {
                    return Err(ConnectorError::Grpc(Box::new(status)));
                }
                Some(Ok(msg)) => match msg.message {
                    Some(stream_message::Message::RegisterResponse(resp)) => {
                        if !resp.success {
                            return Err(ConnectorError::RegistrationError(format!(
                                "register failed: status='{}' error='{}'",
                                resp.status, resp.error
                            )));
                        }
                        return Ok(RegisterAccepted {
                            connector_arn: resp.connector_arn,
                            session_token: resp.session_token,
                        });
                    }
                    Some(_) => continue,
                    None => continue,
                },
            },
        }
    }
}

/// Block until the shutdown flag is set. Polls at `RECONNECT_POLL` cadence so
/// `tokio::select!` can race it against any other future without busy-looping.
async fn wait_for_shutdown(shutdown: &Arc<AtomicBool>) {
    while !shutdown.load(Ordering::SeqCst) {
        tokio::time::sleep(RECONNECT_POLL).await;
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::multi::shared_channel::SharedChannel;
    use proto::ApprovalNotification;
    use std::pin::Pin;
    use tokio::sync::Semaphore;

    struct NoopConn;
    impl BaseConnector for NoopConn {
        fn connector_type(&self) -> &str {
            "test_conn"
        }
        fn version(&self) -> &str {
            "0.0.0"
        }
        fn execute(
            &self,
            _: serde_json::Value,
            _: Option<&str>,
        ) -> Pin<Box<dyn std::future::Future<Output = Result<serde_json::Value>> + Send + '_>>
        {
            Box::pin(async { Ok(serde_json::json!({})) })
        }
    }

    fn make_runner_for_dispatch_tests() -> RegistrationRunner {
        let key = RegistrationKey {
            tenant_id: "t".into(),
            connector_type: "test_conn".into(),
            instance_id: "i".into(),
        };
        let opts = MultiTransportOptions::default();
        RegistrationRunner {
            key,
            config: Arc::new(RwLock::new(crate::connector::ConnectorConfig::default())),
            connector: Arc::new(NoopConn),
            shared_channel: Arc::new(SharedChannel::new(opts.clone())),
            shutdown: Arc::new(AtomicBool::new(false)),
            metrics: Arc::new(Mutex::new(ConnectorMetrics::default())),
            opts,
            request_semaphore: Arc::new(Semaphore::new(8)),
            session_token: Arc::new(RwLock::new(None)),
        }
    }

    fn opts_for_backoff(base: u64, max: u64, jitter: u64) -> MultiTransportOptions {
        MultiTransportOptions {
            reconnect_delay_ms: base,
            max_backoff_delay_ms: max,
            reconnect_jitter_ms: jitter,
            ..MultiTransportOptions::default()
        }
    }

    #[test]
    fn backoff_never_exceeds_max_even_with_jitter() {
        // Effective max delay must be the cap; jitter must NOT push the result
        // past `max_backoff_delay_ms`. With base=500ms, max=1_000ms,
        // jitter=10_000ms the previous (jitter-after-cap) implementation could
        // return up to 11s.
        let opts = opts_for_backoff(500, 1_000, 10_000);

        // Sample many attempts to exercise the jitter range deterministically.
        for attempt in 1u32..=64 {
            for _ in 0..32 {
                let d = compute_backoff(&opts, attempt);
                assert!(
                    d.as_millis() as u64 <= opts.max_backoff_delay_ms,
                    "compute_backoff(attempt={attempt}) = {}ms exceeds cap {}ms",
                    d.as_millis(),
                    opts.max_backoff_delay_ms
                );
            }
        }
    }

    #[test]
    fn backoff_zero_jitter_is_capped_exactly() {
        let opts = opts_for_backoff(500, 1_000, 0);
        // attempt 1 = base, attempt 2 = 2*base, attempt 3 onwards saturates at cap
        assert_eq!(compute_backoff(&opts, 1).as_millis(), 500);
        assert_eq!(compute_backoff(&opts, 2).as_millis(), 1_000);
        assert_eq!(compute_backoff(&opts, 8).as_millis(), 1_000);
    }

    #[test]
    fn bump_heartbeat_moves_timestamp_forward() {
        // Simulates the scenario fixed in handle_credentials_issued: an old
        // heartbeat instant from before a slow OTT exchange must be advanced
        // so the very next heartbeat tick does not falsely trip the timeout.
        let original = Instant::now() - Duration::from_secs(120);
        let mut ts = original;
        // Sanity: starting timestamp is in the past.
        assert!(original.elapsed() >= Duration::from_secs(120));

        bump_heartbeat(&mut ts);

        assert!(
            ts > original,
            "bump_heartbeat must advance the watchdog timestamp"
        );
        // After bump, the new timestamp must be very recent (within a small
        // wall-clock window). 5 seconds is safe slop for slow CI hosts.
        assert!(
            ts.elapsed() < Duration::from_secs(5),
            "bump_heartbeat must reset to ~now"
        );
    }

    #[tokio::test]
    async fn dispatch_heartbeat_request_replies_with_response() {
        let runner = make_runner_for_dispatch_tests();
        let (tx, mut rx) = mpsc::channel::<StreamMessage>(8);
        let mut last_hb = Instant::now();
        let logger = Logger::new("test");

        let msg = StreamMessage {
            message: Some(stream_message::Message::HeartbeatRequest(
                HeartbeatRequest {
                    gateway_id: "gw1".into(),
                    timestamp_ms: 1234,
                },
            )),
        };

        let outcome = runner
            .dispatch_inbound(msg, &tx, &mut last_hb, &logger)
            .await;
        assert!(
            outcome.is_none(),
            "HeartbeatRequest must NOT terminate the dispatch loop"
        );

        let resp = rx
            .try_recv()
            .expect("must reply to inbound HeartbeatRequest");
        match resp.message {
            Some(stream_message::Message::HeartbeatResponse(_)) => {}
            other => panic!("expected HeartbeatResponse, got {other:?}"),
        }
    }

    #[tokio::test]
    async fn dispatch_heartbeat_response_advances_watchdog() {
        let runner = make_runner_for_dispatch_tests();
        let (tx, _rx) = mpsc::channel::<StreamMessage>(8);
        let mut last_hb = Instant::now() - Duration::from_secs(60);
        let before = last_hb;
        let logger = Logger::new("test");

        let msg = StreamMessage {
            message: Some(stream_message::Message::HeartbeatResponse(
                HeartbeatResponse {
                    gateway_id: String::new(),
                    timestamp_ms: 0,
                    should_reconnect: false,
                },
            )),
        };
        let outcome = runner
            .dispatch_inbound(msg, &tx, &mut last_hb, &logger)
            .await;
        assert!(outcome.is_none());
        assert!(
            last_hb > before,
            "HeartbeatResponse must reset the watchdog"
        );
    }

    #[tokio::test]
    async fn dispatch_approval_pending_does_not_close_stream() {
        let runner = make_runner_for_dispatch_tests();
        let (tx, _rx) = mpsc::channel::<StreamMessage>(8);
        let mut last_hb = Instant::now();
        let logger = Logger::new("test");

        let msg = StreamMessage {
            message: Some(stream_message::Message::ApprovalNotification(
                ApprovalNotification {
                    status: proto::RegistrationStatus::Pending as i32,
                    message: "awaiting admin".into(),
                    ..Default::default()
                },
            )),
        };
        let outcome = runner
            .dispatch_inbound(msg, &tx, &mut last_hb, &logger)
            .await;
        assert!(
            outcome.is_none(),
            "Pending approval must not terminate the stream"
        );
    }

    #[tokio::test]
    async fn dispatch_approval_approved_does_not_close_stream() {
        let runner = make_runner_for_dispatch_tests();
        let (tx, _rx) = mpsc::channel::<StreamMessage>(8);
        let mut last_hb = Instant::now();
        let logger = Logger::new("test");

        let msg = StreamMessage {
            message: Some(stream_message::Message::ApprovalNotification(
                ApprovalNotification {
                    status: proto::RegistrationStatus::Approved as i32,
                    ..Default::default()
                },
            )),
        };
        let outcome = runner
            .dispatch_inbound(msg, &tx, &mut last_hb, &logger)
            .await;
        assert!(
            outcome.is_none(),
            "Approved must not terminate the stream — CredentialsIssued follows"
        );
    }

    #[tokio::test]
    async fn dispatch_approval_rejected_returns_server_closed() {
        let runner = make_runner_for_dispatch_tests();
        let (tx, _rx) = mpsc::channel::<StreamMessage>(8);
        let mut last_hb = Instant::now();
        let logger = Logger::new("test");

        let msg = StreamMessage {
            message: Some(stream_message::Message::ApprovalNotification(
                ApprovalNotification {
                    status: proto::RegistrationStatus::Rejected as i32,
                    message: "not allowed".into(),
                    ..Default::default()
                },
            )),
        };
        let outcome = runner
            .dispatch_inbound(msg, &tx, &mut last_hb, &logger)
            .await;
        assert!(
            matches!(outcome, Some(StreamOutcome::ServerClosed)),
            "Rejected approval must end the stream so we restart through pending"
        );
    }

    #[tokio::test]
    async fn dispatch_empty_or_unknown_message_is_no_op() {
        let runner = make_runner_for_dispatch_tests();
        let (tx, _rx) = mpsc::channel::<StreamMessage>(8);
        let mut last_hb = Instant::now();
        let logger = Logger::new("test");

        // None payload
        let none_msg = StreamMessage { message: None };
        assert!(
            runner
                .dispatch_inbound(none_msg, &tx, &mut last_hb, &logger)
                .await
                .is_none()
        );
    }

    #[tokio::test]
    async fn wait_for_register_response_observes_shutdown() {
        // Build a streaming source that never yields anything; we want the
        // shutdown branch of the select! to fire.
        let shutdown = Arc::new(AtomicBool::new(false));
        let shutdown_for_signal = shutdown.clone();
        // Park a Streaming<StreamMessage> that never produces a message by
        // wrapping a hung channel via `Streaming::new_empty` — there's no
        // public ctor, so use `tonic::Streaming` from a stalled tonic
        // endpoint via the mock-free path: build a request with `tonic`'s
        // request stream from a never-yielding `async_stream::stream!`.
        //
        // Instead, exercise the shutdown signal path indirectly by setting
        // shutdown and asserting the helper returns the StreamError variant
        // on the very next poll. We do this by sleeping briefly then
        // toggling the flag.
        tokio::spawn(async move {
            tokio::time::sleep(Duration::from_millis(50)).await;
            shutdown_for_signal.store(true, Ordering::SeqCst);
        });

        // Create a permanently empty Streaming via the only available ctor:
        // the gRPC inbound from a stream that fails to connect immediately.
        // Easiest: use a tonic `Streaming` via an in-memory channel of
        // tonic Status by hand-rolling — not directly supported. Instead
        // assert that `wait_for_shutdown` resolves once the flag flips,
        // which is the underlying primitive that wins the select! branch.
        wait_for_shutdown(&shutdown).await;
        assert!(shutdown.load(Ordering::SeqCst));
    }
    #[test]
    fn runner_uses_custom_heartbeat_interval_and_timeout_from_opts() {
        // Behavior probe: drive_stream reads its hb_interval/hb_timeout
        // exclusively from opts. We verify the values reach the runner via
        // its `opts` field; the drive_stream code paths above use precisely
        // those fields with `unwrap_or(HEARTBEAT_*)`.
        let opts = MultiTransportOptions::builder()
            .heartbeat_interval(Duration::from_secs(5))
            .heartbeat_timeout(Duration::from_secs(15))
            .build();
        let runner = RegistrationRunner {
            key: RegistrationKey {
                tenant_id: "t".into(),
                connector_type: "c".into(),
                instance_id: "i".into(),
            },
            config: Arc::new(RwLock::new(crate::connector::ConnectorConfig::default())),
            connector: Arc::new(NoopConn),
            shared_channel: Arc::new(SharedChannel::new(opts.clone())),
            shutdown: Arc::new(AtomicBool::new(false)),
            metrics: Arc::new(Mutex::new(ConnectorMetrics::default())),
            opts: opts.clone(),
            request_semaphore: Arc::new(Semaphore::new(8)),
            session_token: Arc::new(RwLock::new(None)),
        };
        assert_eq!(
            runner.opts.heartbeat_interval,
            Some(Duration::from_secs(5)),
            "custom heartbeat_interval must be wired through to the runner"
        );
        assert_eq!(
            runner.opts.heartbeat_timeout,
            Some(Duration::from_secs(15)),
            "custom heartbeat_timeout must be wired through to the runner"
        );
        // And: the SDK-default fallback constants match what we documented.
        assert_eq!(HEARTBEAT_INTERVAL, Duration::from_secs(30));
        assert_eq!(HEARTBEAT_TIMEOUT, Duration::from_secs(45));
    }

    #[test]
    fn backoff_huge_attempt_with_huge_jitter_still_capped() {
        // Saturating math must cope with extreme inputs without panicking.
        let opts = opts_for_backoff(u64::MAX / 4, 60_000, u64::MAX / 4);
        for attempt in 1u32..=128 {
            let d = compute_backoff(&opts, attempt);
            assert!(d.as_millis() as u64 <= opts.max_backoff_delay_ms);
        }
    }

    // ---- Context plumbing tests --------------------------------------------
    //
    // These tests pin two contracts that the rest of the SDK relies on:
    //
    //   1. `handle_execute` must invoke `BaseConnector::execute_with_context`
    //      (NOT bare `execute`) so the wire-supplied `request.context` map
    //      reaches a context-aware connector implementation.
    //   2. A connector that only implements `execute` (no
    //      `execute_with_context` override) keeps working — proving the
    //      default delegation in the trait is correct.

    use std::collections::HashMap as StdHashMap;
    use std::sync::Mutex as StdMutex;

    /// Connector that overrides `execute_with_context` and captures the
    /// context map it received. `execute` is `unreachable!()` to prove the
    /// SDK reaches us through the context-aware path.
    struct CapturingConn {
        seen: Arc<StdMutex<Option<StdHashMap<String, String>>>>,
    }

    impl BaseConnector for CapturingConn {
        fn connector_type(&self) -> &str {
            "capturing"
        }
        fn version(&self) -> &str {
            "0.0.0"
        }
        fn execute(
            &self,
            _request: serde_json::Value,
            _capability_id: Option<&str>,
        ) -> Pin<Box<dyn std::future::Future<Output = Result<serde_json::Value>> + Send + '_>>
        {
            // Reaching this would prove the SDK is dropping context.
            Box::pin(async {
                unreachable!("SDK must dispatch through execute_with_context, not bare execute")
            })
        }
        fn execute_with_context<'a>(
            &'a self,
            _request: serde_json::Value,
            _capability_id: Option<&'a str>,
            context: &'a StdHashMap<String, String>,
        ) -> Pin<Box<dyn std::future::Future<Output = Result<serde_json::Value>> + Send + 'a>>
        {
            let captured = context.clone();
            let slot = self.seen.clone();
            Box::pin(async move {
                *slot.lock().unwrap() = Some(captured);
                Ok(serde_json::json!({ "ok": true }))
            })
        }
    }

    /// Connector that only implements `execute`. Used to prove the default
    /// `execute_with_context` impl correctly delegates back to `execute`.
    struct LegacyConn {
        called: Arc<AtomicBool>,
    }

    impl BaseConnector for LegacyConn {
        fn connector_type(&self) -> &str {
            "legacy"
        }
        fn version(&self) -> &str {
            "0.0.0"
        }
        fn execute(
            &self,
            _request: serde_json::Value,
            _capability_id: Option<&str>,
        ) -> Pin<Box<dyn std::future::Future<Output = Result<serde_json::Value>> + Send + '_>>
        {
            let flag = self.called.clone();
            Box::pin(async move {
                flag.store(true, Ordering::SeqCst);
                Ok(serde_json::json!({ "legacy": true }))
            })
        }
    }

    fn key_for_context_tests() -> RegistrationKey {
        RegistrationKey {
            tenant_id: "t".into(),
            connector_type: "ctx".into(),
            instance_id: "i".into(),
        }
    }

    #[tokio::test]
    async fn handle_execute_forwards_request_context_to_connector() {
        let seen = Arc::new(StdMutex::new(None));
        let connector: Arc<dyn BaseConnector> = Arc::new(CapturingConn { seen: seen.clone() });
        let metrics = Arc::new(Mutex::new(ConnectorMetrics::default()));
        let logger = Logger::new("test/ctx");
        let key = key_for_context_tests();

        // Build a request with a non-trivial context map.
        let mut context = StdHashMap::new();
        context.insert("tenant_id".to_string(), "tenant-acme".to_string());
        context.insert("user_id".to_string(), "user-42".to_string());
        context.insert("strike48.attrs.region".to_string(), "us-east-1".to_string());

        let payload = serialize_payload(&serde_json::json!({}), PayloadEncoding::Json)
            .expect("serialize empty payload");
        let request = SdkExecuteRequest {
            request_id: "req-ctx-1".into(),
            payload,
            payload_encoding: PayloadEncoding::Json,
            context: context.clone(),
            capability_id: None,
        };

        let (tx, mut rx) = mpsc::channel::<StreamMessage>(8);
        handle_execute(connector, request, tx, metrics, &logger, &key)
            .await
            .expect("handle_execute should succeed");

        // The connector must have observed exactly the context we sent.
        let captured = seen
            .lock()
            .unwrap()
            .clone()
            .expect("execute_with_context must have been invoked");
        assert_eq!(
            captured, context,
            "context map must round-trip from request → connector"
        );

        // And the response must have made it back onto the wire.
        let resp = rx.try_recv().expect("an ExecuteResponse must be sent back");
        match resp.message {
            Some(stream_message::Message::ExecuteResponse(r)) => {
                assert!(r.success, "successful execute must produce success=true");
                assert_eq!(r.request_id, "req-ctx-1");
            }
            other => panic!("expected ExecuteResponse, got {other:?}"),
        }
    }

    #[tokio::test]
    async fn handle_execute_keeps_working_for_legacy_execute_only_connector() {
        let called = Arc::new(AtomicBool::new(false));
        let connector: Arc<dyn BaseConnector> = Arc::new(LegacyConn {
            called: called.clone(),
        });
        let metrics = Arc::new(Mutex::new(ConnectorMetrics::default()));
        let logger = Logger::new("test/ctx");
        let key = key_for_context_tests();

        let payload = serialize_payload(&serde_json::json!({}), PayloadEncoding::Json)
            .expect("serialize empty payload");
        let request = SdkExecuteRequest {
            request_id: "req-legacy-1".into(),
            payload,
            payload_encoding: PayloadEncoding::Json,
            // Context is non-empty on the wire but the legacy connector
            // ignores it; what matters is it still gets called.
            context: {
                let mut m = StdHashMap::new();
                m.insert("tenant_id".to_string(), "ignored".to_string());
                m
            },
            capability_id: None,
        };

        let (tx, mut rx) = mpsc::channel::<StreamMessage>(8);
        handle_execute(connector, request, tx, metrics, &logger, &key)
            .await
            .expect("handle_execute should succeed");

        assert!(
            called.load(Ordering::SeqCst),
            "default execute_with_context must delegate to execute"
        );

        let resp = rx.try_recv().expect("must produce an ExecuteResponse");
        match resp.message {
            Some(stream_message::Message::ExecuteResponse(r)) => {
                assert!(r.success);
                assert_eq!(r.request_id, "req-legacy-1");
            }
            other => panic!("expected ExecuteResponse, got {other:?}"),
        }
    }
}