1use std::path::{Path, PathBuf};
5use std::process::Command;
6use std::time::{SystemTime, UNIX_EPOCH};
7
8use anyhow::{bail, Context, Result};
9use serde::{Deserialize, Serialize};
10
11pub const RECEIPTS_DIR: &str = "e2e-attestations";
13
14const LEGACY_ATTESTATION: &str = "e2e-attestation.json";
16
17#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
20pub struct Attestation {
21 pub command: String,
23 pub ran_at: u64,
25 pub exit_code: i32,
27 pub commit: String,
29 #[serde(default)]
31 pub branch: String,
32}
33
34pub fn branch_slug(branch: &str) -> String {
38 let mut slug = String::new();
39 for c in branch.to_lowercase().chars() {
40 let mapped = if c.is_ascii_lowercase() || c.is_ascii_digit() || c == '.' || c == '_' {
41 c
42 } else {
43 '-'
44 };
45 if mapped == '-' && slug.ends_with('-') {
46 continue;
47 }
48 slug.push(mapped);
49 }
50 let slug: String = slug.chars().take(80).collect();
51 let slug = slug.trim_matches(|c| c == '-' || c == '.');
52 if slug.is_empty() {
53 "branch".to_string()
54 } else {
55 slug.to_string()
56 }
57}
58
59pub(crate) fn current_branch(repo: &Path) -> Result<String> {
61 git_capture(repo, &["symbolic-ref", "--short", "-q", "HEAD"]).context(
62 "resolving the current branch — the receipt is keyed by branch, so this \
63 must run on a checked-out branch (a detached HEAD has none): `git switch <branch>`",
64 )
65}
66
67pub fn attest(repo: &Path, command: &str) -> Result<Attestation> {
71 let commit = git_capture(repo, &["rev-parse", "HEAD"])
72 .context("resolving HEAD — `e2e attest` must run inside a git repo with a commit")?;
73 let branch = current_branch(repo)?;
74
75 let status = run_shell(repo, command)?;
76 let exit_code = status.code().unwrap_or(-1);
77
78 let ran_at = SystemTime::now()
79 .duration_since(UNIX_EPOCH)
80 .map(|d| d.as_secs())
81 .unwrap_or(0);
82
83 let attestation = Attestation {
84 command: command.to_string(),
85 ran_at,
86 exit_code,
87 commit,
88 branch: branch.clone(),
89 };
90
91 if exit_code != 0 {
92 return Ok(attestation);
93 }
94
95 let dir = repo.join(RECEIPTS_DIR);
98 std::fs::create_dir_all(&dir).with_context(|| format!("creating {}", dir.display()))?;
99 let path = dir.join(format!("{}.json", branch_slug(&branch)));
100 let json = serde_json::to_string_pretty(&attestation).context("serializing the receipt")?;
101 std::fs::write(&path, format!("{json}\n"))
102 .with_context(|| format!("writing {}", path.display()))?;
103 git_run(repo, &["add", "-A", "--", RECEIPTS_DIR])?;
104
105 let message = format!("e2e attestation for {branch}");
106 git_run(repo, &["commit", "-q", "-m", message.as_str()])?;
109
110 Ok(attestation)
111}
112
113fn run_shell(repo: &Path, command: &str) -> Result<std::process::ExitStatus> {
115 Command::new("sh")
116 .arg("-c")
117 .arg(command)
118 .current_dir(repo)
119 .status()
120 .with_context(|| format!("running e2e command `{command}`"))
121}
122
123#[derive(Debug, Clone, PartialEq, Eq)]
125pub enum Verification {
126 Fresh,
128 Missing,
130}
131
132pub fn verify(repo: &Path) -> Result<Verification> {
135 verify_scoped(repo, repo)
136}
137
138pub fn verify_scoped(repo: &Path, scope: &Path) -> Result<Verification> {
142 verify_since(repo, scope, None)
143}
144
145pub fn verify_since(repo: &Path, scope: &Path, base: Option<&str>) -> Result<Verification> {
148 verify_extra_scoped(repo, scope, base, &[], &[], None)
149}
150
151pub fn verify_extra_scoped(
155 repo: &Path,
156 scope: &Path,
157 base: Option<&str>,
158 extra_scopes: &[PathBuf],
159 excludes: &[PathBuf],
160 branch: Option<&str>,
161) -> Result<Verification> {
162 let Some(base) = base else {
163 return Ok(if has_receipts(repo) {
164 Verification::Fresh
165 } else {
166 Verification::Missing
167 });
168 };
169 validate_scopes(repo, scope, extra_scopes)?;
170
171 let mut args: Vec<String> = vec![
173 "diff".into(),
174 "--quiet".into(),
175 format!("{base}...HEAD"),
176 "--".into(),
177 relative_pathspec(repo, scope),
178 ];
179 for extra in extra_scopes {
180 args.push(format!(":(top){}", extra.display()));
181 }
182 args.push(format!(":(exclude){RECEIPTS_DIR}"));
183 args.push(format!(":(exclude){LEGACY_ATTESTATION}"));
184 args.push(format!(":(top,exclude,glob)**/{RECEIPTS_DIR}/**"));
187 args.push(format!(":(top,exclude,glob)**/{LEGACY_ATTESTATION}"));
188 for exclude in excludes {
189 args.push(format!(":(top,exclude){}", exclude.display()));
190 }
191 let arg_refs: Vec<&str> = args.iter().map(String::as_str).collect();
192 if !git_diff_changed(repo, &arg_refs)? {
193 return Ok(Verification::Fresh);
194 }
195
196 let range = format!("{base}...HEAD");
200 let acting_branch = branch
201 .map(str::to_string)
202 .or_else(|| current_branch(repo).ok());
203 let receipt_pathspec = match &acting_branch {
204 Some(b) => format!("{RECEIPTS_DIR}/{}.json", branch_slug(b)),
205 None => RECEIPTS_DIR.to_string(),
206 };
207 let receipt_diff = [
208 "diff",
209 "--name-only",
210 "--diff-filter=ACMRT",
211 &range,
212 "--",
213 &receipt_pathspec,
214 ];
215 let out = git_capture(repo, &receipt_diff)?;
216 Ok(if out.is_empty() {
217 Verification::Missing
218 } else {
219 Verification::Fresh
220 })
221}
222
223fn has_receipts(repo: &Path) -> bool {
225 let Ok(entries) = std::fs::read_dir(repo.join(RECEIPTS_DIR)) else {
226 return false;
227 };
228 entries
229 .flatten()
230 .any(|e| e.path().extension().is_some_and(|ext| ext == "json") && e.path().is_file())
231}
232
233fn relative_pathspec(repo: &Path, scope: &Path) -> String {
236 if scope == repo {
237 return ".".to_string();
238 }
239 match scope.strip_prefix(repo) {
240 Ok(rel) if !rel.as_os_str().is_empty() => rel.to_string_lossy().into_owned(),
241 _ => scope.to_string_lossy().into_owned(),
242 }
243}
244
245fn validate_scopes(repo: &Path, scope: &Path, extra_scopes: &[PathBuf]) -> Result<()> {
249 let scope_spec = relative_pathspec(repo, scope);
250 if !pathspec_matches_tracked(repo, &scope_spec)? {
251 bail!(
252 "e2e verify: --scope `{}` matches no tracked path under `{}` — \
253 --scope must name `{}` or a directory beneath it that git tracks",
254 scope.display(),
255 repo.display(),
256 repo.display(),
257 );
258 }
259 for extra in extra_scopes {
260 let extra_spec = format!(":(top){}", extra.display());
261 if !pathspec_matches_tracked(repo, &extra_spec)? {
262 bail!(
263 "e2e verify: --extra-scope `{}` matches no tracked path — \
264 --extra-scope must name a repo-root-relative directory that git tracks",
265 extra.display(),
266 );
267 }
268 }
269 Ok(())
270}
271
272fn pathspec_matches_tracked(repo: &Path, pathspec: &str) -> Result<bool> {
275 let out = Command::new("git")
276 .args(["ls-files", "--", pathspec])
277 .current_dir(repo)
278 .output()
279 .with_context(|| format!("running `git ls-files -- {pathspec}`"))?;
280 Ok(out.status.success() && !out.stdout.is_empty())
281}
282
283fn git_diff_changed(repo: &Path, args: &[&str]) -> Result<bool> {
286 let out = Command::new("git")
287 .args(args)
288 .current_dir(repo)
289 .output()
290 .with_context(|| format!("running `git {}`", args.join(" ")))?;
291 match out.status.code() {
292 Some(0) => Ok(false),
293 Some(1) => Ok(true),
294 _ => bail!(
295 "`git {}` failed: {}",
296 args.join(" "),
297 String::from_utf8_lossy(&out.stderr).trim()
298 ),
299 }
300}
301
302fn git_capture(repo: &Path, args: &[&str]) -> Result<String> {
304 let out = Command::new("git")
305 .args(args)
306 .current_dir(repo)
307 .output()
308 .with_context(|| format!("running `git {}`", args.join(" ")))?;
309 if !out.status.success() {
310 bail!(
311 "`git {}` failed: {}",
312 args.join(" "),
313 String::from_utf8_lossy(&out.stderr).trim()
314 );
315 }
316 Ok(String::from_utf8(out.stdout)?.trim().to_string())
317}
318
319fn git_run(repo: &Path, args: &[&str]) -> Result<()> {
321 let status = Command::new("git")
322 .args(args)
323 .current_dir(repo)
324 .status()
325 .with_context(|| format!("running `git {}`", args.join(" ")))?;
326 if !status.success() {
327 bail!("`git {}` failed", args.join(" "));
328 }
329 Ok(())
330}
331
332#[cfg(test)]
333mod tests {
334 use super::{
335 branch_slug, git_capture, git_diff_changed, git_run, pathspec_matches_tracked, run_shell,
336 };
337 use std::path::Path;
338
339 const NOWHERE: &str = "/nonexistent-tc-e2e";
340
341 #[test]
342 fn run_shell_reports_a_spawn_failure_with_the_command() {
343 let err = run_shell(Path::new(NOWHERE), "true").unwrap_err();
344 assert!(format!("{err:#}").contains("running e2e command `true`"));
345 }
346
347 #[test]
348 fn pathspec_check_reports_a_spawn_failure() {
349 let err = pathspec_matches_tracked(Path::new(NOWHERE), "src").unwrap_err();
350 assert!(format!("{err:#}").contains("git ls-files -- src"));
351 }
352
353 #[test]
354 fn diff_check_reports_a_spawn_failure() {
355 let err = git_diff_changed(Path::new(NOWHERE), &["diff", "--quiet"]).unwrap_err();
356 assert!(format!("{err:#}").contains("running `git diff --quiet`"));
357 }
358
359 #[test]
360 fn capture_reports_a_spawn_failure() {
361 let err = git_capture(Path::new(NOWHERE), &["rev-parse", "HEAD"]).unwrap_err();
362 assert!(format!("{err:#}").contains("running `git rev-parse HEAD`"));
363 }
364
365 #[test]
366 fn run_reports_a_spawn_failure() {
367 let err = git_run(Path::new(NOWHERE), &["add", "-A"]).unwrap_err();
368 assert!(format!("{err:#}").contains("running `git add -A`"));
369 }
370
371 #[test]
372 fn slug_lowercases_and_maps_separators() {
373 assert_eq!(branch_slug("feature/one"), "feature-one");
374 assert_eq!(branch_slug("Feature/One"), "feature-one");
375 assert_eq!(
376 branch_slug("claude/e2e-attestation-conflicts-mrkc1b"),
377 "claude-e2e-attestation-conflicts-mrkc1b"
378 );
379 }
380
381 #[test]
382 fn slug_keeps_dots_and_underscores() {
383 assert_eq!(branch_slug("v1.2_rc"), "v1.2_rc");
384 }
385
386 #[test]
387 fn slug_collapses_runs_and_trims_edges() {
388 assert_eq!(branch_slug("wip//Émil's"), "wip-mil-s");
389 assert_eq!(branch_slug("--dashes--"), "dashes");
390 assert_eq!(branch_slug(".hidden."), "hidden");
391 }
392
393 #[test]
394 fn slug_truncates_to_80() {
395 let long = "x".repeat(300);
396 assert_eq!(branch_slug(&long).len(), 80);
397 }
398
399 #[test]
400 fn slug_never_returns_empty() {
401 assert_eq!(branch_slug(""), "branch");
402 assert_eq!(branch_slug("É"), "branch");
403 }
404}