djogi 0.1.0-alpha.4

Model-first web framework for Rust — web-framework-agnostic core; Axum integration opt-in via the `axum` feature flag
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
//! `migrations status` rendering — T6's read-only status command.
//!
//! Walks the migration ledger, groups by `app_label`, sorts by
//! `applied_at` ASC within an app, and renders an operator-facing
//! table. Implements the v3 §3 + §6 amendment exit-code matrix:
//!
//! - All applied → exit 0.
//! - Any pending / failed → exit 1.
//! - Unknown `app_label` (D010 inline warning) → exit 1.
//!
//! # Read-only
//!
//! Status NEVER acquires the workspace file lock and never writes to
//! the database. The lock-free contract is per the v3 file-lock
//! contract. Concurrent compose / apply invocations may race the read
//! — that is acceptable: status is informational, and an interleaved
//! mutation produces a snapshot of the ledger as of the read instant.
//!
//! # Pure rendering
//!
//! [`render`] is a pure function from `(ledger rows, registered apps)`
//! to a [`StatusReport`] holding owned strings. The CLI surface
//! prints the report; tests assert on the report shape directly so
//! we never have to parse stdout.

use std::collections::BTreeMap;

use super::diff::Classification;
use super::ledger::{LedgerStatus, LedgerSummaryRow};
use super::segment::MigrationPlan;
use crate::DjogiContext;
use crate::error::DjogiError;

/// Output of [`render`]. Pre-formatted lines + the exit code so the
/// CLI just prints and exits.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct StatusReport {
    /// Operator-facing report — one entry per `(app, row)` pair plus
    /// inline D010 warnings. The CLI prints each line with a trailing
    /// newline.
    pub lines: Vec<String>,
    /// Number of D010 warnings issued. Surfaced separately so the
    /// CLI can decide on summary text without re-walking `lines`.
    pub d010_warnings: usize,
    /// `0` when every ledger row is `applied` / `baseline` /
    /// `rolled_back` and no D010 fires; `1` otherwise.
    pub exit_code: i32,
}

impl StatusReport {
    /// `true` when [`exit_code`](Self::exit_code) is non-zero.
    pub fn is_error_exit(&self) -> bool {
        self.exit_code != 0
    }
}

/// Render the status report.
///
/// `rows` is the result of [`super::ledger::select_all`]; the order
/// is already `(app_label ASC, applied_at ASC, id ASC)`. The render
/// function groups into a `BTreeMap` defensively so it remains
/// correct when a future caller passes unsorted data — the extra
/// pass is cheap and keeps the function independent of the caller's
/// sort guarantee.
///
/// `registered_apps` is the union of every label currently present
/// in [`crate::apps::AppRegistry::all`]. A row whose `app_label`
/// doesn't appear in this set surfaces as a D010 warning inline.
/// The synthetic global bucket (`""`) is always considered registered
/// — every project carries it implicitly.
pub fn render(rows: &[LedgerSummaryRow], registered_apps: &[String]) -> StatusReport {
    let mut registered: std::collections::BTreeSet<&str> =
        registered_apps.iter().map(String::as_str).collect();
    registered.insert(""); // global bucket always registered.

    // Group rows by `app_label`. The inputs are already pre-sorted by
    // app then time, but we re-group defensively so this rendering
    // is robust to a future caller that passes unsorted data.
    let mut grouped: BTreeMap<String, Vec<&LedgerSummaryRow>> = BTreeMap::new();
    for row in rows {
        grouped.entry(row.app_label.clone()).or_default().push(row);
    }

    let mut lines: Vec<String> = Vec::new();
    let mut any_pending_or_failed = false;
    let mut d010_warnings = 0usize;

    if grouped.is_empty() {
        lines.push("No migrations recorded.".to_string());
    }

    for (app, app_rows) in grouped {
        let app_display = if app.is_empty() {
            "_global_"
        } else {
            app.as_str()
        };
        lines.push(format!("App {app_display}:"));
        if !registered.contains(app.as_str()) {
            // D010 inline warning — the ledger references an app
            // that is no longer in the AppRegistry.
            lines.push(format_d010(&app));
            d010_warnings += 1;
        }
        for row in app_rows {
            let run_short = format_run_id_short(row.run_id);
            let status_str = row.status.as_db_str();
            // T7: prefix the line with `[ooo]` when the row was
            // recorded as out-of-order so operators reading the status
            // listing immediately see the historical drift. The marker
            // is a fixed-width prefix (with a single trailing space)
            // so non-ooo rows align cleanly when the listing mixes
            // both kinds.
            let ooo_marker = if row.out_of_order_flag {
                "[ooo] "
            } else {
                "      "
            };
            let line = format!(
                "  {marker}{version}  {status:<11}  {applied_at}  {applied_by}  run={run_short}  {ms}ms",
                marker = ooo_marker,
                version = row.version,
                status = status_str,
                applied_at = row.applied_at_rfc3339,
                applied_by = row.applied_by,
                run_short = run_short,
                ms = row.execution_time_ms,
            );
            lines.push(line);
            if let Some(note) = &row.partial_apply_note {
                lines.push(format!("    partial-apply-note: {note}"));
            }
            if matches!(row.status, LedgerStatus::Pending | LedgerStatus::Failed) {
                any_pending_or_failed = true;
            }
        }
    }

    let exit_code = if any_pending_or_failed || d010_warnings > 0 {
        1
    } else {
        0
    };

    StatusReport {
        lines,
        d010_warnings,
        exit_code,
    }
}

/// Render the T9 PK-flip warning lines for a pending migration plan.
///
/// **Inputs.** The caller passes the [`MigrationPlan`] returned by
/// [`super::segment::plan_delta`]. When the plan classifies as
/// `PkTypeFlip`, this fn returns the operator-facing warning lines:
///
/// - The exact PoNR sentence for every flip plan — see
///   [`POINT_OF_NO_RETURN_WARNING`] for the verbatim byte string.
/// - `"⚠ Partitioned-table cutover is seconds-to-minutes class —
///   benchmark in staging first"` when any segment in the plan
///   carries a partitioned-cutover label
///   (`PkFlipPartitionedCutover`).
///
/// Non-flip plans return an empty `Vec`. The warnings are
/// pre-formatted strings ready to print; the CLI prepends them to
/// the regular status output for the affected pending plan.
///
/// The PoNR sentence wording is contractual — operators cite it in
/// runbooks. The unit test `point_of_no_return_warning_byte_exact`
/// asserts the exact bytes so review-driven wording drift produces a
/// loud test failure rather than silent rephrasing.
pub fn render_pending_plan_warnings(plan: &MigrationPlan) -> Vec<String> {
    if !matches!(plan.classification, Classification::PkTypeFlip { .. }) {
        return Vec::new();
    }
    let mut out: Vec<String> = Vec::new();
    out.push(POINT_OF_NO_RETURN_WARNING.to_string());
    let has_partitioned = plan.segments.iter().any(|s| {
        s.statements
            .iter()
            .any(|stmt| stmt.label.starts_with("PkFlipPartitionedCutover "))
    });
    if has_partitioned {
        out.push(
            "⚠ Partitioned-table cutover is seconds-to-minutes class — benchmark in staging first"
                .to_string(),
        );
    }
    // INVALID-index advisories live alongside the PoNR/partitioned
    // warnings here only when the caller wants them inline in the
    // pending-plan render. Status-time invalid-index detection lives
    // in [`render_invalid_index_warnings`] which queries the live DB.
    out
}

/// Query the live database for any `INVALID` indexes and render an
/// operator-facing warning line per index found.
///
/// **Scope.** Postgres marks an index `pg_index.indisvalid = false`
/// when a `CREATE INDEX CONCURRENTLY` was interrupted (operator
/// cancel, deadlock-cancel, crash, or constraint violation). Such
/// indexes are present in `pg_class` but unusable — query planner
/// skips them, and a re-run of the same `CREATE INDEX CONCURRENTLY`
/// will collide on the index name. They are forensic litter from
/// failed concurrent index builds and the operator must explicitly
/// `REINDEX INDEX CONCURRENTLY` or `DROP INDEX` + recreate.
///
/// **Output shape.** One line per invalid index, format:
/// `"⚠ INVALID index detected: <schema>.<index> on <table> — likely
/// an interrupted CREATE INDEX CONCURRENTLY. Run \`REINDEX INDEX
/// CONCURRENTLY <schema>.<index>\` or DROP and recreate."`
///
/// The warning is unconditional (not just for pending PK-flips):
/// invalid indexes can come from any interrupted concurrent build,
/// not only flips. Status surfacing is the operator-visible signal
/// the catalog still carries the broken entry.
///
/// **Read-only.** No DDL is issued; only `pg_index` / `pg_class` /
/// `pg_namespace` SELECTs.
pub async fn render_invalid_index_warnings(
    ctx: &mut DjogiContext,
) -> Result<Vec<String>, DjogiError> {
    let rows = ctx
        .query_all(
            "SELECT n.nspname, c.relname, i.indrelid::regclass::text \
             FROM pg_index i \
             JOIN pg_class c ON c.oid = i.indexrelid \
             JOIN pg_namespace n ON n.oid = c.relnamespace \
             WHERE NOT i.indisvalid \
             ORDER BY n.nspname, c.relname",
            &[],
        )
        .await?;
    let mut out: Vec<String> = Vec::with_capacity(rows.len());
    for r in &rows {
        let schema: String = r.try_get(0).unwrap_or_default();
        let index_name: String = r.try_get(1).unwrap_or_default();
        let table_name: String = r.try_get(2).unwrap_or_default();
        out.push(format_invalid_index(&schema, &index_name, &table_name));
    }
    Ok(out)
}

/// Prefix of the D010 inline warning emitted when a ledger row
/// references an `app_label` that is no longer in the `AppRegistry`.
/// The full line is `format!("{D010_PREFIX}{app}…")`.
///
/// Pinned as a constant so byte-equality tests and operator runbooks
/// can assert on the exact wording without parsing the formatted line.
pub const D010_PREFIX: &str = "  D010: ledger references app \"";

/// Produce the full D010 warning line for a given `app` label.
///
/// Format: `D010_PREFIX + app + suffix`. The suffix is frozen;
/// change here only if the operator docs / runbooks are updated
/// in lockstep.
pub fn format_d010(app: &str) -> String {
    format!(
        "{D010_PREFIX}{app}\" which is no longer in AppRegistry; \
         was the app removed without a #[app(tombstone)]?"
    )
}

/// Prefix of the INVALID-index advisory line emitted by
/// [`render_invalid_index_warnings`].
///
/// Pinned for the same reason as [`D010_PREFIX`] — operator dashboards
/// may grep for this string.
pub const INVALID_INDEX_PREFIX: &str = "\u{26a0} INVALID index detected: ";

/// Produce one INVALID-index advisory line for the given schema, index,
/// and table names.
pub fn format_invalid_index(schema: &str, index: &str, table: &str) -> String {
    format!(
        "{INVALID_INDEX_PREFIX}{schema}.{index} on {table} \u{2014} likely \
         an interrupted CREATE INDEX CONCURRENTLY. Run \
         `REINDEX INDEX CONCURRENTLY {schema}.{index}` or DROP and recreate.",
    )
}

/// Exact byte string of the POINT OF NO RETURN warning emitted ahead
/// of any pending PK-type-flip plan. The wording is **contractual**:
/// runbooks and operator dashboards cite this sentence verbatim, so
/// any change here MUST be paired with a v3 plan amendment AND the
/// `point_of_no_return_warning_byte_exact` regression test update.
///
/// The leading codepoint is U+26A0 (warning sign) followed by U+0020.
/// The em dash between "commits" and "reverse" is U+2014.
pub const POINT_OF_NO_RETURN_WARNING: &str =
    "⚠ POINT OF NO RETURN after this cutover commits — reverse requires an inverse migration";

/// Truncate a run_id BIGINT to a stable 8-character lowercase hex token
/// (low 32 bits of the unsigned reinterpretation). Long-form available via
/// the [`LedgerSummaryRow::run_id`] field for callers needing the
/// exact value.
fn format_run_id_short(run_id: i64) -> String {
    let truncated = (run_id as u64) & 0xFFFF_FFFF;
    format!("{truncated:08x}")
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::migrate::ledger::ExecutionMode;

    fn synth_row(
        version: &str,
        app: &str,
        status: LedgerStatus,
        applied_at: &str,
    ) -> LedgerSummaryRow {
        let _ = ExecutionMode::Transactional; // keep import meaningful
        LedgerSummaryRow {
            id: 1,
            version: version.to_string(),
            description: String::new(),
            status,
            execution_time_ms: 12,
            applied_at_rfc3339: applied_at.to_string(),
            applied_by: "djogi".to_string(),
            run_id: 0x1234_5678_9abc_def0_u64 as i64,
            partial_apply_note: None,
            app_label: app.to_string(),
            out_of_order_flag: false,
        }
    }

    fn synth_row_ooo(
        version: &str,
        app: &str,
        status: LedgerStatus,
        applied_at: &str,
    ) -> LedgerSummaryRow {
        let mut r = synth_row(version, app, status, applied_at);
        r.out_of_order_flag = true;
        r
    }

    #[test]
    fn empty_ledger_renders_no_migrations_recorded() {
        let report = render(&[], &[]);
        assert_eq!(report.lines, vec!["No migrations recorded.".to_string()]);
        assert_eq!(report.exit_code, 0);
        assert_eq!(report.d010_warnings, 0);
    }

    #[test]
    fn single_applied_row_exits_zero() {
        let rows = vec![synth_row(
            "V20260425010203__init",
            "",
            LedgerStatus::Applied,
            "2026-04-25T01:02:03Z",
        )];
        let report = render(&rows, &[]);
        assert_eq!(report.exit_code, 0);
        assert_eq!(report.d010_warnings, 0);
        // First line groups by app.
        assert_eq!(report.lines[0], "App _global_:");
        // Second line carries the version + status.
        assert!(report.lines[1].contains("V20260425010203__init"));
        assert!(report.lines[1].contains("applied"));
    }

    #[test]
    fn pending_row_exits_nonzero() {
        let rows = vec![synth_row(
            "V20260425010203__init",
            "",
            LedgerStatus::Pending,
            "2026-04-25T01:02:03Z",
        )];
        let report = render(&rows, &[]);
        assert_eq!(report.exit_code, 1);
    }

    #[test]
    fn failed_row_exits_nonzero() {
        let rows = vec![synth_row(
            "V20260425010203__init",
            "",
            LedgerStatus::Failed,
            "2026-04-25T01:02:03Z",
        )];
        let report = render(&rows, &[]);
        assert_eq!(report.exit_code, 1);
    }

    #[test]
    fn unknown_app_label_emits_d010() {
        let rows = vec![synth_row(
            "V20260425010203__legacy",
            "old_billing",
            LedgerStatus::Applied,
            "2026-04-25T01:02:03Z",
        )];
        let report = render(&rows, &["billing".to_string()]);
        assert_eq!(report.d010_warnings, 1);
        assert_eq!(report.exit_code, 1);
        // D010 line lives between the App header and the version row.
        assert_eq!(report.lines[0], "App old_billing:");
        assert!(report.lines[1].contains("D010"));
        assert!(report.lines[1].contains("old_billing"));
    }

    #[test]
    fn known_app_does_not_emit_d010() {
        let rows = vec![synth_row(
            "V20260425010203__add_invoices",
            "billing",
            LedgerStatus::Applied,
            "2026-04-25T01:02:03Z",
        )];
        let report = render(&rows, &["billing".to_string()]);
        assert_eq!(report.d010_warnings, 0);
        assert_eq!(report.exit_code, 0);
    }

    #[test]
    fn mixed_status_groups_by_app() {
        let rows = vec![
            synth_row(
                "V1__init",
                "billing",
                LedgerStatus::Applied,
                "2026-04-25T01:02:03Z",
            ),
            synth_row(
                "V2__add_invoices",
                "billing",
                LedgerStatus::Faked,
                "2026-04-25T02:02:03Z",
            ),
            synth_row(
                "V3__add_users",
                "users",
                LedgerStatus::Failed,
                "2026-04-25T03:02:03Z",
            ),
        ];
        let report = render(&rows, &["billing".to_string(), "users".to_string()]);
        // Two app headers and one failure means non-zero exit.
        assert_eq!(report.exit_code, 1);
        let app_headers: Vec<&String> = report
            .lines
            .iter()
            .filter(|l| l.starts_with("App "))
            .collect();
        assert_eq!(app_headers.len(), 2);
        assert!(app_headers[0].contains("billing"));
        assert!(app_headers[1].contains("users"));
    }

    #[test]
    fn run_id_short_format_is_stable() {
        // Confirm bit-twiddling gives 8 hex chars.
        let s = format_run_id_short(0x1234_5678_9abc_def0_u64 as i64);
        assert_eq!(s, "9abcdef0");
    }

    #[test]
    fn run_id_short_zero_pads() {
        let s = format_run_id_short(0x0000_0000_0000_0010);
        assert_eq!(s, "00000010");
    }

    #[test]
    fn partial_apply_note_emitted_inline() {
        let mut row = synth_row(
            "V1__init",
            "billing",
            LedgerStatus::Failed,
            "2026-04-25T01:02:03Z",
        );
        row.partial_apply_note = Some("step 2 of 3 crashed".to_string());
        let report = render(&[row], &["billing".to_string()]);
        let note_line = report
            .lines
            .iter()
            .find(|l| l.contains("partial-apply-note"))
            .expect("note line");
        assert!(note_line.contains("step 2 of 3 crashed"));
    }

    // ── T7: out-of-order marker ──────────────────────────────────────────

    #[test]
    fn out_of_order_flag_renders_ooo_marker() {
        let row = synth_row_ooo(
            "V20260101000001__feature",
            "billing",
            LedgerStatus::Applied,
            "2026-04-25T01:02:03Z",
        );
        let report = render(&[row], &["billing".to_string()]);
        let row_line = report
            .lines
            .iter()
            .find(|l| l.contains("V20260101000001__feature"))
            .expect("row line");
        assert!(
            row_line.contains("[ooo]"),
            "out-of-order rows must show [ooo] marker; got: {row_line}"
        );
    }

    #[test]
    fn non_ooo_row_has_no_marker() {
        let row = synth_row(
            "V20260101000001__feature",
            "billing",
            LedgerStatus::Applied,
            "2026-04-25T01:02:03Z",
        );
        let report = render(&[row], &["billing".to_string()]);
        let row_line = report
            .lines
            .iter()
            .find(|l| l.contains("V20260101000001__feature"))
            .expect("row line");
        assert!(
            !row_line.contains("[ooo]"),
            "non-ooo rows must NOT show [ooo]; got: {row_line}"
        );
    }

    #[test]
    fn ooo_marker_does_not_break_exit_code_for_applied_status() {
        // An applied + out-of-order row is still a successful apply
        // from the lifecycle perspective; the marker is informational.
        // Status exit_code stays 0 unless we have pending/failed rows
        // or D010 warnings.
        let row = synth_row_ooo(
            "V20260101000001__feature",
            "billing",
            LedgerStatus::Applied,
            "2026-04-25T01:02:03Z",
        );
        let report = render(&[row], &["billing".to_string()]);
        assert_eq!(
            report.exit_code, 0,
            "[ooo] applied row must not cause non-zero exit"
        );
    }

    #[test]
    fn point_of_no_return_warning_byte_exact() {
        // The PoNR sentence is contractual — operators cite it in
        // runbooks. Any wording drift must be paired with a v3 plan
        // amendment AND this fixture update; we assert EVERY byte
        // (not just the first three) of the constant so silent
        // rephrasing — even a one-character typo — fails loud.
        //
        // The expected sequence below is hand-typed: U+26A0 (warning
        // sign, 0xE2 0x9A 0xA0), space, ASCII letters of "POINT OF NO
        // RETURN after this cutover commits", space, U+2014 (em dash,
        // 0xE2 0x80 0x94), space, ASCII letters of "reverse requires
        // an inverse migration".
        let expected_bytes: &[u8] = &[
            //            0xE2, 0x9A, 0xA0, // (space) POINT OF NO RETURN
            b' ', b'P', b'O', b'I', b'N', b'T', b' ', b'O', b'F', b' ', b'N', b'O', b' ', b'R',
            b'E', b'T', b'U', b'R', b'N', // (space) after this cutover commits
            b' ', b'a', b'f', b't', b'e', b'r', b' ', b't', b'h', b'i', b's', b' ', b'c', b'u',
            b't', b'o', b'v', b'e', b'r', b' ', b'c', b'o', b'm', b'm', b'i', b't', b's',
            // (space) — em dash
            b' ', 0xE2, 0x80, 0x94, // (space) reverse requires an inverse migration
            b' ', b'r', b'e', b'v', b'e', b'r', b's', b'e', b' ', b'r', b'e', b'q', b'u', b'i',
            b'r', b'e', b's', b' ', b'a', b'n', b' ', b'i', b'n', b'v', b'e', b'r', b's', b'e',
            b' ', b'm', b'i', b'g', b'r', b'a', b't', b'i', b'o', b'n',
        ];
        let actual_bytes = POINT_OF_NO_RETURN_WARNING.as_bytes();
        assert_eq!(
            actual_bytes.len(),
            expected_bytes.len(),
            "POINT_OF_NO_RETURN_WARNING byte length drifted from contract; \
             expected {} bytes, got {}; constant body: {:?}",
            expected_bytes.len(),
            actual_bytes.len(),
            POINT_OF_NO_RETURN_WARNING,
        );
        for (i, (a, e)) in actual_bytes.iter().zip(expected_bytes.iter()).enumerate() {
            assert_eq!(
                a, e,
                "POINT_OF_NO_RETURN_WARNING byte {i} drifted: expected 0x{e:02X}, got 0x{a:02X}",
            );
        }
        // Also keep the str-level equality assertion as a readability
        // safety net so a future test reader sees the exact wording.
        let expected = "\u{26a0} POINT OF NO RETURN after this cutover commits \u{2014} \
                        reverse requires an inverse migration";
        assert_eq!(POINT_OF_NO_RETURN_WARNING, expected);
    }

    #[test]
    fn render_pending_plan_warnings_uses_exact_ponr_constant() {
        use crate::migrate::diff::Classification;
        use crate::migrate::projection::BucketKey;
        use crate::migrate::segment::MigrationPlan;
        let plan = MigrationPlan {
            bucket: BucketKey {
                database: "main".to_string(),
                app: String::new(),
            },
            classification: Classification::PkTypeFlip {
                co_destructive: false,
                co_lossy: false,
            },
            segments: Vec::new(),
        };
        let warnings = render_pending_plan_warnings(&plan);
        assert!(
            warnings
                .iter()
                .any(|w| w.as_str() == POINT_OF_NO_RETURN_WARNING),
            "PoNR warning must match the contractual byte string verbatim; got {warnings:?}",
        );
    }

    #[test]
    fn mixed_ooo_and_non_ooo_rows_align_with_consistent_prefix() {
        // The non-ooo rows use a 6-byte spaces prefix so the columns
        // line up with `[ooo] ` on rows that have the marker. The
        // assertion here is loose — we only check that both lines
        // emit and the version label appears in both.
        let r1 = synth_row(
            "V20260101000001__a",
            "billing",
            LedgerStatus::Applied,
            "2026-04-25T01:02:03Z",
        );
        let r2 = synth_row_ooo(
            "V20251201000002__b",
            "billing",
            LedgerStatus::Applied,
            "2026-04-25T02:02:03Z",
        );
        let report = render(&[r1, r2], &["billing".to_string()]);
        let line_a = report
            .lines
            .iter()
            .find(|l| l.contains("V20260101000001__a"))
            .expect("line a");
        let line_b = report
            .lines
            .iter()
            .find(|l| l.contains("V20251201000002__b"))
            .expect("line b");
        // Spot-check: line A has the spaces prefix; line B has [ooo].
        assert!(!line_a.contains("[ooo]"));
        assert!(line_b.contains("[ooo]"));
        // Both lines start with two indenting spaces matching `App :`.
        assert!(line_a.starts_with("  "));
        assert!(line_b.starts_with("  "));
    }
}