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
//! Fault Injection Providers for Testing
//!
//! Provides wrapper providers that can inject faults for testing error handling,
//! poison message detection, and observability.

// These types are used by poison_message_tests but not by all test files that import common.
#![allow(dead_code)]

use async_trait::async_trait;
use duroxide::providers::error::ProviderError;
use duroxide::providers::sqlite::SqliteProvider;
use duroxide::providers::{
    DispatcherCapabilityFilter, ExecutionMetadata, OrchestrationItem, Provider, ProviderAdmin,
    ScheduledActivityIdentifier, SessionFetchConfig, TagFilter, WorkItem,
};
use duroxide::{Event, EventKind};
use std::sync::Arc;
use std::sync::atomic::{AtomicBool, AtomicU32, Ordering};
use std::time::Duration;

/// A provider wrapper that can inject poison conditions by artificially
/// inflating attempt counts on fetch operations.
///
/// This allows testing poison message detection without actually abandoning
/// messages max_attempts times.
pub struct PoisonInjectingProvider {
    inner: Arc<SqliteProvider>,
    /// Orchestration fetch will return this attempt_count (0 = no injection)
    inject_orchestration_attempt_count: AtomicU32,
    /// Activity fetch will return this attempt_count (0 = no injection)
    inject_activity_attempt_count: AtomicU32,
    /// If true, orchestration injection persists across fetches until cleared
    orchestration_injection_persistent: AtomicBool,
    /// If true, activity injection persists across fetches until cleared
    activity_injection_persistent: AtomicBool,
    /// Skip this many orchestration fetches before injecting (0 = immediate)
    orchestration_skip_count: AtomicU32,
    /// Skip this many activity fetches before injecting (0 = immediate)
    activity_skip_count: AtomicU32,
}

impl PoisonInjectingProvider {
    pub fn new(inner: Arc<SqliteProvider>) -> Self {
        Self {
            inner,
            inject_orchestration_attempt_count: AtomicU32::new(0),
            inject_activity_attempt_count: AtomicU32::new(0),
            orchestration_injection_persistent: AtomicBool::new(false),
            activity_injection_persistent: AtomicBool::new(false),
            orchestration_skip_count: AtomicU32::new(0),
            activity_skip_count: AtomicU32::new(0),
        }
    }

    /// Next orchestration fetch will return this attempt_count instead of real one.
    /// Automatically resets after one fetch.
    pub fn inject_orchestration_poison(&self, attempt_count: u32) {
        self.orchestration_injection_persistent.store(false, Ordering::SeqCst);
        self.orchestration_skip_count.store(0, Ordering::SeqCst);
        self.inject_orchestration_attempt_count
            .store(attempt_count, Ordering::SeqCst);
    }

    /// All orchestration fetches will return this attempt_count until cleared.
    #[allow(dead_code)]
    pub fn inject_orchestration_poison_persistent(&self, attempt_count: u32) {
        self.orchestration_injection_persistent.store(true, Ordering::SeqCst);
        self.orchestration_skip_count.store(0, Ordering::SeqCst);
        self.inject_orchestration_attempt_count
            .store(attempt_count, Ordering::SeqCst);
    }

    /// Skip N orchestration fetches, then inject poison on the NEXT fetch only.
    /// Useful for poisoning sub-orchestrations after parent has been processed.
    pub fn inject_orchestration_poison_after_skip(&self, skip: u32, attempt_count: u32) {
        self.orchestration_injection_persistent.store(false, Ordering::SeqCst);
        self.orchestration_skip_count.store(skip, Ordering::SeqCst);
        self.inject_orchestration_attempt_count
            .store(attempt_count, Ordering::SeqCst);
    }

    /// Next activity fetch will return this attempt_count instead of real one.
    /// Automatically resets after one fetch.
    #[allow(dead_code)]
    pub fn inject_activity_poison(&self, attempt_count: u32) {
        self.activity_injection_persistent.store(false, Ordering::SeqCst);
        self.activity_skip_count.store(0, Ordering::SeqCst);
        self.inject_activity_attempt_count
            .store(attempt_count, Ordering::SeqCst);
    }

    /// All activity fetches will return this attempt_count until cleared.
    pub fn inject_activity_poison_persistent(&self, attempt_count: u32) {
        self.activity_injection_persistent.store(true, Ordering::SeqCst);
        self.activity_skip_count.store(0, Ordering::SeqCst);
        self.inject_activity_attempt_count
            .store(attempt_count, Ordering::SeqCst);
    }

    /// Clear all injections.
    #[allow(dead_code)]
    pub fn clear_injections(&self) {
        self.inject_orchestration_attempt_count.store(0, Ordering::SeqCst);
        self.inject_activity_attempt_count.store(0, Ordering::SeqCst);
        self.orchestration_injection_persistent.store(false, Ordering::SeqCst);
        self.activity_injection_persistent.store(false, Ordering::SeqCst);
        self.orchestration_skip_count.store(0, Ordering::SeqCst);
        self.activity_skip_count.store(0, Ordering::SeqCst);
    }
}

#[async_trait]
impl Provider for PoisonInjectingProvider {
    async fn fetch_orchestration_item(
        &self,
        lock_timeout: Duration,
        poll_timeout: Duration,
        filter: Option<&DispatcherCapabilityFilter>,
    ) -> Result<Option<(OrchestrationItem, String, u32)>, ProviderError> {
        let result = self
            .inner
            .fetch_orchestration_item(lock_timeout, poll_timeout, filter)
            .await?;

        if let Some((item, lock_token, real_attempt_count)) = result {
            // Check if we need to skip this fetch
            let skip = self.orchestration_skip_count.load(Ordering::SeqCst);
            if skip > 0 {
                self.orchestration_skip_count.fetch_sub(1, Ordering::SeqCst);
                return Ok(Some((item, lock_token, real_attempt_count)));
            }

            let persistent = self.orchestration_injection_persistent.load(Ordering::SeqCst);
            let injected = if persistent {
                self.inject_orchestration_attempt_count.load(Ordering::SeqCst)
            } else {
                self.inject_orchestration_attempt_count.swap(0, Ordering::SeqCst)
            };
            let attempt_count = if injected > 0 { injected } else { real_attempt_count };
            Ok(Some((item, lock_token, attempt_count)))
        } else {
            Ok(None)
        }
    }

    async fn fetch_work_item(
        &self,
        lock_timeout: Duration,
        poll_timeout: Duration,
        session: Option<&SessionFetchConfig>,
        tag_filter: &TagFilter,
    ) -> Result<Option<(WorkItem, String, u32)>, ProviderError> {
        let result = self
            .inner
            .fetch_work_item(lock_timeout, poll_timeout, session, tag_filter)
            .await?;

        if let Some((item, lock_token, real_attempt_count)) = result {
            // Check if we need to skip this fetch
            let skip = self.activity_skip_count.load(Ordering::SeqCst);
            if skip > 0 {
                self.activity_skip_count.fetch_sub(1, Ordering::SeqCst);
                return Ok(Some((item, lock_token, real_attempt_count)));
            }

            let persistent = self.activity_injection_persistent.load(Ordering::SeqCst);
            let injected = if persistent {
                self.inject_activity_attempt_count.load(Ordering::SeqCst)
            } else {
                self.inject_activity_attempt_count.swap(0, Ordering::SeqCst)
            };
            let attempt_count = if injected > 0 { injected } else { real_attempt_count };
            Ok(Some((item, lock_token, attempt_count)))
        } else {
            Ok(None)
        }
    }

    async fn ack_orchestration_item(
        &self,
        lock_token: &str,
        execution_id: u64,
        history_delta: Vec<Event>,
        worker_items: Vec<WorkItem>,
        orchestrator_items: Vec<WorkItem>,
        metadata: ExecutionMetadata,
        cancelled_activities: Vec<ScheduledActivityIdentifier>,
    ) -> Result<(), ProviderError> {
        self.inner
            .ack_orchestration_item(
                lock_token,
                execution_id,
                history_delta,
                worker_items,
                orchestrator_items,
                metadata,
                cancelled_activities,
            )
            .await
    }

    async fn abandon_orchestration_item(
        &self,
        lock_token: &str,
        delay: Option<Duration>,
        ignore_attempt: bool,
    ) -> Result<(), ProviderError> {
        self.inner
            .abandon_orchestration_item(lock_token, delay, ignore_attempt)
            .await
    }

    async fn ack_work_item(&self, token: &str, completion: Option<WorkItem>) -> Result<(), ProviderError> {
        self.inner.ack_work_item(token, completion).await
    }

    async fn renew_work_item_lock(&self, token: &str, extension: Duration) -> Result<(), ProviderError> {
        self.inner.renew_work_item_lock(token, extension).await
    }

    async fn abandon_work_item(
        &self,
        token: &str,
        delay: Option<Duration>,
        ignore_attempt: bool,
    ) -> Result<(), ProviderError> {
        self.inner.abandon_work_item(token, delay, ignore_attempt).await
    }

    async fn renew_session_lock(
        &self,
        owner_ids: &[&str],
        extend_for: Duration,
        idle_timeout: Duration,
    ) -> Result<usize, ProviderError> {
        self.inner.renew_session_lock(owner_ids, extend_for, idle_timeout).await
    }

    async fn cleanup_orphaned_sessions(&self, idle_timeout: Duration) -> Result<usize, ProviderError> {
        self.inner.cleanup_orphaned_sessions(idle_timeout).await
    }

    async fn renew_orchestration_item_lock(&self, token: &str, extend_for: Duration) -> Result<(), ProviderError> {
        self.inner.renew_orchestration_item_lock(token, extend_for).await
    }

    async fn enqueue_for_orchestrator(&self, item: WorkItem, delay: Option<Duration>) -> Result<(), ProviderError> {
        self.inner.enqueue_for_orchestrator(item, delay).await
    }

    async fn enqueue_for_worker(&self, item: WorkItem) -> Result<(), ProviderError> {
        self.inner.enqueue_for_worker(item).await
    }

    async fn read(&self, instance: &str) -> Result<Vec<Event>, ProviderError> {
        self.inner.read(instance).await
    }

    async fn read_with_execution(&self, instance: &str, execution_id: u64) -> Result<Vec<Event>, ProviderError> {
        self.inner.read_with_execution(instance, execution_id).await
    }

    async fn append_with_execution(
        &self,
        instance: &str,
        execution_id: u64,
        new_events: Vec<Event>,
    ) -> Result<(), ProviderError> {
        self.inner
            .append_with_execution(instance, execution_id, new_events)
            .await
    }

    fn as_management_capability(&self) -> Option<&dyn ProviderAdmin> {
        // Delegate to inner's management capability
        self.inner.as_management_capability()
    }

    async fn get_custom_status(
        &self,
        instance: &str,
        last_seen_version: u64,
    ) -> Result<Option<(Option<String>, u64)>, ProviderError> {
        self.inner.get_custom_status(instance, last_seen_version).await
    }

    async fn get_kv_value(&self, instance: &str, key: &str) -> Result<Option<String>, ProviderError> {
        self.inner.get_kv_value(instance, key).await
    }

    async fn get_kv_all_values(
        &self,
        instance: &str,
    ) -> Result<std::collections::HashMap<String, String>, ProviderError> {
        self.inner.get_kv_all_values(instance).await
    }

    async fn get_instance_stats(&self, instance: &str) -> Result<Option<duroxide::SystemStats>, ProviderError> {
        self.inner.get_instance_stats(instance).await
    }
}

/// A provider wrapper that bypasses the capability filter on fetch_orchestration_item.
///
/// This allows testing the runtime's defense-in-depth check by making the
/// provider return items that should have been filtered out. The runtime-side
/// check (in orchestration.rs) should catch and abandon these items.
pub struct FilterBypassProvider {
    inner: Arc<dyn Provider + Send + Sync>,
}

impl FilterBypassProvider {
    pub fn new(inner: Arc<dyn Provider + Send + Sync>) -> Self {
        Self { inner }
    }
}

#[async_trait]
impl Provider for FilterBypassProvider {
    async fn fetch_orchestration_item(
        &self,
        lock_timeout: Duration,
        poll_timeout: Duration,
        _filter: Option<&DispatcherCapabilityFilter>,
    ) -> Result<Option<(OrchestrationItem, String, u32)>, ProviderError> {
        // Bypass: always fetch with filter=None, ignoring whatever the runtime passed
        self.inner
            .fetch_orchestration_item(lock_timeout, poll_timeout, None)
            .await
    }

    async fn fetch_work_item(
        &self,
        lock_timeout: Duration,
        poll_timeout: Duration,
        session: Option<&SessionFetchConfig>,
        tag_filter: &TagFilter,
    ) -> Result<Option<(WorkItem, String, u32)>, ProviderError> {
        self.inner
            .fetch_work_item(lock_timeout, poll_timeout, session, tag_filter)
            .await
    }

    async fn ack_orchestration_item(
        &self,
        lock_token: &str,
        execution_id: u64,
        history_delta: Vec<Event>,
        worker_items: Vec<WorkItem>,
        orchestrator_items: Vec<WorkItem>,
        metadata: ExecutionMetadata,
        cancelled_activities: Vec<ScheduledActivityIdentifier>,
    ) -> Result<(), ProviderError> {
        self.inner
            .ack_orchestration_item(
                lock_token,
                execution_id,
                history_delta,
                worker_items,
                orchestrator_items,
                metadata,
                cancelled_activities,
            )
            .await
    }

    async fn abandon_orchestration_item(
        &self,
        lock_token: &str,
        delay: Option<Duration>,
        ignore_attempt: bool,
    ) -> Result<(), ProviderError> {
        self.inner
            .abandon_orchestration_item(lock_token, delay, ignore_attempt)
            .await
    }

    async fn ack_work_item(&self, token: &str, completion: Option<WorkItem>) -> Result<(), ProviderError> {
        self.inner.ack_work_item(token, completion).await
    }

    async fn renew_work_item_lock(&self, token: &str, extension: Duration) -> Result<(), ProviderError> {
        self.inner.renew_work_item_lock(token, extension).await
    }

    async fn abandon_work_item(
        &self,
        token: &str,
        delay: Option<Duration>,
        ignore_attempt: bool,
    ) -> Result<(), ProviderError> {
        self.inner.abandon_work_item(token, delay, ignore_attempt).await
    }

    async fn renew_session_lock(
        &self,
        owner_ids: &[&str],
        extend_for: Duration,
        idle_timeout: Duration,
    ) -> Result<usize, ProviderError> {
        self.inner.renew_session_lock(owner_ids, extend_for, idle_timeout).await
    }

    async fn cleanup_orphaned_sessions(&self, idle_timeout: Duration) -> Result<usize, ProviderError> {
        self.inner.cleanup_orphaned_sessions(idle_timeout).await
    }

    async fn renew_orchestration_item_lock(&self, token: &str, extend_for: Duration) -> Result<(), ProviderError> {
        self.inner.renew_orchestration_item_lock(token, extend_for).await
    }

    async fn enqueue_for_orchestrator(&self, item: WorkItem, delay: Option<Duration>) -> Result<(), ProviderError> {
        self.inner.enqueue_for_orchestrator(item, delay).await
    }

    async fn enqueue_for_worker(&self, item: WorkItem) -> Result<(), ProviderError> {
        self.inner.enqueue_for_worker(item).await
    }

    async fn read(&self, instance: &str) -> Result<Vec<Event>, ProviderError> {
        self.inner.read(instance).await
    }

    async fn read_with_execution(&self, instance: &str, execution_id: u64) -> Result<Vec<Event>, ProviderError> {
        self.inner.read_with_execution(instance, execution_id).await
    }

    async fn append_with_execution(
        &self,
        instance: &str,
        execution_id: u64,
        new_events: Vec<Event>,
    ) -> Result<(), ProviderError> {
        self.inner
            .append_with_execution(instance, execution_id, new_events)
            .await
    }

    fn as_management_capability(&self) -> Option<&dyn ProviderAdmin> {
        self.inner.as_management_capability()
    }

    async fn get_custom_status(
        &self,
        instance: &str,
        last_seen_version: u64,
    ) -> Result<Option<(Option<String>, u64)>, ProviderError> {
        self.inner.get_custom_status(instance, last_seen_version).await
    }

    async fn get_kv_value(&self, instance: &str, key: &str) -> Result<Option<String>, ProviderError> {
        self.inner.get_kv_value(instance, key).await
    }

    async fn get_kv_all_values(
        &self,
        instance: &str,
    ) -> Result<std::collections::HashMap<String, String>, ProviderError> {
        self.inner.get_kv_all_values(instance).await
    }

    async fn get_instance_stats(&self, instance: &str) -> Result<Option<duroxide::SystemStats>, ProviderError> {
        self.inner.get_instance_stats(instance).await
    }
}

/// A provider wrapper that can inject transient failures for testing
/// error handling and retry logic.
pub struct FailingProvider {
    inner: Arc<SqliteProvider>,
    fail_next_ack_work_item: AtomicBool,
    fail_next_ack_orchestration_item: AtomicBool,
    fail_next_fetch_orchestration_item: AtomicBool,
    fail_next_fetch_work_item: AtomicBool,
    /// If true, allow failure event commits to succeed even when failing acks
    allow_failure_commits: AtomicBool,
    /// If true, do the actual ack before returning error (for testing post-ack failures)
    ack_then_fail: AtomicBool,
}

impl FailingProvider {
    pub fn new(inner: Arc<SqliteProvider>) -> Self {
        Self {
            inner,
            fail_next_ack_work_item: AtomicBool::new(false),
            fail_next_ack_orchestration_item: AtomicBool::new(false),
            fail_next_fetch_orchestration_item: AtomicBool::new(false),
            fail_next_fetch_work_item: AtomicBool::new(false),
            allow_failure_commits: AtomicBool::new(false),
            ack_then_fail: AtomicBool::new(false),
        }
    }

    pub fn fail_next_ack_work_item(&self) {
        self.fail_next_ack_work_item.store(true, Ordering::SeqCst);
    }

    pub fn fail_next_ack_orchestration_item(&self) {
        self.fail_next_ack_orchestration_item.store(true, Ordering::SeqCst);
    }

    pub fn fail_next_fetch_orchestration_item(&self) {
        self.fail_next_fetch_orchestration_item.store(true, Ordering::SeqCst);
    }

    pub fn fail_next_fetch_work_item(&self) {
        self.fail_next_fetch_work_item.store(true, Ordering::SeqCst);
    }

    /// When set, failure event commits (OrchestrationFailed) will succeed
    /// even when ack_orchestration_item is set to fail.
    pub fn set_allow_failure_commits(&self, allow: bool) {
        self.allow_failure_commits.store(allow, Ordering::SeqCst);
    }

    /// When set, ack operations will complete successfully before returning error.
    /// Useful for testing scenarios where ack succeeds but caller thinks it failed.
    pub fn set_ack_then_fail(&self, enabled: bool) {
        self.ack_then_fail.store(enabled, Ordering::SeqCst);
    }
}

#[async_trait]
impl Provider for FailingProvider {
    async fn fetch_orchestration_item(
        &self,
        lock_timeout: Duration,
        poll_timeout: Duration,
        filter: Option<&DispatcherCapabilityFilter>,
    ) -> Result<Option<(OrchestrationItem, String, u32)>, ProviderError> {
        if self.fail_next_fetch_orchestration_item.swap(false, Ordering::SeqCst) {
            Err(ProviderError::retryable(
                "fetch_orchestration_item",
                "simulated transient infrastructure failure",
            ))
        } else {
            self.inner
                .fetch_orchestration_item(lock_timeout, poll_timeout, filter)
                .await
        }
    }

    async fn fetch_work_item(
        &self,
        lock_timeout: Duration,
        poll_timeout: Duration,
        session: Option<&SessionFetchConfig>,
        tag_filter: &TagFilter,
    ) -> Result<Option<(WorkItem, String, u32)>, ProviderError> {
        if self.fail_next_fetch_work_item.swap(false, Ordering::SeqCst) {
            Err(ProviderError::retryable(
                "fetch_work_item",
                "simulated transient infrastructure failure",
            ))
        } else {
            self.inner
                .fetch_work_item(lock_timeout, poll_timeout, session, tag_filter)
                .await
        }
    }

    async fn ack_orchestration_item(
        &self,
        lock_token: &str,
        execution_id: u64,
        history_delta: Vec<Event>,
        worker_items: Vec<WorkItem>,
        orchestrator_items: Vec<WorkItem>,
        metadata: ExecutionMetadata,
        cancelled_activities: Vec<ScheduledActivityIdentifier>,
    ) -> Result<(), ProviderError> {
        if self.fail_next_ack_orchestration_item.swap(false, Ordering::SeqCst) {
            // Check if this is a failure event commit and we should allow it
            if self.allow_failure_commits.load(Ordering::SeqCst) {
                let is_failure_commit = history_delta
                    .iter()
                    .any(|e| matches!(&e.kind, EventKind::OrchestrationFailed { .. }));
                if is_failure_commit {
                    return self
                        .inner
                        .ack_orchestration_item(
                            lock_token,
                            execution_id,
                            history_delta,
                            worker_items,
                            orchestrator_items,
                            metadata,
                            cancelled_activities,
                        )
                        .await;
                }
            }
            Err(ProviderError::permanent(
                "ack_orchestration_item",
                "simulated infrastructure failure",
            ))
        } else {
            self.inner
                .ack_orchestration_item(
                    lock_token,
                    execution_id,
                    history_delta,
                    worker_items,
                    orchestrator_items,
                    metadata,
                    cancelled_activities,
                )
                .await
        }
    }

    async fn abandon_orchestration_item(
        &self,
        lock_token: &str,
        delay: Option<Duration>,
        ignore_attempt: bool,
    ) -> Result<(), ProviderError> {
        self.inner
            .abandon_orchestration_item(lock_token, delay, ignore_attempt)
            .await
    }

    async fn ack_work_item(&self, token: &str, completion: Option<WorkItem>) -> Result<(), ProviderError> {
        if self.fail_next_ack_work_item.swap(false, Ordering::SeqCst) {
            // If ack_then_fail is set, do the actual ack first
            if self.ack_then_fail.load(Ordering::SeqCst) {
                self.inner.ack_work_item(token, completion).await?;
            }
            Err(ProviderError::permanent(
                "ack_work_item",
                "simulated infrastructure failure",
            ))
        } else {
            self.inner.ack_work_item(token, completion).await
        }
    }

    async fn renew_work_item_lock(&self, token: &str, extension: Duration) -> Result<(), ProviderError> {
        self.inner.renew_work_item_lock(token, extension).await
    }

    async fn abandon_work_item(
        &self,
        token: &str,
        delay: Option<Duration>,
        ignore_attempt: bool,
    ) -> Result<(), ProviderError> {
        self.inner.abandon_work_item(token, delay, ignore_attempt).await
    }

    async fn renew_session_lock(
        &self,
        owner_ids: &[&str],
        extend_for: Duration,
        idle_timeout: Duration,
    ) -> Result<usize, ProviderError> {
        self.inner.renew_session_lock(owner_ids, extend_for, idle_timeout).await
    }

    async fn cleanup_orphaned_sessions(&self, idle_timeout: Duration) -> Result<usize, ProviderError> {
        self.inner.cleanup_orphaned_sessions(idle_timeout).await
    }

    async fn renew_orchestration_item_lock(&self, token: &str, extend_for: Duration) -> Result<(), ProviderError> {
        self.inner.renew_orchestration_item_lock(token, extend_for).await
    }

    async fn enqueue_for_orchestrator(&self, item: WorkItem, delay: Option<Duration>) -> Result<(), ProviderError> {
        self.inner.enqueue_for_orchestrator(item, delay).await
    }

    async fn enqueue_for_worker(&self, item: WorkItem) -> Result<(), ProviderError> {
        self.inner.enqueue_for_worker(item).await
    }

    async fn read(&self, instance: &str) -> Result<Vec<Event>, ProviderError> {
        self.inner.read(instance).await
    }

    async fn read_with_execution(&self, instance: &str, execution_id: u64) -> Result<Vec<Event>, ProviderError> {
        self.inner.read_with_execution(instance, execution_id).await
    }

    async fn append_with_execution(
        &self,
        instance: &str,
        execution_id: u64,
        new_events: Vec<Event>,
    ) -> Result<(), ProviderError> {
        self.inner
            .append_with_execution(instance, execution_id, new_events)
            .await
    }

    fn as_management_capability(&self) -> Option<&dyn ProviderAdmin> {
        self.inner.as_management_capability()
    }

    async fn get_custom_status(
        &self,
        instance: &str,
        last_seen_version: u64,
    ) -> Result<Option<(Option<String>, u64)>, ProviderError> {
        self.inner.get_custom_status(instance, last_seen_version).await
    }

    async fn get_kv_value(&self, instance: &str, key: &str) -> Result<Option<String>, ProviderError> {
        self.inner.get_kv_value(instance, key).await
    }

    async fn get_kv_all_values(
        &self,
        instance: &str,
    ) -> Result<std::collections::HashMap<String, String>, ProviderError> {
        self.inner.get_kv_all_values(instance).await
    }

    async fn get_instance_stats(&self, instance: &str) -> Result<Option<duroxide::SystemStats>, ProviderError> {
        self.inner.get_instance_stats(instance).await
    }
}