resonate-sdk 0.5.0

Resonate SDK for Rust
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
use futures::FutureExt;
use parking_lot::RwLock;
use std::panic::AssertUnwindSafe;
use std::sync::Arc;

use serde::Deserialize;

use crate::codec::Codec;
use crate::context::{Context, TargetResolver};
use crate::durable::ExecutionEnv;
use crate::effects::Effects;
use crate::error::{Error, Result};
use crate::heartbeat::Heartbeat;
use crate::registry::Registry;
use crate::send::{Sender, SuspendResult};
use crate::types::{
    DurableKind, Outcome, PromiseRecord, PromiseState, SettleState, Status, TaskData,
};
use std::future::Future;

/// Core is the top-level component that manages the full lifecycle of a task.
/// It takes a `send` function and uses it for all server communication.
///
/// Core exposes two entry points:
///
/// 1. **`execute_until_blocked(task_id, promise, preload)`**
///    Called from `Resonate::run` / `Resonate::begin_run` when the task is *already acquired*.
///    Skips the acquire step. Runs the registered function until it completes
///    (Done → fulfills the task) or suspends (Suspended → suspends the task).
///    On error → releases the task.
///
/// 2. **`on_message(task_id)`**
///    Called when an `execute` message arrives from the network.
///    Acquires the task first, then delegates to `execute_until_blocked`.
pub struct Core {
    sender: Sender,
    codec: Codec,
    registry: Arc<RwLock<Registry>>,
    target_resolver: TargetResolver,
    heartbeat: Arc<dyn Heartbeat>,
    pid: String,
    ttl: i64,
    deps: Arc<crate::DependencyMap>,
}

impl Core {
    #[allow(clippy::too_many_arguments)]
    pub(crate) fn new(
        sender: Sender,
        codec: Codec,
        registry: Arc<RwLock<Registry>>,
        target_resolver: TargetResolver,
        heartbeat: Arc<dyn Heartbeat>,
        pid: String,
        ttl: i64,
        deps: Arc<crate::DependencyMap>,
    ) -> Self {
        Self {
            sender,
            codec,
            registry,
            target_resolver,
            heartbeat,
            pid,
            ttl,
            deps,
        }
    }

    // ═══════════════════════════════════════════════════════════════
    //  Path 1: on_message — acquires the task, then executes
    // ═══════════════════════════════════════════════════════════════

    /// Called when an `execute` message arrives from the network.
    /// Acquires the task, decodes the promise, then runs
    /// `execute_until_blocked`.
    pub async fn on_message(&self, task_id: &str, version: i64) -> Result<Status> {
        // 1. ACQUIRE the task
        let result = self
            .sender
            .task_acquire(task_id, version, &self.pid, self.ttl)
            .await?;

        tracing::debug!(task_id = task_id, "task acquired");

        // 2. Decode promise
        let task_version = result.task.version;
        let promise = self.codec.decode_promise(result.promise)?;

        // 3. Delegate to execute_until_blocked
        self.execute_until_blocked(task_id, task_version, promise, Some(result.preload))
            .await
    }

    // ═══════════════════════════════════════════════════════════════
    //  Path 2: execute_until_blocked — task already acquired
    // ═══════════════════════════════════════════════════════════════

    /// Runs the registered function for the given task + promise until it
    /// completes (Done) or suspends waiting on remote promises (Suspended).
    ///
    /// - On Done → fulfills the task (settles the promise and completes
    ///   the task).
    /// - On Suspended → suspends the task (registers callbacks for unresolved
    ///   remote dependencies).
    /// - On error → releases the task so another worker can pick it up.
    ///
    /// This method does NOT acquire the task — the caller must ensure the task
    /// is already in `acquired` state.
    pub async fn execute_until_blocked(
        &self,
        task_id: &str,
        task_version: i64,
        promise: PromiseRecord,
        preload: Option<Vec<PromiseRecord>>,
    ) -> Result<Status> {
        // Start heartbeat before execution to keep the task lease alive
        self.heartbeat.start(task_id, task_version);

        tracing::debug!(task_id = task_id, promise_id = %promise.id, "starting execution");

        let result = self
            .execute_until_blocked_inner(task_id, task_version, &promise, preload)
            .await;

        // Stop heartbeat after execution completes (both success and error)
        self.heartbeat.stop(task_id);

        match result {
            Ok(status) => Ok(status),
            Err(e) => {
                // On error → release the task so another worker can retry
                tracing::error!(
                    error = %e,
                    task_id = task_id,
                    promise_id = %promise.id,
                    "execution failed, releasing task"
                );
                if let Err(release_err) = self.release_task(task_id, task_version).await {
                    tracing::error!(
                        error = %release_err,
                        task_id = task_id,
                        "failed to release task after error"
                    );
                }
                Err(e)
            }
        }
    }

    async fn execute_until_blocked_inner(
        &self,
        task_id: &str,
        task_version: i64,
        promise: &PromiseRecord,
        preload: Option<Vec<PromiseRecord>>,
    ) -> Result<Status> {
        // 1. Extract function name and args from promise
        let task_data: TaskData = TaskData::deserialize(promise.param.data_as_ref())
            .map_err(|e| Error::DecodingError(format!("invalid task data: {}", e)))?;

        // 2. Look up the function in the registry (hold lock briefly, clone func out)
        let (func, kind) = {
            let reg = self.registry.read();
            let entry = reg
                .get(&task_data.func)
                .ok_or_else(|| Error::FunctionNotFound(task_data.func.clone()))?;
            (entry.func.clone(), entry.kind)
        };

        // 3. SHORT-CIRCUIT
        if promise.state != PromiseState::Pending {
            tracing::info!(
                task_id = task_id,
                promise_id = %promise.id,
                state = ?promise.state,
                "promise already settled, fulfilling task without execution"
            );
            // The promise is already settled on the server, so the settle is a
            // no-op there: `task.fulfill` only writes the value/state while the
            // promise is still pending. Fulfilling here just transitions the task
            // to its terminal state, so we send a null value and skip cloning the
            // already-decoded settled value (`fulfill_task`'s encode short-circuits
            // on null, so no re-encode happens either).
            let state = match promise.state {
                PromiseState::Pending => unreachable!(),
                PromiseState::Resolved => SettleState::Resolved,
                PromiseState::Rejected
                | PromiseState::RejectedCanceled
                | PromiseState::RejectedTimedout => SettleState::Rejected,
            };
            self.fulfill_task(
                task_id,
                task_version,
                &promise.id,
                state,
                serde_json::Value::Null,
            )
            .await?;
            return Ok(Status::Done);
        }

        // 4. EXECUTE, on redirect, re-execute with new preloaded promises
        //    without re-acquiring the task.
        let mut current_preload = preload;
        loop {
            let info;
            let ctx;
            let env = match kind {
                DurableKind::Function => {
                    info = crate::info::Info::new(
                        promise.id.clone(),
                        String::new(),
                        promise.id.clone(),
                        promise.id.clone(),
                        promise.timeout_at,
                        task_data.func.clone(),
                        promise.tags.clone(),
                        self.deps.clone(),
                    );
                    ExecutionEnv::Function(&info)
                }
                DurableKind::Workflow => {
                    let effects = Effects::new(
                        self.sender.clone(),
                        self.codec.clone(),
                        current_preload.take().unwrap_or_default(),
                    );
                    ctx = Context::root(
                        promise.id.clone(),
                        promise.timeout_at,
                        task_data.func.clone(),
                        effects,
                        self.target_resolver.clone(),
                        self.deps.clone(),
                    );
                    ExecutionEnv::Workflow(&ctx)
                }
            };

            let result =
                Self::run_catching_panics(task_id, (func)(env, task_data.args.clone())).await?;

            // A flush error (e.g. a fire-and-forget promise creation that failed in the background)
            // fails the whole execution so the task is released and retried.
            let remote_todos = env.collect_remote_todos().await?;

            // 5. FINALIZE
            //
            // A function suspends iff it left unresolved remote dependencies.
            // This is independent of `result`: a function can return `Ok` while
            // still having spawned remote work it never awaited; that work is
            // what it now waits on. So `remote_todos`, not `result`, decides
            // whether we finished or suspended.
            let outcome = if remote_todos.is_empty() {
                // A `Suspended` sentinel here means a `?`-propagated suspension
                // left no remote todos behind, a bug, since something must
                // have been registered for us to wait on. Mirrors the invariant
                // enforced for child contexts in `Context::finalize`.
                debug_assert!(!matches!(&result, Err(Error::Suspended)));
                Outcome::Done(result)
            } else {
                Outcome::Suspended { remote_todos }
            };

            match outcome {
                Outcome::Done(result) => {
                    let (state, value) = match &result {
                        Ok(val) => (SettleState::Resolved, val.clone()),
                        Err(err) => (SettleState::Rejected, crate::codec::encode_error(err)),
                    };
                    self.fulfill_task(task_id, task_version, &promise.id, state, value)
                        .await?;
                    tracing::debug!(task_id = task_id, promise_id = %promise.id, "task fulfilled");
                    return Ok(Status::Done);
                }
                // on redirect, loop with new preload; otherwise return Suspended.
                Outcome::Suspended { remote_todos } => {
                    tracing::debug!(
                        task_id = task_id,
                        remote_deps = remote_todos.len(),
                        "attempting to suspend task"
                    );
                    match self
                        .suspend_task(task_id, task_version, remote_todos)
                        .await?
                    {
                        SuspendResult::Suspended => {
                            tracing::debug!(task_id = task_id, "task suspended");
                            return Ok(Status::Suspended);
                        }
                        SuspendResult::Redirect { preload } => {
                            tracing::debug!(
                                task_id = task_id,
                                preload = preload.len(),
                                "suspend returned redirect, re-executing task"
                            );
                            current_preload = Some(preload);
                            continue;
                        }
                    }
                }
            }
        }
    }

    /// Run a user function future, converting any panic into an error.
    ///
    /// This is necessary because `Error::Suspended` is a control-flow mechanism
    /// (not a real error) and users may accidentally call `.unwrap()` on it,
    /// causing a panic that would otherwise silently kill the spawned task and
    /// leave it in a zombie state. The returned `Err` propagates up so the
    /// caller releases the task for retry.
    ///
    /// `AssertUnwindSafe` is sound here because on panic the caller skips all
    /// post-execution logic (flush, suspend, fulfill) and returns immediately,
    /// so it never observes partially-mutated `Context` state.
    async fn run_catching_panics<F>(task_id: &str, fut: F) -> Result<Result<serde_json::Value>>
    where
        F: Future<Output = Result<serde_json::Value>>,
    {
        match AssertUnwindSafe(fut).catch_unwind().await {
            Ok(result) => Ok(result),
            Err(panic_payload) => {
                let msg = panic_payload
                    .downcast_ref::<String>()
                    .map(|s| s.as_str())
                    .or_else(|| panic_payload.downcast_ref::<&str>().copied())
                    .unwrap_or("unknown panic");

                if msg.contains("execution suspended") {
                    tracing::error!(
                        task_id = task_id,
                        "user function panicked by unwrapping Error::Suspended — \
                             use `?` to propagate suspension errors instead of `.unwrap()`"
                    );
                } else {
                    tracing::error!(task_id = task_id, panic = msg, "user function panicked");
                }

                Err(Error::Application {
                    message: format!("user function panicked: {}", msg),
                })
            }
        }
    }

    // ═══════════════════════════════════════════════════════════════
    //  Task lifecycle helpers
    // ═══════════════════════════════════════════════════════════════

    /// Fulfill a task by settling its promise and completing the task.
    async fn fulfill_task(
        &self,
        task_id: &str,
        task_version: i64,
        promise_id: &str,
        state: SettleState,
        value: serde_json::Value,
    ) -> Result<PromiseRecord> {
        let encoded_value = self.codec.encode(&value)?;

        self.sender
            .task_fulfill(
                task_id,
                task_version,
                crate::types::PromiseSettleReq {
                    id: promise_id.to_string(),
                    state,
                    value: encoded_value,
                },
            )
            .await
    }

    /// Suspend a task by registering callbacks for the unresolved remote
    /// dependencies. Returns `SuspendResult::Redirect` with preloaded promises
    /// if the server indicates some deps are already resolved, allowing the
    /// caller to re-execute without re-acquiring the task.
    async fn suspend_task(
        &self,
        task_id: &str,
        task_version: i64,
        remote_todos: Vec<String>,
    ) -> Result<SuspendResult> {
        let actions = remote_todos
            .into_iter()
            .map(|awaited| crate::types::PromiseRegisterCallbackData {
                awaited,
                awaiter: task_id.to_string(),
            })
            .collect();
        self.sender
            .task_suspend(task_id, task_version, actions)
            .await
    }

    /// Release a task so another worker can pick it up.
    /// Called when execution fails with an error.
    async fn release_task(&self, task_id: &str, version: i64) -> Result<()> {
        self.sender.task_release(task_id, version).await
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::codec::{Codec, NoopEncryptor};
    use crate::error::Error;
    use crate::heartbeat::NoopHeartbeat;
    use crate::registry::Registry;
    use crate::test_utils::*;
    use crate::types::{PromiseRecord, PromiseState, Value};
    use parking_lot::RwLock;
    use std::collections::HashMap;
    use std::sync::atomic::{AtomicUsize, Ordering as AtomicOrdering};

    fn noop_codec() -> Codec {
        Codec::new(Arc::new(NoopEncryptor))
    }

    /// Build a Core for testing with a no-op match function and no-op heartbeat.
    fn test_core(sender: Sender, codec: Codec, registry: Arc<RwLock<Registry>>) -> Core {
        test_core_with_heartbeat(sender, codec, registry, Arc::new(NoopHeartbeat))
    }

    // ── Test functions ─────────────────────────────────────────────

    #[resonate_sdk_macros::function]
    async fn noop() -> Result<()> {
        Ok(())
    }

    #[resonate_sdk_macros::function]
    async fn simple() -> Result<i64> {
        Ok(1)
    }

    #[resonate_sdk_macros::function]
    async fn fail() -> Result<i64> {
        Err(Error::Application {
            message: "err".to_string(),
        })
    }

    #[resonate_sdk_macros::function]
    async fn obj() -> Result<serde_json::Value> {
        Ok(serde_json::json!({"x": 1}))
    }

    #[resonate_sdk_macros::function]
    async fn add(x: i64, y: i64) -> Result<i64> {
        Ok(x + y)
    }

    #[resonate_sdk_macros::function]
    async fn double(x: i64) -> Result<i64> {
        Ok(x * 2)
    }

    /// Workflow that suspends on a single remote dependency.
    #[resonate_sdk_macros::function]
    async fn suspending_once(ctx: &Context) -> Result<i64> {
        let _ = ctx.rpc::<i32>("dep", &()).spawn()?;
        Ok(0)
    }

    /// Workflow that suspends on two remote dependencies.
    #[resonate_sdk_macros::function]
    async fn suspending_multi(ctx: &Context) -> Result<i64> {
        let _ = ctx.rpc::<i32>("dep-a", &()).spawn()?;
        let _ = ctx.rpc::<i32>("dep-b", &()).spawn()?;
        Ok(0)
    }

    static COMP_COUNT: AtomicUsize = AtomicUsize::new(0);

    /// Workflow that suspends on first call and completes on second (redirect test).
    #[resonate_sdk_macros::function]
    async fn suspending_then_done(ctx: &Context) -> Result<i64> {
        let count = COMP_COUNT.fetch_add(1, AtomicOrdering::SeqCst);
        if count == 0 {
            let _ = ctx.rpc::<i32>("dep", &()).spawn()?;
            Ok(0)
        } else {
            Ok(42)
        }
    }

    #[resonate_sdk_macros::function]
    async fn use_preload(ctx: &Context) -> Result<i32> {
        let v: i32 = ctx.rpc("remote", ()).await?;
        Ok(v)
    }

    #[resonate_sdk_macros::function]
    async fn remote_dep(ctx: &Context) -> Result<i32> {
        let _ = ctx.rpc::<i32>("dep-a", &()).spawn()?;
        Ok(0)
    }

    /// Helper: create an encoded promise for a task.
    fn make_root_promise(id: &str, func: &str, args: serde_json::Value) -> PromiseRecord {
        let codec = noop_codec();
        let param_data = serde_json::json!({"func": func, "args": args});
        PromiseRecord {
            id: id.to_string(),
            state: PromiseState::Pending,
            timeout_at: i64::MAX,
            param: codec.encode(&param_data).unwrap(),
            value: Value::default(),
            tags: HashMap::new(),
            created_at: 0,
            settled_at: None,
        }
    }

    // ── Fulfill ────────────────────────────────────────────────────

    #[tokio::test]
    async fn computation_resolves_sends_task_fulfill_with_resolved_value() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "add", serde_json::json!([3, 4]));
        harness.add_task("task1", root, vec![]).await;

        let mut registry = Registry::new();
        registry.register(add).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        core.on_message("task1", 0).await.unwrap();

        let requests = harness.sent_requests_json().await;
        let fulfill = requests.iter().find(|r| r["kind"] == "task.fulfill");
        assert!(fulfill.is_some(), "should have sent task.fulfill");

        let fulfill = fulfill.unwrap();
        {
            assert_eq!(fulfill["action"]["state"], "resolved");
        }
    }

    #[tokio::test]
    async fn computation_rejects_sends_task_fulfill_with_rejected_value() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "fail", serde_json::json!(null));
        harness.add_task("task1", root, vec![]).await;

        let mut registry = Registry::new();
        registry.register(fail).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        core.on_message("task1", 0).await.unwrap();

        let requests = harness.sent_requests_json().await;
        let fulfill = requests.iter().find(|r| r["kind"] == "task.fulfill");
        assert!(fulfill.is_some(), "should have sent task.fulfill");

        let fulfill = fulfill.unwrap();
        {
            assert_eq!(fulfill["action"]["state"], "rejected");
        }
    }

    #[tokio::test]
    async fn fulfill_encodes_value_correctly_via_codec() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "obj", serde_json::json!(null));
        harness.add_task("task1", root, vec![]).await;

        let mut registry = Registry::new();
        registry.register(obj).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        core.on_message("task1", 0).await.unwrap();

        let requests = harness.sent_requests_json().await;
        let fulfill = requests.iter().find(|r| r["kind"] == "task.fulfill");
        assert!(fulfill.is_some());

        let fulfill = fulfill.unwrap();
        {
            let data_str = fulfill["action"]["value"]["data"].as_str().unwrap();
            assert!(
                Codec::is_valid_base64(data_str),
                "value.data should be valid base64: {}",
                data_str
            );
        }
    }

    // ── Error handling ─────────────────────────────────────────────

    #[tokio::test]
    async fn acquire_failure_returns_error() {
        // Task not found in stub → 404 error
        let harness = TestHarness::new();
        let registry = Registry::new();
        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );

        let result = core.on_message("nonexistent", 0).await;
        assert!(result.is_err(), "should fail when task doesn't exist");
    }

    // ── Suspend ────────────────────────────────────────────────────

    #[tokio::test]
    async fn computation_suspends_sends_task_suspend_with_awaited_ids() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "suspending_multi", serde_json::json!(null));
        harness.add_task("task1", root, vec![]).await;

        let mut registry = Registry::new();
        registry.register(suspending_multi).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        core.on_message("task1", 0).await.unwrap();

        let requests = harness.sent_requests_json().await;
        let suspend = requests.iter().find(|r| r["kind"] == "task.suspend");
        assert!(suspend.is_some(), "should have sent task.suspend");

        let suspend = suspend.unwrap();
        let actions = suspend["actions"].as_array().unwrap();
        assert_eq!(actions.len(), 2, "should have 2 awaited IDs");
    }

    #[tokio::test]
    async fn suspend_with_redirect_re_executes_immediately() {
        let harness = TestHarness::new();
        harness.set_suspend_returns_redirect(true).await;

        let root = make_root_promise("p1", "suspending_then_done", serde_json::json!(null));
        harness.add_task("task1", root, vec![]).await;

        COMP_COUNT.store(0, AtomicOrdering::SeqCst);

        let mut registry = Registry::new();
        registry.register(suspending_then_done).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        core.on_message("task1", 0).await.unwrap();

        assert_eq!(
            COMP_COUNT.load(AtomicOrdering::SeqCst),
            2,
            "computation should have been called twice (suspend + redirect)"
        );
    }

    static REDIR_NO_ACQUIRE_COUNT: AtomicUsize = AtomicUsize::new(0);

    #[resonate_sdk_macros::function]
    async fn redir_no_acquire(ctx: &Context) -> Result<i64> {
        let count = REDIR_NO_ACQUIRE_COUNT.fetch_add(1, AtomicOrdering::SeqCst);
        if count == 0 {
            let _ = ctx.rpc::<i32>("dep", &()).spawn()?;
            Ok(0)
        } else {
            Ok(42)
        }
    }

    #[tokio::test]
    async fn redirect_does_not_send_second_task_acquire() {
        let harness = TestHarness::new();
        harness.set_suspend_returns_redirect(true).await;

        REDIR_NO_ACQUIRE_COUNT.store(0, AtomicOrdering::SeqCst);

        let root = make_root_promise("p1", "redir_no_acquire", serde_json::json!(null));
        harness.add_task("task1", root, vec![]).await;

        let mut registry = Registry::new();
        registry.register(redir_no_acquire).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        core.on_message("task1", 0).await.unwrap();

        let requests = harness.sent_requests_json().await;
        let acquire_count = requests
            .iter()
            .filter(|r| r["kind"] == "task.acquire")
            .count();
        assert_eq!(
            acquire_count, 1,
            "redirect should re-execute without sending a second TaskAcquire"
        );
    }

    static REDIR_PRELOAD_COUNT: AtomicUsize = AtomicUsize::new(0);

    #[resonate_sdk_macros::function]
    async fn redir_preload(ctx: &Context) -> Result<i64> {
        let count = REDIR_PRELOAD_COUNT.fetch_add(1, AtomicOrdering::SeqCst);
        if count == 0 {
            let _ = ctx.rpc::<i32>("dep", &()).spawn()?;
            Ok(0)
        } else {
            Ok(42)
        }
    }

    #[tokio::test]
    async fn redirect_preloaded_promises_passed_to_next_execution() {
        let harness = TestHarness::new();
        harness.set_suspend_returns_redirect(true).await;

        REDIR_PRELOAD_COUNT.store(0, AtomicOrdering::SeqCst);

        let root = make_root_promise("p1", "redir_preload", serde_json::json!(null));
        harness.add_task("task1", root, vec![]).await;

        let mut registry = Registry::new();
        registry.register(redir_preload).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        core.on_message("task1", 0).await.unwrap();

        // After redirect + re-execution, task should complete with fulfill
        let requests = harness.sent_requests_json().await;
        assert!(
            requests.iter().any(|r| r["kind"] == "task.fulfill"),
            "task should be fulfilled after redirect re-execution"
        );
    }

    static MULTI_REDIR_COUNT: AtomicUsize = AtomicUsize::new(0);

    #[resonate_sdk_macros::function]
    async fn multi_redirect(ctx: &Context) -> Result<i64> {
        let count = MULTI_REDIR_COUNT.fetch_add(1, AtomicOrdering::SeqCst);
        if count < 2 {
            let _ = ctx.rpc::<i32>("dep", &()).spawn()?;
        }
        Ok(count as i64)
    }

    #[tokio::test]
    async fn multiple_consecutive_redirects_handled_correctly() {
        let harness = TestHarness::new();
        harness.set_suspend_returns_redirect(true).await;
        // Allow up to 2 redirects
        harness.set_max_redirects(2).await;

        MULTI_REDIR_COUNT.store(0, AtomicOrdering::SeqCst);

        let root = make_root_promise("p1", "multi_redirect", serde_json::json!(null));
        harness.add_task("task1", root, vec![]).await;

        let mut registry = Registry::new();
        registry.register(multi_redirect).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        core.on_message("task1", 0).await.unwrap();

        assert_eq!(
            MULTI_REDIR_COUNT.load(AtomicOrdering::SeqCst),
            3,
            "should have been called 3 times (initial + 2 redirects)"
        );

        let requests = harness.sent_requests_json().await;
        let acquire_count = requests
            .iter()
            .filter(|r| r["kind"] == "task.acquire")
            .count();
        assert_eq!(
            acquire_count, 1,
            "only one TaskAcquire even with multiple redirects"
        );
    }

    // ── on_message (Path 1): acquires then executes ──────────────

    #[tokio::test]
    async fn on_message_acquires_task_then_executes() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "simple", serde_json::json!(null));
        harness.add_task("task1", root, vec![]).await;

        let mut registry = Registry::new();
        registry.register(simple).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let status = core.on_message("task1", 0).await.unwrap();
        assert_eq!(status, Status::Done);

        let requests = harness.sent_requests_json().await;

        assert!(
            requests[0]["kind"] == "task.acquire",
            "first request should be TaskAcquire"
        );

        let has_fulfill = requests.iter().any(|r| r["kind"] == "task.fulfill");
        assert!(has_fulfill, "should have sent TaskFulfill");
    }

    #[tokio::test]
    async fn on_message_acquire_failure_returns_error() {
        let harness = TestHarness::new();
        let registry = Registry::new();
        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );

        let result = core.on_message("nonexistent", 0).await;
        assert!(result.is_err(), "should fail when task doesn't exist");
    }

    #[tokio::test]
    async fn on_message_returns_suspended_status() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "suspending_once", serde_json::json!(null));
        harness.add_task("task1", root, vec![]).await;

        let mut registry = Registry::new();
        registry.register(suspending_once).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let status = core.on_message("task1", 0).await.unwrap();
        assert_eq!(status, Status::Suspended);
    }

    // ── execute_until_blocked (Path 2): already acquired ───────────

    #[tokio::test]
    async fn execute_until_blocked_skips_acquire() {
        let harness = TestHarness::new();
        // NOTE: task is NOT added to the harness — proves Path 2 skips acquire.
        let root = make_root_promise("p1", "add", serde_json::json!([10, 20]));

        let mut registry = Registry::new();
        registry.register(add).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let decoded = noop_codec().decode_promise(root).unwrap();
        let status = core
            .execute_until_blocked("task-already-acquired", 0, decoded, None)
            .await
            .unwrap();
        assert_eq!(status, Status::Done);

        let requests = harness.sent_requests_json().await;
        assert!(
            !requests.iter().any(|r| r["kind"] == "task.acquire"),
            "execute_until_blocked should NOT send TaskAcquire"
        );
        assert!(
            requests.iter().any(|r| r["kind"] == "task.fulfill"),
            "should have sent TaskFulfill"
        );
    }

    #[tokio::test]
    async fn execute_until_blocked_with_preloaded_promises() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "use_preload", serde_json::json!(null));

        let mut registry = Registry::new();
        registry.register(use_preload).unwrap();

        // Child promise "p1.0" is preloaded as resolved — rpc won't suspend
        let preloaded = vec![resolved_promise("p1.0", serde_json::json!(99))];

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let decoded = noop_codec().decode_promise(root).unwrap();
        let status = core
            .execute_until_blocked("task-preloaded", 0, decoded, Some(preloaded))
            .await
            .unwrap();
        assert_eq!(status, Status::Done);
    }

    #[tokio::test]
    async fn execute_until_blocked_suspends_on_remote() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "remote_dep", serde_json::json!(null));

        let mut registry = Registry::new();
        registry.register(remote_dep).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let decoded = noop_codec().decode_promise(root).unwrap();
        let status = core
            .execute_until_blocked("task-suspend", 0, decoded, None)
            .await
            .unwrap();
        assert_eq!(status, Status::Suspended);

        let requests = harness.sent_requests_json().await;
        assert!(
            requests.iter().any(|r| r["kind"] == "task.suspend"),
            "should have sent TaskSuspend"
        );
    }

    #[tokio::test]
    async fn execute_until_blocked_short_circuits_on_settled_promise() {
        let harness = TestHarness::new();
        let codec = noop_codec();
        // Promise is already resolved — func must never be called but task must be fulfilled
        let param_data = serde_json::json!({"func": "noop", "args": null});
        let root = PromiseRecord {
            id: "settled-p".to_string(),
            state: PromiseState::Resolved,
            timeout_at: i64::MAX,
            param: codec.encode(&param_data).unwrap(),
            value: codec.encode(&serde_json::json!(42)).unwrap(),
            tags: HashMap::new(),
            created_at: 0,
            settled_at: Some(1),
        };

        let mut registry = Registry::new();
        registry.register(noop).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let decoded = codec.decode_promise(root).unwrap();
        let status = core
            .execute_until_blocked("task-settled", 0, decoded, None)
            .await
            .unwrap();
        assert_eq!(status, Status::Done);

        // Short-circuits before calling the func but still sends TaskFulfill
        let requests = harness.sent_requests_json().await;
        assert!(
            requests.iter().any(|r| r["kind"] == "task.fulfill"),
            "settled promise should still send TaskFulfill"
        );
    }

    #[tokio::test]
    async fn short_circuit_resolved_promise_sends_fulfill_with_resolved_state() {
        let harness = TestHarness::new();
        let codec = noop_codec();
        let param_data = serde_json::json!({"func": "noop", "args": null});
        let root = PromiseRecord {
            id: "resolved-p".to_string(),
            state: PromiseState::Resolved,
            timeout_at: i64::MAX,
            param: codec.encode(&param_data).unwrap(),
            value: codec.encode(&serde_json::json!(42)).unwrap(),
            tags: HashMap::new(),
            created_at: 0,
            settled_at: Some(1),
        };

        let mut registry = Registry::new();
        registry.register(noop).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let decoded = codec.decode_promise(root).unwrap();
        core.execute_until_blocked("task-resolved", 0, decoded, None)
            .await
            .unwrap();

        let requests = harness.sent_requests_json().await;
        let fulfill = requests.iter().find(|r| r["kind"] == "task.fulfill");
        assert!(fulfill.is_some(), "should have sent TaskFulfill");
        let fulfill = fulfill.unwrap();
        {
            assert_eq!(fulfill["action"]["state"], "resolved");
        }
    }

    #[tokio::test]
    async fn short_circuit_rejected_promise_sends_fulfill_with_rejected_state() {
        let harness = TestHarness::new();
        let codec = noop_codec();
        let param_data = serde_json::json!({"func": "noop", "args": null});
        let err_val = serde_json::json!({"__type": "error", "message": "something failed"});
        let root = PromiseRecord {
            id: "rejected-p".to_string(),
            state: PromiseState::Rejected,
            timeout_at: i64::MAX,
            param: codec.encode(&param_data).unwrap(),
            value: codec.encode(&err_val).unwrap(),
            tags: HashMap::new(),
            created_at: 0,
            settled_at: Some(1),
        };

        let mut registry = Registry::new();
        registry.register(noop).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let decoded = codec.decode_promise(root).unwrap();
        core.execute_until_blocked("task-rejected", 0, decoded, None)
            .await
            .unwrap();

        let requests = harness.sent_requests_json().await;
        let fulfill = requests.iter().find(|r| r["kind"] == "task.fulfill");
        assert!(fulfill.is_some(), "should have sent TaskFulfill");
        let fulfill = fulfill.unwrap();
        {
            assert_eq!(fulfill["action"]["state"], "rejected");
        }
    }

    // ── Error handling: release on error ───────────────────────────

    #[tokio::test]
    async fn execute_until_blocked_releases_task_on_function_not_found() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "missing_func", serde_json::json!(null));

        let registry = Registry::new(); // empty — function not registered
        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let decoded = noop_codec().decode_promise(root).unwrap();
        let result = core
            .execute_until_blocked("task-error", 0, decoded, None)
            .await;

        assert!(result.is_err(), "should fail when function not found");

        let requests = harness.sent_requests_json().await;
        assert!(
            requests.iter().any(|r| r["kind"] == "task.release"),
            "should send TaskRelease when execution errors"
        );
    }

    // ── Both paths produce same fulfill result ─────────────────────

    #[tokio::test]
    async fn both_paths_produce_same_result_for_same_function() {
        // Path 1: on_message (acquires then executes)
        let harness1 = TestHarness::new();
        let root1 = make_root_promise("p1", "double", serde_json::json!(5));
        harness1.add_task("task1", root1.clone(), vec![]).await;

        let mut registry1 = Registry::new();
        registry1.register(double).unwrap();

        let core1 = test_core(
            harness1.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry1)),
        );
        let status1 = core1.on_message("task1", 0).await.unwrap();

        // Path 2: execute_until_blocked (already acquired)
        let harness2 = TestHarness::new();
        let root2 = make_root_promise("p1", "double", serde_json::json!(5));

        let mut registry2 = Registry::new();
        registry2.register(double).unwrap();

        let core2 = test_core(
            harness2.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry2)),
        );
        let decoded = noop_codec().decode_promise(root2).unwrap();
        let status2 = core2
            .execute_until_blocked("task-direct", 0, decoded, None)
            .await
            .unwrap();

        assert_eq!(status1, Status::Done);
        assert_eq!(status2, Status::Done);

        // Path 1: Acquire + Fulfill
        let reqs1 = harness1.sent_requests_json().await;
        assert!(reqs1.iter().any(|r| r["kind"] == "task.acquire"));
        assert!(reqs1.iter().any(|r| r["kind"] == "task.fulfill"));

        // Path 2: Fulfill only (no Acquire)
        let reqs2 = harness2.sent_requests_json().await;
        assert!(!reqs2.iter().any(|r| r["kind"] == "task.acquire"));
        assert!(reqs2.iter().any(|r| r["kind"] == "task.fulfill"));
    }

    // ── Heartbeat tests ───────────────────────────────────────────

    /// A tracking heartbeat that records start/stop calls.
    struct TrackingHeartbeat {
        started: AtomicUsize,
        stopped: AtomicUsize,
    }

    impl TrackingHeartbeat {
        fn new() -> Self {
            Self {
                started: AtomicUsize::new(0),
                stopped: AtomicUsize::new(0),
            }
        }

        fn start_count(&self) -> usize {
            self.started.load(AtomicOrdering::SeqCst)
        }

        fn stop_count(&self) -> usize {
            self.stopped.load(AtomicOrdering::SeqCst)
        }
    }

    impl Heartbeat for TrackingHeartbeat {
        fn start(&self, _task_id: &str, _task_version: i64) {
            self.started.fetch_add(1, AtomicOrdering::SeqCst);
        }
        fn stop(&self, _task_id: &str) {
            self.stopped.fetch_add(1, AtomicOrdering::SeqCst);
        }
        fn shutdown(&self) {}
    }

    fn test_core_with_heartbeat(
        sender: Sender,
        codec: Codec,
        registry: Arc<RwLock<Registry>>,
        heartbeat: Arc<dyn Heartbeat>,
    ) -> Core {
        let target_resolver: TargetResolver =
            std::sync::Arc::new(|target: Option<&str>| target.unwrap_or("default").to_string());
        Core::new(
            sender,
            codec,
            registry,
            target_resolver,
            heartbeat,
            "test-pid".to_string(),
            60_000,
            crate::test_utils::empty_deps(),
        )
    }

    #[tokio::test]
    async fn heartbeat_started_and_stopped_on_successful_execution() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "simple", serde_json::json!(null));

        let mut registry = Registry::new();
        registry.register(simple).unwrap();

        let hb = Arc::new(TrackingHeartbeat::new());
        let core = test_core_with_heartbeat(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
            hb.clone(),
        );
        let decoded = noop_codec().decode_promise(root).unwrap();
        let status = core
            .execute_until_blocked("task-hb", 0, decoded, None)
            .await
            .unwrap();

        assert_eq!(status, Status::Done);
        assert_eq!(hb.start_count(), 1, "heartbeat should be started once");
        assert_eq!(hb.stop_count(), 1, "heartbeat should be stopped once");
    }

    #[tokio::test]
    async fn heartbeat_stopped_on_error() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "missing_func", serde_json::json!(null));

        let registry = Registry::new(); // empty — function not registered
        let hb = Arc::new(TrackingHeartbeat::new());
        let core = test_core_with_heartbeat(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
            hb.clone(),
        );
        let decoded = noop_codec().decode_promise(root).unwrap();
        let result = core
            .execute_until_blocked("task-hb-err", 0, decoded, None)
            .await;

        assert!(result.is_err(), "should fail when function not found");
        assert_eq!(hb.start_count(), 1, "heartbeat should be started once");
        assert_eq!(
            hb.stop_count(),
            1,
            "heartbeat should be stopped even on error"
        );
    }

    // ── Panic handling (catch_unwind) ─────────────────────────────

    #[resonate_sdk_macros::function]
    async fn unwrap_suspend(ctx: &Context) -> Result<i32> {
        // Simulates a user accidentally calling .unwrap() on a suspended rpc
        let handle = ctx.rpc::<i32>("dep", &()).spawn()?;
        let val: i32 = handle.await.unwrap();
        Ok(val)
    }

    #[tokio::test]
    async fn panic_from_unwrap_suspend_is_caught_and_task_released() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "unwrap_suspend", serde_json::json!(null));

        let mut registry = Registry::new();
        registry.register(unwrap_suspend).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let decoded = noop_codec().decode_promise(root).unwrap();
        let result = core
            .execute_until_blocked("task-panic-suspend", 0, decoded, None)
            .await;

        assert!(result.is_err(), "should return an error, not panic");
        let err_msg = result.unwrap_err().to_string();
        assert!(
            err_msg.contains("panicked"),
            "error should mention panic: {err_msg}"
        );

        let requests = harness.sent_requests_json().await;
        assert!(
            requests.iter().any(|r| r["kind"] == "task.release"),
            "task should be released after panic"
        );
    }

    #[resonate_sdk_macros::function]
    async fn plain_panic(_ctx: &Context) -> Result<i32> {
        panic!("something went wrong");
    }

    /// Spawns a background child creation, then panics before yielding — so the
    /// child task is queued but never polled when the panic unwinds.
    #[resonate_sdk_macros::function]
    async fn spawn_then_panic(ctx: &Context) -> Result<i32> {
        let _ = ctx.rpc::<i32>("child", &()).spawn()?;
        panic!("boom");
    }

    #[tokio::test]
    async fn panic_aborts_inflight_child_creation() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "spawn_then_panic", serde_json::json!(null));
        harness.add_task("task1", root, vec![]).await;

        let mut registry = Registry::new();
        registry.register(spawn_then_panic).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let result = core.on_message("task1", 0).await;
        assert!(result.is_err(), "panic should surface as an error");

        // Give any *non-aborted* detached task a chance to run and hit the
        // network. On the current-thread test runtime, the panicking future
        // never yields after spawning the child, so the child is only ever
        // queued — abort-on-drop must cancel it before it sends its create.
        for _ in 0..5 {
            tokio::task::yield_now().await;
        }

        let requests = harness.sent_requests_json().await;
        assert!(
            !requests.iter().any(|r| {
                r["kind"] == "promise.create"
                    && r["id"].as_str().is_some_and(|id| id.starts_with("p1."))
            }),
            "child creation must not be sent after the parent panics — \
             the spawned task should be aborted on Context drop"
        );

        // The parent task is still released for retry (existing behavior).
        assert!(
            requests.iter().any(|r| r["kind"] == "task.release"),
            "task should be released after panic"
        );
    }

    #[tokio::test]
    async fn panic_from_user_function_is_caught_and_task_released() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "plain_panic", serde_json::json!(null));

        let mut registry = Registry::new();
        registry.register(plain_panic).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let decoded = noop_codec().decode_promise(root).unwrap();
        let result = core
            .execute_until_blocked("task-panic-plain", 0, decoded, None)
            .await;

        assert!(result.is_err(), "should return an error, not panic");
        let err_msg = result.unwrap_err().to_string();
        assert!(
            err_msg.contains("something went wrong"),
            "error should contain the panic message: {err_msg}"
        );

        let requests = harness.sent_requests_json().await;
        assert!(
            requests.iter().any(|r| r["kind"] == "task.release"),
            "task should be released after panic"
        );
    }

    #[tokio::test]
    async fn panic_from_unwrap_suspend_stops_heartbeat() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "unwrap_suspend", serde_json::json!(null));

        let mut registry = Registry::new();
        registry.register(unwrap_suspend).unwrap();

        let hb = Arc::new(TrackingHeartbeat::new());
        let core = test_core_with_heartbeat(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
            hb.clone(),
        );
        let decoded = noop_codec().decode_promise(root).unwrap();
        let _ = core
            .execute_until_blocked("task-panic-hb", 0, decoded, None)
            .await;

        assert_eq!(hb.start_count(), 1, "heartbeat should be started once");
        assert_eq!(
            hb.stop_count(),
            1,
            "heartbeat should be stopped even after panic"
        );
    }

    // ── Background creation failure → release ─────────────────────

    #[resonate_sdk_macros::function]
    async fn fire_and_forget_rpc(ctx: &Context) -> Result<i64> {
        let _ = ctx.rpc::<i32>("dep", &()).spawn()?;
        Ok(0)
    }

    #[tokio::test]
    async fn failed_background_creation_releases_task() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "fire_and_forget_rpc", serde_json::json!(null));
        harness.add_task("task1", root, vec![]).await;
        // The rpc's background promise.create fails; the handle is never
        // awaited, so the error must surface at flush and release the task.
        harness.set_fail_promise_create(true).await;

        let mut registry = Registry::new();
        registry.register(fire_and_forget_rpc).unwrap();

        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let result = core.on_message("task1", 0).await;
        assert!(
            result.is_err(),
            "execution should fail when a background creation fails"
        );

        let requests = harness.sent_requests_json().await;
        assert!(
            requests.iter().any(|r| r["kind"] == "task.release"),
            "task should be released after a background creation failure"
        );
        assert!(
            !requests.iter().any(|r| r["kind"] == "task.fulfill"),
            "task must not be fulfilled when a child creation was lost"
        );
    }

    #[tokio::test]
    async fn noop_heartbeat_does_not_interfere_in_local_mode() {
        let harness = TestHarness::new();
        let root = make_root_promise("p1", "add", serde_json::json!([5, 10]));

        let mut registry = Registry::new();
        registry.register(add).unwrap();

        // Use NoopHeartbeat (same as local mode)
        let core = test_core(
            harness.build_sender(),
            noop_codec(),
            Arc::new(RwLock::new(registry)),
        );
        let decoded = noop_codec().decode_promise(root).unwrap();
        let status = core
            .execute_until_blocked("task-noop-hb", 0, decoded, None)
            .await
            .unwrap();

        assert_eq!(status, Status::Done);

        let requests = harness.sent_requests_json().await;
        assert!(
            requests.iter().any(|r| r["kind"] == "task.fulfill"),
            "should complete normally with NoopHeartbeat"
        );
    }
}