swf-runtime 1.0.0-alpha9

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

#[tokio::test]
async fn test_runner_try_catch_match_status() {
    let output = run_workflow_from_yaml(&testdata("try_catch_match_status.yaml"), json!({}))
        .await
        .unwrap();
    assert_eq!(output["recovered"], json!(true));
}

// === Try-Catch: match by details ===

#[tokio::test]
async fn test_runner_try_catch_match_details() {
    let output = run_workflow_from_yaml(&testdata("try_catch_match_details.yaml"), json!({}))
        .await
        .unwrap();
    assert_eq!(output["recovered"], json!(true));
}

// === Try-Catch: error variable (catch.as) ===

#[tokio::test]
async fn test_runner_try_catch_error_variable() {
    let output = run_workflow_from_yaml(&testdata("try_catch_error_variable.yaml"), json!({}))
        .await
        .unwrap();
    assert_eq!(output["errorMessage"], json!("Javierito was here!"));
}

// === Try-Catch: match by when condition ===

#[tokio::test]
async fn test_runner_try_catch_match_when() {
    let output = run_workflow_from_yaml(&testdata("try_catch_match_when.yaml"), json!({}))
        .await
        .unwrap();
    assert_eq!(output["recovered"], json!(true));
}

// === Try-Catch: not match by status ===

#[tokio::test]
async fn test_runner_try_catch_not_match_status() {
    let result =
        run_workflow_from_yaml(&testdata("try_catch_not_match_status.yaml"), json!({})).await;
    assert!(result.is_err());
}

// === Try-Catch: not match by details ===

#[tokio::test]
async fn test_runner_try_catch_not_match_details() {
    let result =
        run_workflow_from_yaml(&testdata("try_catch_not_match_details.yaml"), json!({})).await;
    assert!(result.is_err());
}

// === Try-Catch: not match by when condition ===

#[tokio::test]
async fn test_runner_try_catch_not_match_when() {
    let result =
        run_workflow_from_yaml(&testdata("try_catch_not_match_when.yaml"), json!({})).await;
    assert!(result.is_err());
}

// === For Loop: collect with input.from ===

#[tokio::test]
async fn test_runner_try_catch_retry_inline() {
    let result = run_workflow_from_yaml(&testdata("try_catch_retry_inline.yaml"), json!({})).await;
    // Retry exhausts all attempts, error propagates
    assert!(result.is_err());
}

// === $task expression variable ===

#[tokio::test]
async fn test_runner_try_catch_retry_success() {
    let output = run_workflow_from_yaml(&testdata("try_catch_retry_success.yaml"), json!({}))
        .await
        .unwrap();
    // Try task succeeds on first attempt, retry not triggered
    assert_eq!(output["result"], json!("success"));
}

// === Try-Catch: Retry reusable reference ===

#[tokio::test]
async fn test_runner_try_catch_retry_reusable() {
    let result =
        run_workflow_from_yaml(&testdata("try_catch_retry_reusable.yaml"), json!({})).await;
    // Retry exhausts all attempts, error propagates
    assert!(result.is_err());
}

// === Secret Expression ($secret variable) ===

#[tokio::test]
async fn test_runner_try_catch_compensate() {
    let output = run_workflow_from_yaml(&testdata("try_catch_compensate.yaml"), json!({}))
        .await
        .unwrap();
    assert_eq!(output["compensated"], json!(true));
    assert_eq!(output["originalTask"], json!("failTask"));
}

// === Try-Catch: exceptWhen skips catch ===

#[tokio::test]
async fn test_runner_try_catch_except_when_skips() {
    // exceptWhen evaluates against error context
    // .details == "Expected error" != "Skip this error" -> should NOT skip -> catch applies
    let output = run_workflow_from_yaml(&testdata("try_catch_except_when.yaml"), json!({}))
        .await
        .unwrap();
    assert_eq!(output["handled"], json!(true));
}

// === Nested Do Tasks ===

#[tokio::test]
async fn test_runner_try_catch_retry_inline_exponential() {
    use std::sync::atomic::{AtomicU32, Ordering};
    use std::sync::Arc;
    use warp::Reply;

    let attempt_count = Arc::new(AtomicU32::new(0));
    let attempt_clone = attempt_count.clone();

    // Endpoint that fails twice then succeeds
    let endpoint = warp::path::end().and(warp::get()).map(move || {
        let count = attempt_clone.fetch_add(1, Ordering::SeqCst);
        if count < 2 {
            warp::reply::with_status(
                warp::reply::json(&serde_json::json!({"error": "not found"})),
                warp::http::StatusCode::NOT_FOUND,
            )
            .into_response()
        } else {
            warp::reply::json(&serde_json::json!({"status": "ok"})).into_response()
        }
    });

    let port = start_mock_server(endpoint);

    let yaml = format!(
        r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-retry-inline
  version: '0.1.0'
do:
  - tryGet:
      try:
        - getPet:
            call: http
            with:
              method: get
              endpoint: http://localhost:{port}
      catch:
        errors:
          with:
            type: https://serverlessworkflow.io/spec/1.0.0/errors/communication
        retry:
          delay: PT0.01S
          backoff:
            exponential: {{}}
          limit:
            attempt:
              count: 5
"#
    );
    let workflow: WorkflowDefinition = serde_yaml::from_str(&yaml).unwrap();
    let runner = WorkflowRunner::new(workflow).unwrap();

    let output = runner.run(json!({})).await.unwrap();
    assert_eq!(output["status"], json!("ok"));
    // Should have 3 attempts: 2 failures + 1 success
    let attempts = attempt_count.load(Ordering::SeqCst);
    assert!(
        attempts >= 3,
        "Expected at least 3 attempts, got {}",
        attempts
    );
}

// === Try-Catch-Retry: reusable constant backoff ===

#[tokio::test]
async fn test_runner_try_catch_retry_reusable_constant() {
    use std::sync::atomic::{AtomicU32, Ordering};
    use std::sync::Arc;
    use warp::Reply;

    let attempt_count = Arc::new(AtomicU32::new(0));
    let attempt_clone = attempt_count.clone();

    let endpoint = warp::path::end().and(warp::get()).map(move || {
        let count = attempt_clone.fetch_add(1, Ordering::SeqCst);
        if count < 1 {
            warp::reply::with_status(
                warp::reply::json(&serde_json::json!({"error": "not found"})),
                warp::http::StatusCode::NOT_FOUND,
            )
            .into_response()
        } else {
            warp::reply::json(&serde_json::json!({"result": "success"})).into_response()
        }
    });

    let port = start_mock_server(endpoint);

    let yaml = format!(
        r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-retry-reusable
  version: '0.1.0'
use:
  retries:
    default:
      delay:
        milliseconds: 10
      backoff:
        constant: {{}}
      limit:
        attempt:
          count: 5
do:
  - tryGet:
      try:
        - getPet:
            call: http
            with:
              method: get
              endpoint: http://localhost:{port}
      catch:
        errors:
          with:
            type: https://serverlessworkflow.io/spec/1.0.0/errors/communication
        retry: default
"#
    );
    let workflow: WorkflowDefinition = serde_yaml::from_str(&yaml).unwrap();
    let runner = WorkflowRunner::new(workflow).unwrap();

    let output = runner.run(json!({})).await.unwrap();
    assert_eq!(output["result"], json!("success"));
    let attempts = attempt_count.load(Ordering::SeqCst);
    assert!(
        attempts >= 2,
        "Expected at least 2 attempts, got {}",
        attempts
    );
}

// === Sub-workflow: output.as + export.as pattern (Java SDK) ===

#[tokio::test]
async fn test_runner_try_catch_communication_error() {
    // Server that returns 404 for any path
    let not_found = warp::any()
        .map(|| warp::reply::with_status("Not Found", warp::http::StatusCode::NOT_FOUND));

    let output =
        run_workflow_with_mock_server("try_catch_communication_error.yaml", not_found, json!({}))
            .await;
    assert_eq!(output["recovered"], json!(true));
}

// === For Loop: custom at variable ===

#[tokio::test]
async fn test_runner_try_catch_by_status() {
    let not_found = warp::path("api")
        .and(warp::path("items"))
        .map(|| warp::reply::with_status("Not Found", warp::http::StatusCode::NOT_FOUND));

    let port = start_mock_server(not_found);

    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-by-status
  version: '0.1.0'
do:
  - tryCall:
      try:
        - callFail:
            call: http
            with:
              method: get
              endpoint:
                uri: http://localhost:PORT/api/items
      catch:
        errors:
          with:
            type: communication
            status: 404
        do:
          - handleError:
              set:
                handled: true
"#
    .replace("PORT", &port.to_string());
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["handled"], json!(true));
}

// === HTTP Call: 404 returns input unchanged (non-error mode) ===

#[tokio::test]
async fn test_runner_try_catch_error_var_type() {
    let output = run_workflow_from_yaml(&testdata("try_catch_error_variable.yaml"), json!({}))
        .await
        .unwrap();
    // catch.as stores the error as a variable accessible in catch.do
    assert_eq!(output["errorMessage"], json!("Javierito was here!"));
}

// === Workflow input transformation with from ===

#[tokio::test]
async fn test_runner_try_catch_multiple_errors() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-multiple-errors
  version: '0.1.0'
do:
  - safeCall:
      try:
        - failTask:
            raise:
              error:
                type: authentication
                status: 401
                title: Auth Failed
      catch:
        errors:
          with:
            type: authentication
        do:
          - handleAuth:
              set:
                caught: true
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["caught"], json!(true));
}

// === Try-Catch: error variable with details ===

#[tokio::test]
async fn test_runner_try_catch_error_with_details() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-error-details
  version: '0.1.0'
do:
  - safeCall:
      try:
        - failTask:
            raise:
              error:
                type: validation
                title: Validation Error
                status: 400
      catch:
        errors:
          with:
            type: validation
        as: err
        do:
          - logError:
              set:
                errorTitle: '${ $err.title }'
                errorStatus: '${ $err.status }'
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["errorTitle"], json!("Validation Error"));
    assert_eq!(output["errorStatus"], json!(400));
}

// === Switch: then goto with multiple jumps ===

#[tokio::test]
async fn test_runner_try_catch_filter_instance() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-filter-instance
  version: '0.1.0'
do:
  - safeCall:
      try:
        - failTask:
            raise:
              error:
                type: compliance
                status: 400
                title: Compliance Error
                instance: raiseError
      catch:
        errors:
          with:
            instance: raiseError
        do:
          - handleInstance:
              set:
                caught: true
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["caught"], json!(true));
}

// === Try-Catch: error filter by instance — not matching ===

#[tokio::test]
async fn test_runner_try_catch_filter_instance_not_match() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-filter-instance-not-match
  version: '0.1.0'
do:
  - safeCall:
      try:
        - failTask:
            raise:
              error:
                type: compliance
                status: 400
                title: Compliance Error
                instance: raiseError
      catch:
        errors:
          with:
            instance: differentInstance
        do:
          - handleInstance:
              set:
                caught: true
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();

    let result = runner.run(json!({})).await;
    assert!(result.is_err());
}

// === Expression: has() function ===

#[tokio::test]
async fn test_runner_retry_success_on_retry() {
    use std::sync::atomic::{AtomicUsize, Ordering};

    let request_count = Arc::new(AtomicUsize::new(0));
    let count_clone = request_count.clone();

    // Mock server: returns 404 for first 2 requests, then 200
    let handler = warp::path("pets").map(move || {
        let count = count_clone.fetch_add(1, Ordering::SeqCst);
        if count < 2 {
            warp::reply::with_status(
                warp::reply::json(&serde_json::json!({"error": "not found"})),
                warp::http::StatusCode::NOT_FOUND,
            )
        } else {
            warp::reply::with_status(
                warp::reply::json(&serde_json::json!({"name": "Buddy"})),
                warp::http::StatusCode::OK,
            )
        }
    });

    let port = start_mock_server(handler);

    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: retry-success
  version: '0.1.0'
do:
  - tryGetPet:
      try:
        - getPet:
            call: http
            with:
              method: get
              endpoint:
                uri: http://localhost:PORT/pets
      catch:
        errors:
          with:
            type: communication
        retry:
          delay:
            milliseconds: 10
          backoff:
            constant: {}
          limit:
            attempt:
              count: 5
"#
    .replace("PORT", &port.to_string());
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    // After 2 retries, the 3rd request should succeed
    assert_eq!(output["name"], json!("Buddy"));
}

// === Shell: arguments with key-value format ===

#[tokio::test]
async fn test_runner_try_catch_except_when_match() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-except-when-match
  version: '0.1.0'
do:
  - safeCall:
      try:
        - failTask:
            raise:
              error:
                type: validation
                status: 400
                title: Bad Request
      catch:
        errors:
          with:
            type: validation
        exceptWhen: ${ .status == 400 }
        do:
          - handleError:
              set:
                caught: true
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();

    // exceptWhen matches status == 400, so catch should be SKIPPED → error propagates
    let result = runner.run(json!({})).await;
    assert!(result.is_err());
    assert_eq!(result.unwrap_err().error_type_short(), "validation");
}

// === Raise error with dynamic title from expression ===

#[tokio::test]
async fn test_runner_try_catch_retry_reference() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-retry-ref
  version: '0.1.0'
use:
  retries:
    myRetry:
      delay:
        milliseconds: 10
      limit:
        attempt:
          count: 2
do:
  - tryCall:
      try:
        - failTask:
            raise:
              error:
                type: runtime
                title: Fail
                status: 500
      catch:
        errors:
          with:
            type: runtime
        retry: myRetry
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();

    // Retry exhausts all attempts
    let result = runner.run(json!({})).await;
    assert!(result.is_err());
}

// === Nested try-catch (inner catches, outer continues) ===

#[tokio::test]
async fn test_runner_try_catch_catch_do_modifies_input() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-modify
  version: '0.1.0'
do:
  - safeCall:
      try:
        - failTask:
            raise:
              error:
                type: runtime
                title: Oops
                status: 500
      catch:
        errors:
          with:
            type: runtime
        do:
          - recover:
              set:
                originalName: "${ .name }"
                recovered: true
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();

    let output = runner
        .run(json!({"name": "Alice", "age": 30}))
        .await
        .unwrap();
    assert_eq!(output["originalName"], json!("Alice"));
    assert_eq!(output["recovered"], json!(true));
}

// === Raise error with detail expression ===

#[tokio::test]
async fn test_runner_try_catch_type_only() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-type-only
  version: '0.1.0'
do:
  - safeCall:
      try:
        - failTask:
            raise:
              error:
                type: validation
                title: Validation Error
                status: 400
      catch:
        errors:
          with:
            type: validation
        do:
          - handleError:
              set:
                caught: true
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["caught"], json!(true));
}

// === Nested export: export in nested do block ===

#[tokio::test]
async fn test_runner_try_catch_as_with_status() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-as-status
  version: '0.1.0'
do:
  - safeCall:
      try:
        - failTask:
            raise:
              error:
                type: authentication
                title: Auth Error
                status: 401
      catch:
        errors:
          with:
            type: authentication
        as: err
        do:
          - handleError:
              set:
                errorStatus: '${ $err.status }'
                errorType: '${ $err.type }'
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["errorStatus"], json!(401));
    assert_eq!(output["errorType"], json!("authentication"));
}

// === Set: multiple expressions in single task ===

#[tokio::test]
async fn test_runner_try_catch_error_details_var() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-error-details-var
  version: '0.1.0'
do:
  - safeCall:
      try:
        - failTask:
            raise:
              error:
                type: validation
                title: Bad Request
                status: 400
                detail: Missing email field
      catch:
        errors:
          with:
            type: validation
        as: err
        do:
          - logError:
              set:
                errorTitle: '${ $err.title }'
                errorDetail: '${ $err.details }'
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["errorTitle"], json!("Bad Request"));
    assert_eq!(output["errorDetail"], json!("Missing email field"));
}

// === For loop: while with custom at/each variables ===

#[tokio::test]
async fn test_runner_try_catch_when_filter_accepts() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-when-accepts
  version: '0.1.0'
do:
  - safeCall:
      try:
        - failTask:
            raise:
              error:
                type: validation
                title: Bad
                status: 400
      catch:
        errors:
          with:
            type: validation
        when: ${ .status >= 400 }
        do:
          - handle:
              set:
                handled: true
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["handled"], json!(true));
}

#[tokio::test]
async fn test_runner_try_catch_when_filter_rejects() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-when-rejects
  version: '0.1.0'
do:
  - safeCall:
      try:
        - failTask:
            raise:
              error:
                type: validation
                title: Bad
                status: 400
      catch:
        errors:
          with:
            type: validation
        when: ${ .status >= 500 }
        do:
          - handle:
              set:
                handled: true
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();

    // when condition doesn't match (400 < 500), so catch is skipped and error propagates
    let result = runner.run(json!({})).await;
    assert!(result.is_err());
}

// === Expression: alternative operator chaining ===

#[tokio::test]
async fn test_runner_try_catch_as_variable_in_catch_do() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-as-variable-in-catch-do
  version: '0.1.0'
do:
  - riskyTask:
      try:
        - failStep:
            raise:
              error:
                type: validation
                title: Bad Input
                status: 400
      catch:
        errors:
          with:
            type: validation
        as: err
        do:
          - handleError:
              set:
                errorType: "${ $err.type }"
                errorStatus: "${ $err.status }"
                recovered: true
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    // $err.type contains the full URI or short name depending on error definition
    let err_type = output["errorType"].as_str().unwrap();
    assert!(
        err_type.contains("validation"),
        "Expected validation in error type, got: {}",
        err_type
    );
    assert_eq!(output["errorStatus"], json!(400));
    assert_eq!(output["recovered"], json!(true));
}

// === Expression: object construction with multiple fields ===

#[tokio::test]
async fn test_runner_try_catch_retry_exponential_backoff() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-retry-exponential
  version: '0.1.0'
do:
  - retryTask:
      try:
        - failStep:
            raise:
              error:
                type: runtime
                title: Temp Failure
                status: 500
      catch:
        errors:
          with:
            type: runtime
        retry:
          delay:
            milliseconds: 10
          backoff:
            exponential:
              factor: 2.0
          limit:
            attempt:
              count: 3
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();

    let start = std::time::Instant::now();
    let result = runner.run(json!({})).await;
    let elapsed = start.elapsed();
    // Should fail after 3 attempts with exponential backoff
    assert!(result.is_err());
    // With exponential backoff: 0ms (first) + 10ms (second) + 40ms (third) ≈ 50ms+
    // Allow generous tolerance since we just want to verify it retries
    assert!(
        elapsed.as_millis() >= 10,
        "Should take at least 10ms with retry delay, got {}ms",
        elapsed.as_millis()
    );
}

// === Try-catch with retry and linear backoff ===

#[tokio::test]
async fn test_runner_try_catch_retry_linear_backoff() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-retry-linear
  version: '0.1.0'
do:
  - retryTask:
      try:
        - failStep:
            raise:
              error:
                type: runtime
                title: Temp Failure
                status: 500
      catch:
        errors:
          with:
            type: runtime
        retry:
          delay:
            milliseconds: 10
          backoff:
            linear:
              increment:
                milliseconds: 10
          limit:
            attempt:
              count: 3
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();

    let start = std::time::Instant::now();
    let result = runner.run(json!({})).await;
    let elapsed = start.elapsed();
    assert!(result.is_err());
    // With linear backoff: 0ms (first) + 10ms (second) + 20ms (third) ≈ 30ms+
    assert!(
        elapsed.as_millis() >= 10,
        "Should take at least 10ms with retry delay, got {}ms",
        elapsed.as_millis()
    );
}

// === Try-catch with retry that eventually succeeds ===

#[tokio::test]
async fn test_runner_try_catch_retry_succeeds_eventually() {
    // Test that retry reference from use.retries works
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-retry-succeeds
  version: '0.1.0'
use:
  retries:
    myRetry:
      delay:
        milliseconds: 10
      limit:
        attempt:
          count: 3
do:
  - retryTask:
      try:
        - failStep:
            raise:
              error:
                type: runtime
                title: Temp Failure
                status: 500
      catch:
        errors:
          with:
            type: runtime
        retry: myRetry
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();

    // Should fail after 3 attempts using referenced retry policy
    let result = runner.run(json!({})).await;
    assert!(result.is_err());
    let err = result.unwrap_err();
    assert_eq!(err.error_type_short(), "runtime");
}

// === Fork compete: verify winning branch output ===

#[tokio::test]
async fn test_runner_try_catch_catch_when() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-no-match-propagates
  version: '0.1.0'
do:
  - guardedTask:
      try:
        - failStep:
            raise:
              error:
                type: validation
                title: Validation Error
                status: 400
      catch:
        errors:
          with:
            type: communication
        do:
          - handleErr:
              set:
                caught: true
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();

    // validation error doesn't match communication filter → propagates
    let result = runner.run(json!({})).await;
    assert!(result.is_err());
    assert_eq!(result.unwrap_err().error_type_short(), "validation");
}

// === Try-catch with catch.when rejecting ===

#[tokio::test]
async fn test_runner_try_catch_catch_when_rejects() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-when-rejects
  version: '0.1.0'
do:
  - guardedTask:
      try:
        - failStep:
            raise:
              error:
                type: validation
                title: Validation Failed
                status: 400
      catch:
        errors:
          with:
            type: validation
        when: ${ .shouldCatch == true }
        do:
          - handleErr:
              set:
                caught: true
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();

    // shouldCatch=false → catch.when rejects → error propagates
    let result = runner.run(json!({"shouldCatch": false})).await;
    assert!(result.is_err());
}

// === Fork compete with output.as ===

#[tokio::test]
async fn test_runner_try_catch_as_status() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-as-status
  version: '0.1.0'
do:
  - guarded:
      try:
        - failStep:
            raise:
              error:
                type: validation
                title: Bad Request
                status: 400
      catch:
        errors:
          with:
            type: validation
        as: err
        do:
          - handleErr:
              set:
                caught: true
                errorStatus: "${ $err.status }"
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["caught"], json!(true));
    assert_eq!(output["errorStatus"], json!(400));
}

// === Export with nested object construction ===

#[tokio::test]
async fn test_runner_try_catch_modify_continue() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-modify-continue
  version: '0.1.0'
do:
  - step1:
      set:
        value: 10
  - guarded:
      try:
        - failStep:
            raise:
              error:
                type: validation
                title: Error
                status: 400
      catch:
        errors:
          with:
            type: validation
        do:
          - recover:
              set:
                value: 0
                recovered: true
  - step3:
      set:
        final: "${ .value }"
        wasRecovered: "${ .recovered }"
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["final"], json!(0));
    assert_eq!(output["wasRecovered"], json!(true));
}

// === Expression: deep object update ===

#[tokio::test]
async fn test_runner_try_catch_swallow_error() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-swallow
  version: '0.1.0'
do:
  - step1:
      set:
        value: before
  - guarded:
      try:
        - failStep:
            raise:
              error:
                type: validation
                title: Swallowed Error
                status: 400
      catch:
        errors:
          with:
            type: validation
  - step3:
      set:
        value: after
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    // Error caught without catch.do — output preserved from before the error
    assert_eq!(output["value"], json!("after"));
}

// === Expression: select with nested conditions ===

#[tokio::test]
async fn test_runner_try_catch_all() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-all
  version: '0.1.0'
do:
  - risky:
      try:
        - failStep:
            raise:
              error:
                type: runtime
                title: Oops
                status: 500
      catch:
        as: err
        do:
          - handleErr:
              set:
                caught: true
                errType: "${ $err.type }"
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["caught"], json!(true));
    assert!(output["errType"].as_str().unwrap().contains("runtime"));
}

// === Raise: all error types via reference ===

#[tokio::test]
async fn test_runner_try_catch_retry_exhausted() {
    // After retry limit is exhausted, the error propagates out
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-retry-exhausted
  version: '0.1.0'
do:
  - risky:
      try:
        - failStep:
            raise:
              error:
                type: validation
                title: Fail
                status: 400
      catch:
        errors:
          with:
            type: validation
        retry:
          delay:
            milliseconds: 1
          backoff:
            constant: {}
          limit:
            attempt:
              count: 2
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();

    // After retry limit, error propagates
    let result = runner.run(json!({})).await;
    assert!(result.is_err());
}

// === Expression: length on various types ===

// Try-catch: catch.do modifies output and continues
#[tokio::test]
async fn test_runner_try_catch_catch_do_export() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-catch-do-recover
  version: '0.1.0'
do:
  - safe:
      try:
        - fail:
            raise:
              error:
                type: runtime
                title: Fail
                status: 500
      catch:
        errors:
          type: runtime
        do:
          - recover:
              set:
                recovered: true
  - check:
      set:
        done: true
        recovered: "${ .recovered }"
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["recovered"], json!(true));
    assert_eq!(output["done"], json!(true));
}

// Try-catch: nested try-catch, inner catches, outer continues
#[tokio::test]
async fn test_runner_try_catch_nested_inner_catches() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-nested-inner
  version: '0.1.0'
do:
  - outer:
      try:
        - inner:
            try:
              - fail:
                  raise:
                    error:
                      type: validation
                      title: Inner Error
                      status: 400
            catch:
              errors:
                type: validation
              as: err
              do:
                - recover:
                    set:
                      innerRecovered: true
                      innerErr: "${ $err.type }"
      catch:
        errors:
          type: runtime
        as: err
        do:
          - recoverOuter:
              set:
                outerRecovered: true
  - verify:
      set:
        innerOk: "${ .innerRecovered }"
        innerErrType: "${ .innerErr }"
        noOuterRecovery: "${ .outerRecovered == null }"
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["innerOk"], json!(true));
    assert_eq!(output["innerErrType"], json!("validation"));
    assert_eq!(output["noOuterRecovery"], json!(true));
}

// Try-catch: catch with when expression
#[tokio::test]
async fn test_runner_try_catch_when_expr_v2() {
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-when-expr-v2
  version: '0.1.0'
do:
  - safe:
      try:
        - fail:
            raise:
              error:
                type: runtime
                title: Test Error
                status: 500
                detail: "Expected error message"
      catch:
        errors:
          with:
            type: runtime
        when: ${ .status >= 400 }
        as: err
        do:
          - recover:
              set:
                caught: true
  - verify:
      set:
        wasCaught: "${ .caught }"
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["wasCaught"], json!(true));
}

#[tokio::test]
async fn test_runner_try_catch_error_variable_java_pattern() {
    // Matches Java SDK's try-catch-error-variable.yaml
    // catch with as: caughtError, then use $caughtError.details in set
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-error-variable
  version: '0.1.0'
do:
  - attemptTask:
      try:
        - failingTask:
            raise:
              error:
                type: https://example.com/errors/transient
                detail: Javierito was here!
                status: 503
      catch:
        as: caughtError
        do:
          - handleError:
              set:
                errorMessage: '${$caughtError.details}'
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["errorMessage"], json!("Javierito was here!"));
}

#[tokio::test]
async fn test_runner_try_catch_match_when_java_pattern() {
    // Matches Java SDK's try-catch-match-when.yaml
    // catch with when: ${ .status == 503 } expression
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-match-when
  version: '0.1.0'
do:
  - attemptTask:
      try:
        - failingTask:
            raise:
              error:
                type: https://example.com/errors/transient
                status: 503
      catch:
        when: '${ .status == 503 }'
        do:
          - handleError:
              set:
                recovered: true
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["recovered"], json!(true));
}

#[tokio::test]
async fn test_runner_try_catch_not_match_when_java_pattern() {
    // Matches Java SDK's try-catch-not-match-when.yaml
    // catch with when: ${ .status == 400 } but error has status 503 - should not match
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-not-match-when
  version: '0.1.0'
do:
  - attemptTask:
      try:
        - failingTask:
            raise:
              error:
                type: https://example.com/errors/transient
                status: 503
      catch:
        when: '${ .status == 400 }'
        do:
          - handleError:
              set:
                recovered: true
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();
    let result = runner.run(json!({})).await;
    // When catch when doesn't match, the error propagates
    assert!(result.is_err());
}

#[tokio::test]
async fn test_runner_try_catch_match_details_java_pattern() {
    // Matches Java SDK's try-catch-match-details.yaml
    // catch with errors.with.details matching error detail
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-match-details
  version: '0.1.0'
do:
  - attemptTask:
      try:
        - failingTask:
            raise:
              error:
                type: https://example.com/errors/transient
                status: 503
                detail: Enforcement Failure - invalid email
      catch:
        errors:
          with:
            type: https://example.com/errors/transient
            status: 503
            details: Enforcement Failure - invalid email
        do:
          - handleError:
              set:
                recovered: true
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["recovered"], json!(true));
}

#[tokio::test]
async fn test_runner_try_catch_not_match_details_java_pattern() {
    // Matches Java SDK's try-catch-not-match-details.yaml
    // catch with errors.with.details that doesn't match the actual error detail
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-not-match-details
  version: '0.1.0'
do:
  - attemptTask:
      try:
        - failingTask:
            raise:
              error:
                type: https://example.com/errors/security
                status: 403
                detail: Enforcement Failure - invalid email
      catch:
        errors:
          with:
            type: https://example.com/errors/security
            status: 403
            details: User not found in tenant catalog
        do:
          - handleError:
              set:
                recovered: true
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();
    let result = runner.run(json!({})).await;
    // Details don't match, error propagates
    assert!(result.is_err());
}

// === Shell return: code on failing command (Java SDK echo-exitcode.yaml pattern) ===

#[tokio::test]
async fn test_runner_try_catch_retry_use_reference() {
    // Go SDK pattern - try with retry referencing use.retries definition
    // When retries are exhausted, the error propagates
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: retry-reference
  version: '0.1.0'
use:
  retries:
    myRetry:
      delay:
        milliseconds: 10
      limit:
        attempt:
          count: 2
do:
  - attemptTask:
      try:
        - failTask:
            raise:
              error:
                type: communication
                status: 500
      catch:
        errors:
          with:
            type: communication
        retry: myRetry
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();
    // After 2 retries, the error still propagates (always raises)
    let result = runner.run(json!({})).await;
    assert!(result.is_err());
    let err = result.unwrap_err();
    assert_eq!(err.error_type_short(), "communication");
}

// === Export with multiple context variables (accumulated via merge) ===

#[tokio::test]
async fn test_runner_try_catch_when_rejects_propagates() {
    // catch.when expression evaluates to false → error propagates
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: catch-when-rejects
  version: '0.1.0'
do:
  - attemptTask:
      try:
        - failTask:
            raise:
              error:
                type: validation
                status: 400
      catch:
        when: ${ .status == 404 }
        do:
          - handleRecovery:
              set:
                recovered: true
"#;
    let runner = WorkflowRunner::new(serde_yaml::from_str(&yaml_str).unwrap()).unwrap();
    let result = runner.run(json!({})).await;
    // catch.when requires .status == 404, but error has status 400 → propagates
    assert!(result.is_err());
}

// === Call function reference with use.functions (Go/Java SDK pattern) ===

#[tokio::test]
async fn test_runner_try_catch_error_variable_full() {
    // Java SDK's try-catch-error-variable.yaml - catch as: caughtError + reference $caughtError
    let yaml_str = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-error-var
  version: '0.1.0'
do:
  - tryTask:
      try:
        - raiseError:
            raise:
              error:
                type: https://serverlessworkflow.io/spec/1.0.0/errors/runtime
                status: 500
                detail: test error occurred
      catch:
        as: caughtError
        errors:
          with:
            type: https://serverlessworkflow.io/spec/1.0.0/errors/runtime
        do:
          - handleError:
              set:
                errorMessage: '${ $caughtError.details }'
"#;
    let output = run_workflow_yaml(&yaml_str, json!({})).await.unwrap();
    assert_eq!(output["errorMessage"], json!("test error occurred"));
}

// === Schedule cron pattern ===

/// Test try-catch-match-status with type AND status combo — Java SDK's try-catch-match-status.yaml
/// Catch error by both type and status matching
#[tokio::test]
async fn test_runner_try_catch_match_status_and_type() {
    let yaml = r#"
document:
  dsl: '1.0.0'
  namespace: test
  name: try-catch-match-status-type
  version: '0.1.0'
do:
  - attemptTask:
      try:
        - failingTask:
            raise:
              error:
                type: https://example.com/errors/transient
                status: 503
      catch:
        errors:
          with:
            type: https://example.com/errors/transient
            status: 503
        do:
          - handleError:
              set:
                recovered: true
"#;
    let workflow: WorkflowDefinition = serde_yaml::from_str(yaml).unwrap();
    let runner = WorkflowRunner::new(workflow).unwrap();

    let output = runner.run(json!({})).await.unwrap();
    assert_eq!(output["recovered"], json!(true));
}

// === E2E: Shell + Set — command result processing ===