9daea46d66
Again, a lot going on here, but essentially, we adapt the compose tests to run either privileged or fully unprivileged via supermin, just like cosa. I actually got more than halfway through this initially using `cosa build` directly for testing. But in the end, we simply need more flexibility than that. We want to be able to manipulate exactly how rpm-ostree is called, and cosa is very opinionated about this (and may also change from under us in the future). (Another big difference for example is that cosa doesn't care about non-unified mode, whereas we *need* to have coverage for this until we fully kill it.) Really, the most important bit we want from there is the unprivileged-via-supermin bits. So we copy and adapt that here. One obvious improvement then is sharing this code more easily (e.g. a `cosa runasroot` or something?) However, we still use the FCOS manifest (frozen at a specific tag). It's a realistic example, and because of the lockfiles and pool, we get good reproducibility.
62 lines
2.1 KiB
Bash
Executable File
62 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
set -xeuo pipefail
|
|
|
|
dn=$(cd "$(dirname "$0")" && pwd)
|
|
# shellcheck source=libcomposetest.sh
|
|
. "${dn}/libcomposetest.sh"
|
|
|
|
releasever=31
|
|
|
|
# make sure we clear out postprocess scripts, which might be using os-release
|
|
treefile_set "postprocess" '[]'
|
|
|
|
# specifying the key but neither automatic_version_prefix nor
|
|
# --add-metadata-string should cause no mutation
|
|
treefile_set "mutate-os-release" '"'${releasever}'"'
|
|
treefile_del 'automatic-version-prefix'
|
|
runcompose
|
|
echo "ok compose (none)"
|
|
|
|
ostree --repo=${repo} cat ${treeref} \
|
|
/usr/lib/os-release > os-release.prop
|
|
|
|
assert_file_has_content os-release.prop VERSION_ID=${releasever}
|
|
assert_not_file_has_content os-release.prop OSTREE_VERSION=
|
|
assert_file_has_content os-release.prop 'VERSION="'${releasever}' (CoreOS'
|
|
echo "ok mutate-os-release-none"
|
|
|
|
# make sure --add-metadata-string has precedence and works with
|
|
# mutate-os-release
|
|
|
|
treefile_set "automatic-version-prefix" '"'${releasever}'.555"'
|
|
treefile_set "mutate-os-release" '"'${releasever}'"'
|
|
runcompose --add-metadata-string=version=${releasever}.444
|
|
echo "ok compose (cli)"
|
|
|
|
ostree --repo=${repo} cat ${treeref} \
|
|
/usr/lib/os-release > os-release.prop
|
|
|
|
# VERSION_ID *shouldn't* change
|
|
# (https://github.com/projectatomic/rpm-ostree/pull/433)
|
|
assert_file_has_content os-release.prop VERSION_ID=${releasever}
|
|
assert_file_has_content os-release.prop OSTREE_VERSION=\'${releasever}.444\'
|
|
assert_file_has_content os-release.prop 'VERSION="'${releasever}'\.444 (CoreOS'
|
|
echo "ok mutate-os-release-cli"
|
|
|
|
# make sure automatic_version_prefix works
|
|
|
|
treefile_set "automatic-version-prefix" '"'${releasever}'.555"'
|
|
treefile_set "mutate-os-release" '"'${releasever}'"'
|
|
runcompose --force-nocache
|
|
echo "ok compose (auto)"
|
|
|
|
ostree --repo=${repo} cat ${treeref} \
|
|
/usr/lib/os-release > os-release.prop
|
|
|
|
# VERSION_ID *shouldn't* change
|
|
# (https://github.com/projectatomic/rpm-ostree/pull/433)
|
|
assert_file_has_content os-release.prop VERSION_ID=${releasever}
|
|
assert_file_has_content os-release.prop OSTREE_VERSION=\'${releasever}.555\'
|
|
assert_file_has_content os-release.prop 'VERSION="'${releasever}'\.555 (CoreOS'
|
|
echo "ok mutate-os-release (auto)"
|