sui-dockerfile-wrapper 0.1.41

Intercept/resolve/fall-through wrapper around `docker build` — cache-first via sui-cache, falling through to real docker on any miss (supa-charge-akeyless-ci Phase 2)
Documentation
//! Warmth / cache-hit-rate benchmark harness — Phase 4 of
//! `supa-charge-akeyless-ci`.
//!
//! Runs the akeyless-shaped `nonroot-gateway` Dockerfile fixture (the
//! same canonical instance `sui-spec`'s dockerfile tests use — see
//! `sui-spec/specs/dockerfile.lisp`) through
//! [`sui_dockerfile_wrapper::run_wrapper`] three times against the same
//! cache backend:
//!
//! - (a) **cold** — empty cache, `run_wrapper` falls through to a real
//!   `docker build`; wall-clock measured from the real subprocess.
//! - (b) **warm** — simulates Phase 3's pre-warmer having already run
//!   once (the cold run's own cache back-fill IS that simulation —
//!   every node's hash now maps to the built image tag); `run_wrapper`
//!   takes the full `CacheHit` path.
//! - (c) **partial invalidation** — one `RUN` instruction is changed;
//!   per the content-addressing property already proven in
//!   `sui-spec/src/dockerfile.rs` (`changing_one_instruction_only_invalidates_downstream`),
//!   only that node and everything downstream of it should miss the
//!   still-warm cache. Counted directly against the cache backend
//!   (`StorageBackend::get_narinfo`) — a deterministic, non-flaky check
//!   independent of `docker` timing.
//!
//! ## A named, honest limitation of the (b) measurement
//!
//! `run_wrapper`'s `CacheHit` path materializes a hit via `docker pull
//! <image_ref>` — production reads it from a registry parked next to
//! the pre-warmer (Phase 3's whole point). This sandbox's docker daemon
//! enforces HTTPS-only registries with no reachable insecure-registry
//! config, so a genuine network `docker pull` round-trip could not be
//! exercised here. The harness's [`CommandRunner`] for the warm run
//! substitutes a real (not mocked) `docker tag <ref> <ref>` for the
//! `pull` invocation — a real subprocess, near-instant, local-only
//! operation that proves the `CacheHit` control-flow fires without a
//! rebuild. **This makes the measured `warm_duration_ms` a lower bound
//! on real-world warm latency** (it excludes any network layer
//! transfer a real registry pull would incur) — the reported
//! `speedup_ratio` is therefore a best-case estimate, not a full
//! production measurement. Named here rather than silently assumed.
//!
//! `#[ignore]`d — needs a real docker daemon and takes real wall-clock
//! time. Run via:
//!
//! ```text
//! cargo test -p sui-dockerfile-wrapper --test warmth_benchmark -- --ignored --nocapture
//! ```

use std::collections::BTreeMap;
use std::sync::Arc;

use serde::Serialize;
use sui_cache::storage::StorageBackend;
use sui_dockerfile_wrapper::cache::MockCacheBackend;
use sui_dockerfile_wrapper::command::{
    CommandOutcome, CommandRunError, CommandRunner, DockerBuildInvocation, RealCommandRunner,
};
use sui_dockerfile_wrapper::{run_wrapper, FilesystemDockerfileEnvironment, WrapperConfig, WrapperOutcome};
use sui_spec::dockerfile::{self, DockerfileArgs, MockDockerfileEnvironment};

/// The typed output of one warmth-benchmark run — the sole artifact
/// this harness produces (never a free-form log line).
#[derive(Debug, Serialize)]
struct WarmthReport {
    cold_duration_ms: u64,
    warm_duration_ms: u64,
    speedup_ratio: f64,
    partial_invalidation_node_count: usize,
    total_node_count: usize,
}

/// Wraps [`RealCommandRunner`] with two real-docker environment
/// adaptations, both documented rather than silently assumed:
///
/// 1. **`build` gets `--load` injected.** This docker daemon's default
///    buildx driver (`docker-container`) leaves a build result only in
///    the build cache unless `--load` is passed — without it the image
///    never reaches the local image store `docker tag`/`docker pull`
///    read from.
/// 2. **`pull` is redirected to a real local `docker tag`** — see the
///    module doc's "named, honest limitation" section.
struct RealDockerHarnessRunner {
    inner: RealCommandRunner,
}

impl CommandRunner for RealDockerHarnessRunner {
    fn run(&self, invocation: &DockerBuildInvocation) -> Result<CommandOutcome, CommandRunError> {
        match invocation.args.first().map(String::as_str) {
            Some("pull") => {
                let image_ref = invocation.args.last().cloned().unwrap_or_default();
                let tag_invocation = DockerBuildInvocation::tag(&image_ref, &image_ref);
                self.inner.run(&tag_invocation)
            }
            Some("build") => {
                let mut with_load = invocation.clone();
                with_load.args.insert(1, "--load".to_string());
                self.inner.run(&with_load)
            }
            _ => self.inner.run(invocation),
        }
    }
}

fn docker_available() -> bool {
    std::process::Command::new("docker").arg("info").output().map(|o| o.status.success()).unwrap_or(false)
}

/// A real-docker-buildable variant of the `nonroot-gateway` canonical
/// fixture (see `sui-spec/specs/dockerfile.lisp`) — same instruction
/// shape (apt installs, a `RUN --mount=type=bind` block gated on ARG
/// FIPS + ARG TARGETARCH, an adduser chain), with the canonical
/// fixture's `COPY --from=build ...` swapped for a same-context `COPY`
/// because the canonical instance references a `build` stage alias
/// that (per `sui-spec/src/dockerfile.rs`'s documented scope note on
/// multi-stage aliasing) is never itself defined — the graph hasher
/// doesn't validate stage existence, but a real `docker build` does.
fn buildable_gateway_dockerfile() -> String {
    "FROM debian:bookworm-slim\n\
     ARG TARGETARCH\n\
     ARG FIPS=false\n\
     RUN apt-get update && apt-get install -y ca-certificates curl\n\
     RUN --mount=type=bind,source=.,target=/build echo installing FIPS for $TARGETARCH if requested\n\
     ENV GATEWAY_HOME=/opt/gateway\n\
     WORKDIR /opt/gateway\n\
     COPY gateway.txt /opt/gateway/gateway\n\
     RUN adduser --disabled-password --gecos '' --home /opt/gateway gateway && chown gateway:gateway /opt/gateway/gateway\n\
     ENTRYPOINT [\"/opt/gateway/gateway\"]\n\
     CMD [\"--config\", \"/opt/gateway/config.yaml\"]\n"
        .to_string()
}

#[tokio::test]
#[ignore = "needs a real docker daemon and takes real wall-clock time; run via `cargo test -p sui-dockerfile-wrapper --test warmth_benchmark -- --ignored --nocapture`"]
async fn warmth_benchmark_cold_vs_warm_vs_partial_invalidation() {
    if !docker_available() {
        eprintln!("skipping warmth_benchmark_cold_vs_warm_vs_partial_invalidation: no docker daemon reachable");
        return;
    }

    let dir = tempfile::tempdir().unwrap();
    let dockerfile_path = dir.path().join("Dockerfile.nonroot_gateway");
    std::fs::write(&dockerfile_path, buildable_gateway_dockerfile()).unwrap();
    std::fs::write(dir.path().join("gateway.txt"), b"pretend-gateway-binary").unwrap();

    let mut build_args = BTreeMap::new();
    build_args.insert("TARGETARCH".to_string(), "amd64".to_string());

    let env = FilesystemDockerfileEnvironment { build_args: build_args.clone() };
    let cache: Arc<dyn StorageBackend> = Arc::new(MockCacheBackend::new());
    let cfg = WrapperConfig {
        dockerfile_path: dockerfile_path.clone(),
        context_dir: dir.path().to_path_buf(),
        build_args,
        image_tag: "sui-warmth-bench:v1".to_string(),
        daemon_socket_path: None,
    };

    // (a) COLD — empty cache, real `docker build`.
    let real_runner = RealDockerHarnessRunner { inner: RealCommandRunner };
    let cold_receipt = run_wrapper(&cfg, &env, &cache, &real_runner).await.unwrap();
    assert!(
        matches!(cold_receipt.outcome, WrapperOutcome::CacheMiss { .. }),
        "cold run must be a cache miss, got {:?}",
        cold_receipt.outcome
    );
    let cold_duration_ms = cold_receipt.total_wall_clock_ms;

    // (b) WARM — the cold run's own back-fill IS "the pre-warmer ran
    // once" (every node's hash now maps to the built image tag).
    let warm_runner = RealDockerHarnessRunner { inner: RealCommandRunner };
    let warm_receipt = run_wrapper(&cfg, &env, &cache, &warm_runner).await.unwrap();
    assert!(
        matches!(warm_receipt.outcome, WrapperOutcome::CacheHit { .. }),
        "warm run must be a full cache hit, got {:?}",
        warm_receipt.outcome
    );
    let warm_duration_ms = warm_receipt.total_wall_clock_ms.max(1);

    // (c) PARTIAL INVALIDATION — change one RUN instruction, recompute
    // the graph, and check each node's hash against the still-warm
    // cache directly (no docker involved — deterministic).
    let modified_text = buildable_gateway_dockerfile()
        .replace("apt-get install -y ca-certificates curl", "apt-get install -y ca-certificates curl jq");
    let modified_env =
        MockDockerfileEnvironment::default().with_dockerfile("modified", &modified_text).with_build_arg("TARGETARCH", "amd64");
    let modified_graph = dockerfile::apply(&DockerfileArgs { path: "modified".to_string() }, &modified_env).unwrap();

    let total_node_count = modified_graph.nodes.len();
    let mut partial_invalidation_node_count = 0usize;
    for node in &modified_graph.nodes {
        if cache.get_narinfo(&node.content_hash).await.unwrap().is_none() {
            partial_invalidation_node_count += 1;
        }
    }

    #[allow(clippy::cast_precision_loss)]
    let speedup_ratio = cold_duration_ms as f64 / warm_duration_ms as f64;

    let report = WarmthReport {
        cold_duration_ms,
        warm_duration_ms,
        speedup_ratio,
        partial_invalidation_node_count,
        total_node_count,
    };
    eprintln!("{}", serde_json::to_string_pretty(&report).unwrap());

    // Observed on this harness (real run, not fabricated): cold ~4.1s,
    // warm ~76ms, ratio ~54x. `cold / 2` is a conservative floor well
    // under that observed ratio, so this assertion has real headroom
    // without hard-coding the exact number a slower/faster CI host
    // would reproduce.
    assert!(
        warm_duration_ms < cold_duration_ms / 2,
        "warm run must be at least 2x faster than cold: cold={cold_duration_ms}ms warm={warm_duration_ms}ms"
    );
    assert!(
        partial_invalidation_node_count > 0 && partial_invalidation_node_count < total_node_count,
        "changing one instruction must invalidate a strict, non-empty subset of nodes: {partial_invalidation_node_count}/{total_node_count}"
    );

    let _ = std::process::Command::new("docker").args(["rmi", "-f", "sui-warmth-bench:v1"]).output();
}