summaryrefslogtreecommitdiff
path: root/tests/build.rs
blob: c31f0c295274e8b9b461bb4fb4d8d305bd8ae25b (plain)
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
use std::cell::RefCell;
use std::fs;

use alt_controller_image::build::BuildExecutor;
use alt_controller_image::initramfs::{InitramfsBuilder, InitramfsRequest, InitramfsResult};
use alt_controller_image::manifest::ArtifactManifest;
use alt_controller_image::package_installer::{PackageInstaller, PackageRequest};
use alt_controller_image::{BuildPlan, ImageSpec};
use tempfile::tempdir;

#[derive(Default)]
struct FixtureInstaller {
    requests: RefCell<Vec<PackageRequest>>,
}

impl PackageInstaller for FixtureInstaller {
    fn install(&self, request: &PackageRequest) -> anyhow::Result<()> {
        self.requests.borrow_mut().push(request.clone());
        let boot = request.workdir().join("chroot/boot");
        fs::create_dir_all(&boot)?;
        fs::write(boot.join("vmlinuz-6.12.0-rt1"), "kernel")?;
        Ok(())
    }
}

struct FailingInstaller;

impl PackageInstaller for FailingInstaller {
    fn install(&self, _request: &PackageRequest) -> anyhow::Result<()> {
        anyhow::bail!("simulated package installation failure")
    }
}

struct RootfslessInstaller;

impl PackageInstaller for RootfslessInstaller {
    fn install(&self, _request: &PackageRequest) -> anyhow::Result<()> {
        Ok(())
    }
}

struct RootfsFinalizationFailingInstaller;

impl PackageInstaller for RootfsFinalizationFailingInstaller {
    fn install(&self, request: &PackageRequest) -> anyhow::Result<()> {
        let rootfs = request.workdir().join("chroot");
        fs::create_dir_all(rootfs.join("boot"))?;
        fs::write(rootfs.join("boot/vmlinuz-6.12.0-rt1"), "kernel")?;
        fs::write(rootfs.join("etc"), "not a directory")?;
        Ok(())
    }
}

struct FailingInitramfsBuilder;

impl InitramfsBuilder for FailingInitramfsBuilder {
    fn build(&mut self, _request: &InitramfsRequest) -> anyhow::Result<InitramfsResult> {
        anyhow::bail!("simulated initramfs build failure")
    }
}

struct ArchiveFailingInstaller;

impl PackageInstaller for ArchiveFailingInstaller {
    fn install(&self, request: &PackageRequest) -> anyhow::Result<()> {
        let rootfs = request.workdir().join("chroot");
        fs::create_dir_all(rootfs.join("boot"))?;
        fs::write(rootfs.join("boot/vmlinuz-6.12.0-rt1"), "kernel")?;
        std::os::unix::net::UnixListener::bind(rootfs.join("unsupported.socket"))
            .expect("create unsupported socket fixture")
            .set_nonblocking(true)?;
        Ok(())
    }
}

struct MutatingInitrdBuilder;

impl InitramfsBuilder for MutatingInitrdBuilder {
    fn build(&mut self, request: &InitramfsRequest) -> anyhow::Result<InitramfsResult> {
        let initrd = request
            .rootfs()
            .join(format!("boot/initrd-{}.img", request.kernel().as_str()));
        fs::write(&initrd, "primary initrd")?;
        let result = InitramfsResult::from_rootfs(request.rootfs(), request.kernel())?;
        fs::write(initrd, "mutated initrd")?;
        Ok(result)
    }
}

struct ManifestFailingInitramfsBuilder {
    manifest: std::path::PathBuf,
}

impl InitramfsBuilder for ManifestFailingInitramfsBuilder {
    fn build(&mut self, request: &InitramfsRequest) -> anyhow::Result<InitramfsResult> {
        fs::write(
            request
                .rootfs()
                .join(format!("boot/initrd-{}.img", request.kernel().as_str())),
            "initrd",
        )?;
        let parent = self.manifest.parent().expect("manifest parent");
        fs::create_dir_all(parent)?;
        fs::create_dir(&self.manifest)?;
        InitramfsResult::from_rootfs(request.rootfs(), request.kernel())
    }
}

#[derive(Default)]
struct FixtureInitramfsBuilder;

impl InitramfsBuilder for FixtureInitramfsBuilder {
    fn build(&mut self, request: &InitramfsRequest) -> anyhow::Result<InitramfsResult> {
        fs::write(
            request
                .rootfs()
                .join(format!("boot/initrd-{}.img", request.kernel().as_str())),
            "initrd",
        )?;
        InitramfsResult::from_rootfs(request.rootfs(), request.kernel())
    }
}

#[test]
fn executes_the_native_build_stages_and_writes_a_companion_manifest() {
    let fixture = tempdir().expect("fixture directory");
    let spec = ImageSpec::load(std::path::Path::new("profiles/alt-controller.toml"))
        .expect("load controller spec");
    let plan = BuildPlan::compile(spec).expect("compile build plan");
    let installer = FixtureInstaller::default();
    let mut executor = BuildExecutor::new(&installer, FixtureInitramfsBuilder);
    let workspace = fixture.path().join("work");
    let artifact = fixture.path().join("out/controller.tar");

    let result = executor
        .execute(&plan, &workspace, "profiles/apt.conf", &artifact)
        .expect("execute native build");

    assert_eq!(installer.requests.borrow().len(), 1);
    assert_eq!(result.artifact(), artifact);
    assert_eq!(
        fs::read_to_string(workspace.join("chroot/etc/initrd.mk.oem")).expect("read OEM recipe"),
        "FEATURES += add-modules cleanup compress qemu rdshell rootfs usb\nMODULES += ahci.ko ahci_platform.ko ext4 sd_mod.ko virtio_blk.ko virtio_net.ko virtio_pci.ko\n"
    );
    assert!(artifact.is_file());
    let manifest = ArtifactManifest::load(result.manifest()).expect("load companion manifest");
    let initrd = result.initrd().expect("initrd result");
    assert_eq!(
        manifest.initrd,
        Some(alt_controller_image::manifest::InitrdRecord::new(
            initrd.initrd_path().display().to_string(),
            initrd.sha256(),
        ))
    );
}

#[test]
fn refuses_to_reuse_an_existing_workspace() {
    let fixture = tempdir().expect("fixture directory");
    let spec = ImageSpec::load(std::path::Path::new("profiles/alt-controller.toml"))
        .expect("load controller spec");
    let plan = BuildPlan::compile(spec).expect("compile build plan");
    let installer = FixtureInstaller::default();
    let mut executor = BuildExecutor::new(&installer, FixtureInitramfsBuilder);
    let workspace = fixture.path().join("existing-work");
    fs::create_dir(&workspace).expect("create existing workspace");

    let error = executor
        .execute(
            &plan,
            &workspace,
            "profiles/apt.conf",
            fixture.path().join("image.tar"),
        )
        .expect_err("existing workspace must be rejected");

    assert!(error.to_string().contains("workspace already exists"));
    assert!(installer.requests.borrow().is_empty());
}

#[test]
fn rejects_an_existing_artifact_before_creating_the_workspace_or_installing() {
    let fixture = tempdir().expect("fixture directory");
    let spec = ImageSpec::load(std::path::Path::new("profiles/alt-controller.toml"))
        .expect("load controller spec");
    let plan = BuildPlan::compile(spec).expect("compile build plan");
    let installer = FixtureInstaller::default();
    let mut executor = BuildExecutor::new(&installer, FixtureInitramfsBuilder);
    let workspace = fixture.path().join("work");
    let artifact = fixture.path().join("existing.tar");
    fs::write(&artifact, "do not replace").expect("write pre-existing artifact");

    let error = executor
        .execute(&plan, &workspace, "profiles/apt.conf", &artifact)
        .expect_err("pre-existing artifact must be rejected");

    assert!(error.to_string().contains("output artifact already exists"));
    assert_eq!(
        fs::read_to_string(&artifact).expect("read artifact"),
        "do not replace"
    );
    assert!(!workspace.exists());
    assert!(installer.requests.borrow().is_empty());
}

#[test]
fn rejects_an_existing_companion_manifest_before_creating_the_workspace_or_installing() {
    let fixture = tempdir().expect("fixture directory");
    let spec = ImageSpec::load(std::path::Path::new("profiles/alt-controller.toml"))
        .expect("load controller spec");
    let plan = BuildPlan::compile(spec).expect("compile build plan");
    let installer = FixtureInstaller::default();
    let mut executor = BuildExecutor::new(&installer, FixtureInitramfsBuilder);
    let workspace = fixture.path().join("work");
    let artifact = fixture.path().join("controller.tar");
    let companion = ArtifactManifest::path_beside(&artifact).expect("companion manifest path");
    fs::write(&companion, "do not replace").expect("write pre-existing companion manifest");

    let error = executor
        .execute(&plan, &workspace, "profiles/apt.conf", &artifact)
        .expect_err("pre-existing companion manifest must be rejected");

    assert!(error.to_string().contains("output manifest already exists"));
    assert_eq!(
        fs::read_to_string(&companion).expect("read companion manifest"),
        "do not replace"
    );
    assert!(!workspace.exists());
    assert!(installer.requests.borrow().is_empty());
}

#[test]
fn rejects_a_missing_apt_configuration_before_creating_the_workspace() {
    let fixture = tempdir().expect("fixture directory");
    let spec = ImageSpec::load(std::path::Path::new("profiles/alt-controller.toml"))
        .expect("load controller spec");
    let plan = BuildPlan::compile(spec).expect("compile build plan");
    let installer = FixtureInstaller::default();
    let mut executor = BuildExecutor::new(&installer, FixtureInitramfsBuilder);
    let workspace = fixture.path().join("work");
    let missing_apt_config = fixture.path().join("missing-apt.conf");

    let error = executor
        .execute(
            &plan,
            &workspace,
            &missing_apt_config,
            fixture.path().join("image.tar"),
        )
        .expect_err("missing APT configuration must be rejected");

    assert!(
        error
            .to_string()
            .contains("APT configuration does not exist")
    );
    assert!(!workspace.exists());
    assert!(installer.requests.borrow().is_empty());
}

#[test]
fn removes_the_new_workspace_when_package_installation_fails() {
    let fixture = tempdir().expect("fixture directory");
    let spec = ImageSpec::load(std::path::Path::new("profiles/alt-controller.toml"))
        .expect("load controller spec");
    let plan = BuildPlan::compile(spec).expect("compile build plan");
    let mut executor = BuildExecutor::new(FailingInstaller, FixtureInitramfsBuilder);
    let workspace = fixture.path().join("work");
    let artifact = fixture.path().join("image.tar");

    let error = executor
        .execute(&plan, &workspace, "profiles/apt.conf", &artifact)
        .expect_err("failed installation must fail the build");

    assert!(
        error
            .to_string()
            .contains("simulated package installation failure")
    );
    assert!(
        !workspace.exists(),
        "failed build must not leave a workspace"
    );
    assert!(!artifact.exists());
}

#[test]
fn removes_the_new_workspace_when_the_installer_does_not_create_a_rootfs() {
    let fixture = tempdir().expect("fixture directory");
    let spec = ImageSpec::load(std::path::Path::new("profiles/alt-controller.toml"))
        .expect("load controller spec");
    let plan = BuildPlan::compile(spec).expect("compile build plan");
    let mut executor = BuildExecutor::new(RootfslessInstaller, FixtureInitramfsBuilder);
    let workspace = fixture.path().join("work");
    let artifact = fixture.path().join("image.tar");

    let error = executor
        .execute(&plan, &workspace, "profiles/apt.conf", &artifact)
        .expect_err("missing rootfs must fail the build");

    assert!(
        error
            .to_string()
            .contains("package installer did not create rootfs")
    );
    assert!(
        !workspace.exists(),
        "failed build must not leave a workspace"
    );
    assert!(!artifact.exists());
}

#[test]
fn removes_the_new_workspace_when_rootfs_finalization_fails() {
    let fixture = tempdir().expect("fixture directory");
    let spec = ImageSpec::load(std::path::Path::new("profiles/alt-controller.toml"))
        .expect("load controller spec");
    let plan = BuildPlan::compile(spec).expect("compile build plan");
    let mut executor =
        BuildExecutor::new(RootfsFinalizationFailingInstaller, FixtureInitramfsBuilder);
    let workspace = fixture.path().join("work");
    let artifact = fixture.path().join("image.tar");

    let _error = executor
        .execute(&plan, &workspace, "profiles/apt.conf", &artifact)
        .expect_err("failed rootfs finalization must fail the build");

    assert!(
        !workspace.exists(),
        "failed build must not leave a workspace"
    );
    assert!(!artifact.exists());
}

#[test]
fn removes_the_new_workspace_when_initramfs_build_fails() {
    let fixture = tempdir().expect("fixture directory");
    let spec = ImageSpec::load(std::path::Path::new("profiles/alt-controller.toml"))
        .expect("load controller spec");
    let plan = BuildPlan::compile(spec).expect("compile build plan");
    let mut executor = BuildExecutor::new(FixtureInstaller::default(), FailingInitramfsBuilder);
    let workspace = fixture.path().join("work");
    let artifact = fixture.path().join("image.tar");

    let error = executor
        .execute(&plan, &workspace, "profiles/apt.conf", &artifact)
        .expect_err("failed initramfs build must fail the build");

    assert!(
        error
            .to_string()
            .contains("simulated initramfs build failure")
    );
    assert!(
        !workspace.exists(),
        "failed build must not leave a workspace"
    );
    assert!(!artifact.exists());
}

#[test]
fn removes_the_new_workspace_and_partial_artifact_when_packaging_fails() {
    let fixture = tempdir().expect("fixture directory");
    let spec = ImageSpec::load(std::path::Path::new("profiles/alt-controller.toml"))
        .expect("load controller spec");
    let plan = BuildPlan::compile(spec).expect("compile build plan");
    let mut executor = BuildExecutor::new(ArchiveFailingInstaller, FixtureInitramfsBuilder);
    let workspace = fixture.path().join("work");
    let artifact = fixture.path().join("out/image.tar");

    let error = executor
        .execute(&plan, &workspace, "profiles/apt.conf", &artifact)
        .expect_err("unsupported rootfs entry must fail packaging");

    assert!(error.to_string().contains("unsupported rootfs entry type"));
    assert!(
        !workspace.exists(),
        "failed build must not leave a workspace"
    );
    assert!(
        !artifact.exists(),
        "failed packaging must not leave an artifact"
    );
    assert!(
        !ArtifactManifest::path_beside(&artifact)
            .expect("manifest path")
            .exists(),
        "failed packaging must not leave a companion manifest"
    );
}

#[test]
fn removes_the_new_workspace_and_artifact_when_manifest_collection_fails() {
    let fixture = tempdir().expect("fixture directory");
    let spec = ImageSpec::load(std::path::Path::new("profiles/alt-controller.toml"))
        .expect("load controller spec");
    let plan = BuildPlan::compile(spec).expect("compile build plan");
    let mut executor = BuildExecutor::new(FixtureInstaller::default(), MutatingInitrdBuilder);
    let workspace = fixture.path().join("work");
    let artifact = fixture.path().join("out/image.tar");

    let error = executor
        .execute(&plan, &workspace, "profiles/apt.conf", &artifact)
        .expect_err("mutated initrd must fail before packaging");

    assert!(
        error
            .to_string()
            .contains("generated initrd digest changed")
    );
    assert!(
        !workspace.exists(),
        "failed build must not leave a workspace"
    );
    assert!(
        !artifact.exists(),
        "failed manifest collection must not leave an artifact"
    );
    assert!(
        !ArtifactManifest::path_beside(&artifact)
            .expect("manifest path")
            .exists(),
        "failed manifest collection must not leave a companion manifest"
    );
}

#[test]
fn removes_the_partial_artifact_when_manifest_writing_fails() {
    let fixture = tempdir().expect("fixture directory");
    let spec = ImageSpec::load(std::path::Path::new("profiles/alt-controller.toml"))
        .expect("load controller spec");
    let plan = BuildPlan::compile(spec).expect("compile build plan");
    let workspace = fixture.path().join("work");
    let artifact = fixture.path().join("out/image.tar");
    let manifest = ArtifactManifest::path_beside(&artifact).expect("manifest path");
    let mut executor = BuildExecutor::new(
        FixtureInstaller::default(),
        ManifestFailingInitramfsBuilder {
            manifest: manifest.clone(),
        },
    );

    let error = executor
        .execute(&plan, &workspace, "profiles/apt.conf", &artifact)
        .expect_err("manifest write failure must fail the build");

    assert!(error.to_string().contains("create artifact manifest"));
    assert!(
        !workspace.exists(),
        "failed build must not leave a workspace"
    );
    assert!(
        !artifact.exists(),
        "failed build must not leave an artifact"
    );
    assert!(
        !manifest.exists(),
        "failed build must remove a manifest path created during execution"
    );
}