anodizer 0.15.0

A Rust-native release automation tool inspired by GoReleaser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
//! Installer-tool availability gating for the determinism harness.
//!
//! Pure-CLI helper module: holds the static map from each installer
//! [`super::StageId`] to the list of tool binaries it depends on, plus
//! the [`filter_available_with_probe`] function that drops any
//! installer stage whose backing tool(s) are not reachable on `PATH`.
//!
//! The availability question is answered by
//! [`anodizer_core::tool_detect::on_path`] — a pure `PATH` lookup with no
//! exec (see [`host_tool_probe`] for why the version-spawn probe is the
//! wrong question here); this module only decides which installer stages
//! the child release subprocess can usefully run.
//!
//! Behavioral contract: this module only PARTITIONS requested stages
//! into available vs missing-tool. The decision of what to do with a
//! missing-tool stage lives at the harness call site
//! ([`super::Harness::run`]): an EXPLICITLY-requested installer stage
//! (one the operator typed into `--stages`, which is the only way an
//! installer stage enters the set — none are in the default set or
//! auto-included) whose tool is missing is a HARD ERROR, mirroring the
//! docker stage's contract. A silent warn-skip there would be false
//! coverage: a determinism shard claiming it byte-verified a format it
//! then produced nothing for — the exact failure mode that hid the
//! macOS/Windows installer formats from every release. The warn-skip
//! path remains only for any future auto-included installer stage that
//! the operator did NOT explicitly request.

use std::collections::BTreeMap;

use super::StageId;
use anodizer_core::tool_detect::on_path;

/// Result of an installer-tool availability sweep.
///
/// `available` carries the stages whose backing tool(s) are reachable
/// on `PATH`; `skipped` carries the (stage, missing-tool-name) pairs
/// the harness will surface to stderr so the operator can install the
/// missing tool.
#[derive(Debug, Default, Clone, PartialEq, Eq)]
pub(super) struct InstallerToolGate {
    pub available: Vec<StageId>,
    pub skipped: Vec<(StageId, String)>,
}

/// Tool binaries each tool-gated producer stage needs reachable on
/// `PATH` to produce its artifact. When the FIRST tool in the list is
/// missing, the stage is dropped from the effective stage set — every
/// stage here treats its primary tool as load-bearing.
///
/// Most entries are installer-family stages (members of
/// [`installer_stages`]); `appimage` (`linuxdeploy`), `flatpak`
/// (`flatpak-builder`) and `snapcraft` (`snapcraft`) are Linux package
/// formats that are gated by the SAME probe but are deliberately NOT in
/// the `installers` umbrella.
///
/// `nfpm` / `makeself` / `snapcraft` / `rpmbuild` / `makensis` are
/// single-binary stages, so the list has one entry each. `dmg` / `pkg` have
/// platform-conditional primaries, picked to match the binary the
/// stage's spawn surface actually invokes on the current host. (The
/// `msi` stage is NOT in this table: its required tool depends on the
/// resolved WiX *version* — v3 runs `candle`+`light`, v4 runs `wix`,
/// the Linux path runs `wixl` — so a host-static guess would drift
/// from the version the build runs. The gate resolves it from config
/// instead; see [`filter_available_with_probe`]'s `config_tools`.)
///
/// - `dmg`: `hdiutil` on macOS, `genisoimage` elsewhere (stage-dmg's
///   non-macOS preference is genisoimage > mkisofs).
/// - `pkg`: `pkgbuild` on macOS, `xar` elsewhere (the flat-XAR
///   toolchain's sentinel; pkgbuild is macOS-only).
///
/// The harness's missing-tool detection is best-effort: when a
/// secondary path is the only one installed on a host, the stage will
/// still attempt to run and either succeed or surface the failure at
/// `Command::new` time.
fn stage_primary_tool(stage: StageId) -> Option<&'static str> {
    match stage {
        StageId::Nfpm => Some("nfpm"),
        StageId::Makeself => Some("makeself"),
        StageId::Srpm => Some("rpmbuild"),
        StageId::Nsis => Some("makensis"),
        // AppImage / Flatpak are Linux package formats, NOT members of the
        // `installers` umbrella (see `installer_stages`), but they ARE gated
        // through this same probe-based mechanism: their primary toolchain
        // binary must be on PATH or the stage drops with a warning (or
        // hard-fails when explicitly typed, like every other producer here).
        StageId::Appimage => Some("linuxdeploy"),
        StageId::Flatpak => Some("flatpak-builder"),
        // snapcraft is a config-gated (`snapcrafts:`) host-default Linux
        // producer, single-binary like nfpm/makeself. Gating it here makes a
        // missing `snapcraft` warn-skip in dev and hard-fail with the gate's
        // remediation message under `--require-tools`, instead of surfacing as
        // a raw `Command::new` spawn failure deep in the child release run.
        StageId::Snapcraft => Some("snapcraft"),
        StageId::Dmg => Some(if cfg!(target_os = "macos") {
            "hdiutil"
        } else {
            // stage-dmg's non-macOS preference order is genisoimage > mkisofs
            // (see anodizer_stage_dmg::dmg_tool). The gate probes the
            // preferred binary; if only mkisofs is present the stage still
            // falls back to it at spawn time (gate is best-effort).
            "genisoimage"
        }),
        StageId::Pkg => Some(if cfg!(target_os = "macos") {
            "pkgbuild"
        } else {
            // stage-pkg's non-macOS path is the flat-XAR toolchain
            // (xar+mkbom+cpio); `xar` is its sentinel (resolve_pkg_builder /
            // the ToolAnyOf{pkgbuild,xar} env requirement). pkgbuild is
            // macOS-only, so probing it would wrongly skip the stage on the
            // Linux shard that actually builds the .pkg.
            "xar"
        }),
        _ => None,
    }
}

/// Every installer-family stage the harness recognises. Order matches
/// the surface defined in the module docstring (nfpm before makeself
/// before msi etc.) so the umbrella `--stages=installers` selection
/// produces a stable order in the report's `stages_under_test` array.
///
/// Re-exported under [`super::installer_stages`] so the CLI parser
/// can expand `--stages=installers` against the same source of truth
/// the harness consults — no risk of the two surfaces drifting.
pub fn installer_stages() -> Vec<StageId> {
    vec![
        StageId::Nfpm,
        StageId::Makeself,
        StageId::Srpm,
        StageId::Msi,
        StageId::Nsis,
        StageId::Dmg,
        StageId::Pkg,
    ]
}

/// True iff `stage` is a tool-gated producer — an installer-family stage
/// or one of the gated Linux package formats (`appimage` / `flatpak` /
/// `snapcraft`). `Msi` is covered explicitly because its tool requirement
/// is resolved from config (not present in the host-static
/// [`stage_primary_tool`] table). Note this is broader than
/// [`installer_stages`]: appimage / flatpak / snapcraft return `true` here
/// (they share the gate) while staying out of the `installers` umbrella.
#[cfg(test)]
pub(super) fn is_installer_stage(stage: StageId) -> bool {
    stage == StageId::Msi || stage_primary_tool(stage).is_some()
}

impl InstallerToolGate {
    /// The subset of `skipped` entries whose stage the operator EXPLICITLY
    /// requested (present in `explicit`). Installer stages enter the harness's
    /// stage set only by an explicit `--stages` token — either named directly
    /// (`--stages=msi`) or via the `installers` umbrella, which the parser
    /// expands to the concrete installer `StageId`s before they reach the gate
    /// (see `parse_stages`). Both forms land in `self.stages` as explicit IDs,
    /// so a hit here means a shard claimed it would byte-verify a format whose
    /// tool is missing — false coverage that must hard-fail. Mirrors the docker
    /// stage's hard-fail-when-explicit contract.
    pub(super) fn explicitly_skipped(&self, explicit: &[StageId]) -> Vec<(StageId, String)> {
        self.skipped
            .iter()
            .filter(|(stage, _)| explicit.contains(stage))
            .cloned()
            .collect()
    }
}

/// Build the hard-fail message for installer stages whose tool is missing.
/// Pure (no I/O) so the message contract is unit-testable without constructing
/// a full [`super::Harness`].
///
/// `require_tools` selects the phrasing for the two hard-fail paths, which have
/// different remedies:
/// - `false` — the stage was operator-typed (`--stages=msi` or the `installers`
///   umbrella). The remedy is to provision the tool OR drop the stage from
///   `--stages`.
/// - `true` — `--require-tools` (CI) forbids a host-OS-default producer from
///   silently skipping; the stage was selected by the host default, not typed,
///   so "remove it from --stages" is not the fix. The only remedy is to
///   provision the tool on this shard.
pub(super) fn missing_tool_error(skipped: &[(StageId, String)], require_tools: bool) -> String {
    let detail = skipped
        .iter()
        .map(|(stage, tool)| format!("`{}` (needs `{}`)", stage.as_str(), tool))
        .collect::<Vec<_>>()
        .join(", ");
    let common = "The determinism gate cannot byte-verify the output of these stages, and a \
                  silent skip would be false coverage (the exact failure mode that hid the \
                  macOS/Windows installers from every release).";
    if require_tools {
        format!(
            "stage(s) selected by the host-OS default have no backing tool on PATH: {detail}. \
             {common} `--require-tools` forbids skipping a host-OS-native producer, so provision \
             the missing tool on this shard (e.g. choco install wixtoolset nsis on Windows, \
             the action's auto-install for linuxdeploy / flatpak-builder, or upx)."
        )
    } else {
        format!(
            "stage(s) requested via --stages but their tool is not on PATH: {detail}. \
             {common} Provision the missing tool on this shard (e.g. choco install wixtoolset \
             nsis on Windows) or remove the stage from --stages."
        )
    }
}

/// The production tool probe: PATH-existence via
/// [`anodizer_core::tool_detect::on_path`]. The gate's question is strictly
/// "can the stage spawn this binary" — i.e. is it reachable on `PATH` — NOT
/// "does `<tool> --version` exit zero". Several installer tools answer the
/// latter with a non-zero exit despite being present and runnable: `hdiutil`
/// has no version flag at all, and `pkgbuild` / WiX `candle` / `light` print
/// usage and exit non-zero on `--version`. A `--version` probe therefore
/// reports a present tool as missing and hard-fails the shard (the macOS
/// dmg/pkg gate did exactly this). A binary that is on `PATH` but genuinely
/// broken still surfaces at `Command::new` time, so PATH-existence is both
/// correct for the gate and strictly safer than the version probe.
/// [`super::Harness::run`] injects this into
/// [`super::Harness::gate_installer_stages`]; tests inject a stub.
pub(super) fn host_tool_probe(tool: &str) -> bool {
    on_path(tool)
}

/// Probe each tool-gated stage in `requested` with `probe` and partition
/// into available vs skipped. Stages with no external-tool requirement pass
/// through to `available` unmodified. Behavioral tests pass a stub probe to
/// verify the "tool missing => stage lands in `skipped`" contract without
/// depending on what's installed on the runner.
///
/// `config_tools` carries the tool requirements that can only be known from
/// the loaded config, keyed by stage and resolved by the dispatcher:
/// - `msi` → the WiX binaries the resolved version spawns (v3 → `candle`
///   +`light`, v4 → `wix`, the Linux path → `wixl`).
/// - `upx` → each enabled `upx:` entry's binary (default `upx`).
///
/// A config-resolved stage is available only when EVERY listed tool is
/// reachable (WiX v3 spawns both `candle` and `light`, so either one missing
/// must skip the stage); the skipped entry reports the first missing tool. A
/// stage absent from `config_tools` falls back to the host-static
/// [`stage_primary_tool`] table; the two never overlap (`msi`/`upx` have no
/// host-static entry). A stage mapped to an empty list carries no
/// requirement and passes through.
pub(super) fn filter_available_with_probe<P>(
    requested: &[StageId],
    config_tools: &BTreeMap<StageId, Vec<String>>,
    probe: P,
) -> InstallerToolGate
where
    P: Fn(&str) -> bool,
{
    let mut gate = InstallerToolGate::default();
    for &stage in requested {
        // Config-resolved requirements (msi's WiX version, upx's binary) take
        // precedence over the host-static table: their backing binary is known
        // only from the loaded config, never from the host OS.
        if let Some(required) = config_tools.get(&stage) {
            match required.iter().find(|tool| !probe(tool)) {
                None => gate.available.push(stage),
                Some(missing) => gate.skipped.push((stage, missing.clone())),
            }
            continue;
        }
        match stage_primary_tool(stage) {
            None => gate.available.push(stage),
            Some(tool) => {
                if probe(tool) {
                    gate.available.push(stage);
                } else {
                    gate.skipped.push((stage, tool.to_string()));
                }
            }
        }
    }
    gate
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::collections::BTreeMap;

    /// A `config_tools` map carrying just the resolved `msi` WiX binaries —
    /// the common shape for the MSI-gate tests below.
    fn msi_map(tools: &[&str]) -> BTreeMap<StageId, Vec<String>> {
        BTreeMap::from([(StageId::Msi, tools.iter().map(|t| t.to_string()).collect())])
    }

    #[test]
    fn installer_stages_covers_every_installer_family() {
        let stages = installer_stages();
        assert_eq!(stages.len(), 7);
        for stage in stages {
            // `Msi`'s tool requirement is config-resolved (not in the
            // host-static `stage_primary_tool` table), so assert via the
            // installer-family predicate that recognises it.
            assert!(
                is_installer_stage(stage),
                "installer_stages() emitted non-installer stage {:?}",
                stage
            );
        }
    }

    #[test]
    fn non_installer_stages_pass_through() {
        let req = vec![StageId::Build, StageId::Archive, StageId::Checksum];
        let gate = filter_available_with_probe(&req, &BTreeMap::new(), host_tool_probe);
        assert_eq!(gate.available, req);
        assert!(gate.skipped.is_empty());
    }

    #[test]
    fn well_formed_partition_on_every_requested_stage() {
        // Structural invariant: every requested stage must land in
        // exactly one of `available` or `skipped`. Independent of host
        // tool set. A resolved v3 msi tool set is supplied so the msi
        // stage carries a concrete requirement.
        let req = installer_stages();
        let gate =
            filter_available_with_probe(&req, &msi_map(&["candle", "light"]), host_tool_probe);
        assert_eq!(
            gate.available.len() + gate.skipped.len(),
            req.len(),
            "every requested stage must land in exactly one bucket"
        );
        for (stage, tool) in &gate.skipped {
            assert!(
                is_installer_stage(*stage),
                "skipped entry references non-installer stage {:?}",
                stage
            );
            assert!(!tool.is_empty(), "missing-tool name must be non-empty");
        }
    }

    #[test]
    fn missing_tool_routes_every_installer_to_skipped() {
        // Behavioral contract: with an always-false probe (every tool
        // missing), every installer stage must land in `skipped` paired
        // with its expected primary-tool name. Non-installer stages
        // must still pass through to `available`.
        let req = vec![
            StageId::Build, // pass-through (no primary tool)
            StageId::Nfpm,
            StageId::Makeself,
            StageId::Msi,
            StageId::Dmg,
            StageId::Pkg,
            StageId::Archive, // pass-through
        ];
        // Config resolved msi to WiX v3 (candle+light); with every tool
        // missing the first one (`candle`) is reported.
        let gate = filter_available_with_probe(&req, &msi_map(&["candle", "light"]), |_| false);
        assert_eq!(
            gate.available,
            vec![StageId::Build, StageId::Archive],
            "non-installer stages must pass through even with missing probe"
        );
        let skipped_stages: Vec<StageId> = gate.skipped.iter().map(|(s, _)| *s).collect();
        assert_eq!(
            skipped_stages,
            vec![
                StageId::Nfpm,
                StageId::Makeself,
                StageId::Msi,
                StageId::Dmg,
                StageId::Pkg
            ],
            "installer stages must land in `skipped` when their tool is missing"
        );
        // dmg/pkg resolve their primary tool per host so the Linux
        // determinism shard (which actually builds these installers via the
        // genisoimage/xar fallbacks) probes the binary it installs, not the
        // macOS-native one. msi's tool comes from the resolved WiX version.
        let dmg_tool = if cfg!(target_os = "macos") {
            "hdiutil"
        } else {
            "genisoimage"
        };
        let pkg_tool = if cfg!(target_os = "macos") {
            "pkgbuild"
        } else {
            "xar"
        };
        assert_eq!(
            gate.skipped
                .iter()
                .map(|(_, t)| t.as_str())
                .collect::<Vec<_>>(),
            vec!["nfpm", "makeself", "candle", dmg_tool, pkg_tool],
            "each skipped entry must carry its missing-tool name"
        );
    }

    #[test]
    fn linux_installer_gate_probes_the_linux_fallback_tools() {
        // The determinism installer shard runs on Linux. The host-static gate
        // entries must probe the Linux-native fallback binaries
        // (genisoimage/xar), never the macOS-native ones (hdiutil/pkgbuild)
        // that the shard does not install — otherwise these stages silently
        // route to `skipped` and never get byte-verified. (msi is config-
        // resolved, not host-static — see the WiX-version gate tests.) This
        // pins the host-static mapping on the Linux build.
        #[cfg(target_os = "linux")]
        {
            assert_eq!(stage_primary_tool(StageId::Dmg), Some("genisoimage"));
            assert_eq!(stage_primary_tool(StageId::Pkg), Some("xar"));
            assert_eq!(stage_primary_tool(StageId::Srpm), Some("rpmbuild"));
            assert_eq!(stage_primary_tool(StageId::Nsis), Some("makensis"));
            // msi has no host-static entry; its tool follows the resolved
            // WiX version threaded in from config.
            assert_eq!(stage_primary_tool(StageId::Msi), None);
        }
    }

    #[test]
    fn present_tool_routes_every_installer_to_available() {
        // Behavioral contract: with an always-true probe (every tool
        // installed), every installer stage must land in `available`.
        let req = installer_stages();
        let gate = filter_available_with_probe(&req, &msi_map(&["candle", "light"]), |_| true);
        assert_eq!(gate.available, req);
        assert!(gate.skipped.is_empty());
    }

    #[test]
    fn appimage_flatpak_route_to_skipped_when_tool_absent() {
        // AppImage / Flatpak are gated by the same probe as the installer
        // family (linuxdeploy / flatpak-builder). With every tool missing
        // they must land in `skipped` paired with their primary tool, and a
        // non-gated stage (Build) must still pass through.
        let req = vec![StageId::Build, StageId::Appimage, StageId::Flatpak];
        let gate = filter_available_with_probe(&req, &BTreeMap::new(), |_| false);
        assert_eq!(gate.available, vec![StageId::Build]);
        assert_eq!(
            gate.skipped,
            vec![
                (StageId::Appimage, "linuxdeploy".to_string()),
                (StageId::Flatpak, "flatpak-builder".to_string()),
            ],
            "appimage/flatpak must skip with their toolchain binary named"
        );
    }

    #[test]
    fn appimage_flatpak_available_when_tool_present() {
        // With the probe reporting every tool present, appimage/flatpak stay
        // in `available` — the producer runs in the child release subprocess.
        let req = vec![StageId::Appimage, StageId::Flatpak];
        let gate = filter_available_with_probe(&req, &BTreeMap::new(), |_| true);
        assert_eq!(gate.available, req);
        assert!(gate.skipped.is_empty());
    }

    #[test]
    fn appimage_flatpak_are_not_in_installers_umbrella() {
        // They share the tool gate but are separate Linux package formats:
        // the `installers` umbrella selector must NOT expand to them.
        let umbrella = installer_stages();
        assert!(!umbrella.contains(&StageId::Appimage));
        assert!(!umbrella.contains(&StageId::Flatpak));
    }

    #[test]
    fn snapcraft_routes_to_skipped_when_tool_absent() {
        // snapcraft is a config-gated host-default Linux producer. With its
        // single `snapcraft` binary missing it must land in `skipped` (so a
        // host-default run warn-skips in dev and hard-fails cleanly under
        // `--require-tools`), while a non-gated stage (Build) passes through —
        // it must NOT reach the child release run only to die at spawn time.
        let req = vec![StageId::Build, StageId::Snapcraft];
        let gate = filter_available_with_probe(&req, &BTreeMap::new(), |_| false);
        assert_eq!(gate.available, vec![StageId::Build]);
        assert_eq!(
            gate.skipped,
            vec![(StageId::Snapcraft, "snapcraft".to_string())],
            "snapcraft must skip with its toolchain binary named"
        );
    }

    #[test]
    fn snapcraft_available_when_tool_present() {
        // With `snapcraft` on PATH the stage stays in `available` and runs in
        // the child release subprocess — unchanged from before it was gated.
        let req = vec![StageId::Snapcraft];
        let gate = filter_available_with_probe(&req, &BTreeMap::new(), |_| true);
        assert_eq!(gate.available, req);
        assert!(gate.skipped.is_empty());
    }

    #[test]
    fn snapcraft_is_not_in_installers_umbrella() {
        // Shares the tool gate but is a distinct Linux package format: the
        // `installers` umbrella selector must NOT expand to it.
        assert!(!installer_stages().contains(&StageId::Snapcraft));
    }

    #[test]
    fn msi_v3_available_when_candle_and_light_present() {
        // Release-blocker regression: config pins WiX v3 (candle+light) and
        // both are on PATH (the real Windows shard). The gate must NOT skip
        // msi. Before the fix it hardcoded the v4 `wix` CLI on Windows, found
        // it absent, and hard-failed the shard on every release.
        let gate = filter_available_with_probe(
            &[StageId::Build, StageId::Msi],
            &msi_map(&["candle", "light"]),
            |t| matches!(t, "candle" | "light"),
        );
        assert_eq!(
            gate.available,
            vec![StageId::Build, StageId::Msi],
            "v3 msi must stay available when candle+light are present"
        );
        assert!(gate.skipped.is_empty(), "no tool is missing");
    }

    #[test]
    fn msi_v3_skips_when_one_resolved_tool_absent() {
        // WiX v3 spawns BOTH candle and light — either one missing must skip
        // the stage, and the skipped entry reports the first missing tool.
        let gate =
            filter_available_with_probe(&[StageId::Msi], &msi_map(&["candle", "light"]), |t| {
                t == "candle"
            });
        assert!(gate.available.is_empty());
        assert_eq!(
            gate.skipped,
            vec![(StageId::Msi, "light".to_string())],
            "the first missing resolved tool (`light`) must be reported"
        );
    }

    #[test]
    fn msi_v4_skips_when_wix_absent() {
        // A v4 config resolves to the single `wix` CLI; absent → skip.
        let gate = filter_available_with_probe(&[StageId::Msi], &msi_map(&["wix"]), |_| false);
        assert_eq!(gate.skipped, vec![(StageId::Msi, "wix".to_string())]);
    }

    #[test]
    fn msi_available_when_no_active_config_yields_empty_tools() {
        // An empty `config_tools` map means no active MSI config: the stage
        // carries no requirement and must pass through to `available` even
        // under an always-false probe (there is nothing to be missing).
        let gate = filter_available_with_probe(&[StageId::Msi], &BTreeMap::new(), |_| false);
        assert_eq!(gate.available, vec![StageId::Msi]);
        assert!(gate.skipped.is_empty());
    }

    #[test]
    fn upx_is_config_gated_like_a_resolved_stage() {
        // upx is not an installer-family stage and has no host-static
        // `stage_primary_tool` entry — its binary is known only from config
        // (`UpxConfig.binary`, default `upx`). The generalized gate must still
        // route it to `skipped` when its resolved binary is absent and to
        // `available` when present, so a host-default upx run can be made to
        // hard-fail under `--require-tools` instead of warn-skipping.
        let config_tools = BTreeMap::from([(StageId::Upx, vec!["upx".to_string()])]);

        let absent =
            filter_available_with_probe(&[StageId::Build, StageId::Upx], &config_tools, |_| false);
        assert_eq!(absent.available, vec![StageId::Build]);
        assert_eq!(absent.skipped, vec![(StageId::Upx, "upx".to_string())]);

        let present =
            filter_available_with_probe(&[StageId::Build, StageId::Upx], &config_tools, |_| true);
        assert_eq!(present.available, vec![StageId::Build, StageId::Upx]);
        assert!(present.skipped.is_empty());
    }

    #[test]
    fn explicitly_skipped_filters_to_operator_requested_stages() {
        // Two installers skipped (tool missing), but only `msi` was in the
        // operator's explicit `--stages`. The hard-fail set must contain msi
        // and NOT dmg — a missing tool for a stage the operator did not type
        // is a warn-skip, not a release-blocking hard error.
        let gate =
            filter_available_with_probe(&[StageId::Msi, StageId::Dmg], &msi_map(&["wixl"]), |_| {
                false
            });
        let explicit = vec![StageId::Msi, StageId::Build];
        let hard = gate.explicitly_skipped(&explicit);
        let stages: Vec<StageId> = hard.iter().map(|(s, _)| *s).collect();
        assert_eq!(
            stages,
            vec![StageId::Msi],
            "only the explicitly-requested missing-tool stage hard-fails"
        );
    }

    #[test]
    fn explicitly_skipped_empty_when_nothing_requested() {
        let gate = filter_available_with_probe(
            &[StageId::Msi, StageId::Nsis],
            &msi_map(&["wixl"]),
            |_| false,
        );
        assert!(
            gate.explicitly_skipped(&[]).is_empty(),
            "no explicit request => no hard-fail even when tools are missing"
        );
    }

    #[test]
    fn missing_tool_error_names_every_stage_and_tool() {
        let skipped = [
            (StageId::Msi, "candle".to_string()),
            (StageId::Nsis, "makensis".to_string()),
        ];
        // Operator-typed (`--stages`) phrasing: remedy includes dropping the stage.
        let explicit = missing_tool_error(&skipped, false);
        assert!(
            explicit.contains("msi") && explicit.contains("candle"),
            "msg: {explicit}"
        );
        assert!(
            explicit.contains("nsis") && explicit.contains("makensis"),
            "msg: {explicit}"
        );
        assert!(
            explicit.contains("remove the stage from --stages"),
            "operator-typed message must tell the operator how to opt out: {explicit}"
        );

        // `--require-tools` (host-default) phrasing: stage was NOT typed, so the
        // remedy is provisioning the tool, never "remove it from --stages".
        let required = missing_tool_error(&skipped, true);
        assert!(
            required.contains("msi") && required.contains("candle"),
            "msg: {required}"
        );
        assert!(
            required.contains("host-OS default") && required.contains("--require-tools"),
            "require-tools message must name the host-default selection + flag: {required}"
        );
        assert!(
            !required.contains("remove the stage from --stages"),
            "require-tools remedy must NOT tell the operator to drop a stage they never typed: {required}"
        );
    }

    #[test]
    fn is_installer_stage_matches_primary_tool_table() {
        for stage in installer_stages() {
            assert!(is_installer_stage(stage));
        }
        for stage in [
            StageId::Build,
            StageId::Source,
            StageId::Archive,
            StageId::Sbom,
            StageId::Sign,
            StageId::Checksum,
            StageId::CargoPackage,
            StageId::Docker,
            StageId::Upx,
        ] {
            assert!(
                !is_installer_stage(stage),
                "is_installer_stage({:?}) should be false",
                stage
            );
        }
        // snapcraft is a gated Linux package format (single-binary `snapcraft`),
        // so it IS a tool-gated producer — like appimage/flatpak, true here yet
        // absent from the `installers` umbrella.
        assert!(is_installer_stage(StageId::Snapcraft));
    }

    #[cfg(unix)]
    #[test]
    #[serial_test::serial(path_env)]
    fn host_tool_probe_detects_present_tool_that_lacks_version_flag() {
        // Regression: the gate detects a tool by PATH-existence, NOT by a
        // `<tool> --version` exit code. `hdiutil` (macOS) has no version flag
        // and exits non-zero on `--version`; the old version-spawn probe
        // therefore reported it missing and hard-failed the macOS dmg/pkg
        // determinism shard though the binary was present. A stub that exits
        // non-zero on every call models such a tool — `host_tool_probe`
        // (backed by `tool_detect::on_path`, a pure PATH lookup with no
        // exec) must still find it.
        use anodizer_core::test_helpers::fake_tool::FakeToolDir;

        let tools = FakeToolDir::new();
        tools.tool("hdiutil").exit(1).install();
        let _path = tools.activate();

        assert!(
            host_tool_probe("hdiutil"),
            "a tool present on PATH must be detected even when it fails --version"
        );
        assert!(
            !host_tool_probe("anodizer-no-such-tool-zzz"),
            "a genuinely absent tool must still report missing"
        );
    }
}