spec_driven_docs/commands/
doctor.rs1use serde::Serialize;
8
9use crate::cli::doctor::DoctorArgs;
10use crate::context::AppContext;
11use crate::error::AppError;
12use crate::output;
13use crate::probes::{self, ProbeClass, ProbeResult, ProbeStatus};
14
15#[derive(Debug, Serialize)]
17struct Report {
18 schema: &'static str,
20 probes: Vec<ProbeResult>,
22 next: Vec<String>,
24}
25
26pub fn run(_ctx: &AppContext, args: &DoctorArgs) -> Result<(), AppError> {
33 let probes = probes::run_all();
34 let next = vec!["sdd status --target . reports the instance".to_owned()];
35 if args.json {
36 return output::json(&Report {
37 schema: "sdd.doctor/1",
38 probes,
39 next,
40 });
41 }
42 for class in [ProbeClass::Hard, ProbeClass::Soft] {
43 output::line(match class {
44 ProbeClass::Hard => "hard",
45 ProbeClass::Soft => "soft",
46 });
47 for probe in probes.iter().filter(|probe| probe.class == class) {
48 let status = match probe.status {
49 ProbeStatus::Ok => "ok ",
50 ProbeStatus::Failed => "failed",
51 };
52 output::line(format!(" {status} {}: {}", probe.id, probe.message));
53 if let Some(remediation) = &probe.remediation {
54 output::line(format!(" next: {remediation}"));
55 }
56 }
57 }
58 output::line("Next:");
59 for line in &next {
60 output::line(format!(" {line}"));
61 }
62 Ok(())
63}
64
65#[cfg(test)]
66mod tests {
67 #![allow(clippy::expect_used)]
69
70 use crate::probes::{ProbeClass, ProbeResult, ProbeStatus};
71
72 #[test]
74 fn the_doctor_report_schema_snapshot_holds() {
75 let report = super::Report {
76 schema: "sdd.doctor/1",
77 probes: vec![ProbeResult {
78 id: "state-root",
79 class: ProbeClass::Hard,
80 status: ProbeStatus::Ok,
81 message: "the state root is writable".into(),
82 remediation: None,
83 }],
84 next: vec!["sdd status --target . reports the instance".into()],
85 };
86 assert_eq!(
87 serde_json::to_string(&report).expect("a report serializes"),
88 r#"{"schema":"sdd.doctor/1","probes":[{"id":"state-root","class":"hard","status":"ok","message":"the state root is writable"}],"next":["sdd status --target . reports the instance"]}"#
89 );
90 }
91
92 #[test]
94 fn the_probe_schema_snapshot_holds() {
95 let ok = ProbeResult {
96 id: "git",
97 class: ProbeClass::Soft,
98 status: ProbeStatus::Ok,
99 message: "git runs".into(),
100 remediation: None,
101 };
102 assert_eq!(
103 serde_json::to_string(&ok).expect("a probe serializes"),
104 r#"{"id":"git","class":"soft","status":"ok","message":"git runs"}"#
105 );
106 let failed = ProbeResult {
107 id: "pre-commit",
108 class: ProbeClass::Soft,
109 status: ProbeStatus::Failed,
110 message: "pre-commit is not on PATH".into(),
111 remediation: Some("install pre-commit; the delivered gates run through it".into()),
112 };
113 assert_eq!(
114 serde_json::to_string(&failed).expect("a probe serializes"),
115 r#"{"id":"pre-commit","class":"soft","status":"failed","message":"pre-commit is not on PATH","remediation":"install pre-commit; the delivered gates run through it"}"#
116 );
117 }
118}