anodizer 0.7.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
//! Integration coverage for `builder: prebuilt` — the import-pre-built-binary
//! builder that skips `cargo build` and stages an already-produced binary
//! into the release pipeline.
//!
//! Each test stages a fake binary outside `dist/` (per the warning
//! that the release pipeline removes `dist/` between runs), points the
//! config's `prebuilt.path` template at it, and asserts the artifact lands
//! with the expected metadata. Negative tests cover the four config-load
//! validations (missing path, missing targets, mutual-exclusion with
//! `cross_tool`, `cross:` crate-level strategy).

use std::fs;
use std::process::Command;
use tempfile::TempDir;

use anodizer_core::test_helpers::{create_config, create_test_project, init_git_repo};

/// Stage a fake binary at `output/<binary>_<target>` (the conventional
/// shape from the docs) so the `prebuilt.path` template
/// renders to it on every host. Returns the absolute path of the
/// staged file for assertion bookkeeping.
fn stage_fake_binary(tmp: &std::path::Path, binary: &str, target: &str) -> std::path::PathBuf {
    let outdir = tmp.join("output");
    fs::create_dir_all(&outdir).expect("create output dir");
    let path = outdir.join(format!("{binary}_{target}"));
    fs::write(&path, b"fake-binary-bytes").expect("write fake binary");
    path
}

#[test]
fn prebuilt_imports_binary_and_registers_artifact() {
    let tmp = TempDir::new().unwrap();
    create_test_project(tmp.path());
    init_git_repo(tmp.path());

    let target = "x86_64-unknown-linux-gnu";
    let staged = stage_fake_binary(tmp.path(), "test-project", target);

    create_config(
        tmp.path(),
        r#"
project_name: test-project
crates:
  - name: test-project
    path: "."
    tag_template: "v{{ .Version }}"
    builds:
      - id: prebuilt-foo
        binary: test-project
        builder: prebuilt
        prebuilt:
          path: "output/test-project_{{ .Target }}"
        targets:
          - x86_64-unknown-linux-gnu
"#,
    );

    let output = Command::new(env!("CARGO_BIN_EXE_anodizer"))
        .args(["build"])
        .current_dir(tmp.path())
        .output()
        .unwrap();

    let stderr = String::from_utf8_lossy(&output.stderr);
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert!(
        output.status.success(),
        "anodize build should succeed.\nstderr:\n{stderr}\nstdout:\n{stdout}"
    );

    let metadata_path = tmp.path().join("dist/metadata.json");
    let metadata: serde_json::Value =
        serde_json::from_str(&fs::read_to_string(&metadata_path).expect("read metadata.json"))
            .expect("parse metadata.json");

    let artifacts_path = tmp.path().join("dist/artifacts.json");
    let artifacts: serde_json::Value =
        serde_json::from_str(&fs::read_to_string(&artifacts_path).expect("read artifacts.json"))
            .expect("parse artifacts.json");

    let arr = artifacts.as_array().expect("artifacts.json is an array");
    let binary = arr
        .iter()
        .find(|a| a.get("kind").and_then(|v| v.as_str()) == Some("binary"))
        .unwrap_or_else(|| panic!("no binary artifact in {arr:?}"));

    assert_eq!(
        binary.get("target").and_then(|v| v.as_str()),
        Some(target),
        "binary artifact target mismatch"
    );
    let registered_path = binary
        .get("path")
        .and_then(|v| v.as_str())
        .expect("artifact path");
    assert!(
        registered_path.ends_with(&format!("output/test-project_{target}")),
        "expected staged path suffix, got {registered_path:?}"
    );

    let staged_bytes = fs::read(&staged).expect("read staged binary");
    assert_eq!(staged_bytes, b"fake-binary-bytes");

    // Project name carried through.
    assert_eq!(
        metadata.get("project_name").and_then(|v| v.as_str()),
        Some("test-project")
    );
}

#[test]
fn prebuilt_artifact_is_signable() {
    // Sign stage's `should_sign_artifact` accepts `ArtifactKind::Binary`
    // when the sign config matches `artifacts: binary`. A prebuilt
    // import registers exactly that kind, so the type-routing test below
    // guarantees prebuilt bytes flow into the existing sign matrix
    // without a separate code path. Asserting the artifact's `kind`
    // field is the contract bridge: anything that consumes `binary`
    // artifacts (sign, sbom, archive) treats the imported binary the
    // same as a `cargo build` output.
    let tmp = TempDir::new().unwrap();
    create_test_project(tmp.path());
    init_git_repo(tmp.path());

    stage_fake_binary(tmp.path(), "test-project", "x86_64-unknown-linux-gnu");

    create_config(
        tmp.path(),
        r#"
project_name: test-project
crates:
  - name: test-project
    path: "."
    tag_template: "v{{ .Version }}"
    builds:
      - binary: test-project
        builder: prebuilt
        prebuilt:
          path: "output/test-project_{{ .Target }}"
        targets:
          - x86_64-unknown-linux-gnu
"#,
    );

    let output = Command::new(env!("CARGO_BIN_EXE_anodizer"))
        .args(["build"])
        .current_dir(tmp.path())
        .output()
        .unwrap();
    assert!(output.status.success(), "build failed");

    let artifacts: serde_json::Value = serde_json::from_str(
        &fs::read_to_string(tmp.path().join("dist/artifacts.json")).expect("read artifacts"),
    )
    .expect("parse artifacts");
    let kinds: Vec<&str> = artifacts
        .as_array()
        .unwrap()
        .iter()
        .filter_map(|a| a.get("kind").and_then(|v| v.as_str()))
        .collect();
    assert!(
        kinds.contains(&"binary"),
        "imported prebuilt artifact must register as `binary` (the kind the sign stage matches on); got {kinds:?}"
    );
}

#[test]
fn prebuilt_missing_binary_fails_loudly() {
    let tmp = TempDir::new().unwrap();
    create_test_project(tmp.path());
    init_git_repo(tmp.path());
    // Intentionally DO NOT stage the binary.

    create_config(
        tmp.path(),
        r#"
project_name: test-project
crates:
  - name: test-project
    path: "."
    tag_template: "v{{ .Version }}"
    builds:
      - binary: test-project
        builder: prebuilt
        prebuilt:
          path: "output/test-project_{{ .Target }}"
        targets:
          - x86_64-unknown-linux-gnu
"#,
    );

    let output = Command::new(env!("CARGO_BIN_EXE_anodizer"))
        .args(["build"])
        .current_dir(tmp.path())
        .output()
        .unwrap();
    assert!(
        !output.status.success(),
        "build should fail when prebuilt binary is missing"
    );
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("prebuilt: failed to stat"),
        "stderr should cite stat failure for missing prebuilt binary:\n{stderr}"
    );
    assert!(
        stderr.contains("output/test-project_x86_64-unknown-linux-gnu"),
        "stderr should cite the rendered path:\n{stderr}"
    );
    assert!(
        stderr.contains("x86_64-unknown-linux-gnu"),
        "stderr should cite the originating target triple:\n{stderr}"
    );
}

#[test]
fn prebuilt_without_targets_fails_at_config_load() {
    let tmp = TempDir::new().unwrap();
    create_test_project(tmp.path());
    init_git_repo(tmp.path());

    create_config(
        tmp.path(),
        r#"
project_name: test-project
defaults:
  targets:
    - x86_64-unknown-linux-gnu
crates:
  - name: test-project
    path: "."
    tag_template: "v{{ .Version }}"
    builds:
      - binary: test-project
        builder: prebuilt
        prebuilt:
          path: "output/test-project_{{ .Target }}"
"#,
    );

    let output = Command::new(env!("CARGO_BIN_EXE_anodizer"))
        .args(["check", "config"])
        .current_dir(tmp.path())
        .output()
        .unwrap();
    assert!(
        !output.status.success(),
        "check config should reject prebuilt without explicit targets"
    );
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("`builder: prebuilt`") && stderr.contains("no explicit `targets:`"),
        "stderr should cite the targets-required rule:\n{stderr}"
    );
}

#[test]
fn prebuilt_with_cross_tool_fails_at_config_load() {
    let tmp = TempDir::new().unwrap();
    create_test_project(tmp.path());
    init_git_repo(tmp.path());

    create_config(
        tmp.path(),
        r#"
project_name: test-project
crates:
  - name: test-project
    path: "."
    tag_template: "v{{ .Version }}"
    builds:
      - binary: test-project
        builder: prebuilt
        cross_tool: "/usr/local/bin/my-cross"
        prebuilt:
          path: "output/test-project_{{ .Target }}"
        targets:
          - x86_64-unknown-linux-gnu
"#,
    );

    let output = Command::new(env!("CARGO_BIN_EXE_anodizer"))
        .args(["check", "config"])
        .current_dir(tmp.path())
        .output()
        .unwrap();
    assert!(
        !output.status.success(),
        "check config should reject prebuilt + cross_tool together"
    );
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("cross_tool") && stderr.contains("mutually exclusive"),
        "stderr should cite mutual-exclusion:\n{stderr}"
    );
}

#[test]
fn prebuilt_with_crate_level_cross_fails_at_config_load() {
    let tmp = TempDir::new().unwrap();
    create_test_project(tmp.path());
    init_git_repo(tmp.path());

    create_config(
        tmp.path(),
        r#"
project_name: test-project
crates:
  - name: test-project
    path: "."
    tag_template: "v{{ .Version }}"
    cross: zigbuild
    builds:
      - binary: test-project
        builder: prebuilt
        prebuilt:
          path: "output/test-project_{{ .Target }}"
        targets:
          - x86_64-unknown-linux-gnu
"#,
    );

    let output = Command::new(env!("CARGO_BIN_EXE_anodizer"))
        .args(["check", "config"])
        .current_dir(tmp.path())
        .output()
        .unwrap();
    assert!(
        !output.status.success(),
        "check config should reject crate-level cross: + prebuilt build"
    );
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        stderr.contains("crate-level `cross:` strategy") && stderr.contains("builder: prebuilt"),
        "stderr should cite the cross/prebuilt clash:\n{stderr}"
    );
}

#[test]
fn prebuilt_path_template_renders_os_arch_target_vars() {
    let tmp = TempDir::new().unwrap();
    create_test_project(tmp.path());
    init_git_repo(tmp.path());

    let outdir = tmp.path().join("output");
    fs::create_dir_all(&outdir).expect("create output dir");
    // Stage at a path that exercises `Os` / `Arch` template vars:
    // `linux_amd64`, not the raw triple. Tests that Tera substitution
    // wires both vars through the prebuilt planner.
    let staged = outdir.join("myapp_linux_amd64");
    fs::write(&staged, b"fake-cross-binary").expect("write");

    create_config(
        tmp.path(),
        r#"
project_name: myapp
crates:
  - name: myapp
    path: "."
    tag_template: "v{{ .Version }}"
    builds:
      - binary: myapp
        builder: prebuilt
        prebuilt:
          path: "output/myapp_{{ .Os }}_{{ .Arch }}"
        targets:
          - x86_64-unknown-linux-gnu
"#,
    );

    let output = Command::new(env!("CARGO_BIN_EXE_anodizer"))
        .args(["build"])
        .current_dir(tmp.path())
        .output()
        .unwrap();
    let stderr = String::from_utf8_lossy(&output.stderr);
    assert!(
        output.status.success(),
        "build should succeed when `prebuilt.path` template renders correctly:\n{stderr}"
    );
}

#[test]
fn prebuilt_dry_run_skips_stat_when_binary_absent() {
    let tmp = TempDir::new().unwrap();
    create_test_project(tmp.path());
    init_git_repo(tmp.path());
    // Intentionally DO NOT stage the binary; dry-run must still succeed
    // because it validates config + template rendering without touching disk.

    // Configure the DETECTED host target (not a hardcoded linux triple) so
    // `--single-target` — which resolves to the host — always finds a matching
    // configured target on any runner (linux-amd64, darwin-arm64, windows-amd64).
    // The binary is still absent on disk, so the dry-run-skips-stat behaviour
    // under test is exercised identically regardless of host.
    let host_target = anodizer_core::partial::detect_host_target()
        .expect("host target detection must succeed in test env");
    create_config(
        tmp.path(),
        &format!(
            r#"
project_name: test-project
crates:
  - name: test-project
    path: "."
    tag_template: "v{{{{ .Version }}}}"
    builds:
      - binary: test-project
        builder: prebuilt
        prebuilt:
          path: "output/test-project_{{{{ .Target }}}}"
        targets:
          - {host_target}
"#
        ),
    );

    let output = Command::new(env!("CARGO_BIN_EXE_anodizer"))
        .args(["release", "--snapshot", "--dry-run", "--single-target"])
        .current_dir(tmp.path())
        .output()
        .unwrap();
    let stderr = String::from_utf8_lossy(&output.stderr);
    let stdout = String::from_utf8_lossy(&output.stdout);
    assert!(
        output.status.success(),
        "dry-run release with prebuilt must NOT require the binary on disk.\nstderr:\n{stderr}\nstdout:\n{stdout}"
    );
    let combined = format!("{stderr}{stdout}");
    assert!(
        combined.contains("(dry-run) would import prebuilt"),
        "dry-run status line should announce the would-import action:\n{combined}"
    );
}