duroxide 0.1.27

Durable code execution framework 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
use crate::provider_validation::{Event, EventKind, ExecutionMetadata, start_item};
use crate::provider_validations::ProviderFactory;
use crate::providers::{ScheduledActivityIdentifier, TagFilter, WorkItem};
use std::time::Duration;

/// Test: Fetch Returns Running State for Active Orchestration
/// Goal: Verify that fetch_work_item returns ExecutionState::Running when orchestration is active.
pub async fn test_fetch_returns_running_state_for_active_orchestration<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: fetch returns Running for active orchestration");
    let provider = factory.create_provider().await;

    // 1. Create an active orchestration instance
    provider
        .enqueue_for_orchestrator(start_item("inst-running"), None)
        .await
        .unwrap();

    // Ack start to create instance
    let (_item, token, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    let metadata = ExecutionMetadata {
        orchestration_name: Some("TestOrch".to_string()),
        status: Some("Running".to_string()),
        ..Default::default()
    };

    // Enqueue an activity
    let activity_item = WorkItem::ActivityExecute {
        instance: "inst-running".to_string(),
        execution_id: 1,
        id: 1,
        name: "TestActivity".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };

    provider
        .ack_orchestration_item(
            &token,
            1,
            vec![Event::with_event_id(
                1,
                "inst-running".to_string(),
                1,
                None,
                EventKind::OrchestrationStarted {
                    name: "TestOrch".to_string(),
                    version: "1.0".to_string(),
                    input: "{}".to_string(),
                    parent_instance: None,
                    parent_id: None,
                    carry_forward_events: None,
                    initial_custom_status: None,
                },
            )],
            vec![activity_item],
            vec![],
            metadata,
            vec![],
        )
        .await
        .unwrap();

    // 2. Fetch the activity work item
    let result = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap();

    match result {
        Some((_, _, _)) => {
            // Activity was fetched successfully - the test passes
        }
        None => panic!("Expected to fetch work item"),
    }

    tracing::info!("✓ Test passed: fetch returns Running for active orchestration");
}

/// Test: Fetch Returns Terminal State when Orchestration Completed
/// Goal: Verify that fetch_work_item returns ExecutionState::Terminal when orchestration is completed.
pub async fn test_fetch_returns_terminal_state_when_orchestration_completed<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: fetch returns Terminal for completed orchestration");
    let provider = factory.create_provider().await;

    // 1. Create an active orchestration instance
    provider
        .enqueue_for_orchestrator(start_item("inst-completed"), None)
        .await
        .unwrap();
    let (_item, token, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    // Enqueue activity but also COMPLETE the orchestration
    let metadata = ExecutionMetadata {
        orchestration_name: Some("TestOrch".to_string()),
        status: Some("Completed".to_string()), // Terminal state
        output: Some("done".to_string()),
        ..Default::default()
    };

    let activity_item = WorkItem::ActivityExecute {
        instance: "inst-completed".to_string(),
        execution_id: 1,
        id: 1,
        name: "TestActivity".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };

    provider
        .ack_orchestration_item(
            &token,
            1,
            vec![
                Event::with_event_id(
                    1,
                    "inst-completed".to_string(),
                    1,
                    None,
                    EventKind::OrchestrationStarted {
                        name: "TestOrch".to_string(),
                        version: "1.0".to_string(),
                        input: "{}".to_string(),
                        parent_instance: None,
                        parent_id: None,
                        carry_forward_events: None,
                        initial_custom_status: None,
                    },
                ),
                Event::with_event_id(
                    2,
                    "inst-completed".to_string(),
                    1,
                    None,
                    EventKind::OrchestrationCompleted {
                        output: "done".to_string(),
                    },
                ),
            ],
            vec![activity_item],
            vec![],
            metadata,
            vec![],
        )
        .await
        .unwrap();

    // 2. Fetch the activity work item
    let result = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap();

    match result {
        Some((_, _, _)) => {
            // Activity was fetched successfully - the test passes
        }
        None => panic!("Expected to fetch work item"),
    }

    tracing::info!("✓ Test passed: fetch returns Terminal for completed orchestration");
}

/// Test: Fetch Returns Terminal State when Orchestration Failed
/// Goal: Verify that fetch_work_item returns ExecutionState::Terminal when orchestration is failed.
pub async fn test_fetch_returns_terminal_state_when_orchestration_failed<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: fetch returns Terminal for failed orchestration");
    let provider = factory.create_provider().await;

    // 1. Create an active orchestration instance
    provider
        .enqueue_for_orchestrator(start_item("inst-failed"), None)
        .await
        .unwrap();
    let (_item, token, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    // Enqueue activity but also FAIL the orchestration
    let metadata = ExecutionMetadata {
        orchestration_name: Some("TestOrch".to_string()),
        status: Some("Failed".to_string()), // Terminal state
        ..Default::default()
    };

    let activity_item = WorkItem::ActivityExecute {
        instance: "inst-failed".to_string(),
        execution_id: 1,
        id: 1,
        name: "TestActivity".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };

    provider
        .ack_orchestration_item(
            &token,
            1,
            vec![
                Event::with_event_id(
                    1,
                    "inst-failed".to_string(),
                    1,
                    None,
                    EventKind::OrchestrationStarted {
                        name: "TestOrch".to_string(),
                        version: "1.0".to_string(),
                        input: "{}".to_string(),
                        parent_instance: None,
                        parent_id: None,
                        carry_forward_events: None,
                        initial_custom_status: None,
                    },
                ),
                Event::with_event_id(
                    2,
                    "inst-failed".to_string(),
                    1,
                    None,
                    EventKind::OrchestrationFailed {
                        details: crate::ErrorDetails::Application {
                            kind: crate::AppErrorKind::OrchestrationFailed,
                            message: "boom".to_string(),
                            retryable: false,
                        },
                    },
                ),
            ],
            vec![activity_item],
            vec![],
            metadata,
            vec![],
        )
        .await
        .unwrap();

    // 2. Fetch the activity work item
    let result = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap();

    match result {
        Some((_, _, _)) => {
            // Activity was fetched successfully - the test passes
        }
        None => panic!("Expected to fetch work item"),
    }

    tracing::info!("✓ Test passed: fetch returns Terminal for failed orchestration");
}

/// Test: Fetch Returns Terminal State when Orchestration ContinuedAsNew
/// Goal: Verify that fetch_work_item returns ExecutionState::Terminal when orchestration continued as new.
pub async fn test_fetch_returns_terminal_state_when_orchestration_continued_as_new<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: fetch returns Terminal for ContinuedAsNew orchestration");
    let provider = factory.create_provider().await;

    // 1. Create an active orchestration instance
    provider
        .enqueue_for_orchestrator(start_item("inst-can"), None)
        .await
        .unwrap();
    let (_item, token, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    // Enqueue activity but also ContinueAsNew
    let metadata = ExecutionMetadata {
        orchestration_name: Some("TestOrch".to_string()),
        status: Some("ContinuedAsNew".to_string()), // Terminal state for THIS execution
        output: Some("new-input".to_string()),
        ..Default::default()
    };

    let activity_item = WorkItem::ActivityExecute {
        instance: "inst-can".to_string(),
        execution_id: 1,
        id: 1,
        name: "TestActivity".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };

    provider
        .ack_orchestration_item(
            &token,
            1,
            vec![
                Event::with_event_id(
                    1,
                    "inst-can".to_string(),
                    1,
                    None,
                    EventKind::OrchestrationStarted {
                        name: "TestOrch".to_string(),
                        version: "1.0".to_string(),
                        input: "{}".to_string(),
                        parent_instance: None,
                        parent_id: None,
                        carry_forward_events: None,
                        initial_custom_status: None,
                    },
                ),
                Event::with_event_id(
                    2,
                    "inst-can".to_string(),
                    1,
                    None,
                    EventKind::OrchestrationContinuedAsNew {
                        input: "new-input".to_string(),
                    },
                ),
            ],
            vec![activity_item],
            vec![],
            metadata,
            vec![],
        )
        .await
        .unwrap();

    // 2. Fetch the activity work item
    let result = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap();

    match result {
        Some((_, _, _)) => {
            // Activity was fetched successfully - the test passes
        }
        None => panic!("Expected to fetch work item"),
    }

    tracing::info!("✓ Test passed: fetch returns Terminal for ContinuedAsNew orchestration");
}

/// Test: Fetch Returns Missing State when Instance Deleted
/// Goal: Verify that fetch_work_item returns activity for missing instance.
pub async fn test_fetch_returns_missing_state_when_instance_deleted<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: fetch returns activity for missing instance");
    let provider = factory.create_provider().await;

    // 1. Enqueue an activity directly (simulating a leftover message)
    // We don't create the instance, so it is "missing"
    let activity_item = WorkItem::ActivityExecute {
        instance: "inst-missing".to_string(),
        execution_id: 1,
        id: 1,
        name: "TestActivity".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };

    provider.enqueue_for_worker(activity_item).await.unwrap();

    // 2. Fetch the activity work item
    let result = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap();

    match result {
        Some((_, _, _)) => {
            // Activity was fetched successfully - the test passes
        }
        None => panic!("Expected to fetch work item"),
    }

    tracing::info!("✓ Test passed: fetch returns activity for missing instance");
}

/// Test: Renew Returns Running when Orchestration Active
/// Goal: Verify that renew_work_item_lock returns ExecutionState::Running when orchestration is active.
pub async fn test_renew_returns_running_when_orchestration_active<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: renew returns Running for active orchestration");
    let provider = factory.create_provider().await;

    // 1. Create active instance and activity
    provider
        .enqueue_for_orchestrator(start_item("inst-renew-run"), None)
        .await
        .unwrap();
    let (_item, token, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    let metadata = ExecutionMetadata {
        orchestration_name: Some("TestOrch".to_string()),
        status: Some("Running".to_string()),
        ..Default::default()
    };

    let activity_item = WorkItem::ActivityExecute {
        instance: "inst-renew-run".to_string(),
        execution_id: 1,
        id: 1,
        name: "TestActivity".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };

    provider
        .ack_orchestration_item(
            &token,
            1,
            vec![Event::with_event_id(
                1,
                "inst-renew-run".to_string(),
                1,
                None,
                EventKind::OrchestrationStarted {
                    name: "TestOrch".to_string(),
                    version: "1.0".to_string(),
                    input: "{}".to_string(),
                    parent_instance: None,
                    parent_id: None,
                    carry_forward_events: None,
                    initial_custom_status: None,
                },
            )],
            vec![activity_item],
            vec![],
            metadata,
            vec![],
        )
        .await
        .unwrap();

    // 2. Fetch activity to get lock token
    let (_, lock_token, _) = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap()
        .unwrap();

    // 3. Renew lock
    provider
        .renew_work_item_lock(&lock_token, Duration::from_secs(30))
        .await
        .unwrap();

    tracing::info!("✓ Test passed: renew returns Running for active orchestration");
}

/// Test: Renew Returns Terminal when Orchestration Completed
/// Goal: Verify that renew_work_item_lock returns ExecutionState::Terminal when orchestration is completed.
pub async fn test_renew_returns_terminal_when_orchestration_completed<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: renew returns Terminal for completed orchestration");
    let provider = factory.create_provider().await;

    // 1. Create active instance and activity
    provider
        .enqueue_for_orchestrator(start_item("inst-renew-term"), None)
        .await
        .unwrap();
    let (_item, token, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    let metadata = ExecutionMetadata {
        orchestration_name: Some("TestOrch".to_string()),
        status: Some("Running".to_string()),
        ..Default::default()
    };

    let activity_item = WorkItem::ActivityExecute {
        instance: "inst-renew-term".to_string(),
        execution_id: 1,
        id: 1,
        name: "TestActivity".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };

    provider
        .ack_orchestration_item(
            &token,
            1,
            vec![Event::with_event_id(
                1,
                "inst-renew-term".to_string(),
                1,
                None,
                EventKind::OrchestrationStarted {
                    name: "TestOrch".to_string(),
                    version: "1.0".to_string(),
                    input: "{}".to_string(),
                    parent_instance: None,
                    parent_id: None,
                    carry_forward_events: None,
                    initial_custom_status: None,
                },
            )],
            vec![activity_item],
            vec![],
            metadata,
            vec![],
        )
        .await
        .unwrap();

    // 2. Fetch activity to get lock token
    let (_, lock_token, _) = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap()
        .unwrap();

    // 3. Complete the orchestration (simulate another turn)
    // We need to fetch the orchestration item again (it's not in queue, so we need to trigger it or just update DB directly?
    // Since we can't easily update DB directly in generic test, we'll simulate it by enqueuing a new message to trigger a turn)

    // Enqueue a dummy external event to trigger a turn
    provider
        .enqueue_for_orchestrator(
            WorkItem::ExternalRaised {
                instance: "inst-renew-term".to_string(),
                name: "Trigger".to_string(),
                data: "{}".to_string(),
            },
            None,
        )
        .await
        .unwrap();

    let (_item2, token2, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    let metadata2 = ExecutionMetadata {
        status: Some("Completed".to_string()),
        output: Some("done".to_string()),
        ..Default::default()
    };

    provider
        .ack_orchestration_item(
            &token2,
            1,
            vec![Event::with_event_id(
                2,
                "inst-renew-term".to_string(),
                1,
                None,
                EventKind::OrchestrationCompleted {
                    output: "done".to_string(),
                },
            )],
            vec![],
            vec![],
            metadata2,
            vec![],
        )
        .await
        .unwrap();

    // 4. Renew lock
    provider
        .renew_work_item_lock(&lock_token, Duration::from_secs(30))
        .await
        .unwrap();

    tracing::info!("✓ Test passed: renew returns Terminal for completed orchestration");
}

/// Test: Renew Returns Missing when Instance Deleted
/// Goal: Verify that renew_work_item_lock returns ExecutionState::Missing when instance is deleted.
/// Note: This test is hard to implement generically because "deleting an instance" isn't a standard Provider method.
/// We'll skip this one for generic validation unless we add a delete_instance method to Provider.
/// Instead, we can test "Missing" by having an activity for a non-existent instance, fetching it, and renewing it.
pub async fn test_renew_returns_missing_when_instance_deleted<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: renew for missing instance");
    let provider = factory.create_provider().await;

    // 1. Enqueue activity for missing instance
    let activity_item = WorkItem::ActivityExecute {
        instance: "inst-renew-missing".to_string(),
        execution_id: 1,
        id: 1,
        name: "TestActivity".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };
    provider.enqueue_for_worker(activity_item).await.unwrap();

    // 2. Fetch activity to get lock token
    let (_, lock_token, _) = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap()
        .unwrap();

    // 3. Renew lock
    provider
        .renew_work_item_lock(&lock_token, Duration::from_secs(30))
        .await
        .unwrap();
    // Note: renew_work_item_lock no longer returns ExecutionState

    tracing::info!("✓ Test passed: renew for missing instance");
}

/// Test: Ack Work Item None Deletes Without Enqueue
/// Goal: Verify that ack_work_item(token, None) deletes the item but enqueues nothing.
pub async fn test_ack_work_item_none_deletes_without_enqueue<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: ack(None) deletes without enqueue");
    let provider = factory.create_provider().await;

    // 1. Enqueue activity
    let activity_item = WorkItem::ActivityExecute {
        instance: "inst-ack-none".to_string(),
        execution_id: 1,
        id: 1,
        name: "TestActivity".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };
    provider.enqueue_for_worker(activity_item).await.unwrap();

    // 2. Fetch activity
    let (_, lock_token, _) = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap()
        .unwrap();

    // 3. Ack with None
    provider.ack_work_item(&lock_token, None).await.unwrap();

    // 4. Verify worker queue is empty
    let result = provider
        .fetch_work_item(Duration::from_millis(100), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap();
    assert!(result.is_none(), "Worker queue should be empty");

    // 5. Verify orchestrator queue is empty (no completion enqueued)
    // We can check this by trying to fetch orchestration item.
    // Since we didn't create the instance, fetch_orchestration_item might return None anyway.
    // But if a completion WAS enqueued, it would be there (even if instance is missing, the message exists).
    // However, fetch_orchestration_item usually requires instance lock.
    // A better check might be get_queue_depths if available, or just relying on fetch returning None.

    // Let's try to fetch orchestration item. If a completion was enqueued, it would be visible.
    let orch_result = provider
        .fetch_orchestration_item(Duration::from_millis(100), Duration::ZERO, None)
        .await
        .unwrap();
    assert!(orch_result.is_none(), "Orchestrator queue should be empty");

    tracing::info!("✓ Test passed: ack(None) deletes without enqueue");
}
// ============================================================================
// Lock-Stealing Activity Cancellation Tests
// ============================================================================
// These tests validate the new activity cancellation mechanism where the
// orchestration runtime cancels in-flight activities by deleting their
// worker queue entries ("lock stealing"). The worker detects this when
// its lock renewal or ack fails.

/// Test: Cancelled Activities Are Deleted From Worker Queue
/// Goal: Verify that `ack_orchestration_item` with `cancelled_activities` removes matching entries.
pub async fn test_cancelled_activities_deleted_from_worker_queue<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: cancelled_activities deletes from worker queue");
    let provider = factory.create_provider().await;

    // 1. Create an active orchestration and enqueue multiple activities
    provider
        .enqueue_for_orchestrator(start_item("inst-cancel-delete"), None)
        .await
        .unwrap();

    let (_item, token, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    let metadata = ExecutionMetadata {
        orchestration_name: Some("TestOrch".to_string()),
        status: Some("Running".to_string()),
        ..Default::default()
    };

    // Enqueue 3 activities
    let activity1 = WorkItem::ActivityExecute {
        instance: "inst-cancel-delete".to_string(),
        execution_id: 1,
        id: 1,
        name: "Activity1".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };
    let activity2 = WorkItem::ActivityExecute {
        instance: "inst-cancel-delete".to_string(),
        execution_id: 1,
        id: 2,
        name: "Activity2".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };
    let activity3 = WorkItem::ActivityExecute {
        instance: "inst-cancel-delete".to_string(),
        execution_id: 1,
        id: 3,
        name: "Activity3".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };

    provider
        .ack_orchestration_item(
            &token,
            1,
            vec![Event::with_event_id(
                1,
                "inst-cancel-delete".to_string(),
                1,
                None,
                EventKind::OrchestrationStarted {
                    name: "TestOrch".to_string(),
                    version: "1.0".to_string(),
                    input: "{}".to_string(),
                    parent_instance: None,
                    parent_id: None,
                    carry_forward_events: None,
                    initial_custom_status: None,
                },
            )],
            vec![activity1, activity2, activity3],
            vec![],
            metadata,
            vec![], // No cancellations yet
        )
        .await
        .unwrap();

    // 2. Verify all 3 activities are in worker queue (fetch one to confirm)
    let (_item1, token1, _) = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap()
        .expect("Should have activity in queue");

    // Put it back so we can test cancellation
    provider.abandon_work_item(&token1, None, false).await.unwrap();

    // 3. Trigger another orchestration turn that cancels activities 1 and 2
    provider
        .enqueue_for_orchestrator(
            WorkItem::ExternalRaised {
                instance: "inst-cancel-delete".to_string(),
                name: "Trigger".to_string(),
                data: "{}".to_string(),
            },
            None,
        )
        .await
        .unwrap();

    let (_item2, token2, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    // Cancel activities 1 and 2
    let cancelled = vec![
        ScheduledActivityIdentifier {
            instance: "inst-cancel-delete".to_string(),
            execution_id: 1,
            activity_id: 1,
        },
        ScheduledActivityIdentifier {
            instance: "inst-cancel-delete".to_string(),
            execution_id: 1,
            activity_id: 2,
        },
    ];

    provider
        .ack_orchestration_item(
            &token2,
            1,
            vec![], // No new events
            vec![], // No new activities
            vec![], // No orchestrator items
            ExecutionMetadata::default(),
            cancelled,
        )
        .await
        .unwrap();

    // 4. Verify only activity 3 remains in worker queue
    let (remaining_item, _, _) = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap()
        .expect("Should have activity 3 remaining");

    match remaining_item {
        WorkItem::ActivityExecute { id, .. } => {
            assert_eq!(
                id, 3,
                "Only activity 3 should remain; activities 1 and 2 should be cancelled"
            );
        }
        _ => panic!("Expected ActivityExecute"),
    }

    // Verify no more activities
    let no_more = provider
        .fetch_work_item(Duration::from_millis(100), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap();
    assert!(no_more.is_none(), "Should have no more activities");

    tracing::info!("✓ Test passed: cancelled_activities deletes from worker queue");
}

/// Test: Ack Work Item Fails When Entry Deleted (Lock Stolen)
/// Goal: Verify that `ack_work_item` returns a permanent error when the entry was deleted.
pub async fn test_ack_work_item_fails_when_entry_deleted<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: ack_work_item fails when entry deleted (lock stolen)");
    let provider = factory.create_provider().await;

    // 1. Enqueue and fetch an activity
    let activity_item = WorkItem::ActivityExecute {
        instance: "inst-ack-stolen".to_string(),
        execution_id: 1,
        id: 1,
        name: "TestActivity".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };
    provider.enqueue_for_worker(activity_item).await.unwrap();

    let (_, lock_token, _) = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap()
        .unwrap();

    // 2. Simulate lock stealing: delete the entry via ack with None from a "different worker"
    // In practice, the orchestration runtime does this via cancelled_activities.
    // Here we directly ack with None to simulate the deletion.
    provider.ack_work_item(&lock_token, None).await.unwrap();

    // 3. Try to ack again with the same token - should fail (entry gone)
    let completion = WorkItem::ActivityCompleted {
        instance: "inst-ack-stolen".to_string(),
        execution_id: 1,
        id: 1,
        result: "done".to_string(),
    };
    let result = provider.ack_work_item(&lock_token, Some(completion)).await;

    assert!(result.is_err(), "ack_work_item should fail when entry already deleted");
    let err = result.unwrap_err();
    assert!(
        !err.is_retryable(),
        "Error should be permanent (not retryable) for deleted entry: {err:?}"
    );

    tracing::info!("✓ Test passed: ack_work_item fails when entry deleted (lock stolen)");
}

/// Test: Renew Work Item Lock Fails When Entry Deleted (Cancellation Signal)
/// Goal: Verify that `renew_work_item_lock` fails when the entry was deleted for cancellation.
pub async fn test_renew_fails_when_entry_deleted<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: renew fails when entry deleted (cancellation signal)");
    let provider = factory.create_provider().await;

    // 1. Enqueue and fetch an activity
    let activity_item = WorkItem::ActivityExecute {
        instance: "inst-renew-stolen".to_string(),
        execution_id: 1,
        id: 1,
        name: "TestActivity".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };
    provider.enqueue_for_worker(activity_item).await.unwrap();

    let (_, lock_token, _) = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap()
        .unwrap();

    // 2. Delete the entry (simulating lock stealing / cancellation)
    provider.ack_work_item(&lock_token, None).await.unwrap();

    // 3. Try to renew the lock - should fail (entry gone, signals cancellation)
    let result = provider
        .renew_work_item_lock(&lock_token, Duration::from_secs(30))
        .await;

    assert!(result.is_err(), "renew_work_item_lock should fail when entry deleted");

    tracing::info!("✓ Test passed: renew fails when entry deleted (cancellation signal)");
}

/// Test: Cancelling Non-Existent Activities Is Idempotent
/// Goal: Verify that passing non-existent activity IDs in `cancelled_activities` doesn't cause errors.
pub async fn test_cancelling_nonexistent_activities_is_idempotent<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: cancelling non-existent activities is idempotent");
    let provider = factory.create_provider().await;

    // 1. Create an active orchestration
    provider
        .enqueue_for_orchestrator(start_item("inst-cancel-idempotent"), None)
        .await
        .unwrap();

    let (_item, token, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    // 2. Ack with cancelled_activities that don't exist - should succeed
    let cancelled = vec![
        ScheduledActivityIdentifier {
            instance: "inst-cancel-idempotent".to_string(),
            execution_id: 1,
            activity_id: 999, // Non-existent
        },
        ScheduledActivityIdentifier {
            instance: "inst-cancel-idempotent".to_string(),
            execution_id: 1, // Same execution, non-existent activity
            activity_id: 1,
        },
    ];

    let result = provider
        .ack_orchestration_item(
            &token,
            1,
            vec![Event::with_event_id(
                1,
                "inst-cancel-idempotent".to_string(),
                1,
                None,
                EventKind::OrchestrationStarted {
                    name: "TestOrch".to_string(),
                    version: "1.0".to_string(),
                    input: "{}".to_string(),
                    parent_instance: None,
                    parent_id: None,
                    carry_forward_events: None,
                    initial_custom_status: None,
                },
            )],
            vec![],
            vec![],
            ExecutionMetadata {
                orchestration_name: Some("TestOrch".to_string()),
                ..Default::default()
            },
            cancelled,
        )
        .await;

    assert!(result.is_ok(), "Cancelling non-existent activities should not error");

    tracing::info!("✓ Test passed: cancelling non-existent activities is idempotent");
}

/// Test: Batch Cancellation Deletes Multiple Activities Atomically
/// Goal: Verify that multiple activities can be cancelled in a single ack call.
pub async fn test_batch_cancellation_deletes_multiple_activities<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: batch cancellation deletes multiple activities atomically");
    let provider = factory.create_provider().await;

    // 1. Create orchestration and enqueue many activities
    provider
        .enqueue_for_orchestrator(start_item("inst-batch-cancel"), None)
        .await
        .unwrap();

    let (_item, token, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    let metadata = ExecutionMetadata {
        orchestration_name: Some("TestOrch".to_string()),
        status: Some("Running".to_string()),
        ..Default::default()
    };

    // Enqueue 5 activities
    let activities: Vec<WorkItem> = (1..=5)
        .map(|i| WorkItem::ActivityExecute {
            instance: "inst-batch-cancel".to_string(),
            execution_id: 1,
            id: i,
            name: format!("Activity{i}"),
            input: "{}".to_string(),
            session_id: None,
            tag: None,
        })
        .collect();

    provider
        .ack_orchestration_item(
            &token,
            1,
            vec![Event::with_event_id(
                1,
                "inst-batch-cancel".to_string(),
                1,
                None,
                EventKind::OrchestrationStarted {
                    name: "TestOrch".to_string(),
                    version: "1.0".to_string(),
                    input: "{}".to_string(),
                    parent_instance: None,
                    parent_id: None,
                    carry_forward_events: None,
                    initial_custom_status: None,
                },
            )],
            activities,
            vec![],
            metadata,
            vec![],
        )
        .await
        .unwrap();

    // 2. Cancel all 5 activities in one batch
    provider
        .enqueue_for_orchestrator(
            WorkItem::ExternalRaised {
                instance: "inst-batch-cancel".to_string(),
                name: "Trigger".to_string(),
                data: "{}".to_string(),
            },
            None,
        )
        .await
        .unwrap();

    let (_item2, token2, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    let cancelled: Vec<ScheduledActivityIdentifier> = (1..=5)
        .map(|i| ScheduledActivityIdentifier {
            instance: "inst-batch-cancel".to_string(),
            execution_id: 1,
            activity_id: i,
        })
        .collect();

    provider
        .ack_orchestration_item(
            &token2,
            1,
            vec![],
            vec![],
            vec![],
            ExecutionMetadata::default(),
            cancelled,
        )
        .await
        .unwrap();

    // 3. Verify worker queue is empty
    let remaining = provider
        .fetch_work_item(Duration::from_millis(100), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap();
    assert!(
        remaining.is_none(),
        "All activities should be cancelled; worker queue should be empty"
    );

    tracing::info!("✓ Test passed: batch cancellation deletes multiple activities atomically");
}

/// Test: Same Activity In worker_items And cancelled_activities Is No-Op
/// Goal: Verify that when an activity is both scheduled (INSERT) and cancelled (DELETE)
/// in the same `ack_orchestration_item` call, the net result is the activity NOT being
/// in the worker queue. This happens when an orchestration schedules an activity and
/// immediately drops its future (e.g., select2 loser, or explicit drop without await).
///
/// CRITICAL ORDERING: Providers MUST process worker_items (INSERT) BEFORE
/// cancelled_activities (DELETE). If DELETE happened first, the INSERT would succeed
/// and leave a stale activity in the queue.
pub async fn test_same_activity_in_worker_items_and_cancelled_is_noop<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: same activity in worker_items and cancelled_activities is no-op");
    let provider = factory.create_provider().await;

    // 1. Create an orchestration
    provider
        .enqueue_for_orchestrator(start_item("inst-schedule-then-cancel"), None)
        .await
        .unwrap();

    let (_item, token, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    let metadata = ExecutionMetadata {
        orchestration_name: Some("TestOrch".to_string()),
        status: Some("Running".to_string()),
        ..Default::default()
    };

    // 2. Activity that will be both scheduled AND cancelled in the same call
    // This simulates: schedule_activity() -> immediately drop the future
    let activity_id = 2u64; // event_id 2 (after OrchestrationStarted at id 1)
    let scheduled_activity = WorkItem::ActivityExecute {
        instance: "inst-schedule-then-cancel".to_string(),
        execution_id: 1,
        id: activity_id,
        name: "DroppedActivity".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };

    let cancelled_activity = ScheduledActivityIdentifier {
        instance: "inst-schedule-then-cancel".to_string(),
        execution_id: 1,
        activity_id,
    };

    // 3. Also schedule a "normal" activity that should remain in the queue
    let normal_activity = WorkItem::ActivityExecute {
        instance: "inst-schedule-then-cancel".to_string(),
        execution_id: 1,
        id: 3, // Different id
        name: "NormalActivity".to_string(),
        input: "{}".to_string(),
        session_id: None,
        tag: None,
    };

    // 4. Ack with the activity in BOTH worker_items and cancelled_activities
    // Provider must INSERT first, then DELETE - net result is activity NOT in queue
    provider
        .ack_orchestration_item(
            &token,
            1,
            vec![Event::with_event_id(
                1,
                "inst-schedule-then-cancel".to_string(),
                1,
                None,
                EventKind::OrchestrationStarted {
                    name: "TestOrch".to_string(),
                    version: "1.0".to_string(),
                    input: "{}".to_string(),
                    parent_instance: None,
                    parent_id: None,
                    carry_forward_events: None,
                    initial_custom_status: None,
                },
            )],
            vec![scheduled_activity, normal_activity], // Both activities scheduled
            vec![],
            metadata,
            vec![cancelled_activity], // But activity_id=2 is also cancelled
        )
        .await
        .expect("ack_orchestration_item should succeed");

    // 5. Verify only the normal activity (id=3) is in the worker queue
    let (remaining_item, remaining_token, _) = provider
        .fetch_work_item(Duration::from_secs(30), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap()
        .expect("Should have the normal activity in queue");

    match &remaining_item {
        WorkItem::ActivityExecute { id, name, .. } => {
            assert_eq!(
                *id, 3,
                "Only the normal activity (id=3) should remain; the scheduled-then-cancelled activity (id=2) should be gone"
            );
            assert_eq!(name, "NormalActivity");
        }
        _ => panic!("Expected ActivityExecute, got {remaining_item:?}"),
    }

    // Clean up
    provider.ack_work_item(&remaining_token, None).await.unwrap();

    // 6. Verify no more activities in queue
    let no_more = provider
        .fetch_work_item(Duration::from_millis(100), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap();
    assert!(
        no_more.is_none(),
        "Should have no more activities; the schedule-then-cancel activity should NOT be in queue"
    );

    tracing::info!("✓ Test passed: same activity in worker_items and cancelled_activities is no-op");
}

/// Test: Orphan Activity After Instance Force-Deletion
///
/// When an instance is force-deleted while activities are sitting in the worker queue,
/// the activity can still be fetched and executed. The resulting ActivityCompleted
/// work item is enqueued to the orchestrator queue but has no instance to process it
/// (it becomes orphaned).
///
/// This validates that force-deletion does not corrupt the worker queue and that
/// orphaned completions are harmless.
pub async fn test_orphan_activity_after_instance_force_deletion<F: ProviderFactory>(factory: &F) {
    tracing::info!("→ Testing cancellation: orphan activity after instance force-deletion");
    let provider = factory.create_provider().await;
    let instance = "inst-orphan-activity";

    // 1. Create a running orchestration with an activity in the worker queue
    provider
        .enqueue_for_orchestrator(start_item(instance), None)
        .await
        .unwrap();

    let (_item, orch_token, _) = provider
        .fetch_orchestration_item(Duration::from_secs(30), Duration::ZERO, None)
        .await
        .unwrap()
        .unwrap();

    let activity_item = WorkItem::ActivityExecute {
        instance: instance.to_string(),
        execution_id: 1,
        id: 1,
        name: "TestActivity".to_string(),
        input: "test-input".to_string(),
        session_id: None,
        tag: None,
    };

    provider
        .ack_orchestration_item(
            &orch_token,
            1,
            vec![Event::with_event_id(
                1,
                instance.to_string(),
                1,
                None,
                EventKind::OrchestrationStarted {
                    name: "TestOrch".to_string(),
                    version: "1.0.0".to_string(),
                    input: "{}".to_string(),
                    parent_instance: None,
                    parent_id: None,
                    carry_forward_events: None,
                    initial_custom_status: None,
                },
            )],
            vec![activity_item],
            vec![],
            ExecutionMetadata {
                orchestration_name: Some("TestOrch".to_string()),
                orchestration_version: Some("1.0.0".to_string()),
                status: Some("Running".to_string()),
                ..Default::default()
            },
            vec![],
        )
        .await
        .unwrap();

    // 2. Force-delete the instance (bypassing normal cancellation flow)
    let mgmt = provider
        .as_management_capability()
        .expect("Provider should implement ProviderAdmin");
    let delete_result = mgmt.delete_instance(instance, true).await.unwrap();
    assert!(
        delete_result.instances_deleted > 0,
        "Force delete should remove the instance"
    );

    // Verify instance is gone
    assert!(
        mgmt.get_instance_info(instance).await.is_err(),
        "Instance should no longer exist"
    );

    // 3. Activity should still be fetchable from the worker queue
    //    (worker queue rows may or may not survive deletion — both behaviors are valid)
    let work_item_result = provider
        .fetch_work_item(Duration::from_secs(5), Duration::ZERO, None, &TagFilter::default())
        .await
        .unwrap();

    if let Some((_item, worker_token, _)) = work_item_result {
        tracing::info!("Activity survived instance deletion — executing and completing it");

        // 4. Ack with completion — this enqueues ActivityCompleted to orchestrator queue
        //    which becomes orphaned since the instance is deleted
        let completion = WorkItem::ActivityCompleted {
            instance: instance.to_string(),
            execution_id: 1,
            id: 1,
            result: "orphan-result".to_string(),
        };
        provider.ack_work_item(&worker_token, Some(completion)).await.unwrap();

        tracing::info!("Activity completed — completion is now orphaned in orchestrator queue");
    } else {
        tracing::info!("Force delete also cleaned up worker queue — activity was removed");
    }

    // Either way, the test verifies no panics/errors occurred during the entire flow
    tracing::info!("✓ Test passed: orphan activity after instance force-deletion handled gracefully");
}