//! Integration guard for the `aura chart` viewer's ordinal-label honesty: the //! gap-collapsed ordinal x spine must still label each collapsed index with its REAL //! timestamp (axis ticks + legend value-readout), never the index. This logic lives in //! `chart-viewer.js` and cannot be checked from Rust; this shells out to `node`, running //! `tests/chart_viewer_label.mjs`, which drives the pure `buildCharts`. `node` is //! REQUIRED: if absent this test FAILS. use std::path::PathBuf; use std::process::Command; #[test] fn chart_viewer_ordinal_labels_report_real_timestamps() { let script = PathBuf::from(env!("CARGO_MANIFEST_DIR")) .join("tests") .join("chart_viewer_label.mjs"); assert!(script.exists(), "guard script missing at {}", script.display()); let out = match Command::new("node").arg(&script).output() { Ok(out) => out, Err(e) => panic!( "node is required for the chart-viewer label guard but could not be run \ ({e}); install Node.js or ensure `node` is on PATH" ), }; let stdout = String::from_utf8_lossy(&out.stdout); let stderr = String::from_utf8_lossy(&out.stderr); assert!( out.status.success(), "chart-viewer label guard failed (exit {:?}).\n--- node stdout ---\n{stdout}\n--- node stderr ---\n{stderr}", out.status.code() ); }