frankensearch-core 0.2.1

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

use std::collections::{HashMap, HashSet};
use std::sync::Mutex;
use std::sync::RwLock;

use serde::{Deserialize, Serialize};

use crate::generation::{GenerationManifest, RepairDescriptor};

// ---------------------------------------------------------------------------
// Corruption detection
// ---------------------------------------------------------------------------

/// How corruption was detected.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
pub enum DetectionMethod {
    /// Background periodic checksum scan.
    PeriodicScan,
    /// Detected during a read operation (query-time).
    ReadTimeVerification,
    /// Explicit checksum comparison failed.
    ChecksumMismatch,
    /// The `.fec` sidecar file is missing or unreadable.
    MissingSidecar,
}

/// Record of a detected artifact corruption event.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct CorruptionEvent {
    /// Path of the corrupted artifact (manifest-relative).
    pub artifact_path: String,
    /// How the corruption was detected.
    pub detection_method: DetectionMethod,
    /// Unix timestamp (millis) when corruption was detected.
    pub detected_at: u64,
    /// Human-readable detail about the corruption.
    pub detail: String,
}

// ---------------------------------------------------------------------------
// Repair tracking
// ---------------------------------------------------------------------------

/// Outcome of a single repair attempt.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum RepairOutcome {
    /// Repair succeeded — artifact passes verification after reconstruction.
    Success {
        /// Number of repair symbols consumed during reconstruction.
        symbols_used: u32,
    },
    /// Not enough repair symbols to reconstruct the artifact.
    InsufficientSymbols {
        /// Symbols available from the sidecar.
        available: u32,
        /// Minimum symbols required for reconstruction.
        required: u32,
    },
    /// The `.fec` sidecar file is missing.
    SidecarMissing,
    /// The `.fec` sidecar itself is corrupted.
    SidecarCorrupted,
    /// Repair failed for another reason.
    Failed {
        /// Why the repair failed.
        reason: String,
    },
}

impl RepairOutcome {
    /// Whether the repair was successful.
    #[must_use]
    pub const fn is_success(&self) -> bool {
        matches!(self, Self::Success { .. })
    }
}

/// Record of a repair attempt for a single artifact.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct RepairAttempt {
    /// Path of the artifact that was repaired (manifest-relative).
    pub artifact_path: String,
    /// Unix timestamp (millis) when the repair attempt started.
    pub started_at: u64,
    /// Unix timestamp (millis) when the repair attempt completed.
    pub completed_at: u64,
    /// Outcome of this attempt.
    pub outcome: RepairOutcome,
}

// ---------------------------------------------------------------------------
// Repair provider trait
// ---------------------------------------------------------------------------

/// Consumer-implemented trait for performing artifact repairs.
///
/// The orchestrator calls into this trait when corruption is detected and a
/// repair is warranted by the corruption policy. Implementations know how
/// to locate sidecar files, invoke `RaptorQ` symbol reconstruction, and
/// verify the repaired artifact.
pub trait RepairProvider: Send + Sync {
    /// Attempt to repair a corrupted artifact using its `.fec` sidecar.
    ///
    /// `descriptor` contains the sidecar path and symbol counts from the manifest.
    /// Implementations should:
    /// 1. Back up the corrupted artifact before destructive repair.
    /// 2. Decode source symbols + repair symbols via the `RaptorQ` codec.
    /// 3. Write the reconstructed artifact to the original path.
    /// 4. Return the outcome.
    fn attempt_repair(
        &self,
        artifact_path: &str,
        descriptor: &RepairDescriptor,
        now_millis: u64,
    ) -> RepairAttempt;

    /// Verify an artifact after repair by recomputing its checksum.
    ///
    /// Returns `true` if the repaired file matches `expected_checksum`.
    fn verify_after_repair(&self, artifact_path: &str, expected_checksum: &str) -> bool;
}

// ---------------------------------------------------------------------------
// Service state
// ---------------------------------------------------------------------------

/// Why the service entered degraded mode.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum DegradedReason {
    /// One or more artifacts could not be repaired.
    UnrepairableCorruption {
        /// Paths of artifacts that failed repair.
        failed_artifacts: Vec<String>,
    },
    /// Corruption rate exceeds the policy threshold.
    ExcessiveCorruptionRate {
        /// Number of corruption events within the tracking window.
        event_count: usize,
        /// Policy threshold that was exceeded.
        threshold: usize,
    },
    /// A generation activation attempt failed.
    ActivationFailure {
        /// Details of the activation failure.
        detail: String,
    },
}

/// Current service state of the repair orchestrator.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum ServiceState {
    /// All artifacts verified, no outstanding corruption.
    Healthy,
    /// Service is degraded — serving from last healthy generation with known issues.
    Degraded {
        /// When degraded mode was entered (Unix millis).
        entered_at: u64,
        /// Why the service is degraded.
        reason: DegradedReason,
    },
    /// Service is suspended — new activations are blocked until operator intervention.
    Suspended {
        /// When suspension was entered (Unix millis).
        entered_at: u64,
        /// Why the service was suspended.
        reason: String,
    },
}

impl ServiceState {
    /// Whether the service is in a healthy state.
    #[must_use]
    pub const fn is_healthy(&self) -> bool {
        matches!(self, Self::Healthy)
    }

    /// Whether new generation activations should be blocked.
    #[must_use]
    pub const fn is_suspended(&self) -> bool {
        matches!(self, Self::Suspended { .. })
    }
}

// ---------------------------------------------------------------------------
// Corruption policy
// ---------------------------------------------------------------------------

/// Configurable thresholds governing when the orchestrator transitions between
/// service states.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct CorruptionPolicy {
    /// Maximum number of corrupted artifacts before entering degraded mode.
    pub max_corrupted_artifacts: usize,
    /// Maximum repair attempts per artifact before giving up.
    pub max_repair_attempts_per_artifact: u32,
    /// Number of unrepaired artifacts that trigger suspension.
    pub suspension_threshold: usize,
    /// Cooldown period (millis) after suspension before allowing recovery.
    pub cooldown_after_suspension_ms: u64,
}

impl Default for CorruptionPolicy {
    fn default() -> Self {
        Self {
            max_corrupted_artifacts: 3,
            max_repair_attempts_per_artifact: 3,
            suspension_threshold: 5,
            cooldown_after_suspension_ms: 60_000,
        }
    }
}

// ---------------------------------------------------------------------------
// Repair orchestrator
// ---------------------------------------------------------------------------

/// Coordinates corruption detection, repair attempts, and service state transitions.
///
/// Thread-safe: the orchestrator can be queried from any thread (e.g. health checks)
/// while repairs run on a background worker.
///
/// Uses `std::sync` primitives (not asupersync) because state reads must be
/// synchronous on the query hot path, consistent with [`GenerationController`](crate::activation::GenerationController).
pub struct RepairOrchestrator {
    /// Current service state.
    state: RwLock<ServiceState>,
    /// Log of all corruption events (append-only within a generation lifecycle).
    corruption_log: Mutex<Vec<CorruptionEvent>>,
    /// History of all repair attempts.
    repair_history: Mutex<Vec<RepairAttempt>>,
    /// Policy governing state transitions.
    policy: CorruptionPolicy,
}

impl RepairOrchestrator {
    /// Create a new orchestrator with the given corruption policy.
    #[must_use]
    pub const fn new(policy: CorruptionPolicy) -> Self {
        Self {
            state: RwLock::new(ServiceState::Healthy),
            corruption_log: Mutex::new(Vec::new()),
            repair_history: Mutex::new(Vec::new()),
            policy,
        }
    }

    /// Current service state.
    #[must_use]
    pub fn state(&self) -> ServiceState {
        self.state
            .read()
            .unwrap_or_else(std::sync::PoisonError::into_inner)
            .clone()
    }

    /// Number of recorded corruption events.
    #[must_use]
    pub fn corruption_count(&self) -> usize {
        self.corruption_log
            .lock()
            .unwrap_or_else(std::sync::PoisonError::into_inner)
            .len()
    }

    /// Number of recorded repair attempts.
    #[must_use]
    pub fn repair_attempt_count(&self) -> usize {
        self.repair_history
            .lock()
            .unwrap_or_else(std::sync::PoisonError::into_inner)
            .len()
    }

    /// Snapshot of all corruption events.
    #[must_use]
    pub fn corruption_events(&self) -> Vec<CorruptionEvent> {
        self.corruption_log
            .lock()
            .unwrap_or_else(std::sync::PoisonError::into_inner)
            .clone()
    }

    /// Snapshot of all repair attempts.
    #[must_use]
    pub fn repair_attempts(&self) -> Vec<RepairAttempt> {
        self.repair_history
            .lock()
            .unwrap_or_else(std::sync::PoisonError::into_inner)
            .clone()
    }

    /// Count of unique artifacts that are currently unrepaired (corruption detected,
    /// no successful repair).
    #[must_use]
    pub fn unrepaired_artifact_count(&self) -> usize {
        let log = self
            .corruption_log
            .lock()
            .unwrap_or_else(std::sync::PoisonError::into_inner);
        let history = self
            .repair_history
            .lock()
            .unwrap_or_else(std::sync::PoisonError::into_inner);
        unrepaired_artifacts(&log, &history).len()
    }

    /// Report a newly detected corruption event.
    ///
    /// The orchestrator logs the event and evaluates whether the corruption
    /// threshold has been exceeded (transitioning to degraded mode if so).
    pub fn report_corruption(&self, event: CorruptionEvent) {
        let entered_at = event.detected_at;
        {
            let mut log = self
                .corruption_log
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner);
            log.push(event);
        }

        // Check if we need to transition to degraded.
        let unrepaired = self.unrepaired_artifact_count();
        if unrepaired >= self.policy.suspension_threshold {
            let mut state = self
                .state
                .write()
                .unwrap_or_else(std::sync::PoisonError::into_inner);
            if !state.is_suspended() {
                *state = ServiceState::Suspended {
                    entered_at,
                    reason: format!(
                        "{unrepaired} unrepaired artifacts exceed suspension threshold ({})",
                        self.policy.suspension_threshold
                    ),
                };
            }
        } else if unrepaired >= self.policy.max_corrupted_artifacts {
            let mut state = self
                .state
                .write()
                .unwrap_or_else(std::sync::PoisonError::into_inner);
            if state.is_healthy() {
                *state = ServiceState::Degraded {
                    entered_at,
                    reason: DegradedReason::ExcessiveCorruptionRate {
                        event_count: unrepaired,
                        threshold: self.policy.max_corrupted_artifacts,
                    },
                };
            }
        }
    }

    /// Attempt to repair all corrupted artifacts in the current generation.
    ///
    /// For each corrupted artifact that has a matching repair descriptor in the
    /// manifest, delegates to the `provider` for symbol reconstruction. Tracks
    /// outcomes and updates service state accordingly.
    ///
    /// Returns the list of repair attempts made during this cycle.
    pub fn run_repair_cycle(
        &self,
        manifest: &GenerationManifest,
        provider: &dyn RepairProvider,
        now_millis: u64,
    ) -> Vec<RepairAttempt> {
        let corrupted_paths = self.corrupted_artifact_paths();
        let mut cycle_attempts = Vec::new();

        for path in &corrupted_paths {
            // Check retry budget.
            if self.attempt_count_since_last_success(path)
                >= self.policy.max_repair_attempts_per_artifact
            {
                continue;
            }

            // Find matching repair descriptor.
            let Some(descriptor) = manifest
                .repair_descriptors
                .iter()
                .find(|rd| rd.protected_artifact == *path)
            else {
                // No sidecar available for this artifact — record as failed.
                let attempt = RepairAttempt {
                    artifact_path: path.clone(),
                    started_at: now_millis,
                    completed_at: now_millis,
                    outcome: RepairOutcome::SidecarMissing,
                };
                cycle_attempts.push(attempt.clone());
                self.record_attempt(attempt);
                continue;
            };

            // Delegate repair to provider.
            let attempt = provider.attempt_repair(path, descriptor, now_millis);
            cycle_attempts.push(attempt.clone());
            self.record_attempt(attempt);
        }

        // Re-evaluate service state after repairs.
        self.reevaluate_state(now_millis);

        cycle_attempts
    }

    /// Manually transition to degraded mode with an explicit reason.
    pub fn enter_degraded(&self, reason: DegradedReason, now_millis: u64) {
        let mut state = self
            .state
            .write()
            .unwrap_or_else(std::sync::PoisonError::into_inner);
        *state = ServiceState::Degraded {
            entered_at: now_millis,
            reason,
        };
    }

    /// Manually transition to suspended mode (blocks new activations).
    pub fn suspend(&self, reason: String, now_millis: u64) {
        let mut state = self
            .state
            .write()
            .unwrap_or_else(std::sync::PoisonError::into_inner);
        *state = ServiceState::Suspended {
            entered_at: now_millis,
            reason,
        };
    }

    /// Attempt to recover from degraded or suspended state.
    ///
    /// Recovery succeeds only if:
    /// - All corrupted artifacts have been successfully repaired, AND
    /// - For suspended state: the cooldown period has elapsed.
    ///
    /// Returns `true` if recovery succeeded.
    pub fn try_recover(&self, now_millis: u64) -> bool {
        let unrepaired = self.unrepaired_artifact_count();
        if unrepaired > 0 {
            return false;
        }

        let mut state = self
            .state
            .write()
            .unwrap_or_else(std::sync::PoisonError::into_inner);

        match &*state {
            ServiceState::Healthy => true,
            ServiceState::Degraded { .. } => {
                *state = ServiceState::Healthy;
                true
            }
            ServiceState::Suspended { entered_at, .. } => {
                let elapsed = now_millis.saturating_sub(*entered_at);
                if elapsed >= self.policy.cooldown_after_suspension_ms {
                    *state = ServiceState::Healthy;
                    true
                } else {
                    false
                }
            }
        }
    }

    /// Reset the orchestrator, clearing all corruption and repair history.
    ///
    /// Typically called after a successful generation activation to start
    /// tracking fresh for the new generation.
    pub fn reset(&self) {
        {
            let mut state = self
                .state
                .write()
                .unwrap_or_else(std::sync::PoisonError::into_inner);
            *state = ServiceState::Healthy;
        }
        {
            let mut log = self
                .corruption_log
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner);
            log.clear();
        }
        {
            let mut history = self
                .repair_history
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner);
            history.clear();
        }
    }

    // -----------------------------------------------------------------------
    // Internal helpers
    // -----------------------------------------------------------------------

    /// Unique artifact paths that have corruption events but no successful repair.
    fn corrupted_artifact_paths(&self) -> Vec<String> {
        let unrepaired = {
            let log = self
                .corruption_log
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner);
            let history = self
                .repair_history
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner);
            unrepaired_artifacts(&log, &history)
        };
        let mut paths: Vec<String> = unrepaired.into_iter().collect();
        paths.sort();
        paths
    }

    /// How many repair attempts have occurred for this artifact since its most
    /// recent successful repair.
    fn attempt_count_since_last_success(&self, artifact_path: &str) -> u32 {
        let count = {
            let history = self
                .repair_history
                .lock()
                .unwrap_or_else(std::sync::PoisonError::into_inner);
            let latest_success = history
                .iter()
                .filter(|attempt| {
                    attempt.artifact_path == artifact_path && attempt.outcome.is_success()
                })
                .map(|attempt| attempt.completed_at)
                .max()
                .unwrap_or(0);
            history
                .iter()
                .filter(|attempt| {
                    attempt.artifact_path == artifact_path && attempt.started_at > latest_success
                })
                .count()
        };
        u32::try_from(count).unwrap_or(u32::MAX)
    }

    /// Record a repair attempt in the history.
    fn record_attempt(&self, attempt: RepairAttempt) {
        let mut history = self
            .repair_history
            .lock()
            .unwrap_or_else(std::sync::PoisonError::into_inner);
        history.push(attempt);
    }

    /// Re-evaluate service state based on current corruption and repair state.
    fn reevaluate_state(&self, now_millis: u64) {
        let unrepaired = self.unrepaired_artifact_count();

        let mut state = self
            .state
            .write()
            .unwrap_or_else(std::sync::PoisonError::into_inner);

        if unrepaired == 0 {
            // All repaired — check if we can recover from suspended.
            match &*state {
                ServiceState::Healthy => {}
                ServiceState::Degraded { .. } => {
                    *state = ServiceState::Healthy;
                }
                ServiceState::Suspended { entered_at, .. } => {
                    let elapsed = now_millis.saturating_sub(*entered_at);
                    if elapsed >= self.policy.cooldown_after_suspension_ms {
                        *state = ServiceState::Healthy;
                    }
                }
            }
        } else if unrepaired >= self.policy.suspension_threshold {
            if !state.is_suspended() {
                *state = ServiceState::Suspended {
                    entered_at: now_millis,
                    reason: format!(
                        "{unrepaired} unrepaired artifacts exceed suspension threshold ({})",
                        self.policy.suspension_threshold
                    ),
                };
            }
        } else if unrepaired >= self.policy.max_corrupted_artifacts && state.is_healthy() {
            *state = ServiceState::Degraded {
                entered_at: now_millis,
                reason: DegradedReason::UnrepairableCorruption {
                    failed_artifacts: self.corrupted_artifact_paths_inner(&state),
                },
            };
        }
    }

    /// Helper to get corrupted paths without re-locking `corruption_log` (called
    /// while state write lock is held, but `corruption_log` is a separate `Mutex`).
    fn corrupted_artifact_paths_inner(&self, _state: &ServiceState) -> Vec<String> {
        self.corrupted_artifact_paths()
    }
}

fn unrepaired_artifacts(
    corruption_log: &[CorruptionEvent],
    repair_history: &[RepairAttempt],
) -> HashSet<String> {
    let mut latest_corruption_by_path: HashMap<String, u64> = HashMap::new();
    for event in corruption_log {
        latest_corruption_by_path
            .entry(event.artifact_path.clone())
            .and_modify(|latest| *latest = (*latest).max(event.detected_at))
            .or_insert(event.detected_at);
    }

    let mut latest_success_by_path: HashMap<String, u64> = HashMap::new();
    for attempt in repair_history {
        if attempt.outcome.is_success() {
            latest_success_by_path
                .entry(attempt.artifact_path.clone())
                .and_modify(|latest| *latest = (*latest).max(attempt.completed_at))
                .or_insert(attempt.completed_at);
        }
    }

    latest_corruption_by_path
        .into_iter()
        .filter_map(|(path, detected_at)| {
            let latest_success = latest_success_by_path.get(&path).copied().unwrap_or(0);
            (latest_success < detected_at).then_some(path)
        })
        .collect()
}

impl Default for RepairOrchestrator {
    fn default() -> Self {
        Self::new(CorruptionPolicy::default())
    }
}

// ---------------------------------------------------------------------------
// Tests
// ---------------------------------------------------------------------------

#[cfg(test)]
mod tests {
    use super::*;
    use crate::generation::*;
    use std::collections::BTreeMap;

    fn sample_manifest() -> GenerationManifest {
        let mut embedders = BTreeMap::new();
        embedders.insert(
            "fast".into(),
            EmbedderRevision {
                model_name: "potion-128M".into(),
                weights_hash: "abcdef1234567890".into(),
                dimension: 256,
                quantization: QuantizationFormat::F16,
            },
        );
        let mut manifest = GenerationManifest {
            schema_version: MANIFEST_SCHEMA_VERSION,
            generation_id: "gen-001".into(),
            manifest_hash: String::new(),
            commit_range: CommitRange { low: 1, high: 100 },
            build_started_at: 1_700_000_000_000,
            build_completed_at: 1_700_000_060_000,
            embedders,
            vector_artifacts: vec![
                VectorArtifact {
                    path: "vectors/shard_0.fsvi".into(),
                    size_bytes: 1024,
                    checksum: "deadbeef".into(),
                    vector_count: 50,
                    dimension: 256,
                    embedder_tier: EmbedderTierTag::Fast,
                },
                VectorArtifact {
                    path: "vectors/shard_1.fsvi".into(),
                    size_bytes: 1024,
                    checksum: "beefdead".into(),
                    vector_count: 50,
                    dimension: 256,
                    embedder_tier: EmbedderTierTag::Fast,
                },
            ],
            lexical_artifacts: vec![LexicalArtifact {
                path: "lexical/segment_0".into(),
                size_bytes: 2048,
                checksum: "cafebabe".into(),
                document_count: 100,
            }],
            repair_descriptors: vec![
                RepairDescriptor {
                    protected_artifact: "vectors/shard_0.fsvi".into(),
                    sidecar_path: "vectors/shard_0.fsvi.fec".into(),
                    source_symbols: 64,
                    repair_symbols: 13,
                    overhead_ratio: 0.2,
                },
                RepairDescriptor {
                    protected_artifact: "vectors/shard_1.fsvi".into(),
                    sidecar_path: "vectors/shard_1.fsvi.fec".into(),
                    source_symbols: 64,
                    repair_symbols: 13,
                    overhead_ratio: 0.2,
                },
            ],
            activation_invariants: vec![],
            total_documents: 100,
            metadata: BTreeMap::new(),
        };
        manifest.manifest_hash = compute_manifest_hash(&manifest).expect("hash");
        manifest
    }

    fn corruption_event(path: &str, at: u64) -> CorruptionEvent {
        CorruptionEvent {
            artifact_path: path.into(),
            detection_method: DetectionMethod::PeriodicScan,
            detected_at: at,
            detail: format!("checksum mismatch for {path}"),
        }
    }

    /// Mock provider that always succeeds.
    struct AlwaysSucceedProvider;

    impl RepairProvider for AlwaysSucceedProvider {
        fn attempt_repair(
            &self,
            artifact_path: &str,
            _descriptor: &RepairDescriptor,
            now_millis: u64,
        ) -> RepairAttempt {
            RepairAttempt {
                artifact_path: artifact_path.into(),
                started_at: now_millis,
                completed_at: now_millis + 10,
                outcome: RepairOutcome::Success { symbols_used: 5 },
            }
        }

        fn verify_after_repair(&self, _artifact_path: &str, _expected_checksum: &str) -> bool {
            true
        }
    }

    /// Mock provider that always fails.
    struct AlwaysFailProvider;

    impl RepairProvider for AlwaysFailProvider {
        fn attempt_repair(
            &self,
            artifact_path: &str,
            _descriptor: &RepairDescriptor,
            now_millis: u64,
        ) -> RepairAttempt {
            RepairAttempt {
                artifact_path: artifact_path.into(),
                started_at: now_millis,
                completed_at: now_millis + 10,
                outcome: RepairOutcome::Failed {
                    reason: "mock failure".into(),
                },
            }
        }

        fn verify_after_repair(&self, _artifact_path: &str, _expected_checksum: &str) -> bool {
            false
        }
    }

    #[test]
    fn starts_healthy() {
        let orch = RepairOrchestrator::default();
        assert!(orch.state().is_healthy());
        assert!(!orch.state().is_suspended());
        assert_eq!(orch.corruption_count(), 0);
        assert_eq!(orch.repair_attempt_count(), 0);
        assert_eq!(orch.unrepaired_artifact_count(), 0);
    }

    #[test]
    fn report_corruption_logs_event() {
        let orch = RepairOrchestrator::default();
        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1000));

        assert_eq!(orch.corruption_count(), 1);
        assert_eq!(orch.unrepaired_artifact_count(), 1);

        let events = orch.corruption_events();
        assert_eq!(events[0].artifact_path, "vectors/shard_0.fsvi");
        assert_eq!(events[0].detection_method, DetectionMethod::PeriodicScan);
    }

    #[test]
    fn single_corruption_stays_healthy() {
        let policy = CorruptionPolicy {
            max_corrupted_artifacts: 3,
            ..Default::default()
        };
        let orch = RepairOrchestrator::new(policy);
        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1000));

        // 1 < threshold of 3 — should stay healthy.
        assert!(orch.state().is_healthy());
    }

    #[test]
    fn exceeding_corruption_threshold_enters_degraded() {
        let policy = CorruptionPolicy {
            max_corrupted_artifacts: 2,
            suspension_threshold: 5,
            ..Default::default()
        };
        let orch = RepairOrchestrator::new(policy);

        orch.report_corruption(corruption_event("a.fsvi", 1000));
        assert!(orch.state().is_healthy());

        orch.report_corruption(corruption_event("b.fsvi", 1001));
        assert!(!orch.state().is_healthy());
        assert!(matches!(orch.state(), ServiceState::Degraded { .. }));
    }

    #[test]
    fn exceeding_suspension_threshold_enters_suspended() {
        let policy = CorruptionPolicy {
            max_corrupted_artifacts: 2,
            suspension_threshold: 3,
            ..Default::default()
        };
        let orch = RepairOrchestrator::new(policy);

        orch.report_corruption(corruption_event("a.fsvi", 1000));
        orch.report_corruption(corruption_event("b.fsvi", 1001));
        orch.report_corruption(corruption_event("c.fsvi", 1002));

        assert!(orch.state().is_suspended());
    }

    #[test]
    fn successful_repair_reduces_unrepaired_count() {
        let orch = RepairOrchestrator::default();
        let manifest = sample_manifest();

        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1000));
        assert_eq!(orch.unrepaired_artifact_count(), 1);

        let provider = AlwaysSucceedProvider;
        let attempts = orch.run_repair_cycle(&manifest, &provider, 2000);

        assert_eq!(attempts.len(), 1);
        assert!(attempts[0].outcome.is_success());
        assert_eq!(orch.unrepaired_artifact_count(), 0);
    }

    #[test]
    fn successful_repair_restores_healthy() {
        let policy = CorruptionPolicy {
            max_corrupted_artifacts: 1,
            suspension_threshold: 5,
            ..Default::default()
        };
        let orch = RepairOrchestrator::new(policy);
        let manifest = sample_manifest();

        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1000));
        assert!(matches!(orch.state(), ServiceState::Degraded { .. }));

        let provider = AlwaysSucceedProvider;
        orch.run_repair_cycle(&manifest, &provider, 2000);

        assert!(orch.state().is_healthy());
    }

    #[test]
    fn failed_repair_keeps_degraded() {
        let policy = CorruptionPolicy {
            max_corrupted_artifacts: 1,
            max_repair_attempts_per_artifact: 3,
            suspension_threshold: 5,
            ..Default::default()
        };
        let orch = RepairOrchestrator::new(policy);
        let manifest = sample_manifest();

        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1000));

        let provider = AlwaysFailProvider;
        orch.run_repair_cycle(&manifest, &provider, 2000);

        assert!(!orch.state().is_healthy());
        assert_eq!(orch.unrepaired_artifact_count(), 1);
    }

    #[test]
    fn retry_budget_exhausted() {
        let policy = CorruptionPolicy {
            max_repair_attempts_per_artifact: 2,
            ..Default::default()
        };
        let orch = RepairOrchestrator::new(policy);
        let manifest = sample_manifest();
        let provider = AlwaysFailProvider;

        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1000));

        // First two attempts should proceed.
        let attempts1 = orch.run_repair_cycle(&manifest, &provider, 2000);
        assert_eq!(attempts1.len(), 1);
        let attempts2 = orch.run_repair_cycle(&manifest, &provider, 3000);
        assert_eq!(attempts2.len(), 1);

        // Third attempt should be skipped (budget exhausted).
        let attempts3 = orch.run_repair_cycle(&manifest, &provider, 4000);
        assert_eq!(attempts3.len(), 0);

        assert_eq!(orch.repair_attempt_count(), 2);
    }

    #[test]
    fn retry_budget_resets_after_successful_repair() {
        let policy = CorruptionPolicy {
            max_repair_attempts_per_artifact: 2,
            ..Default::default()
        };
        let orch = RepairOrchestrator::new(policy);
        let manifest = sample_manifest();

        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1000));
        let fail_provider = AlwaysFailProvider;
        let success_provider = AlwaysSucceedProvider;

        // First corruption: fail once, then succeed.
        assert_eq!(
            orch.run_repair_cycle(&manifest, &fail_provider, 2000).len(),
            1
        );
        assert_eq!(
            orch.run_repair_cycle(&manifest, &success_provider, 3000)
                .len(),
            1
        );
        assert_eq!(orch.unrepaired_artifact_count(), 0);

        // New corruption on same artifact should start with a fresh retry budget.
        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 4000));
        assert_eq!(
            orch.run_repair_cycle(&manifest, &fail_provider, 5000).len(),
            1
        );
        assert_eq!(
            orch.run_repair_cycle(&manifest, &fail_provider, 6000).len(),
            1
        );
        assert_eq!(
            orch.run_repair_cycle(&manifest, &fail_provider, 7000).len(),
            0
        );
    }

    #[test]
    fn no_repair_descriptor_records_sidecar_missing() {
        let orch = RepairOrchestrator::default();
        let mut manifest = sample_manifest();
        manifest.repair_descriptors.clear();
        let provider = AlwaysSucceedProvider;

        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1000));
        let attempts = orch.run_repair_cycle(&manifest, &provider, 2000);

        assert_eq!(attempts.len(), 1);
        assert!(matches!(attempts[0].outcome, RepairOutcome::SidecarMissing));
    }

    #[test]
    fn manual_degraded_and_recovery() {
        let orch = RepairOrchestrator::default();

        orch.enter_degraded(
            DegradedReason::ActivationFailure {
                detail: "manifest hash mismatch".into(),
            },
            1000,
        );
        assert!(matches!(orch.state(), ServiceState::Degraded { .. }));

        // Recovery succeeds since there are no unrepaired artifacts.
        assert!(orch.try_recover(2000));
        assert!(orch.state().is_healthy());
    }

    #[test]
    fn recovery_blocked_by_unrepaired_artifacts() {
        let orch = RepairOrchestrator::default();

        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1000));
        orch.enter_degraded(
            DegradedReason::UnrepairableCorruption {
                failed_artifacts: vec!["vectors/shard_0.fsvi".into()],
            },
            1000,
        );

        assert!(!orch.try_recover(2000));
        assert!(!orch.state().is_healthy());
    }

    #[test]
    fn suspension_cooldown_enforced() {
        let policy = CorruptionPolicy {
            cooldown_after_suspension_ms: 10_000,
            ..Default::default()
        };
        let orch = RepairOrchestrator::new(policy);

        orch.suspend("test suspension".into(), 1000);

        // Too early — cooldown hasn't elapsed.
        assert!(!orch.try_recover(5000));

        // After cooldown — should recover.
        assert!(orch.try_recover(11_001));
        assert!(orch.state().is_healthy());
    }

    #[test]
    fn reset_clears_everything() {
        let policy = CorruptionPolicy {
            max_corrupted_artifacts: 1,
            suspension_threshold: 5,
            ..Default::default()
        };
        let orch = RepairOrchestrator::new(policy);

        orch.report_corruption(corruption_event("a.fsvi", 1000));
        assert!(!orch.state().is_healthy());

        orch.reset();

        assert!(orch.state().is_healthy());
        assert_eq!(orch.corruption_count(), 0);
        assert_eq!(orch.repair_attempt_count(), 0);
        assert_eq!(orch.unrepaired_artifact_count(), 0);
    }

    #[test]
    fn multiple_corruptions_same_artifact_counted_once() {
        let orch = RepairOrchestrator::default();

        // Same artifact corrupted twice — still counts as 1 unrepaired.
        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1000));
        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1001));

        assert_eq!(orch.corruption_count(), 2);
        assert_eq!(orch.unrepaired_artifact_count(), 1);
    }

    #[test]
    fn repair_cycle_handles_multiple_corrupted_artifacts() {
        let orch = RepairOrchestrator::default();
        let manifest = sample_manifest();
        let provider = AlwaysSucceedProvider;

        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1000));
        orch.report_corruption(corruption_event("vectors/shard_1.fsvi", 1001));

        let attempts = orch.run_repair_cycle(&manifest, &provider, 2000);
        assert_eq!(attempts.len(), 2);
        assert!(attempts.iter().all(|a| a.outcome.is_success()));
        assert_eq!(orch.unrepaired_artifact_count(), 0);
    }

    #[test]
    fn detection_methods_serialize() {
        for method in &[
            DetectionMethod::PeriodicScan,
            DetectionMethod::ReadTimeVerification,
            DetectionMethod::ChecksumMismatch,
            DetectionMethod::MissingSidecar,
        ] {
            let json = serde_json::to_string(method).expect("serialize");
            let back: DetectionMethod = serde_json::from_str(&json).expect("deserialize");
            assert_eq!(method, &back);
        }
    }

    #[test]
    fn repair_outcome_serialize() {
        let outcomes = vec![
            RepairOutcome::Success { symbols_used: 5 },
            RepairOutcome::InsufficientSymbols {
                available: 3,
                required: 10,
            },
            RepairOutcome::SidecarMissing,
            RepairOutcome::SidecarCorrupted,
            RepairOutcome::Failed {
                reason: "disk full".into(),
            },
        ];
        for outcome in &outcomes {
            let json = serde_json::to_string(outcome).expect("serialize");
            let back: RepairOutcome = serde_json::from_str(&json).expect("deserialize");
            assert_eq!(outcome, &back);
        }
    }

    #[test]
    fn service_state_serialize() {
        let states = vec![
            ServiceState::Healthy,
            ServiceState::Degraded {
                entered_at: 1000,
                reason: DegradedReason::ActivationFailure {
                    detail: "test".into(),
                },
            },
            ServiceState::Suspended {
                entered_at: 2000,
                reason: "manual".into(),
            },
        ];
        for state in &states {
            let json = serde_json::to_string(state).expect("serialize");
            let back: ServiceState = serde_json::from_str(&json).expect("deserialize");
            assert_eq!(state, &back);
        }
    }

    #[test]
    fn corruption_policy_default_is_reasonable() {
        let policy = CorruptionPolicy::default();
        assert!(policy.max_corrupted_artifacts > 0);
        assert!(policy.max_repair_attempts_per_artifact > 0);
        assert!(policy.suspension_threshold > policy.max_corrupted_artifacts);
        assert!(policy.cooldown_after_suspension_ms > 0);
    }

    #[test]
    fn degraded_reason_variants_serialize() {
        let reasons = vec![
            DegradedReason::UnrepairableCorruption {
                failed_artifacts: vec!["a.fsvi".into(), "b.fsvi".into()],
            },
            DegradedReason::ExcessiveCorruptionRate {
                event_count: 5,
                threshold: 3,
            },
            DegradedReason::ActivationFailure {
                detail: "hash mismatch".into(),
            },
        ];
        for reason in &reasons {
            let json = serde_json::to_string(reason).expect("serialize");
            let back: DegradedReason = serde_json::from_str(&json).expect("deserialize");
            assert_eq!(reason, &back);
        }
    }

    #[test]
    fn repair_after_successful_repair_clears_corruption() {
        let orch = RepairOrchestrator::default();
        let manifest = sample_manifest();
        let provider = AlwaysSucceedProvider;

        // Corrupt, repair, then corrupt again.
        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1000));
        orch.run_repair_cycle(&manifest, &provider, 2000);
        assert_eq!(orch.unrepaired_artifact_count(), 0);

        // New corruption on same artifact after repair.
        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 3000));
        assert_eq!(orch.unrepaired_artifact_count(), 1);
    }

    // ─── bd-mxcb tests begin ───

    #[test]
    fn repair_outcome_is_success_for_all_variants() {
        assert!(RepairOutcome::Success { symbols_used: 1 }.is_success());
        assert!(
            !RepairOutcome::InsufficientSymbols {
                available: 1,
                required: 5
            }
            .is_success()
        );
        assert!(!RepairOutcome::SidecarMissing.is_success());
        assert!(!RepairOutcome::SidecarCorrupted.is_success());
        assert!(
            !RepairOutcome::Failed {
                reason: "test".into()
            }
            .is_success()
        );
    }

    #[test]
    fn service_state_is_healthy_for_all_variants() {
        assert!(ServiceState::Healthy.is_healthy());
        assert!(
            !ServiceState::Degraded {
                entered_at: 0,
                reason: DegradedReason::ActivationFailure {
                    detail: String::new()
                },
            }
            .is_healthy()
        );
        assert!(
            !ServiceState::Suspended {
                entered_at: 0,
                reason: String::new(),
            }
            .is_healthy()
        );
    }

    #[test]
    fn service_state_is_suspended_for_all_variants() {
        assert!(!ServiceState::Healthy.is_suspended());
        assert!(
            !ServiceState::Degraded {
                entered_at: 0,
                reason: DegradedReason::ActivationFailure {
                    detail: String::new()
                },
            }
            .is_suspended()
        );
        assert!(
            ServiceState::Suspended {
                entered_at: 0,
                reason: String::new(),
            }
            .is_suspended()
        );
    }

    #[test]
    fn corruption_event_serde_roundtrip() {
        let event = CorruptionEvent {
            artifact_path: "vectors/shard_0.fsvi".into(),
            detection_method: DetectionMethod::ChecksumMismatch,
            detected_at: 12345,
            detail: "byte 0x42 at offset 1024".into(),
        };
        let json = serde_json::to_string(&event).expect("serialize");
        let back: CorruptionEvent = serde_json::from_str(&json).expect("deserialize");
        assert_eq!(event, back);
    }

    #[test]
    fn repair_attempt_serde_roundtrip() {
        let attempt = RepairAttempt {
            artifact_path: "lexical/segment_0".into(),
            started_at: 1000,
            completed_at: 1050,
            outcome: RepairOutcome::Success { symbols_used: 7 },
        };
        let json = serde_json::to_string(&attempt).expect("serialize");
        let back: RepairAttempt = serde_json::from_str(&json).expect("deserialize");
        assert_eq!(attempt, back);
    }

    #[test]
    fn corruption_policy_serde_roundtrip() {
        let policy = CorruptionPolicy {
            max_corrupted_artifacts: 5,
            max_repair_attempts_per_artifact: 10,
            suspension_threshold: 8,
            cooldown_after_suspension_ms: 120_000,
        };
        let json = serde_json::to_string(&policy).expect("serialize");
        let back: CorruptionPolicy = serde_json::from_str(&json).expect("deserialize");
        assert_eq!(policy, back);
    }

    #[test]
    fn corruption_policy_debug_and_clone() {
        let policy = CorruptionPolicy::default();
        let debug_str = format!("{policy:?}");
        assert!(debug_str.contains("CorruptionPolicy"));
        let cloned = policy.clone();
        assert_eq!(policy, cloned);
    }

    #[test]
    fn detection_method_copy() {
        let method = DetectionMethod::PeriodicScan;
        let copied = method; // Copy
        assert_eq!(method, copied);
    }

    #[test]
    fn try_recover_when_already_healthy_returns_true() {
        let orch = RepairOrchestrator::default();
        assert!(orch.try_recover(1000));
        assert!(orch.state().is_healthy());
    }

    #[test]
    fn degraded_to_suspended_transition() {
        let policy = CorruptionPolicy {
            max_corrupted_artifacts: 1,
            suspension_threshold: 3,
            ..Default::default()
        };
        let orch = RepairOrchestrator::new(policy);

        // First: enter degraded via single corruption
        orch.report_corruption(corruption_event("a.fsvi", 1000));
        assert!(matches!(orch.state(), ServiceState::Degraded { .. }));

        // Then: more corruptions push to suspended
        orch.report_corruption(corruption_event("b.fsvi", 1001));
        orch.report_corruption(corruption_event("c.fsvi", 1002));
        assert!(orch.state().is_suspended());
    }

    #[test]
    fn reset_while_suspended_restores_healthy() {
        let orch = RepairOrchestrator::default();
        orch.suspend("emergency".into(), 1000);
        assert!(orch.state().is_suspended());

        orch.reset();
        assert!(orch.state().is_healthy());
        assert_eq!(orch.corruption_count(), 0);
        assert_eq!(orch.repair_attempt_count(), 0);
    }

    #[test]
    fn repair_attempts_accessor_returns_history() {
        let orch = RepairOrchestrator::default();
        let manifest = sample_manifest();
        let provider = AlwaysSucceedProvider;

        orch.report_corruption(corruption_event("vectors/shard_0.fsvi", 1000));
        orch.run_repair_cycle(&manifest, &provider, 2000);

        let attempts = orch.repair_attempts();
        assert_eq!(attempts.len(), 1);
        assert_eq!(attempts[0].artifact_path, "vectors/shard_0.fsvi");
        assert!(attempts[0].outcome.is_success());
    }

    #[test]
    fn default_orchestrator_uses_default_policy() {
        let orch = RepairOrchestrator::default();
        assert!(orch.state().is_healthy());

        // Verify default policy thresholds by testing behavior
        // Default: max_corrupted_artifacts=3, so 3 corruptions should trigger degraded
        orch.report_corruption(corruption_event("a.fsvi", 1000));
        orch.report_corruption(corruption_event("b.fsvi", 1001));
        assert!(orch.state().is_healthy()); // 2 < 3
        orch.report_corruption(corruption_event("c.fsvi", 1002));
        assert!(!orch.state().is_healthy()); // 3 >= 3 → degraded
    }

    #[test]
    fn suspension_reason_contains_threshold() {
        let policy = CorruptionPolicy {
            max_corrupted_artifacts: 1,
            suspension_threshold: 2,
            ..Default::default()
        };
        let orch = RepairOrchestrator::new(policy);

        orch.report_corruption(corruption_event("a.fsvi", 1000));
        orch.report_corruption(corruption_event("b.fsvi", 1001));

        if let ServiceState::Suspended { reason, .. } = orch.state() {
            assert!(
                reason.contains('2'),
                "suspension reason should contain threshold: {reason}"
            );
        } else {
            panic!("expected Suspended state");
        }
    }

    #[test]
    fn corruption_event_debug_and_clone() {
        let event = corruption_event("test.fsvi", 5000);
        let debug_str = format!("{event:?}");
        assert!(debug_str.contains("CorruptionEvent"));
        let cloned = event.clone();
        assert_eq!(event, cloned);
    }

    #[test]
    fn repair_attempt_debug_and_clone() {
        let attempt = RepairAttempt {
            artifact_path: "test.fsvi".into(),
            started_at: 100,
            completed_at: 200,
            outcome: RepairOutcome::SidecarCorrupted,
        };
        let debug_str = format!("{attempt:?}");
        assert!(debug_str.contains("RepairAttempt"));
        let cloned = attempt.clone();
        assert_eq!(attempt, cloned);
    }

    #[test]
    fn enter_degraded_overrides_current_state() {
        let orch = RepairOrchestrator::default();

        // Start suspended
        orch.suspend("initial".into(), 1000);
        assert!(orch.state().is_suspended());

        // Enter degraded overrides suspended
        orch.enter_degraded(
            DegradedReason::ActivationFailure {
                detail: "test".into(),
            },
            2000,
        );
        assert!(matches!(orch.state(), ServiceState::Degraded { .. }));
    }

    // ─── bd-mxcb tests end ───
}