osi-tools/test/osi-mk.bats

61 lines
1.7 KiB
Plaintext
Raw Normal View History

# Copyright (C) 2024 Umorpha Systems
# SPDX-License-Identifier: AGPL-3.0-or-later
2024-01-05 02:13:25 +00:00
bats_require_minimum_version 1.7.0
bats_load_library bats-support
bats_load_library bats-assert
2024-01-19 05:36:20 +00:00
bats_load_library bats-file
teardown() {
if [ -n "${tmpdir:-}" ]; then
if [[ -d "$tmpdir/tmp-dis" ]]; then
sudo fusermount -u "$tmpdir/tmp-dis" || true
fi
2024-01-19 05:36:20 +00:00
temp_del "$tmpdir"
fi
}
2024-01-05 02:13:25 +00:00
@test "osi-mk needs arguments" {
LC_ALL=C run --separate-stderr osi-mk
assert_failure 2
assert_equal "$output" ''
assert [ ${#stderr_lines[@]} -gt 1 ]
assert_regex "${stderr_lines[-1]}" "^Try .*osi-mk --help' for more information\$"
}
2024-01-19 05:36:20 +00:00
@test "osi-mk builds base" {
tmpdir="$(temp_make)"
2024-01-26 07:20:35 +00:00
echo 'Building image...'
osi-mk --conf=format=raw_btrfs --conf=size=2G --package=base --package=linux-libre "$tmpdir/tst.img"
echo 'Checking that mkinitcpio ran correctly...'
mkdir "$tmpdir/mnt"
sudo osi-mount --user "$tmpdir/tst.img" "$tmpdir/mnt" -- test -f "$tmpdir/mnt/boot/initramfs-linux-libre.img"
2024-01-19 05:36:20 +00:00
}
@test "osi-mk is reproducible" {
tmpdir="$(temp_make)"
mkdir "$tmpdir/tmp-raw" "$tmpdir/tmp-dis"
sudo disorderfs --multi-user=yes --shuffle-dirents=yes "$tmpdir/tmp-raw" "$tmpdir/tmp-dis"
flags=(
--disorderfs
--conf=format=erofs --conf=bootloader=none
--conf=fsuuid="$(uuidgen)"
--conf=SOURCE_DATE_EPOCH=auto
--package=base
# TODO: We simply delete the known non-reproducible
# files, to verify that we don't get *less*
# reproducible; but we aren't actually reproducible
# yet.
--module="$PWD/mod-reproducible.sh"
)
TMPDIR="$tmpdir/tmp-dis" osi-mk "${flags[@]}" "$tmpdir/tst1.img"
TMPDIR="$tmpdir/tmp-dis" osi-mk "${flags[@]}" "$tmpdir/tst2.img"
cmp "$tmpdir/tst1.img" "$tmpdir/tst2.img"
}