Skip to main content

testing_conventions/
e2e.rs

1//! `e2e attest` / `e2e verify` — the e2e decision nudge. `attest` records the runner's chosen
2//! command as a branch-keyed receipt; `verify` confirms a branch changing scoped source has one.
3
4use 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
11/// Where the branch-keyed receipts live, relative to the package root: `<branch_slug>.json`.
12pub const RECEIPTS_DIR: &str = "e2e-attestations";
13
14/// The retired single-file attestation location: never a receipt, never scoped source.
15const LEGACY_ATTESTATION: &str = "e2e-attestation.json";
16
17/// A record of one e2e decision, written to `RECEIPTS_DIR/<branch_slug>.json`. Everything
18/// here is for humans — [`verify`] reads only the receipt's presence in the branch's diff.
19#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
20pub struct Attestation {
21    /// The command that was run (e.g. `pnpm run e2e`) — the judgment itself.
22    pub command: String,
23    /// When it ran, as a Unix timestamp (seconds).
24    pub ran_at: u64,
25    /// The command's exit code — recorded, never gated on.
26    pub exit_code: i32,
27    /// The commit the run was made against (HEAD at attest time).
28    pub commit: String,
29    /// The raw branch name the receipt is keyed by; the filename carries only its slug.
30    #[serde(default)]
31    pub branch: String,
32}
33
34/// The standardized receipt slug for a branch name — the receipt lives at
35/// `e2e-attestations/<slug>.json`. Lowercased; every character outside `[a-z0-9._-]` becomes
36/// `-`; runs collapse; truncated to 80; edges trimmed; an empty result falls back to `branch`.
37pub 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
59/// The checked-out branch of `repo`; a detached HEAD is an error naming the fix.
60pub(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
67/// Run `command` in `repo` and, when it passes, write and commit the branch's receipt at
68/// `repo`/[`RECEIPTS_DIR`]`/<branch_slug>.json`. A non-zero `command` leaves the receipts
69/// untouched; the returned [`Attestation::exit_code`] carries the failure either way.
70pub 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    // Only ever add: a paired delete reads as a rename to git and conflicts across parallel
96    // branches — `docs/explanation/e2e.md`.
97    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    // A plain commit inherits the repo's signing policy, so a repo requiring verified
107    // signatures gets a signed (mergeable) receipt.
108    git_run(repo, &["commit", "-q", "-m", message.as_str()])?;
109
110    Ok(attestation)
111}
112
113/// Run `command` through `sh -c` in `repo`, returning its exit status.
114fn 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/// The outcome of [`verify`] — whether a committed receipt answers the branch's e2e nudge.
124#[derive(Debug, Clone, PartialEq, Eq)]
125pub enum Verification {
126    /// The branch owes no decision, or a receipt in its diff answers the one it owes.
127    Fresh,
128    /// No receipt answers the nudge — the gate fails.
129    Missing,
130}
131
132/// Verify the e2e decision at `repo` — the CI side of the nudge. Equivalent to
133/// [`verify_scoped`] with `scope` set to `repo`.
134pub fn verify(repo: &Path) -> Result<Verification> {
135    verify_scoped(repo, repo)
136}
137
138/// Verify the e2e decision at `repo`, with `scope` (rather than all of `repo`) defining what
139/// counts as scoped source; `scope` must be `repo` or a descendant. Equivalent to
140/// [`verify_since`] with no `base`.
141pub fn verify_scoped(repo: &Path, scope: &Path) -> Result<Verification> {
142    verify_since(repo, scope, None)
143}
144
145/// Equivalent to [`verify_extra_scoped`] with no extra roots and no excludes.
146pub fn verify_since(repo: &Path, scope: &Path, base: Option<&str>) -> Result<Verification> {
147    verify_extra_scoped(repo, scope, base, &[], &[])
148}
149
150/// Verify the e2e decision at `repo`, joining **extra scopes** outside `scope` into what
151/// counts as scoped source and subtracting `excludes`. With `base`, both checks are content
152/// diffs of `<base>...HEAD`; without one, a committed receipt at `repo` is the whole check.
153pub fn verify_extra_scoped(
154    repo: &Path,
155    scope: &Path,
156    base: Option<&str>,
157    extra_scopes: &[PathBuf],
158    excludes: &[PathBuf],
159) -> Result<Verification> {
160    let Some(base) = base else {
161        return Ok(if has_receipts(repo) {
162            Verification::Fresh
163        } else {
164            Verification::Missing
165        });
166    };
167    validate_scopes(repo, scope, extra_scopes)?;
168
169    // Question 1 — did this branch change the scoped source?
170    let mut args: Vec<String> = vec![
171        "diff".into(),
172        "--quiet".into(),
173        format!("{base}...HEAD"),
174        "--".into(),
175        relative_pathspec(repo, scope),
176    ];
177    for extra in extra_scopes {
178        args.push(format!(":(top){}", extra.display()));
179    }
180    args.push(format!(":(exclude){RECEIPTS_DIR}"));
181    args.push(format!(":(exclude){LEGACY_ATTESTATION}"));
182    // A receipt anywhere in the tree — a monorepo sibling's, an extra scope's — is not scoped
183    // source either.
184    args.push(format!(":(top,exclude,glob)**/{RECEIPTS_DIR}/**"));
185    args.push(format!(":(top,exclude,glob)**/{LEGACY_ATTESTATION}"));
186    for exclude in excludes {
187        args.push(format!(":(top,exclude){}", exclude.display()));
188    }
189    let arg_refs: Vec<&str> = args.iter().map(String::as_str).collect();
190    if !git_diff_changed(repo, &arg_refs)? {
191        return Ok(Verification::Fresh);
192    }
193
194    // Question 2 — does the branch's diff add or update a receipt? The filter drops
195    // deletions, so sweeping a stale receipt by hand never counts as a decision.
196    let range = format!("{base}...HEAD");
197    let receipt_diff = [
198        "diff",
199        "--name-only",
200        "--diff-filter=ACMRT",
201        &range,
202        "--",
203        RECEIPTS_DIR,
204    ];
205    let out = git_capture(repo, &receipt_diff)?;
206    Ok(if out.is_empty() {
207        Verification::Missing
208    } else {
209        Verification::Fresh
210    })
211}
212
213/// `true` when a receipt (`*.json` under [`RECEIPTS_DIR`]) sits at `repo`.
214fn has_receipts(repo: &Path) -> bool {
215    let Ok(entries) = std::fs::read_dir(repo.join(RECEIPTS_DIR)) else {
216        return false;
217    };
218    entries
219        .flatten()
220        .any(|e| e.path().extension().is_some_and(|ext| ext == "json") && e.path().is_file())
221}
222
223/// `scope` as a pathspec relative to `repo` — git resolves pathspecs against the invocation's
224/// cwd, which is always `repo` here. `.` when `scope` is `repo` itself.
225fn relative_pathspec(repo: &Path, scope: &Path) -> String {
226    if scope == repo {
227        return ".".to_string();
228    }
229    match scope.strip_prefix(repo) {
230        Ok(rel) if !rel.as_os_str().is_empty() => rel.to_string_lossy().into_owned(),
231        _ => scope.to_string_lossy().into_owned(),
232    }
233}
234
235/// Confirm `scope` and every `extra_scope` name at least one path git tracks under `repo`.
236/// A pathspec matching nothing diffs to empty forever, so a typo'd scope would wave every
237/// branch through; erroring names the bad scope instead.
238fn validate_scopes(repo: &Path, scope: &Path, extra_scopes: &[PathBuf]) -> Result<()> {
239    let scope_spec = relative_pathspec(repo, scope);
240    if !pathspec_matches_tracked(repo, &scope_spec)? {
241        bail!(
242            "e2e verify: --scope `{}` matches no tracked path under `{}` — \
243             --scope must name `{}` or a directory beneath it that git tracks",
244            scope.display(),
245            repo.display(),
246            repo.display(),
247        );
248    }
249    for extra in extra_scopes {
250        let extra_spec = format!(":(top){}", extra.display());
251        if !pathspec_matches_tracked(repo, &extra_spec)? {
252            bail!(
253                "e2e verify: --extra-scope `{}` matches no tracked path — \
254                 --extra-scope must name a repo-root-relative directory that git tracks",
255                extra.display(),
256            );
257        }
258    }
259    Ok(())
260}
261
262/// `true` when git tracks at least one path matching `pathspec` (run with cwd `repo`). A
263/// pathspec git rejects as outside the repository counts as "matches nothing".
264fn pathspec_matches_tracked(repo: &Path, pathspec: &str) -> Result<bool> {
265    let out = Command::new("git")
266        .args(["ls-files", "--", pathspec])
267        .current_dir(repo)
268        .output()
269        .with_context(|| format!("running `git ls-files -- {pathspec}`"))?;
270    Ok(out.status.success() && !out.stdout.is_empty())
271}
272
273/// Run `git diff --quiet …` in `repo`: `false` for no differences, `true` for differences, an
274/// error for anything else — a bad base ref must fail loudly, never read as "no changes".
275fn git_diff_changed(repo: &Path, args: &[&str]) -> Result<bool> {
276    let out = Command::new("git")
277        .args(args)
278        .current_dir(repo)
279        .output()
280        .with_context(|| format!("running `git {}`", args.join(" ")))?;
281    match out.status.code() {
282        Some(0) => Ok(false),
283        Some(1) => Ok(true),
284        _ => bail!(
285            "`git {}` failed: {}",
286            args.join(" "),
287            String::from_utf8_lossy(&out.stderr).trim()
288        ),
289    }
290}
291
292/// Run `git` with `args` in `repo`, returning trimmed stdout; errors if git fails.
293fn git_capture(repo: &Path, args: &[&str]) -> Result<String> {
294    let out = Command::new("git")
295        .args(args)
296        .current_dir(repo)
297        .output()
298        .with_context(|| format!("running `git {}`", args.join(" ")))?;
299    if !out.status.success() {
300        bail!(
301            "`git {}` failed: {}",
302            args.join(" "),
303            String::from_utf8_lossy(&out.stderr).trim()
304        );
305    }
306    Ok(String::from_utf8(out.stdout)?.trim().to_string())
307}
308
309/// Run `git` with `args` in `repo` for its side effect; errors if git fails.
310fn git_run(repo: &Path, args: &[&str]) -> Result<()> {
311    let status = Command::new("git")
312        .args(args)
313        .current_dir(repo)
314        .status()
315        .with_context(|| format!("running `git {}`", args.join(" ")))?;
316    if !status.success() {
317        bail!("`git {}` failed", args.join(" "));
318    }
319    Ok(())
320}
321
322#[cfg(test)]
323mod tests {
324    use super::{
325        branch_slug, git_capture, git_diff_changed, git_run, pathspec_matches_tracked, run_shell,
326    };
327    use std::path::Path;
328
329    const NOWHERE: &str = "/nonexistent-tc-e2e";
330
331    #[test]
332    fn run_shell_reports_a_spawn_failure_with_the_command() {
333        let err = run_shell(Path::new(NOWHERE), "true").unwrap_err();
334        assert!(format!("{err:#}").contains("running e2e command `true`"));
335    }
336
337    #[test]
338    fn pathspec_check_reports_a_spawn_failure() {
339        let err = pathspec_matches_tracked(Path::new(NOWHERE), "src").unwrap_err();
340        assert!(format!("{err:#}").contains("git ls-files -- src"));
341    }
342
343    #[test]
344    fn diff_check_reports_a_spawn_failure() {
345        let err = git_diff_changed(Path::new(NOWHERE), &["diff", "--quiet"]).unwrap_err();
346        assert!(format!("{err:#}").contains("running `git diff --quiet`"));
347    }
348
349    #[test]
350    fn capture_reports_a_spawn_failure() {
351        let err = git_capture(Path::new(NOWHERE), &["rev-parse", "HEAD"]).unwrap_err();
352        assert!(format!("{err:#}").contains("running `git rev-parse HEAD`"));
353    }
354
355    #[test]
356    fn run_reports_a_spawn_failure() {
357        let err = git_run(Path::new(NOWHERE), &["add", "-A"]).unwrap_err();
358        assert!(format!("{err:#}").contains("running `git add -A`"));
359    }
360
361    #[test]
362    fn slug_lowercases_and_maps_separators() {
363        assert_eq!(branch_slug("feature/one"), "feature-one");
364        assert_eq!(branch_slug("Feature/One"), "feature-one");
365        assert_eq!(
366            branch_slug("claude/e2e-attestation-conflicts-mrkc1b"),
367            "claude-e2e-attestation-conflicts-mrkc1b"
368        );
369    }
370
371    #[test]
372    fn slug_keeps_dots_and_underscores() {
373        assert_eq!(branch_slug("v1.2_rc"), "v1.2_rc");
374    }
375
376    #[test]
377    fn slug_collapses_runs_and_trims_edges() {
378        assert_eq!(branch_slug("wip//Émil's"), "wip-mil-s");
379        assert_eq!(branch_slug("--dashes--"), "dashes");
380        assert_eq!(branch_slug(".hidden."), "hidden");
381    }
382
383    #[test]
384    fn slug_truncates_to_80() {
385        let long = "x".repeat(300);
386        assert_eq!(branch_slug(&long).len(), 80);
387    }
388
389    #[test]
390    fn slug_never_returns_empty() {
391        assert_eq!(branch_slug(""), "branch");
392        assert_eq!(branch_slug("É"), "branch");
393    }
394}