Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update spread test to latest release changes #147

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions tests/basic/task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@ execute: |
rootfs_folder=rootfs_${RELEASE}
mkdir -p $rootfs_folder
chisel cut --release ${OS}-${RELEASE} \
--root $rootfs_folder ca-certificates_data openssl_bins
--root $rootfs_folder base-passwd_data openssl_bins

# make sure $rootfs_folder is not empty
ls ${rootfs_folder}/*

# with the ca-certificates mutation script, we can assert that:
# - etc/ssl/certs/ca-certificates.crt is not empty
# - usr/share/ca-certificates/mozilla/ does not exist
test -s ${rootfs_folder}/etc/ssl/certs/ca-certificates.crt
test ! -d ${rootfs_folder}/usr/share/ca-certificates/mozilla
# with the base-passwd mutation script, we can assert that:
# - etc/{group,passwd} are not empty and not equal to FIXME
# - usr/share/base-passwd/{group.master,passwd.master} do not exist
test -s ${rootfs_folder}/etc/group && test "$(< ${rootfs_folder}/etc/group)" != "FIXME"
test -s ${rootfs_folder}/etc/passwd && test "$(< ${rootfs_folder}/etc/passwd)" != "FIXME"
test ! -e ${rootfs_folder}/usr/share/base-passwd/group.master
test ! -e ${rootfs_folder}/usr/share/base-passwd/passwd.master

# with the openssl pkg, both internal and external dependencies need to be met, for:
# - libc6_libs
Expand Down
Loading