use crate::cli::{SchemaArgs, SchemaTarget};
use crate::error::CliResult;
use crate::registry::{sink_schema, source_schema};
use crate::transforms::transform_schema;
pub async fn run(args: SchemaArgs) -> CliResult<()> {
let schema = match args.target {
SchemaTarget::Config => crate::schema_compose::config_schema(),
SchemaTarget::Source { name } => source_schema(&name)?,
SchemaTarget::Sink { name } => sink_schema(&name)?,
SchemaTarget::Transform { name } => transform_schema(&name)?,
SchemaTarget::Dlq => {
let dlq_schema = faucet_core::schema_for!(crate::config::DlqSpec);
serde_json::to_value(dlq_schema)
.unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
SchemaTarget::Replication => {
let s = faucet_core::schema_for!(crate::replication::spec::ReplicationSpec);
serde_json::to_value(s).unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
SchemaTarget::Backfill => {
let s = faucet_core::schema_for!(crate::backfill::BackfillSpec);
serde_json::to_value(s).unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
SchemaTarget::Params => {
let s = faucet_core::schema_for!(crate::params::ParamSpec);
serde_json::to_value(s).unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
SchemaTarget::Execution => {
let s = faucet_core::schema_for!(crate::config::ExecutionSpec);
serde_json::to_value(s).unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
SchemaTarget::Resilience => {
let s = faucet_core::schema_for!(crate::config::ResilienceSpec);
serde_json::to_value(s).unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
SchemaTarget::Sla => {
let s = faucet_core::schema_for!(crate::sla::SlaSpec);
serde_json::to_value(s).unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
#[cfg(feature = "quality")]
SchemaTarget::Quality => {
let quality_schema = faucet_core::schema_for!(faucet_core::QualitySpec);
serde_json::to_value(quality_schema)
.unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
#[cfg(feature = "contract")]
SchemaTarget::Contract => {
let contract_schema = faucet_core::schema_for!(faucet_core::ContractSpec);
serde_json::to_value(contract_schema)
.unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
#[cfg(feature = "masking")]
SchemaTarget::Masking => {
let masking_schema = faucet_core::schema_for!(faucet_core::MaskingSpec);
serde_json::to_value(masking_schema)
.unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
#[cfg(feature = "schedule")]
SchemaTarget::Schedule => {
let s = faucet_core::schema_for!(crate::schedule::spec::ScheduleSpec);
serde_json::to_value(s).unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
#[cfg(feature = "lineage")]
SchemaTarget::Lineage => lineage_schema(),
#[cfg(feature = "triggers")]
SchemaTarget::Triggers => {
let s = faucet_core::schema_for!(crate::serve::triggers::spec::TriggersFile);
serde_json::to_value(s).unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
SchemaTarget::Test => {
let s = faucet_core::schema_for!(crate::pipeline_test::spec::TestSpecFile);
serde_json::to_value(s).unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
#[cfg(feature = "notify")]
SchemaTarget::Notifications => {
let s = faucet_core::schema_for!(crate::notify::NotificationSpec);
serde_json::to_value(s).unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
#[cfg(feature = "catalog")]
SchemaTarget::Catalog => {
let s = faucet_core::schema_for!(crate::catalog::CatalogSpec);
serde_json::to_value(s).unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
SchemaTarget::Secrets => serde_json::json!({
"title": "Secrets-manager interpolation grammar",
"schemes": {
"vault": { "syntax": "${vault:<path>[#field]}", "auth": ["VAULT_ADDR", "VAULT_TOKEN", "VAULT_NAMESPACE (optional)"] },
"aws-sm": { "syntax": "${aws-sm:<name-or-ARN>[#field]}", "auth": ["aws-config default credential chain"] },
"gcp-sm": { "syntax": "${gcp-sm:projects/<p>/secrets/<s>/versions/<v>}", "auth": ["Application Default Credentials"] },
"azure-kv": { "syntax": "${azure-kv:<vault>/<secret>[/<version>]}", "auth": ["AZURE_* env / managed identity / az login"] }
},
"notes": [
"#field parses the secret as JSON and extracts one key (vault, aws-sm).",
"Resolved at config load; fetched concurrently and de-duplicated; never persisted.",
"Build with --features secrets (or per-backend secrets-vault / secrets-aws-sm / ...)."
]
}),
};
let body = serde_json::to_string_pretty(&schema).unwrap_or_else(|_| schema.to_string());
println!("{body}");
Ok(())
}
#[cfg(feature = "lineage")]
pub fn lineage_schema() -> serde_json::Value {
serde_json::to_value(faucet_lineage::schemars_schema())
.unwrap_or_else(|_| serde_json::json!({"type": "object"}))
}
#[cfg(test)]
mod tests {
use crate::cli::{SchemaArgs, SchemaTarget};
#[cfg(feature = "lineage")]
#[test]
fn schema_lineage_returns_object_schema() {
let v = super::lineage_schema();
assert_eq!(v["type"], "object");
assert!(v["properties"].get("transport").is_some());
assert!(v["properties"].get("namespace").is_some());
}
#[tokio::test]
async fn schema_replication_target_ok() {
let r = super::run(SchemaArgs {
target: SchemaTarget::Replication,
})
.await;
assert!(r.is_ok(), "{r:?}");
}
#[tokio::test]
async fn schema_execution_target_ok() {
let r = super::run(SchemaArgs {
target: SchemaTarget::Execution,
})
.await;
assert!(r.is_ok(), "{r:?}");
}
#[test]
fn execution_schema_includes_adaptive_batch_size() {
let schema = faucet_core::schema_for!(crate::config::ExecutionSpec);
let value = serde_json::to_value(schema).expect("execution schema serializes");
assert!(value["properties"].get("adaptive_batch_size").is_some());
}
#[tokio::test]
async fn schema_sla_target_ok() {
let r = super::run(SchemaArgs {
target: SchemaTarget::Sla,
})
.await;
assert!(r.is_ok(), "{r:?}");
}
#[test]
fn sla_schema_exposes_the_three_checks() {
let schema = faucet_core::schema_for!(crate::sla::SlaSpec);
let out = serde_json::to_string(&schema).expect("sla schema serializes");
assert!(out.contains("max_staleness_secs"), "{out}");
assert!(out.contains("min_rows_per_run"), "{out}");
assert!(out.contains("volume_anomaly"), "{out}");
}
#[tokio::test]
async fn schema_resilience_target_ok() {
let r = super::run(SchemaArgs {
target: SchemaTarget::Resilience,
})
.await;
assert!(r.is_ok(), "{r:?}");
}
#[test]
fn schema_resilience_emits_json_schema() {
let schema = faucet_core::schema_for!(crate::config::ResilienceSpec);
let out = serde_json::to_string(&schema).expect("resilience schema serializes");
assert!(out.contains("max_attempts"), "{out}");
assert!(out.contains("circuit_breaker"), "{out}");
}
}