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
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
//! Provider validation tests for SQLite
//!
//! This test file validates the SQLite provider using the reusable
//! provider validation test suite from `duroxide::provider_validations`.
//!
#![allow(clippy::unwrap_used)]
#![allow(clippy::clone_on_ref_ptr)]
#![allow(clippy::expect_used)]

//! These tests automatically enable the `provider-test` feature when running
//! tests within the duroxide repository.

#[cfg(feature = "provider-test")]
mod tests {
    use duroxide::provider_validations::sessions::{
        test_abandoned_session_item_ignore_attempt, test_abandoned_session_item_retryable,
        test_ack_updates_session_last_activity, test_activity_lock_expires_session_lock_valid_same_worker_refetches,
        test_both_locks_expire_different_worker_claims, test_cleanup_keeps_active_sessions,
        test_cleanup_keeps_sessions_with_pending_items, test_cleanup_removes_expired_no_items,
        test_cleanup_then_new_item_recreates_session, test_concurrent_session_claim_only_one_wins,
        test_different_sessions_different_workers, test_mixed_session_and_non_session_items,
        test_non_session_items_fetchable_by_any_worker, test_non_session_items_returned_with_session_config,
        test_none_session_skips_session_items, test_original_worker_reclaims_expired_session,
        test_renew_session_lock_active, test_renew_session_lock_after_expiry_returns_zero,
        test_renew_session_lock_no_sessions, test_renew_session_lock_skips_idle,
        test_renew_work_item_updates_session_last_activity, test_session_affinity_blocks_other_worker,
        test_session_affinity_same_worker, test_session_claimable_after_lock_expiry,
        test_session_item_claimable_when_no_session, test_session_items_processed_in_order,
        test_session_lock_expires_activity_lock_valid_ack_succeeds,
        test_session_lock_expires_new_owner_gets_redelivery, test_session_lock_expires_same_worker_reacquires,
        test_session_lock_renewal_extends_past_original_timeout, test_session_takeover_after_lock_expiry,
        test_shared_worker_id_any_caller_can_fetch_owned_session, test_some_session_returns_all_items,
    };
    use duroxide::provider_validations::tag_filtering::{
        test_any_filter_fetches_everything, test_default_and_fetches_untagged_and_matching,
        test_default_only_fetches_untagged, test_multi_runtime_tag_isolation, test_multi_tag_filter,
        test_none_filter_returns_nothing, test_tag_preserved_through_ack_orchestration_item,
        test_tag_round_trip_preservation, test_tag_survives_abandon_and_refetch, test_tags_fetches_only_matching,
    };
    use duroxide::provider_validations::{
        ProviderFactory,
        // Bulk deletion tests
        bulk_deletion::{
            test_delete_instance_bulk_cascades_to_children, test_delete_instance_bulk_completed_before_filter,
            test_delete_instance_bulk_filter_combinations, test_delete_instance_bulk_safety_and_limits,
        },
        // Capability filtering tests
        capability_filtering::{
            test_ack_appends_event_to_corrupted_history, test_ack_stores_pinned_version_via_metadata_update,
            test_concurrent_filtered_fetch_no_double_lock, test_continue_as_new_execution_gets_own_pinned_version,
            test_fetch_corrupted_history_filtered_vs_unfiltered,
            test_fetch_deserialization_error_eventually_reaches_poison,
            test_fetch_deserialization_error_increments_attempt_count,
            test_fetch_filter_applied_before_history_deserialization, test_fetch_filter_boundary_versions,
            test_fetch_filter_does_not_lock_skipped_instances, test_fetch_filter_null_pinned_version_always_compatible,
            test_fetch_filter_skips_incompatible_selects_compatible, test_fetch_single_range_only_uses_first_range,
            test_fetch_with_compatible_filter_returns_item, test_fetch_with_filter_none_returns_any_item,
            test_fetch_with_incompatible_filter_skips_item, test_filter_with_empty_supported_versions_returns_nothing,
            test_pinned_version_immutable_across_ack_cycles, test_pinned_version_stored_via_ack_metadata,
            test_provider_updates_pinned_version_when_told,
        },
        // Deletion tests
        deletion::{
            test_cascade_delete_hierarchy, test_delete_cleans_queues_and_locks, test_delete_get_instance_tree,
            test_delete_get_parent_id, test_delete_instances_atomic, test_delete_instances_atomic_force,
            test_delete_instances_atomic_orphan_detection, test_delete_nonexistent_instance,
            test_delete_running_rejected_force_succeeds, test_delete_terminal_instances,
            test_force_delete_prevents_ack_recreation, test_list_children, test_stale_activity_after_delete_recreate,
        },
        // Long polling tests
        long_polling::{
            test_fetch_respects_timeout_upper_bound, test_short_poll_returns_immediately,
            test_short_poll_work_item_returns_immediately,
        },
        // Poison message tests
        poison_message::{
            abandon_orchestration_item_ignore_attempt_decrements, abandon_work_item_ignore_attempt_decrements,
            attempt_count_is_per_message, ignore_attempt_never_goes_negative, max_attempt_count_across_message_batch,
            orchestration_attempt_count_increments_on_refetch, orchestration_attempt_count_starts_at_one,
            worker_attempt_count_increments_on_lock_expiry, worker_attempt_count_starts_at_one,
        },
        // Prune tests
        prune::{
            test_prune_bulk, test_prune_bulk_includes_running_instances, test_prune_options_combinations,
            test_prune_safety,
        },
        test_abandon_releases_lock_immediately,
        test_abandon_work_item_releases_lock,
        test_abandon_work_item_with_delay,
        test_ack_only_affects_locked_messages,
        // Cancellation tests
        test_ack_work_item_fails_when_entry_deleted,
        test_ack_work_item_none_deletes_without_enqueue,
        // Atomicity tests
        test_atomicity_failure_rollback,
        test_batch_cancellation_deletes_multiple_activities,
        test_cancelled_activities_deleted_from_worker_queue,
        test_cancelling_nonexistent_activities_is_idempotent,
        test_completions_arriving_during_lock_blocked,
        test_concurrent_ack_prevention,
        test_concurrent_instance_fetching,
        test_concurrent_lock_attempts_respect_expiration,
        test_continue_as_new_creates_new_execution,
        test_corrupted_serialization_data,
        test_cross_instance_lock_isolation,
        test_duplicate_event_id_rejection,
        // Instance locking tests
        test_exclusive_instance_lock,
        test_execution_history_persistence,
        test_execution_id_sequencing,
        // Multi-execution tests
        test_execution_isolation,
        test_fetch_returns_missing_state_when_instance_deleted,
        test_fetch_returns_running_state_for_active_orchestration,
        test_fetch_returns_terminal_state_when_orchestration_completed,
        test_fetch_returns_terminal_state_when_orchestration_continued_as_new,
        test_fetch_returns_terminal_state_when_orchestration_failed,
        test_get_execution_info,
        test_get_instance_info,
        test_get_instance_stats_carry_forward,
        test_get_instance_stats_history,
        test_get_instance_stats_kv,
        test_get_instance_stats_kv_delta_only,
        test_get_instance_stats_kv_merged,
        test_get_instance_stats_nonexistent,
        test_get_queue_depths,
        test_get_system_metrics,
        // Instance creation tests
        test_instance_creation_via_metadata,
        // Error handling tests
        test_invalid_lock_token_on_ack,
        test_invalid_lock_token_rejection,
        test_latest_execution_detection,
        test_list_executions,
        // Management tests
        test_list_instances,
        test_list_instances_by_status,
        test_lock_expiration_during_ack,
        test_read_corrupted_history_returns_error,
        test_read_with_execution_corrupted_history_returns_error,
        // Lock expiration tests
        test_lock_expires_after_timeout,
        test_lock_released_only_on_successful_ack,
        test_lock_renewal_on_ack,
        test_lock_token_uniqueness,
        test_lost_lock_token_handling,
        test_message_tagging_during_lock,
        test_missing_instance_metadata,
        test_multi_operation_atomic_ack,
        test_multi_threaded_lock_contention,
        test_multi_threaded_lock_expiration_recovery,
        test_multi_threaded_no_duplicate_processing,
        test_no_instance_creation_on_enqueue,
        test_null_version_handling,
        test_orchestration_lock_renewal_after_expiration,
        test_orphan_activity_after_instance_force_deletion,
        test_orphan_queue_messages_dropped,
        test_renew_fails_when_entry_deleted,
        test_renew_returns_missing_when_instance_deleted,
        test_renew_returns_running_when_orchestration_active,
        test_renew_returns_terminal_when_orchestration_completed,
        test_same_activity_in_worker_items_and_cancelled_is_noop,
        test_sub_orchestration_instance_creation,
        test_timer_delayed_visibility,
        test_worker_ack_atomicity,
        test_worker_ack_fails_after_lock_expiry,
        test_worker_delayed_visibility_skips_future_items,
        test_worker_item_immediate_visibility,
        // Worker lock renewal tests
        test_worker_lock_renewal_after_ack,
        test_worker_lock_renewal_after_expiration,
        test_worker_lock_renewal_extends_timeout,
        test_worker_lock_renewal_invalid_token,
        test_worker_lock_renewal_success,
        test_worker_peek_lock_semantics,
        // Queue semantics tests
        test_worker_queue_fifo_ordering,
    };
    use duroxide::providers::Provider;
    use duroxide::providers::sqlite::SqliteProvider;
    use std::sync::Arc;
    use std::time::Duration;

    const TEST_LOCK_TIMEOUT: Duration = Duration::from_millis(1000);

    /// Standard test factory — each `create_provider()` call gets a fresh in-memory DB.
    /// Used by the vast majority of tests that don't need direct DB manipulation.
    struct SqliteTestFactory;

    #[async_trait::async_trait]
    impl ProviderFactory for SqliteTestFactory {
        async fn create_provider(&self) -> Arc<dyn Provider> {
            Arc::new(SqliteProvider::new_in_memory().await.unwrap())
        }

        fn lock_timeout(&self) -> Duration {
            TEST_LOCK_TIMEOUT
        }
    }

    /// Factory backed by a single shared provider. Required for tests that use
    /// `corrupt_instance_history()` or `get_max_attempt_count()`, because those
    /// need direct SQL access to the same DB that `create_provider()` returns.
    struct SharedSqliteTestFactory {
        provider: Arc<SqliteProvider>,
    }

    impl SharedSqliteTestFactory {
        async fn new() -> Self {
            Self {
                provider: Arc::new(SqliteProvider::new_in_memory().await.unwrap()),
            }
        }
    }

    #[async_trait::async_trait]
    impl ProviderFactory for SharedSqliteTestFactory {
        async fn create_provider(&self) -> Arc<dyn Provider> {
            self.provider.clone()
        }

        fn lock_timeout(&self) -> Duration {
            TEST_LOCK_TIMEOUT
        }

        async fn corrupt_instance_history(&self, instance: &str) {
            sqlx::query("UPDATE history SET event_data = 'NOT_VALID_JSON{{{' WHERE instance_id = ?")
                .bind(instance)
                .execute(self.provider.get_pool())
                .await
                .expect("Failed to corrupt history");
        }

        async fn get_max_attempt_count(&self, instance: &str) -> u32 {
            let count: i64 =
                sqlx::query_scalar("SELECT MAX(attempt_count) FROM orchestrator_queue WHERE instance_id = ?")
                    .bind(instance)
                    .fetch_one(self.provider.get_pool())
                    .await
                    .expect("Failed to query attempt_count");
            count as u32
        }
    }

    // Atomicity tests
    #[tokio::test]
    async fn test_sqlite_atomicity_failure_rollback() {
        test_atomicity_failure_rollback(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_multi_operation_atomic_ack() {
        test_multi_operation_atomic_ack(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_lock_released_only_on_successful_ack() {
        test_lock_released_only_on_successful_ack(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_concurrent_ack_prevention() {
        test_concurrent_ack_prevention(&SqliteTestFactory).await;
    }

    // Error handling tests
    #[tokio::test]
    async fn test_sqlite_invalid_lock_token_on_ack() {
        test_invalid_lock_token_on_ack(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_duplicate_event_id_rejection() {
        test_duplicate_event_id_rejection(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_missing_instance_metadata() {
        test_missing_instance_metadata(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_corrupted_serialization_data() {
        test_corrupted_serialization_data(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_lock_expiration_during_ack() {
        test_lock_expiration_during_ack(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_read_corrupted_history_returns_error() {
        test_read_corrupted_history_returns_error(&SharedSqliteTestFactory::new().await).await;
    }

    #[tokio::test]
    async fn test_sqlite_read_with_execution_corrupted_history_returns_error() {
        test_read_with_execution_corrupted_history_returns_error(&SharedSqliteTestFactory::new().await)
            .await;
    }

    // Instance locking tests
    #[tokio::test]
    async fn test_sqlite_exclusive_instance_lock() {
        test_exclusive_instance_lock(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_lock_token_uniqueness() {
        test_lock_token_uniqueness(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_invalid_lock_token_rejection() {
        test_invalid_lock_token_rejection(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_concurrent_instance_fetching() {
        test_concurrent_instance_fetching(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_completions_arriving_during_lock_blocked() {
        test_completions_arriving_during_lock_blocked(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_cross_instance_lock_isolation() {
        test_cross_instance_lock_isolation(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_message_tagging_during_lock() {
        test_message_tagging_during_lock(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_ack_only_affects_locked_messages() {
        test_ack_only_affects_locked_messages(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_multi_threaded_lock_contention() {
        test_multi_threaded_lock_contention(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_multi_threaded_no_duplicate_processing() {
        test_multi_threaded_no_duplicate_processing(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_multi_threaded_lock_expiration_recovery() {
        test_multi_threaded_lock_expiration_recovery(&SqliteTestFactory).await;
    }

    // Lock expiration tests
    #[tokio::test]
    async fn test_sqlite_lock_expires_after_timeout() {
        test_lock_expires_after_timeout(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_abandon_releases_lock_immediately() {
        test_abandon_releases_lock_immediately(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_lock_renewal_on_ack() {
        test_lock_renewal_on_ack(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_concurrent_lock_attempts_respect_expiration() {
        test_concurrent_lock_attempts_respect_expiration(&SqliteTestFactory).await;
    }

    // Multi-execution tests
    #[tokio::test]
    async fn test_sqlite_execution_isolation() {
        test_execution_isolation(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_latest_execution_detection() {
        test_latest_execution_detection(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_execution_id_sequencing() {
        test_execution_id_sequencing(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_continue_as_new_creates_new_execution() {
        test_continue_as_new_creates_new_execution(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_execution_history_persistence() {
        test_execution_history_persistence(&SqliteTestFactory).await;
    }

    // Queue semantics tests
    #[tokio::test]
    async fn test_sqlite_worker_queue_fifo_ordering() {
        test_worker_queue_fifo_ordering(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_worker_peek_lock_semantics() {
        test_worker_peek_lock_semantics(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_worker_ack_atomicity() {
        test_worker_ack_atomicity(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_timer_delayed_visibility() {
        test_timer_delayed_visibility(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_lost_lock_token_handling() {
        test_lost_lock_token_handling(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_worker_item_immediate_visibility() {
        test_worker_item_immediate_visibility(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_worker_delayed_visibility_skips_future_items() {
        test_worker_delayed_visibility_skips_future_items(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_orphan_queue_messages_dropped() {
        test_orphan_queue_messages_dropped(&SqliteTestFactory).await;
    }

    // Management tests
    #[tokio::test]
    async fn test_sqlite_list_instances() {
        test_list_instances(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_list_instances_by_status() {
        test_list_instances_by_status(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_list_executions() {
        test_list_executions(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_get_instance_info() {
        test_get_instance_info(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_get_execution_info() {
        test_get_execution_info(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_get_system_metrics() {
        test_get_system_metrics(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_get_queue_depths() {
        test_get_queue_depths(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_get_instance_stats_nonexistent() {
        test_get_instance_stats_nonexistent(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_get_instance_stats_history() {
        test_get_instance_stats_history(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_get_instance_stats_kv() {
        test_get_instance_stats_kv(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_get_instance_stats_carry_forward() {
        test_get_instance_stats_carry_forward(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_get_instance_stats_kv_delta_only() {
        test_get_instance_stats_kv_delta_only(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_get_instance_stats_kv_merged() {
        test_get_instance_stats_kv_merged(&SqliteTestFactory).await;
    }

    // Instance creation tests
    #[tokio::test]
    async fn test_sqlite_instance_creation_via_metadata() {
        test_instance_creation_via_metadata(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_no_instance_creation_on_enqueue() {
        test_no_instance_creation_on_enqueue(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_null_version_handling() {
        test_null_version_handling(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_sub_orchestration_instance_creation() {
        test_sub_orchestration_instance_creation(&SqliteTestFactory).await;
    }

    // Long polling tests (SQLite uses short polling)
    #[tokio::test]
    async fn test_sqlite_short_poll_returns_immediately() {
        let provider = SqliteTestFactory.create_provider().await;
        test_short_poll_returns_immediately(&*provider, SqliteTestFactory.short_poll_threshold()).await;
    }

    #[tokio::test]
    async fn test_sqlite_short_poll_work_item_returns_immediately() {
        let provider = SqliteTestFactory.create_provider().await;
        test_short_poll_work_item_returns_immediately(&*provider, SqliteTestFactory.short_poll_threshold()).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_respects_timeout_upper_bound() {
        let provider = SqliteTestFactory.create_provider().await;
        test_fetch_respects_timeout_upper_bound(&*provider).await;
    }

    // Poison message tests
    #[tokio::test]
    async fn test_sqlite_orchestration_attempt_count_starts_at_one() {
        orchestration_attempt_count_starts_at_one(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_orchestration_attempt_count_increments_on_refetch() {
        orchestration_attempt_count_increments_on_refetch(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_worker_attempt_count_starts_at_one() {
        worker_attempt_count_starts_at_one(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_worker_attempt_count_increments_on_lock_expiry() {
        worker_attempt_count_increments_on_lock_expiry(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_attempt_count_is_per_message() {
        attempt_count_is_per_message(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_abandon_work_item_ignore_attempt_decrements() {
        abandon_work_item_ignore_attempt_decrements(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_abandon_orchestration_item_ignore_attempt_decrements() {
        abandon_orchestration_item_ignore_attempt_decrements(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_ignore_attempt_never_goes_negative() {
        ignore_attempt_never_goes_negative(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_max_attempt_count_across_message_batch() {
        max_attempt_count_across_message_batch(&SqliteTestFactory).await;
    }

    // abandon_work_item tests
    #[tokio::test]
    async fn test_sqlite_abandon_work_item_releases_lock() {
        test_abandon_work_item_releases_lock(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_abandon_work_item_with_delay() {
        test_abandon_work_item_with_delay(&SqliteTestFactory).await;
    }

    // Cancellation tests (activity cancellation support)
    #[tokio::test]
    async fn test_sqlite_fetch_returns_running_state_for_active_orchestration() {
        test_fetch_returns_running_state_for_active_orchestration(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_returns_terminal_state_when_orchestration_completed() {
        test_fetch_returns_terminal_state_when_orchestration_completed(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_returns_terminal_state_when_orchestration_failed() {
        test_fetch_returns_terminal_state_when_orchestration_failed(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_returns_terminal_state_when_orchestration_continued_as_new() {
        test_fetch_returns_terminal_state_when_orchestration_continued_as_new(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_returns_missing_state_when_instance_deleted() {
        test_fetch_returns_missing_state_when_instance_deleted(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_renew_returns_running_when_orchestration_active() {
        test_renew_returns_running_when_orchestration_active(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_renew_returns_terminal_when_orchestration_completed() {
        test_renew_returns_terminal_when_orchestration_completed(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_renew_returns_missing_when_instance_deleted() {
        test_renew_returns_missing_when_instance_deleted(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_ack_work_item_none_deletes_without_enqueue() {
        test_ack_work_item_none_deletes_without_enqueue(&SqliteTestFactory).await;
    }

    // Lock-stealing activity cancellation tests
    #[tokio::test]
    async fn test_sqlite_cancelled_activities_deleted_from_worker_queue() {
        test_cancelled_activities_deleted_from_worker_queue(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_ack_work_item_fails_when_entry_deleted() {
        test_ack_work_item_fails_when_entry_deleted(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_renew_fails_when_entry_deleted() {
        test_renew_fails_when_entry_deleted(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_cancelling_nonexistent_activities_is_idempotent() {
        test_cancelling_nonexistent_activities_is_idempotent(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_batch_cancellation_deletes_multiple_activities() {
        test_batch_cancellation_deletes_multiple_activities(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_same_activity_in_worker_items_and_cancelled_is_noop() {
        test_same_activity_in_worker_items_and_cancelled_is_noop(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_orphan_activity_after_instance_force_deletion() {
        test_orphan_activity_after_instance_force_deletion(&SqliteTestFactory).await;
    }

    // Deletion tests
    #[tokio::test]
    async fn test_sqlite_delete_terminal_instances() {
        test_delete_terminal_instances(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_delete_running_rejected_force_succeeds() {
        test_delete_running_rejected_force_succeeds(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_delete_nonexistent_instance() {
        test_delete_nonexistent_instance(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_delete_cleans_queues_and_locks() {
        test_delete_cleans_queues_and_locks(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_cascade_delete_hierarchy() {
        test_cascade_delete_hierarchy(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_force_delete_prevents_ack_recreation() {
        test_force_delete_prevents_ack_recreation(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_list_children() {
        test_list_children(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_delete_get_parent_id() {
        test_delete_get_parent_id(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_delete_get_instance_tree() {
        test_delete_get_instance_tree(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_delete_instances_atomic() {
        test_delete_instances_atomic(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_delete_instances_atomic_force() {
        test_delete_instances_atomic_force(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_delete_instances_atomic_orphan_detection() {
        test_delete_instances_atomic_orphan_detection(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_stale_activity_after_delete_recreate() {
        test_stale_activity_after_delete_recreate(&SqliteTestFactory).await;
    }

    // Worker lock renewal tests
    #[tokio::test]
    async fn test_sqlite_worker_lock_renewal_success() {
        test_worker_lock_renewal_success(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_worker_lock_renewal_invalid_token() {
        test_worker_lock_renewal_invalid_token(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_worker_lock_renewal_after_expiration() {
        test_worker_lock_renewal_after_expiration(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_worker_lock_renewal_extends_timeout() {
        test_worker_lock_renewal_extends_timeout(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_worker_lock_renewal_after_ack() {
        test_worker_lock_renewal_after_ack(&SqliteTestFactory).await;
    }

    // Lock expiry boundary tests
    #[tokio::test]
    async fn test_sqlite_worker_ack_fails_after_lock_expiry() {
        test_worker_ack_fails_after_lock_expiry(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_orchestration_lock_renewal_after_expiration() {
        test_orchestration_lock_renewal_after_expiration(&SqliteTestFactory).await;
    }

    // Prune tests
    #[tokio::test]
    async fn test_sqlite_prune_options_combinations() {
        test_prune_options_combinations(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_prune_safety() {
        test_prune_safety(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_prune_bulk() {
        test_prune_bulk(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_prune_bulk_includes_running_instances() {
        test_prune_bulk_includes_running_instances(&SqliteTestFactory).await;
    }

    // Bulk deletion tests
    #[tokio::test]
    async fn test_sqlite_delete_instance_bulk_filter_combinations() {
        test_delete_instance_bulk_filter_combinations(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_delete_instance_bulk_safety_and_limits() {
        test_delete_instance_bulk_safety_and_limits(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_delete_instance_bulk_completed_before_filter() {
        test_delete_instance_bulk_completed_before_filter(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_delete_instance_bulk_cascades_to_children() {
        test_delete_instance_bulk_cascades_to_children(&SqliteTestFactory).await;
    }

    // Capability filtering tests
    #[tokio::test]
    async fn test_sqlite_fetch_with_filter_none_returns_any_item() {
        test_fetch_with_filter_none_returns_any_item(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_with_compatible_filter_returns_item() {
        test_fetch_with_compatible_filter_returns_item(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_with_incompatible_filter_skips_item() {
        test_fetch_with_incompatible_filter_skips_item(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_filter_skips_incompatible_selects_compatible() {
        test_fetch_filter_skips_incompatible_selects_compatible(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_filter_does_not_lock_skipped_instances() {
        test_fetch_filter_does_not_lock_skipped_instances(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_filter_null_pinned_version_always_compatible() {
        test_fetch_filter_null_pinned_version_always_compatible(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_filter_boundary_versions() {
        test_fetch_filter_boundary_versions(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_pinned_version_stored_via_ack_metadata() {
        test_pinned_version_stored_via_ack_metadata(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_pinned_version_immutable_across_ack_cycles() {
        test_pinned_version_immutable_across_ack_cycles(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_continue_as_new_execution_gets_own_pinned_version() {
        test_continue_as_new_execution_gets_own_pinned_version(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_filter_with_empty_supported_versions_returns_nothing() {
        test_filter_with_empty_supported_versions_returns_nothing(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_concurrent_filtered_fetch_no_double_lock() {
        test_concurrent_filtered_fetch_no_double_lock(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_ack_stores_pinned_version_via_metadata_update() {
        test_ack_stores_pinned_version_via_metadata_update(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_provider_updates_pinned_version_when_told() {
        test_provider_updates_pinned_version_when_told(&SqliteTestFactory).await;
    }

    // Category I: Deserialization contract tests (provider-agnostic via ProviderFactory)
    #[tokio::test]
    async fn test_sqlite_fetch_corrupted_history_filtered_vs_unfiltered() {
        test_fetch_corrupted_history_filtered_vs_unfiltered(&SharedSqliteTestFactory::new().await).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_deserialization_error_increments_attempt_count() {
        test_fetch_deserialization_error_increments_attempt_count(&SharedSqliteTestFactory::new().await).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_deserialization_error_eventually_reaches_poison() {
        test_fetch_deserialization_error_eventually_reaches_poison(&SharedSqliteTestFactory::new().await).await;
    }

    // Category F2: Additional edge cases
    #[tokio::test]
    async fn test_sqlite_fetch_filter_applied_before_history_deserialization() {
        test_fetch_filter_applied_before_history_deserialization(&SharedSqliteTestFactory::new().await).await;
    }

    #[tokio::test]
    async fn test_sqlite_fetch_single_range_only_uses_first_range() {
        test_fetch_single_range_only_uses_first_range(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_ack_appends_event_to_corrupted_history() {
        test_ack_appends_event_to_corrupted_history(&SharedSqliteTestFactory::new().await).await;
    }

    // ======================================================================
    // Session Routing Validations
    // ======================================================================

    #[tokio::test]
    async fn test_sqlite_non_session_items_fetchable_by_any_worker() {
        test_non_session_items_fetchable_by_any_worker(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_session_item_claimable_when_no_session() {
        test_session_item_claimable_when_no_session(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_session_affinity_same_worker() {
        test_session_affinity_same_worker(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_session_affinity_blocks_other_worker() {
        test_session_affinity_blocks_other_worker(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_different_sessions_different_workers() {
        test_different_sessions_different_workers(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_mixed_session_and_non_session_items() {
        test_mixed_session_and_non_session_items(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_session_claimable_after_lock_expiry() {
        test_session_claimable_after_lock_expiry(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_none_session_skips_session_items() {
        test_none_session_skips_session_items(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_some_session_returns_all_items() {
        test_some_session_returns_all_items(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_renew_session_lock_active() {
        test_renew_session_lock_active(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_renew_session_lock_skips_idle() {
        test_renew_session_lock_skips_idle(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_renew_session_lock_no_sessions() {
        test_renew_session_lock_no_sessions(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_cleanup_removes_expired_no_items() {
        test_cleanup_removes_expired_no_items(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_cleanup_keeps_sessions_with_pending_items() {
        test_cleanup_keeps_sessions_with_pending_items(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_cleanup_keeps_active_sessions() {
        test_cleanup_keeps_active_sessions(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_ack_updates_session_last_activity() {
        test_ack_updates_session_last_activity(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_renew_work_item_updates_session_last_activity() {
        test_renew_work_item_updates_session_last_activity(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_session_items_processed_in_order() {
        test_session_items_processed_in_order(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_non_session_items_returned_with_session_config() {
        test_non_session_items_returned_with_session_config(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_shared_worker_id_any_caller_can_fetch_owned_session() {
        test_shared_worker_id_any_caller_can_fetch_owned_session(&SqliteTestFactory).await;
    }

    // ======================================================================
    // Session Race Condition Validations
    // ======================================================================

    #[tokio::test]
    async fn test_sqlite_concurrent_session_claim_only_one_wins() {
        test_concurrent_session_claim_only_one_wins(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_session_takeover_after_lock_expiry() {
        test_session_takeover_after_lock_expiry(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_cleanup_then_new_item_recreates_session() {
        test_cleanup_then_new_item_recreates_session(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_abandoned_session_item_retryable() {
        test_abandoned_session_item_retryable(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_abandoned_session_item_ignore_attempt() {
        test_abandoned_session_item_ignore_attempt(&SqliteTestFactory).await;
    }

    // ======================================================================
    // Session Lock Expiry Boundary Validations
    // ======================================================================

    #[tokio::test]
    async fn test_sqlite_renew_session_lock_after_expiry_returns_zero() {
        test_renew_session_lock_after_expiry_returns_zero(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_original_worker_reclaims_expired_session() {
        test_original_worker_reclaims_expired_session(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_activity_lock_expires_session_lock_valid_same_worker_refetches() {
        test_activity_lock_expires_session_lock_valid_same_worker_refetches(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_both_locks_expire_different_worker_claims() {
        test_both_locks_expire_different_worker_claims(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_session_lock_expires_activity_lock_valid_ack_succeeds() {
        test_session_lock_expires_activity_lock_valid_ack_succeeds(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_session_lock_expires_new_owner_gets_redelivery() {
        test_session_lock_expires_new_owner_gets_redelivery(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_session_lock_expires_same_worker_reacquires() {
        test_session_lock_expires_same_worker_reacquires(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_session_lock_renewal_extends_past_original_timeout() {
        test_session_lock_renewal_extends_past_original_timeout(&SqliteTestFactory).await;
    }

    // Custom status tests
    use duroxide::provider_validations::custom_status::{
        test_custom_status_clear, test_custom_status_default_on_new_instance, test_custom_status_none_preserves,
        test_custom_status_nonexistent_instance, test_custom_status_polling_no_change, test_custom_status_set,
        test_custom_status_version_increments,
    };

    #[tokio::test]
    async fn test_sqlite_custom_status_set() {
        test_custom_status_set(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_custom_status_clear() {
        test_custom_status_clear(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_custom_status_none_preserves() {
        test_custom_status_none_preserves(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_custom_status_version_increments() {
        test_custom_status_version_increments(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_custom_status_polling_no_change() {
        test_custom_status_polling_no_change(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_custom_status_nonexistent_instance() {
        test_custom_status_nonexistent_instance(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_custom_status_default_on_new_instance() {
        test_custom_status_default_on_new_instance(&SqliteTestFactory).await;
    }

    // Tag filtering tests
    #[tokio::test]
    async fn test_sqlite_tag_default_only_fetches_untagged() {
        test_default_only_fetches_untagged(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_tag_tags_fetches_only_matching() {
        test_tags_fetches_only_matching(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_tag_default_and_fetches_untagged_and_matching() {
        test_default_and_fetches_untagged_and_matching(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_tag_none_filter_returns_nothing() {
        test_none_filter_returns_nothing(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_tag_multi_tag_filter() {
        test_multi_tag_filter(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_tag_round_trip_preservation() {
        test_tag_round_trip_preservation(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_tag_any_filter_fetches_everything() {
        test_any_filter_fetches_everything(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_tag_survives_abandon_and_refetch() {
        test_tag_survives_abandon_and_refetch(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_tag_multi_runtime_isolation() {
        test_multi_runtime_tag_isolation(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_tag_preserved_through_ack_orchestration_item() {
        test_tag_preserved_through_ack_orchestration_item(&SqliteTestFactory).await;
    }

    // KV store tests
    use duroxide::provider_validations::kv_store::{
        test_kv_clear_all, test_kv_clear_isolation, test_kv_clear_nonexistent_key, test_kv_clear_single,
        test_kv_cross_execution_overwrite, test_kv_cross_execution_remove_readd, test_kv_delete_instance_cascades,
        test_kv_delete_instance_with_children, test_kv_empty_value, test_kv_execution_id_tracking,
        test_kv_get_nonexistent, test_kv_get_unknown_instance, test_kv_instance_isolation, test_kv_large_value,
        test_kv_overwrite, test_kv_prune_current_execution_protected, test_kv_prune_preserves_all_keys,
        test_kv_prune_preserves_overwritten, test_kv_set_after_clear, test_kv_set_and_get,
        test_kv_snapshot_after_clear_all, test_kv_snapshot_after_clear_single, test_kv_snapshot_cross_execution,
        test_kv_snapshot_empty, test_kv_snapshot_in_fetch, test_kv_special_chars_in_key,
    };

    #[tokio::test]
    async fn test_sqlite_kv_set_and_get() {
        test_kv_set_and_get(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_overwrite() {
        test_kv_overwrite(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_clear_single() {
        test_kv_clear_single(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_clear_all() {
        test_kv_clear_all(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_get_nonexistent() {
        test_kv_get_nonexistent(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_snapshot_in_fetch() {
        test_kv_snapshot_in_fetch(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_snapshot_after_clear_single() {
        test_kv_snapshot_after_clear_single(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_snapshot_after_clear_all() {
        test_kv_snapshot_after_clear_all(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_execution_id_tracking() {
        test_kv_execution_id_tracking(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_cross_execution_overwrite() {
        test_kv_cross_execution_overwrite(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_cross_execution_remove_readd() {
        test_kv_cross_execution_remove_readd(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_prune_preserves_overwritten() {
        test_kv_prune_preserves_overwritten(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_prune_preserves_all_keys() {
        test_kv_prune_preserves_all_keys(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_instance_isolation() {
        test_kv_instance_isolation(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_delete_instance_cascades() {
        test_kv_delete_instance_cascades(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_clear_nonexistent_key() {
        test_kv_clear_nonexistent_key(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_get_unknown_instance() {
        test_kv_get_unknown_instance(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_set_after_clear() {
        test_kv_set_after_clear(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_empty_value() {
        test_kv_empty_value(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_large_value() {
        test_kv_large_value(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_special_chars_in_key() {
        test_kv_special_chars_in_key(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_snapshot_empty() {
        test_kv_snapshot_empty(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_snapshot_cross_execution() {
        test_kv_snapshot_cross_execution(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_prune_current_execution_protected() {
        test_kv_prune_current_execution_protected(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_delete_instance_with_children() {
        test_kv_delete_instance_with_children(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_clear_isolation() {
        test_kv_clear_isolation(&SqliteTestFactory).await;
    }

    // KV delta tests (spec for kv_delta change)
    use duroxide::provider_validations::kv_store::{
        test_kv_delta_clear_all_tombstones_store, test_kv_delta_client_reads_merged,
        test_kv_delta_delete_instance_cascades, test_kv_delta_merged_on_can, test_kv_delta_merged_on_completion,
        test_kv_delta_prune_untouched_key_survives, test_kv_delta_snapshot_excludes_current_execution,
        test_kv_delta_snapshot_includes_completed_execution, test_kv_delta_tombstone_overrides_store,
    };

    #[tokio::test]
    async fn test_sqlite_kv_delta_snapshot_excludes_current_execution() {
        test_kv_delta_snapshot_excludes_current_execution(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_delta_snapshot_includes_completed_execution() {
        test_kv_delta_snapshot_includes_completed_execution(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_delta_client_reads_merged() {
        test_kv_delta_client_reads_merged(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_delta_tombstone_overrides_store() {
        test_kv_delta_tombstone_overrides_store(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_delta_clear_all_tombstones_store() {
        test_kv_delta_clear_all_tombstones_store(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_delta_merged_on_completion() {
        test_kv_delta_merged_on_completion(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_delta_merged_on_can() {
        test_kv_delta_merged_on_can(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_delta_delete_instance_cascades() {
        test_kv_delta_delete_instance_cascades(&SqliteTestFactory).await;
    }

    #[tokio::test]
    async fn test_sqlite_kv_delta_prune_untouched_key_survives() {
        test_kv_delta_prune_untouched_key_survives(&SqliteTestFactory).await;
    }
}