use std::path::Path;
use chrono::NaiveDate;
use crate::config::Config;
use crate::destination::placeholder::PlaceholderContext;
use crate::error::Result;
use crate::pipeline::ManifestVerification;
use crate::pipeline::validate_manifest::verify_at_destination;
pub enum ValidateOutputFormat {
Pretty,
Json(Option<String>),
}
#[derive(Debug, Default, Clone)]
pub struct ValidateTarget {
pub date: Option<NaiveDate>,
pub run_id: Option<String>,
pub prefix_override: Option<String>,
}
impl ValidateTarget {
fn placeholder_context(&self, export_name: &str) -> PlaceholderContext {
let mut ctx = match self.date {
Some(d) => PlaceholderContext::for_date(d, export_name),
None => PlaceholderContext::for_today(export_name),
};
if let Some(rid) = &self.run_id {
ctx = ctx.with_run_id(rid.clone());
}
ctx
}
}
pub fn run_validate_command(
config_path: &str,
export_name: Option<&str>,
format: ValidateOutputFormat,
target: ValidateTarget,
) -> Result<()> {
let config = Config::load_with_params(config_path, None)?;
let exports: Vec<&crate::config::ExportConfig> = match export_name {
Some(name) => match config.exports.iter().find(|e| e.name == name) {
Some(e) => vec![e],
None => anyhow::bail!("export '{}' not found in config", name),
},
None => config.exports.iter().collect(),
};
if exports.is_empty() {
anyhow::bail!("no exports defined in config — nothing to validate");
}
if target.prefix_override.is_some() && exports.len() > 1 {
anyhow::bail!(
"--prefix requires --export <name>: cannot apply one override to {} exports",
exports.len()
);
}
let mut all_results: Vec<ExportVerdict> = Vec::with_capacity(exports.len());
let mut hard_failures: Vec<String> = Vec::new();
for export in &exports {
let ctx = target.placeholder_context(&export.name);
let mut expanded_dest =
crate::destination::placeholder::expand_destination(export.destination.clone(), &ctx);
if let Some(p) = &target.prefix_override {
expanded_dest.path = Some(p.clone());
expanded_dest.prefix = Some(p.clone());
}
let resolved_prefix = resolved_prefix_for_display(&expanded_dest);
let dest = match crate::destination::create_destination(&expanded_dest) {
Ok(d) => d,
Err(e) => {
let msg = format!(
"export '{}' (prefix: {}): could not open destination: {:#}",
export.name, resolved_prefix, e
);
hard_failures.push(msg);
continue;
}
};
if dest.capabilities().commit_protocol == crate::destination::WriteCommitProtocol::Streaming
{
log::info!(
"export '{}': streaming destination, skipping (nothing to verify)",
export.name
);
continue;
}
match verify_at_destination(&*dest, "") {
Ok(mut v) => {
v.enforce_content_policy(export.verify.requires_content());
all_results.push(ExportVerdict {
name: export.name.clone(),
resolved_prefix,
verification: v,
});
}
Err(e) => {
hard_failures.push(format!(
"export '{}' (prefix: {}): verify_at_destination failed: {:#}",
export.name, resolved_prefix, e
));
}
}
}
match format {
ValidateOutputFormat::Pretty => render_pretty(&all_results, &hard_failures),
ValidateOutputFormat::Json(out_path) => {
render_json(&all_results, &hard_failures, out_path)?
}
}
let any_failed = all_results
.iter()
.any(|r| r.verification.manifest_found && !r.verification.passed);
if !hard_failures.is_empty() || any_failed {
anyhow::bail!(
"rivet validate: {} export(s) failed verification",
hard_failures.len()
+ all_results
.iter()
.filter(|r| r.verification.manifest_found && !r.verification.passed)
.count()
);
}
Ok(())
}
struct ExportVerdict {
name: String,
resolved_prefix: String,
verification: ManifestVerification,
}
fn resolved_prefix_for_display(dest: &crate::config::DestinationConfig) -> String {
dest.prefix
.clone()
.or_else(|| dest.path.clone())
.unwrap_or_else(|| "<unresolved>".into())
}
fn render_pretty(results: &[ExportVerdict], hard_failures: &[String]) {
use std::io::Write;
let stdout = std::io::stdout();
let mut h = stdout.lock();
for r in results {
let _ = writeln!(h, "── {} ──", r.name);
let _ = writeln!(h, " prefix: {}", r.resolved_prefix);
let v = &r.verification;
if v.legacy_run {
let _ = writeln!(
h,
" status: legacy_run (no manifest at destination — pre-0.7.0 prefix)"
);
continue;
}
if !v.manifest_found {
let _ = writeln!(h, " status: NO MANIFEST");
continue;
}
let _ = writeln!(
h,
" status: {}",
if v.passed { "PASSED" } else { "FAILED" }
);
let _ = writeln!(
h,
" parts: {} verified ({} md5, {} size-only), {} failed",
v.parts_verified,
v.parts_md5_verified,
v.parts_verified.saturating_sub(v.parts_md5_verified),
v.parts_failed
);
let _ = writeln!(
h,
" _SUCCESS: {}",
if v.success_marker_consistent {
"consistent"
} else if v.failures.iter().any(|f| matches!(
f,
crate::pipeline::ManifestVerificationFailure::SuccessMarkerStale { .. }
| crate::pipeline::ManifestVerificationFailure::SuccessMarkerMalformed { .. }
| crate::pipeline::ManifestVerificationFailure::SuccessMarkerReadError { .. }
)) {
"INCONSISTENT (see failures)"
} else {
"absent (no signal)"
}
);
let _ = writeln!(
h,
" manifest: {}",
if v.manifest_self_consistent {
"self-consistent"
} else {
"INCONSISTENT (see failures)"
}
);
for failure in &v.failures {
let _ = writeln!(h, " failure: {}", failure);
}
}
if !hard_failures.is_empty() {
let _ = writeln!(h);
let _ = writeln!(h, "── errors ──");
for e in hard_failures {
let _ = writeln!(h, " {}", e);
}
}
let _ = h.flush();
}
fn render_json(
results: &[ExportVerdict],
hard_failures: &[String],
out_path: Option<String>,
) -> Result<()> {
let payload = serde_json::json!({
"exports": results
.iter()
.map(|r| {
serde_json::json!({
"export_name": r.name,
"resolved_prefix": r.resolved_prefix,
"verification": r.verification,
})
})
.collect::<Vec<_>>(),
"errors": hard_failures,
});
let serialized = serde_json::to_string_pretty(&payload)?;
match out_path {
Some(p) => {
std::fs::write(Path::new(&p), &serialized)?;
log::info!("rivet validate: wrote JSON report to {}", p);
}
None => {
println!("{}", serialized);
}
}
Ok(())
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn target_default_uses_today() {
let target = ValidateTarget::default();
let ctx = target.placeholder_context("orders");
assert_eq!(ctx.date, chrono::Utc::now().date_naive());
assert_eq!(ctx.export_name, "orders");
assert!(ctx.run_id.is_none());
}
#[test]
fn target_with_date_overrides_today() {
let target = ValidateTarget {
date: Some(NaiveDate::from_ymd_opt(2026, 5, 21).unwrap()),
..Default::default()
};
let ctx = target.placeholder_context("orders");
assert_eq!(ctx.date, NaiveDate::from_ymd_opt(2026, 5, 21).unwrap());
assert!(ctx.run_id.is_none());
}
#[test]
fn target_composes_date_and_run_id() {
let target = ValidateTarget {
date: Some(NaiveDate::from_ymd_opt(2026, 5, 21).unwrap()),
run_id: Some("r-abc123".into()),
prefix_override: None,
};
let ctx = target.placeholder_context("orders");
assert_eq!(ctx.date, NaiveDate::from_ymd_opt(2026, 5, 21).unwrap());
assert_eq!(ctx.run_id.as_deref(), Some("r-abc123"));
}
#[test]
fn resolved_prefix_prefers_cloud_prefix_over_path() {
let dest = crate::config::DestinationConfig {
destination_type: crate::config::DestinationType::S3,
prefix: Some("exports/2026-05-21/orders/".into()),
path: Some("/scratch".into()),
..Default::default()
};
assert_eq!(
resolved_prefix_for_display(&dest),
"exports/2026-05-21/orders/",
);
}
#[test]
fn resolved_prefix_falls_back_to_path_when_prefix_missing() {
let dest = crate::config::DestinationConfig {
destination_type: crate::config::DestinationType::Local,
prefix: None,
path: Some("/data/out".into()),
..Default::default()
};
assert_eq!(resolved_prefix_for_display(&dest), "/data/out");
}
}