cobre-io 0.1.0

Case directory loading and validation for the Cobre power systems ecosystem
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
//! Manifest and metadata writers for the output pipeline.
//!
//! This module provides JSON writers for three files that accompany Parquet
//! output artifacts:
//!
//! - [`write_simulation_manifest`] — writes `simulation/_manifest.json` tracking
//!   scenario completion status for crash recovery.
//! - [`write_training_manifest`] — writes `training/_manifest.json` tracking
//!   iteration and convergence state.
//! - [`write_metadata`] — writes `training/metadata.json` capturing configuration
//!   snapshots and environment information for reproducibility.
//!
//! All writers use an atomic write pattern: data is serialized to a `.tmp` file
//! first, then atomically renamed to the target path. This prevents partial files
//! from being visible to readers.
//!
//! # Minimal viable behaviour
//!
//! Several fields in the spec are deferred for later implementation:
//!
//! - `checksum` fields in manifests are always `null` (checksum computation is deferred).
//! - `data_integrity` in metadata is always `null` (hash computation is deferred).
//! - `performance_summary` in metadata is always `null` (detailed LP timing is deferred).
//! - `environment` fields other than `cobre_version` are always `null`.
//! - MPI fields (`world_size`, `ranks_participated`) are set to `1` (single-rank default).

use std::path::Path;

use serde::{Deserialize, Serialize};

use super::error::OutputError;

// ── Shared nested structs ─────────────────────────────────────────────────────

/// Integrity checksum for a manifest file.
///
/// In the minimal viable implementation all instances are `None` (checksum
/// computation is deferred). The field serializes as `"checksum": null` in JSON.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ManifestChecksum {
    /// Checksum algorithm identifier (e.g. `"xxhash64"`).
    pub algorithm: String,
    /// Hex-encoded checksum value.
    pub value: String,
}

/// MPI participation information embedded in both manifest types.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ManifestMpiInfo {
    /// Total number of MPI ranks in the communicator.
    pub world_size: u32,
    /// Number of ranks that actually wrote data.
    pub ranks_participated: u32,
}

impl Default for ManifestMpiInfo {
    /// Returns single-rank defaults for the minimal viable implementation.
    fn default() -> Self {
        Self {
            world_size: 1,
            ranks_participated: 1,
        }
    }
}

// ── SimulationManifest ────────────────────────────────────────────────────────

/// Scenario counts embedded in [`SimulationManifest`].
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ManifestScenarios {
    /// Total number of scenarios dispatched for simulation.
    pub total: u32,
    /// Number of scenarios that completed without error.
    pub completed: u32,
    /// Number of scenarios that encountered a terminal error.
    pub failed: u32,
}

/// Manifest for the simulation output directory (`simulation/_manifest.json`).
///
/// Enables crash recovery: consumers read `status` to decide whether to resume
/// or restart, and read `partitions_written` to identify already-completed work.
///
/// Corresponds to the schema defined in output-infrastructure.md §1.1.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SimulationManifest {
    /// Manifest schema version (`"2.0.0"`).
    pub version: String,
    /// Run status: `"running"`, `"complete"`, `"failed"`, or `"partial"`.
    pub status: String,
    /// ISO 8601 timestamp when the run started.
    pub started_at: Option<String>,
    /// ISO 8601 timestamp when the run completed (null while running).
    pub completed_at: Option<String>,
    /// Scenario completion counts.
    pub scenarios: ManifestScenarios,
    /// Relative paths to Hive partition directories written.
    pub partitions_written: Vec<String>,
    /// Integrity checksum over all written partitions (`null` in minimal viable version).
    pub checksum: Option<ManifestChecksum>,
    /// MPI participation information.
    pub mpi_info: ManifestMpiInfo,
}

// ── TrainingManifest ──────────────────────────────────────────────────────────

/// Iteration counts embedded in [`TrainingManifest`].
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ManifestIterations {
    /// Maximum iterations allowed by the iteration-limit stopping rule.
    pub max_iterations: Option<u32>,
    /// Number of iterations actually completed.
    pub completed: u32,
    /// Iteration at which a convergence-oriented rule triggered (`null` if terminated by safety limit).
    pub converged_at: Option<u32>,
}

/// Convergence summary embedded in [`TrainingManifest`].
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ManifestConvergence {
    /// Whether a convergence-oriented stopping rule triggered termination.
    pub achieved: bool,
    /// Final optimality gap in percent (`null` when upper bound evaluation is disabled).
    pub final_gap_percent: Option<f64>,
    /// Human-readable description of the rule that terminated the run.
    pub termination_reason: String,
}

/// Cut pool summary embedded in [`TrainingManifest`].
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ManifestCuts {
    /// Total Benders cuts generated over the entire run.
    pub total_generated: u64,
    /// Cuts still active in the pool at termination.
    pub total_active: u64,
    /// Highest number of simultaneously active cuts observed.
    pub peak_active: u64,
}

/// Manifest for the training output directory (`training/_manifest.json`).
///
/// Enables crash recovery and post-run inspection. The `status` field indicates
/// whether the run completed normally; `iterations.completed` and
/// `convergence.achieved` capture the essential outcome.
///
/// Corresponds to the schema defined in output-infrastructure.md §1.2.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TrainingManifest {
    /// Manifest schema version (`"2.0.0"`).
    pub version: String,
    /// Run status: `"running"`, `"complete"`, `"failed"`, or `"converged"`.
    pub status: String,
    /// ISO 8601 timestamp when training started.
    pub started_at: Option<String>,
    /// ISO 8601 timestamp when training completed (null while running).
    pub completed_at: Option<String>,
    /// Iteration completion counts.
    pub iterations: ManifestIterations,
    /// Convergence outcome.
    pub convergence: ManifestConvergence,
    /// Cut pool summary.
    pub cuts: ManifestCuts,
    /// Integrity checksum over policy and convergence files (`null` in minimal viable version).
    pub checksum: Option<ManifestChecksum>,
    /// MPI participation information.
    pub mpi_info: ManifestMpiInfo,
}

// ── TrainingMetadata ──────────────────────────────────────────────────────────

/// Run identification and timing embedded in [`TrainingMetadata`].
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MetadataRunInfo {
    /// Unique run identifier (placeholder until uuid support is added).
    pub run_id: String,
    /// ISO 8601 timestamp when the run started.
    pub started_at: Option<String>,
    /// ISO 8601 timestamp when the run completed.
    pub completed_at: Option<String>,
    /// Total run duration in seconds.
    pub duration_seconds: Option<f64>,
    /// Version of the cobre-io crate that produced this output.
    pub cobre_version: String,
    /// LP solver backend identifier (e.g. `"highs"`).
    pub solver: Option<String>,
    /// LP solver library version.
    pub solver_version: Option<String>,
    /// Hostname of the primary compute node (`null` in minimal viable version).
    pub hostname: Option<String>,
    /// Username that initiated the run (`null` in minimal viable version).
    pub user: Option<String>,
}

/// Selected training configuration fields captured for reproducibility.
///
/// This is an informational snapshot, not a normative schema. The canonical
/// configuration schema lives in `config.json` (see `cobre-io::config`).
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MetadataConfigSnapshot {
    /// Random seed used for scenario generation.
    pub seed: Option<i64>,
    /// Number of forward-pass scenario trajectories per iteration.
    pub forward_passes: Option<u32>,
    /// How multiple stopping rules combine: `"any"` or `"all"`.
    pub stopping_mode: String,
    /// Policy warm-start mode (e.g. `"fresh"`, `"resume"`).
    pub policy_mode: String,
}

/// Problem dimensionality embedded in [`TrainingMetadata`].
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MetadataProblemDimensions {
    /// Number of stages in the planning horizon.
    pub num_stages: u32,
    /// Total number of hydro plants.
    pub num_hydros: u32,
    /// Total number of thermal plants.
    pub num_thermals: u32,
    /// Total number of buses.
    pub num_buses: u32,
    /// Total number of transmission lines.
    pub num_lines: u32,
}

/// LP timing performance summary embedded in [`TrainingMetadata`].
///
/// All fields are `null` in the minimal viable implementation (detailed LP
/// timing is deferred).
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MetadataPerformanceSummary {
    /// Total number of LP solves across all iterations.
    pub total_lp_solves: Option<u64>,
    /// Average LP solve time in microseconds.
    pub avg_lp_time_us: Option<f64>,
    /// Median LP solve time in microseconds.
    pub median_lp_time_us: Option<f64>,
    /// 99th-percentile LP solve time in microseconds.
    pub p99_lp_time_us: Option<f64>,
    /// Peak resident memory in megabytes.
    pub peak_memory_mb: Option<f64>,
}

/// Cryptographic hashes for reproducibility verification.
///
/// All fields are `null` in the minimal viable implementation (hash computation
/// is deferred).
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MetadataDataIntegrity {
    /// SHA-256 of concatenated input file hashes.
    pub input_hash: Option<String>,
    /// SHA-256 of normalized `config.json`.
    pub config_hash: Option<String>,
    /// SHA-256 computed over the policy `FlatBuffers` files.
    pub policy_hash: Option<String>,
    /// SHA-256 of `training/convergence.parquet` content.
    pub convergence_hash: Option<String>,
}

/// Runtime environment information embedded in [`TrainingMetadata`].
///
/// Only `cobre_version` is populated in the minimal viable implementation;
/// all other fields are `null` (environment introspection is deferred).
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MetadataEnvironment {
    /// MPI implementation name (e.g. `"OpenMPI"`) — `null` in minimal viable version.
    pub mpi_implementation: Option<String>,
    /// MPI library version string — `null` in minimal viable version.
    pub mpi_version: Option<String>,
    /// Number of MPI ranks — `null` in minimal viable version.
    pub num_ranks: Option<u32>,
    /// Number of CPU cores per rank — `null` in minimal viable version.
    pub cpus_per_rank: Option<u32>,
    /// Memory per rank in gigabytes — `null` in minimal viable version.
    pub memory_per_rank_gb: Option<f64>,
}

/// Comprehensive metadata file (`training/metadata.json`).
///
/// Captures the configuration snapshot, problem dimensions, performance
/// summary, data integrity hashes, and environment information for
/// reproducibility and audit trail purposes.
///
/// Corresponds to the schema defined in output-infrastructure.md §2.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct TrainingMetadata {
    /// Metadata schema version (`"2.0.0"`).
    pub version: String,
    /// Run identification and timing.
    pub run_info: MetadataRunInfo,
    /// Snapshot of key configuration fields.
    pub configuration_snapshot: MetadataConfigSnapshot,
    /// Problem size dimensions.
    pub problem_dimensions: MetadataProblemDimensions,
    /// LP performance statistics (`null` in minimal viable version).
    pub performance_summary: Option<MetadataPerformanceSummary>,
    /// Data integrity hashes (`null` in minimal viable version).
    pub data_integrity: Option<MetadataDataIntegrity>,
    /// Runtime environment (`null` fields in minimal viable version).
    pub environment: MetadataEnvironment,
}

/// Write a simulation manifest to `path` using the atomic write pattern.
///
/// Serializes `manifest` to pretty-printed JSON, writes to `path.json.tmp`,
/// then atomically renames to `path`. If the parent directory does not exist,
/// returns [`OutputError::IoError`].
///
/// # Errors
///
/// - [`OutputError::ManifestError`] if JSON serialization fails.
/// - [`OutputError::IoError`] if the file write or atomic rename fails.
pub fn write_simulation_manifest(
    path: &Path,
    manifest: &SimulationManifest,
) -> Result<(), OutputError> {
    write_json_atomic(path, manifest, "simulation")
}

/// Write a training manifest to `path` using the atomic write pattern.
///
/// Serializes `manifest` to pretty-printed JSON, writes to `path.json.tmp`,
/// then atomically renames to `path`. If the parent directory does not exist,
/// returns [`OutputError::IoError`].
///
/// # Errors
///
/// - [`OutputError::ManifestError`] if JSON serialization fails.
/// - [`OutputError::IoError`] if the file write or atomic rename fails.
pub fn write_training_manifest(
    path: &Path,
    manifest: &TrainingManifest,
) -> Result<(), OutputError> {
    write_json_atomic(path, manifest, "training")
}

/// Write a training metadata file to `path` using the atomic write pattern.
///
/// Serializes `metadata` to pretty-printed JSON, writes to `path.json.tmp`,
/// then atomically renames to `path`. If the parent directory does not exist,
/// returns [`OutputError::IoError`].
///
/// # Errors
///
/// - [`OutputError::ManifestError`] if JSON serialization fails.
/// - [`OutputError::IoError`] if the file write or atomic rename fails.
pub fn write_metadata(path: &Path, metadata: &TrainingMetadata) -> Result<(), OutputError> {
    write_json_atomic(path, metadata, "metadata")
}

/// Serialize `value` to pretty-printed JSON and atomically write it to `path`.
///
/// The write sequence is:
/// 1. Serialize to a `String` via `serde_json::to_string_pretty`.
/// 2. Write the string to `{path}.tmp` (a sibling temp file).
/// 3. Atomically rename `{path}.tmp` to `path`.
///
/// If the parent directory does not exist, step 2 returns `IoError` immediately
/// before any rename is attempted.
fn write_json_atomic<T: Serialize>(
    path: &Path,
    value: &T,
    manifest_type: &str,
) -> Result<(), OutputError> {
    let json = serde_json::to_string_pretty(value).map_err(|e| OutputError::ManifestError {
        manifest_type: manifest_type.to_string(),
        message: e.to_string(),
    })?;

    let tmp = path.with_extension("json.tmp");
    std::fs::write(&tmp, &json).map_err(|e| OutputError::io(&tmp, e))?;
    std::fs::rename(&tmp, path).map_err(|e| OutputError::io(path, e))?;

    Ok(())
}

#[cfg(test)]
#[allow(
    clippy::unwrap_used,
    clippy::expect_used,
    clippy::float_cmp,
    clippy::cast_possible_truncation
)]
mod tests {
    use super::*;
    use tempfile::tempdir;

    // ── Helpers ───────────────────────────────────────────────────────────────

    fn make_simulation_manifest() -> SimulationManifest {
        SimulationManifest {
            version: "2.0.0".to_string(),
            status: "complete".to_string(),
            started_at: Some("2026-01-17T10:00:00Z".to_string()),
            completed_at: Some("2026-01-17T10:15:00Z".to_string()),
            scenarios: ManifestScenarios {
                total: 100,
                completed: 100,
                failed: 0,
            },
            partitions_written: vec!["scenario_id=0/".to_string(), "scenario_id=1/".to_string()],
            checksum: None,
            mpi_info: ManifestMpiInfo::default(),
        }
    }

    fn make_training_manifest() -> TrainingManifest {
        TrainingManifest {
            version: "2.0.0".to_string(),
            status: "complete".to_string(),
            started_at: Some("2026-01-17T08:00:00Z".to_string()),
            completed_at: Some("2026-01-17T12:30:00Z".to_string()),
            iterations: ManifestIterations {
                max_iterations: Some(100),
                completed: 10,
                converged_at: Some(10),
            },
            convergence: ManifestConvergence {
                achieved: true,
                final_gap_percent: Some(0.45),
                termination_reason: "bound_stalling".to_string(),
            },
            cuts: ManifestCuts {
                total_generated: 1_250_000,
                total_active: 980_000,
                peak_active: 1_100_000,
            },
            checksum: None,
            mpi_info: ManifestMpiInfo::default(),
        }
    }

    fn make_training_metadata() -> TrainingMetadata {
        TrainingMetadata {
            version: "2.0.0".to_string(),
            run_info: MetadataRunInfo {
                run_id: "not-implemented".to_string(),
                started_at: Some("2026-01-17T08:00:00Z".to_string()),
                completed_at: Some("2026-01-17T12:30:00Z".to_string()),
                duration_seconds: Some(16_200.0),
                cobre_version: env!("CARGO_PKG_VERSION").to_string(),
                solver: Some("highs".to_string()),
                solver_version: None,
                hostname: None,
                user: None,
            },
            configuration_snapshot: MetadataConfigSnapshot {
                seed: Some(42),
                forward_passes: Some(192),
                stopping_mode: "any".to_string(),
                policy_mode: "fresh".to_string(),
            },
            problem_dimensions: MetadataProblemDimensions {
                num_stages: 12,
                num_hydros: 160,
                num_thermals: 200,
                num_buses: 5,
                num_lines: 8,
            },
            performance_summary: None,
            data_integrity: None,
            environment: MetadataEnvironment {
                mpi_implementation: None,
                mpi_version: None,
                num_ranks: None,
                cpus_per_rank: None,
                memory_per_rank_gb: None,
            },
        }
    }

    // ── Roundtrip tests ───────────────────────────────────────────────────────

    #[test]
    fn simulation_manifest_roundtrip() {
        let original = make_simulation_manifest();
        let json = serde_json::to_string_pretty(&original).unwrap();
        let decoded: SimulationManifest = serde_json::from_str(&json).unwrap();

        assert_eq!(decoded.version, original.version);
        assert_eq!(decoded.status, original.status);
        assert_eq!(decoded.scenarios.total, original.scenarios.total);
        assert_eq!(decoded.scenarios.completed, original.scenarios.completed);
        assert_eq!(decoded.scenarios.failed, original.scenarios.failed);
        assert_eq!(
            decoded.partitions_written.len(),
            original.partitions_written.len()
        );
        assert!(decoded.checksum.is_none());
        assert_eq!(decoded.mpi_info.world_size, original.mpi_info.world_size);
        assert_eq!(
            decoded.mpi_info.ranks_participated,
            original.mpi_info.ranks_participated
        );
    }

    #[test]
    fn training_manifest_roundtrip() {
        let original = make_training_manifest();
        let json = serde_json::to_string_pretty(&original).unwrap();
        let decoded: TrainingManifest = serde_json::from_str(&json).unwrap();

        assert_eq!(decoded.version, original.version);
        assert_eq!(decoded.status, original.status);
        assert_eq!(decoded.iterations.completed, original.iterations.completed);
        assert_eq!(
            decoded.iterations.max_iterations,
            original.iterations.max_iterations
        );
        assert_eq!(
            decoded.iterations.converged_at,
            original.iterations.converged_at
        );
        assert_eq!(decoded.convergence.achieved, original.convergence.achieved);
        assert_eq!(
            decoded.convergence.final_gap_percent,
            original.convergence.final_gap_percent
        );
        assert_eq!(
            decoded.convergence.termination_reason,
            original.convergence.termination_reason
        );
        assert_eq!(decoded.cuts.total_generated, original.cuts.total_generated);
        assert_eq!(decoded.cuts.total_active, original.cuts.total_active);
        assert_eq!(decoded.cuts.peak_active, original.cuts.peak_active);
        assert!(decoded.checksum.is_none());
    }

    #[test]
    fn training_metadata_serialization() {
        let metadata = make_training_metadata();
        let json = serde_json::to_string_pretty(&metadata).unwrap();
        let value: serde_json::Value = serde_json::from_str(&json).unwrap();

        // Verify key paths exist in the serialized JSON.
        assert!(
            value["run_info"].is_object(),
            "run_info must be a JSON object"
        );
        assert!(
            value["run_info"]["cobre_version"].is_string(),
            "run_info.cobre_version must be a string"
        );
        assert!(
            value["configuration_snapshot"].is_object(),
            "configuration_snapshot must be a JSON object"
        );
        assert!(
            value["problem_dimensions"].is_object(),
            "problem_dimensions must be a JSON object"
        );
        assert!(
            value["performance_summary"].is_null(),
            "performance_summary must be null in minimal viable version"
        );
        assert!(
            value["data_integrity"].is_null(),
            "data_integrity must be null in minimal viable version"
        );
        assert!(
            value["environment"].is_object(),
            "environment must be a JSON object"
        );
    }

    // ── Writer tests ──────────────────────────────────────────────────────────

    #[test]
    fn write_simulation_manifest_creates_file() {
        let dir = tempdir().unwrap();
        let path = dir.path().join("_manifest.json");
        let manifest = make_simulation_manifest();

        write_simulation_manifest(&path, &manifest).expect("write must succeed");

        assert!(path.exists(), "manifest file must exist after write");
        let content = std::fs::read_to_string(&path).unwrap();
        let _parsed: serde_json::Value =
            serde_json::from_str(&content).expect("file must contain valid JSON");
    }

    #[test]
    fn write_training_manifest_creates_file() {
        let dir = tempdir().unwrap();
        let path = dir.path().join("_manifest.json");
        let manifest = make_training_manifest();

        write_training_manifest(&path, &manifest).expect("write must succeed");

        assert!(path.exists(), "manifest file must exist after write");
        let content = std::fs::read_to_string(&path).unwrap();
        let _parsed: serde_json::Value =
            serde_json::from_str(&content).expect("file must contain valid JSON");
    }

    #[test]
    fn write_metadata_creates_file() {
        let dir = tempdir().unwrap();
        let path = dir.path().join("metadata.json");
        let metadata = make_training_metadata();

        write_metadata(&path, &metadata).expect("write must succeed");

        assert!(path.exists(), "metadata file must exist after write");
        let content = std::fs::read_to_string(&path).unwrap();
        let _parsed: serde_json::Value =
            serde_json::from_str(&content).expect("file must contain valid JSON");
    }

    // ── Acceptance criterion: training manifest field values ──────────────────

    #[test]
    fn write_training_manifest_fields_survive_write_read_cycle() {
        let dir = tempdir().unwrap();
        let path = dir.path().join("_manifest.json");

        let manifest = TrainingManifest {
            version: "2.0.0".to_string(),
            status: "complete".to_string(),
            started_at: None,
            completed_at: None,
            iterations: ManifestIterations {
                max_iterations: Some(100),
                completed: 10,
                converged_at: Some(10),
            },
            convergence: ManifestConvergence {
                achieved: true,
                final_gap_percent: None,
                termination_reason: "iteration_limit".to_string(),
            },
            cuts: ManifestCuts {
                total_generated: 200,
                total_active: 80,
                peak_active: 95,
            },
            checksum: None,
            mpi_info: ManifestMpiInfo::default(),
        };

        write_training_manifest(&path, &manifest).expect("write must succeed");

        let content = std::fs::read_to_string(&path).unwrap();
        let decoded: TrainingManifest = serde_json::from_str(&content).unwrap();

        assert_eq!(
            decoded.iterations.completed, 10,
            "iterations.completed must round-trip correctly"
        );
        assert!(
            decoded.convergence.achieved,
            "convergence.achieved must round-trip correctly"
        );
    }

    // ── Acceptance criterion: simulation manifest JSON values ─────────────────

    #[test]
    fn write_simulation_manifest_json_field_values() {
        let dir = tempdir().unwrap();
        let path = dir.path().join("_manifest.json");

        let manifest = SimulationManifest {
            version: "2.0.0".to_string(),
            status: "complete".to_string(),
            started_at: None,
            completed_at: None,
            scenarios: ManifestScenarios {
                total: 100,
                completed: 100,
                failed: 0,
            },
            partitions_written: vec![],
            checksum: None,
            mpi_info: ManifestMpiInfo::default(),
        };

        write_simulation_manifest(&path, &manifest).expect("write must succeed");

        let content = std::fs::read_to_string(&path).unwrap();
        let value: serde_json::Value = serde_json::from_str(&content).unwrap();

        assert_eq!(
            value["scenarios"]["total"].as_u64(),
            Some(100),
            "$.scenarios.total must equal 100"
        );
        assert_eq!(
            value["scenarios"]["completed"].as_u64(),
            Some(100),
            "$.scenarios.completed must equal 100"
        );
    }

    // ── Acceptance criterion: cobre_version from CARGO_PKG_VERSION ───────────

    #[test]
    fn write_metadata_cobre_version_matches_cargo_pkg_version() {
        let dir = tempdir().unwrap();
        let path = dir.path().join("metadata.json");
        let metadata = make_training_metadata();

        write_metadata(&path, &metadata).expect("write must succeed");

        let content = std::fs::read_to_string(&path).unwrap();
        let value: serde_json::Value = serde_json::from_str(&content).unwrap();

        let version = value["run_info"]["cobre_version"]
            .as_str()
            .expect("run_info.cobre_version must be a string");
        assert_eq!(
            version,
            env!("CARGO_PKG_VERSION"),
            "cobre_version must equal CARGO_PKG_VERSION"
        );
    }

    // ── Acceptance criterion: missing parent directory returns IoError ────────

    #[test]
    fn write_manifest_missing_parent_directory_returns_io_error() {
        let dir = tempdir().unwrap();
        // Reference a non-existent subdirectory.
        let path = dir.path().join("nonexistent_subdir").join("_manifest.json");
        let manifest = make_simulation_manifest();

        let result = write_simulation_manifest(&path, &manifest);

        assert!(
            result.is_err(),
            "write must fail when parent directory does not exist"
        );
        assert!(
            matches!(result, Err(OutputError::IoError { .. })),
            "error must be IoError when parent directory is missing, got: {result:?}"
        );
    }

    #[test]
    fn write_training_manifest_missing_parent_returns_io_error() {
        let dir = tempdir().unwrap();
        let path = dir.path().join("nonexistent_subdir").join("_manifest.json");
        let manifest = make_training_manifest();

        let result = write_training_manifest(&path, &manifest);

        assert!(
            matches!(result, Err(OutputError::IoError { .. })),
            "error must be IoError when parent directory is missing"
        );
    }

    #[test]
    fn write_metadata_missing_parent_returns_io_error() {
        let dir = tempdir().unwrap();
        let path = dir.path().join("nonexistent_subdir").join("metadata.json");
        let metadata = make_training_metadata();

        let result = write_metadata(&path, &metadata);

        assert!(
            matches!(result, Err(OutputError::IoError { .. })),
            "error must be IoError when parent directory is missing"
        );
    }

    // ── Acceptance criterion: no .tmp file remains after successful write ─────

    #[test]
    fn write_manifest_atomic_no_tmp_remains() {
        let dir = tempdir().unwrap();
        let path = dir.path().join("_manifest.json");
        let manifest = make_simulation_manifest();

        write_simulation_manifest(&path, &manifest).expect("write must succeed");

        let tmp = path.with_extension("json.tmp");
        assert!(
            !tmp.exists(),
            "no .tmp file must remain after a successful write, but found: {}",
            tmp.display()
        );
        assert!(path.exists(), "the target file must exist");
    }

    // ── Acceptance criterion: checksum serializes as null ─────────────────────

    #[test]
    fn manifest_null_checksum_serializes() {
        let manifest = SimulationManifest {
            version: "2.0.0".to_string(),
            status: "complete".to_string(),
            started_at: None,
            completed_at: None,
            scenarios: ManifestScenarios {
                total: 0,
                completed: 0,
                failed: 0,
            },
            partitions_written: vec![],
            checksum: None,
            mpi_info: ManifestMpiInfo::default(),
        };

        let json = serde_json::to_string_pretty(&manifest).unwrap();
        let value: serde_json::Value = serde_json::from_str(&json).unwrap();

        assert!(
            value["checksum"].is_null(),
            "checksum: None must serialize as null in JSON, got: {}",
            value["checksum"]
        );
    }

    #[test]
    fn training_manifest_null_checksum_serializes() {
        let manifest = make_training_manifest();
        let json = serde_json::to_string_pretty(&manifest).unwrap();
        let value: serde_json::Value = serde_json::from_str(&json).unwrap();

        assert!(
            value["checksum"].is_null(),
            "checksum: None must serialize as null in training manifest"
        );
    }
}