qubit-retry 0.2.2

Retry module, providing a feature-complete, type-safe retry management system with support for multiple delay strategies and event listeners
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
/*******************************************************************************
 *
 *    Copyright (c) 2025 - 2026.
 *    Haixing Hu, Qubit Co. Ltd.
 *
 *    All rights reserved.
 *
 ******************************************************************************/
//! # Retry Executor Tests
//!
//! 专门测试 RetryExecutor 内部方法的各种分支情况,确保所有条件分支都被覆盖。
//!
//! # Author
//!
//! 胡海星

use qubit_retry::{
    AbortEvent, FailureEvent, RetryBuilder, RetryDelayStrategy, RetryError, RetryEvent,
    SuccessEvent,
};
use std::error::Error;
use std::sync::{Arc, Mutex};
use std::time::Duration;

#[derive(Debug, Clone, PartialEq, Eq, Hash)]
struct TestData {
    value: String,
}

#[derive(Debug)]
struct TestError(String);

impl std::fmt::Display for TestError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "TestError: {}", self.0)
    }
}

impl Error for TestError {}

// ==================== check_max_duration_exceeded() 测试 ====================

#[test]
fn test_check_max_duration_exceeded_with_none_max_duration() {
    // 测试 max_duration 为 None 的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_max_duration(None) // max_duration 为 None
        .set_delay_strategy(RetryDelayStrategy::None)
        .build();

    let result = executor.run(|| Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string()));

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
}

#[test]
fn test_check_max_duration_exceeded_with_some_max_duration_not_exceeded() {
    // 测试 max_duration 有值但未超时的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_max_duration(Some(Duration::from_secs(5))) // max_duration 有值
        .set_delay_strategy(RetryDelayStrategy::None)
        .build();

    let result = executor.run(|| {
        // 快速完成,不会超时
        Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
    });

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
}

#[test]
fn test_check_max_duration_exceeded_with_some_max_duration_exceeded() {
    // 测试 max_duration 有值且超时的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(100)
        .set_max_duration(Some(Duration::from_millis(100))) // max_duration 有值且很短
        .set_delay_strategy(RetryDelayStrategy::Fixed {
            delay: Duration::from_millis(50),
        })
        .build();

    let result = executor.run(|| {
        std::thread::sleep(Duration::from_millis(10));
        Err(Box::new(TestError("Always fail".to_string())) as Box<dyn Error + Send + Sync>)
    });

    assert!(result.is_err());
    match result {
        Err(RetryError::MaxDurationExceeded { .. }) => {
            // 预期的错误类型
        }
        _ => panic!("Expected MaxDurationExceeded error"),
    }
}

#[test]
fn test_check_max_duration_exceeded_with_none_failure_listener() {
    // 测试 max_duration 超时且 failure_listener 为 None 的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(100)
        .set_max_duration(Some(Duration::from_millis(100)))
        .set_delay_strategy(RetryDelayStrategy::Fixed {
            delay: Duration::from_millis(50),
        })
        // 没有设置 failure_listener
        .build();

    let result = executor.run(|| {
        std::thread::sleep(Duration::from_millis(10));
        Err(Box::new(TestError("Always fail".to_string())) as Box<dyn Error + Send + Sync>)
    });

    assert!(result.is_err());
    match result {
        Err(RetryError::MaxDurationExceeded { .. }) => {
            // 预期的错误类型
        }
        _ => panic!("Expected MaxDurationExceeded error"),
    }
}

#[test]
fn test_check_max_duration_exceeded_with_some_failure_listener() {
    // 测试 max_duration 超时且 failure_listener 有值的情况
    let failure_count = Arc::new(Mutex::new(0));
    let failure_count_clone = failure_count.clone();

    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(100)
        .set_max_duration(Some(Duration::from_millis(100)))
        .set_delay_strategy(RetryDelayStrategy::Fixed {
            delay: Duration::from_millis(50),
        })
        .on_failure(move |_event: &FailureEvent<String>| {
            *failure_count_clone.lock().unwrap() += 1;
        })
        .build();

    let result = executor.run(|| {
        std::thread::sleep(Duration::from_millis(10));
        Err(Box::new(TestError("Always fail".to_string())) as Box<dyn Error + Send + Sync>)
    });

    assert!(result.is_err());
    match result {
        Err(RetryError::MaxDurationExceeded { .. }) => {
            // 预期的错误类型
        }
        _ => panic!("Expected MaxDurationExceeded error"),
    }

    // 验证 failure_listener 被调用了
    assert_eq!(*failure_count.lock().unwrap(), 1);
}

// ==================== check_operation_timeout() 测试 ====================

#[test]
fn test_check_operation_timeout_with_none_timeout() {
    // 测试 operation_timeout 为 None 的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_operation_timeout(None) // operation_timeout 为 None
        .build();

    let result = executor.run(|| {
        // 即使操作时间较长,也不会超时
        std::thread::sleep(Duration::from_millis(200));
        Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
    });

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
}

#[test]
fn test_check_operation_timeout_with_some_timeout_not_exceeded() {
    // 测试 operation_timeout 有值但未超时的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_operation_timeout(Some(Duration::from_millis(200))) // operation_timeout 有值
        .build();

    let result = executor.run(|| {
        // 操作时间短于超时时间
        std::thread::sleep(Duration::from_millis(50));
        Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
    });

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
}

#[test]
fn test_check_operation_timeout_with_some_timeout_exceeded() {
    // 测试 operation_timeout 有值且超时的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_operation_timeout(Some(Duration::from_millis(50))) // operation_timeout 有值且很短
        .set_delay_strategy(RetryDelayStrategy::None)
        .build();

    let result = executor.run(|| {
        // 操作时间长于超时时间
        std::thread::sleep(Duration::from_millis(150));
        Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
    });

    // 应该失败,因为每次操作都超时
    assert!(result.is_err());
    match result {
        Err(RetryError::MaxAttemptsExceeded { .. }) => {
            // 预期的错误类型
        }
        _ => panic!("Expected MaxAttemptsExceeded error"),
    }
}

// ==================== handle_success() 测试 ====================

#[test]
fn test_handle_success_with_none_listener() {
    // 测试 success_listener 为 None 的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        // 没有设置 success_listener
        .build();

    let result = executor.run(|| Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string()));

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
}

#[test]
fn test_handle_success_with_some_listener() {
    // 测试 success_listener 有值的情况
    let success_count = Arc::new(Mutex::new(0));
    let success_count_clone = success_count.clone();

    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .on_success(move |event: &SuccessEvent<String>| {
            *success_count_clone.lock().unwrap() += 1;
            assert_eq!(event.result(), "SUCCESS");
        })
        .build();

    let result = executor.run(|| Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string()));

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
    // 验证 success_listener 被调用了
    assert_eq!(*success_count.lock().unwrap(), 1);
}

// ==================== handle_abort() 测试 ====================

#[test]
fn test_handle_abort_with_none_listener() {
    // 测试 abort_listener 为 None 的情况
    let abort_result = TestData {
        value: "ABORT".to_string(),
    };

    let executor = RetryBuilder::<TestData>::new()
        .set_max_attempts(3)
        .abort_on_results(vec![abort_result.clone()])
        // 没有设置 abort_listener
        .build();

    let result =
        executor.run(|| Ok::<TestData, Box<dyn Error + Send + Sync>>(abort_result.clone()));

    assert!(result.is_err());
    match result {
        Err(RetryError::Aborted { .. }) => {
            // 预期的错误类型
        }
        _ => panic!("Expected Aborted error"),
    }
}

#[test]
fn test_handle_abort_with_some_listener() {
    // 测试 abort_listener 有值的情况
    let abort_count = Arc::new(Mutex::new(0));
    let abort_count_clone = abort_count.clone();
    let abort_result = TestData {
        value: "ABORT".to_string(),
    };

    let executor = RetryBuilder::<TestData>::new()
        .set_max_attempts(3)
        .abort_on_results(vec![abort_result.clone()])
        .on_abort(move |_event: &AbortEvent<TestData>| {
            *abort_count_clone.lock().unwrap() += 1;
        })
        .build();

    let result =
        executor.run(|| Ok::<TestData, Box<dyn Error + Send + Sync>>(abort_result.clone()));

    assert!(result.is_err());
    match result {
        Err(RetryError::Aborted { .. }) => {
            // 预期的错误类型
        }
        _ => panic!("Expected Aborted error"),
    }

    // 验证 abort_listener 被调用了
    assert_eq!(*abort_count.lock().unwrap(), 1);
}

// ==================== handle_max_attempts_exceeded() 测试 ====================

#[test]
fn test_handle_max_attempts_exceeded_with_none_failure_listener() {
    // 测试达到最大重试次数且 failure_listener 为 None 的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_delay_strategy(RetryDelayStrategy::None)
        // 没有设置 failure_listener
        .build();

    let result = executor.run(|| {
        Err(Box::new(TestError("Always fail".to_string())) as Box<dyn Error + Send + Sync>)
    });

    assert!(result.is_err());
    match result {
        Err(RetryError::MaxAttemptsExceeded { attempts, .. }) => {
            assert_eq!(attempts, 3);
        }
        _ => panic!("Expected MaxAttemptsExceeded error"),
    }
}

#[test]
fn test_handle_max_attempts_exceeded_with_some_failure_listener() {
    // 测试达到最大重试次数且 failure_listener 有值的情况
    let failure_count = Arc::new(Mutex::new(0));
    let failure_count_clone = failure_count.clone();

    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_delay_strategy(RetryDelayStrategy::None)
        .on_failure(move |event: &FailureEvent<String>| {
            *failure_count_clone.lock().unwrap() += 1;
            assert_eq!(event.attempt_count(), 3);
        })
        .build();

    let result = executor.run(|| {
        Err(Box::new(TestError("Always fail".to_string())) as Box<dyn Error + Send + Sync>)
    });

    assert!(result.is_err());
    match result {
        Err(RetryError::MaxAttemptsExceeded { attempts, .. }) => {
            assert_eq!(attempts, 3);
        }
        _ => panic!("Expected MaxAttemptsExceeded error"),
    }

    // 验证 failure_listener 被调用了
    assert_eq!(*failure_count.lock().unwrap(), 1);
}

#[test]
fn test_handle_max_attempts_exceeded_with_result_failure() {
    // 测试因结果值失败达到最大重试次数的情况
    let failure_count = Arc::new(Mutex::new(0));
    let failure_count_clone = failure_count.clone();
    let failed_result = TestData {
        value: "FAIL".to_string(),
    };

    let executor = RetryBuilder::<TestData>::new()
        .set_max_attempts(3)
        .set_delay_strategy(RetryDelayStrategy::None)
        .failed_on_results(vec![failed_result.clone()])
        .on_failure(move |event: &FailureEvent<TestData>| {
            *failure_count_clone.lock().unwrap() += 1;
            assert!(event.last_result().is_some());
            assert_eq!(event.last_result().unwrap().value, "FAIL");
        })
        .build();

    let result =
        executor.run(|| Ok::<TestData, Box<dyn Error + Send + Sync>>(failed_result.clone()));

    assert!(result.is_err());
    match result {
        Err(RetryError::MaxAttemptsExceeded { attempts, .. }) => {
            assert_eq!(attempts, 3);
        }
        _ => panic!("Expected MaxAttemptsExceeded error"),
    }

    // 验证 failure_listener 被调用了
    assert_eq!(*failure_count.lock().unwrap(), 1);
}

// ==================== trigger_retry_and_wait() 测试 ====================

#[test]
fn test_trigger_retry_and_wait_with_none_listener() {
    // 测试 retry_listener 为 None 的情况
    let attempt_count = Arc::new(Mutex::new(0));
    let attempt_count_clone = attempt_count.clone();

    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_delay_strategy(RetryDelayStrategy::Fixed {
            delay: Duration::from_millis(10),
        })
        // 没有设置 retry_listener
        .build();

    let result = executor.run(|| {
        let mut count = attempt_count_clone.lock().unwrap();
        *count += 1;
        let current = *count;
        drop(count);

        if current < 2 {
            Err(Box::new(TestError("Temporary failure".to_string()))
                as Box<dyn Error + Send + Sync>)
        } else {
            Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
        }
    });

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
    assert_eq!(*attempt_count.lock().unwrap(), 2);
}

#[test]
fn test_trigger_retry_and_wait_with_some_listener() {
    // 测试 retry_listener 有值的情况
    let retry_count = Arc::new(Mutex::new(0));
    let retry_count_clone = retry_count.clone();
    let attempt_count = Arc::new(Mutex::new(0));
    let attempt_count_clone = attempt_count.clone();

    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_delay_strategy(RetryDelayStrategy::Fixed {
            delay: Duration::from_millis(10),
        })
        .on_retry(move |event: &RetryEvent<String>| {
            *retry_count_clone.lock().unwrap() += 1;
            assert!(event.attempt_count() > 0);
        })
        .build();

    let result = executor.run(|| {
        let mut count = attempt_count_clone.lock().unwrap();
        *count += 1;
        let current = *count;
        drop(count);

        if current < 2 {
            Err(Box::new(TestError("Temporary failure".to_string()))
                as Box<dyn Error + Send + Sync>)
        } else {
            Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
        }
    });

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
    assert_eq!(*attempt_count.lock().unwrap(), 2);
    // 验证 retry_listener 被调用了(第一次失败后触发重试)
    assert_eq!(*retry_count.lock().unwrap(), 1);
}

#[test]
fn test_trigger_retry_and_wait_with_zero_delay() {
    // 测试延迟为零的情况
    let retry_count = Arc::new(Mutex::new(0));
    let retry_count_clone = retry_count.clone();
    let attempt_count = Arc::new(Mutex::new(0));
    let attempt_count_clone = attempt_count.clone();

    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_delay_strategy(RetryDelayStrategy::None) // 零延迟
        .on_retry(move |_event: &RetryEvent<String>| {
            *retry_count_clone.lock().unwrap() += 1;
        })
        .build();

    let result = executor.run(|| {
        let mut count = attempt_count_clone.lock().unwrap();
        *count += 1;
        let current = *count;
        drop(count);

        if current < 2 {
            Err(Box::new(TestError("Temporary failure".to_string()))
                as Box<dyn Error + Send + Sync>)
        } else {
            Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
        }
    });

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
    assert_eq!(*attempt_count.lock().unwrap(), 2);
    assert_eq!(*retry_count.lock().unwrap(), 1);
}

// ==================== trigger_retry_and_wait_async() 测试 ====================

#[tokio::test]
async fn test_trigger_retry_and_wait_async_with_none_listener() {
    // 测试异步版本 retry_listener 为 None 的情况
    let attempt_count = Arc::new(Mutex::new(0));
    let attempt_count_clone = attempt_count.clone();

    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_delay_strategy(RetryDelayStrategy::Fixed {
            delay: Duration::from_millis(10),
        })
        // 没有设置 retry_listener
        .build();

    let result = executor
        .run_async(|| async {
            let mut count = attempt_count_clone.lock().unwrap();
            *count += 1;
            let current = *count;
            drop(count);

            if current < 2 {
                Err(Box::new(TestError("Temporary failure".to_string()))
                    as Box<dyn Error + Send + Sync>)
            } else {
                Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
            }
        })
        .await;

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
    assert_eq!(*attempt_count.lock().unwrap(), 2);
}

#[tokio::test]
async fn test_trigger_retry_and_wait_async_with_some_listener() {
    // 测试异步版本 retry_listener 有值的情况
    let retry_count = Arc::new(Mutex::new(0));
    let retry_count_clone = retry_count.clone();
    let attempt_count = Arc::new(Mutex::new(0));
    let attempt_count_clone = attempt_count.clone();

    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_delay_strategy(RetryDelayStrategy::Fixed {
            delay: Duration::from_millis(10),
        })
        .on_retry(move |event: &RetryEvent<String>| {
            *retry_count_clone.lock().unwrap() += 1;
            assert!(event.attempt_count() > 0);
        })
        .build();

    let result = executor
        .run_async(|| async {
            let mut count = attempt_count_clone.lock().unwrap();
            *count += 1;
            let current = *count;
            drop(count);

            if current < 2 {
                Err(Box::new(TestError("Temporary failure".to_string()))
                    as Box<dyn Error + Send + Sync>)
            } else {
                Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
            }
        })
        .await;

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
    assert_eq!(*attempt_count.lock().unwrap(), 2);
    // 验证 retry_listener 被调用了
    assert_eq!(*retry_count.lock().unwrap(), 1);
}

#[tokio::test]
async fn test_trigger_retry_and_wait_async_with_zero_delay() {
    // 测试异步版本延迟为零的情况
    let retry_count = Arc::new(Mutex::new(0));
    let retry_count_clone = retry_count.clone();
    let attempt_count = Arc::new(Mutex::new(0));
    let attempt_count_clone = attempt_count.clone();

    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_delay_strategy(RetryDelayStrategy::None) // 零延迟
        .on_retry(move |_event: &RetryEvent<String>| {
            *retry_count_clone.lock().unwrap() += 1;
        })
        .build();

    let result = executor
        .run_async(|| async {
            let mut count = attempt_count_clone.lock().unwrap();
            *count += 1;
            let current = *count;
            drop(count);

            if current < 2 {
                Err(Box::new(TestError("Temporary failure".to_string()))
                    as Box<dyn Error + Send + Sync>)
            } else {
                Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
            }
        })
        .await;

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
    assert_eq!(*attempt_count.lock().unwrap(), 2);
    assert_eq!(*retry_count.lock().unwrap(), 1);
}

// ==================== execute_operation_async_and_get_decision() 测试 ====================

#[tokio::test]
async fn test_execute_operation_async_with_none_timeout() {
    // 测试异步操作 operation_timeout 为 None 的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_operation_timeout(None) // operation_timeout 为 None
        .build();

    let result = executor
        .run_async(|| async {
            // 即使操作时间较长,也不会超时
            tokio::time::sleep(Duration::from_millis(200)).await;
            Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
        })
        .await;

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
}

#[tokio::test]
async fn test_execute_operation_async_with_some_timeout_not_exceeded() {
    // 测试异步操作 operation_timeout 有值但未超时的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_operation_timeout(Some(Duration::from_millis(200))) // operation_timeout 有值
        .build();

    let result = executor
        .run_async(|| async {
            // 操作时间短于超时时间
            tokio::time::sleep(Duration::from_millis(50)).await;
            Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
        })
        .await;

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
}

#[tokio::test]
async fn test_execute_operation_async_with_some_timeout_exceeded() {
    // 测试异步操作 operation_timeout 有值且超时的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_operation_timeout(Some(Duration::from_millis(50))) // operation_timeout 有值且很短
        .set_delay_strategy(RetryDelayStrategy::None)
        .build();

    let result = executor
        .run_async(|| async {
            // 操作时间长于超时时间
            tokio::time::sleep(Duration::from_millis(200)).await;
            Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
        })
        .await;

    // 应该失败,因为每次操作都超时
    assert!(result.is_err());
    match result {
        Err(RetryError::MaxAttemptsExceeded { .. }) => {
            // 预期的错误类型
        }
        _ => panic!("Expected MaxAttemptsExceeded error"),
    }
}

// ==================== run() 测试 ====================

#[test]
fn test_run_with_check_max_duration_returns_none() {
    // 测试 run() 中 check_max_duration_exceeded 返回 None 的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_max_duration(None) // max_duration 为 None,check_max_duration_exceeded 返回 None
        .build();

    let result = executor.run(|| Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string()));

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
}

#[test]
fn test_run_with_check_max_duration_returns_some() {
    // 测试 run() 中 check_max_duration_exceeded 返回 Some(error) 的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(100)
        .set_max_duration(Some(Duration::from_millis(100))) // max_duration 很短,会超时
        .set_delay_strategy(RetryDelayStrategy::Fixed {
            delay: Duration::from_millis(50),
        })
        .build();

    let result = executor.run(|| {
        std::thread::sleep(Duration::from_millis(10));
        Err(Box::new(TestError("Always fail".to_string())) as Box<dyn Error + Send + Sync>)
    });

    assert!(result.is_err());
    match result {
        Err(RetryError::MaxDurationExceeded { .. }) => {
            // 预期的错误类型,check_max_duration_exceeded 返回了 Some(error)
        }
        _ => panic!("Expected MaxDurationExceeded error"),
    }
}

#[test]
fn test_run_with_max_duration_not_exceeded_but_max_attempts_exceeded() {
    // 测试 max_duration 未超时但达到最大重试次数的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_max_duration(Some(Duration::from_secs(10))) // max_duration 很长,不会超时
        .set_delay_strategy(RetryDelayStrategy::None)
        .build();

    let result = executor.run(|| {
        Err(Box::new(TestError("Always fail".to_string())) as Box<dyn Error + Send + Sync>)
    });

    assert!(result.is_err());
    match result {
        Err(RetryError::MaxAttemptsExceeded { attempts, .. }) => {
            assert_eq!(attempts, 3);
        }
        _ => panic!("Expected MaxAttemptsExceeded error"),
    }
}

// ==================== run_async() 测试 ====================

#[tokio::test]
async fn test_run_async_with_check_max_duration_returns_none() {
    // 测试 run_async() 中 check_max_duration_exceeded 返回 None 的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_max_duration(None) // max_duration 为 None,check_max_duration_exceeded 返回 None
        .build();

    let result = executor
        .run_async(|| async { Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string()) })
        .await;

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
}

#[tokio::test]
async fn test_run_async_with_check_max_duration_returns_some() {
    // 测试 run_async() 中 check_max_duration_exceeded 返回 Some(error) 的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(100)
        .set_max_duration(Some(Duration::from_millis(100))) // max_duration 很短,会超时
        .set_delay_strategy(RetryDelayStrategy::Fixed {
            delay: Duration::from_millis(50),
        })
        .build();

    let result = executor
        .run_async(|| async {
            tokio::time::sleep(Duration::from_millis(10)).await;
            Err(Box::new(TestError("Always fail".to_string())) as Box<dyn Error + Send + Sync>)
        })
        .await;

    assert!(result.is_err());
    match result {
        Err(RetryError::MaxDurationExceeded { .. }) => {
            // 预期的错误类型,check_max_duration_exceeded 返回了 Some(error)
        }
        _ => panic!("Expected MaxDurationExceeded error"),
    }
}

#[tokio::test]
async fn test_run_async_with_max_duration_not_exceeded_but_max_attempts_exceeded() {
    // 测试异步版本 max_duration 未超时但达到最大重试次数的情况
    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_max_duration(Some(Duration::from_secs(10))) // max_duration 很长,不会超时
        .set_delay_strategy(RetryDelayStrategy::None)
        .build();

    let result = executor
        .run_async(|| async {
            Err(Box::new(TestError("Always fail".to_string())) as Box<dyn Error + Send + Sync>)
        })
        .await;

    assert!(result.is_err());
    match result {
        Err(RetryError::MaxAttemptsExceeded { attempts, .. }) => {
            assert_eq!(attempts, 3);
        }
        _ => panic!("Expected MaxAttemptsExceeded error"),
    }
}

// ==================== 综合测试 ====================

#[test]
fn test_all_listeners_triggered_in_sequence() {
    // 测试所有监听器按顺序触发的情况
    let retry_count = Arc::new(Mutex::new(0));
    let retry_count_clone = retry_count.clone();
    let success_count = Arc::new(Mutex::new(0));
    let success_count_clone = success_count.clone();
    let attempt_count = Arc::new(Mutex::new(0));
    let attempt_count_clone = attempt_count.clone();

    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_delay_strategy(RetryDelayStrategy::Fixed {
            delay: Duration::from_millis(10),
        })
        .on_retry(move |_event: &RetryEvent<String>| {
            *retry_count_clone.lock().unwrap() += 1;
        })
        .on_success(move |_event: &SuccessEvent<String>| {
            *success_count_clone.lock().unwrap() += 1;
        })
        .build();

    let result = executor.run(|| {
        let mut count = attempt_count_clone.lock().unwrap();
        *count += 1;
        let current = *count;
        drop(count);

        if current < 2 {
            Err(Box::new(TestError("Temporary failure".to_string()))
                as Box<dyn Error + Send + Sync>)
        } else {
            Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
        }
    });

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
    assert_eq!(*attempt_count.lock().unwrap(), 2);
    assert_eq!(*retry_count.lock().unwrap(), 1); // 第一次失败后触发重试
    assert_eq!(*success_count.lock().unwrap(), 1); // 第二次成功后触发成功监听器
}

#[test]
fn test_no_listeners_all_branches() {
    // 测试没有任何监听器的情况下,所有分支都能正常工作
    let attempt_count = Arc::new(Mutex::new(0));
    let attempt_count_clone = attempt_count.clone();

    let executor = RetryBuilder::<String>::new()
        .set_max_attempts(3)
        .set_delay_strategy(RetryDelayStrategy::Fixed {
            delay: Duration::from_millis(10),
        })
        // 没有设置任何监听器
        .build();

    let result = executor.run(|| {
        let mut count = attempt_count_clone.lock().unwrap();
        *count += 1;
        let current = *count;
        drop(count);

        if current < 2 {
            Err(Box::new(TestError("Temporary failure".to_string()))
                as Box<dyn Error + Send + Sync>)
        } else {
            Ok::<String, Box<dyn Error + Send + Sync>>("SUCCESS".to_string())
        }
    });

    assert!(result.is_ok());
    assert_eq!(result.unwrap(), "SUCCESS");
    assert_eq!(*attempt_count.lock().unwrap(), 2);
}