Skip to content

Commit

Permalink
chore: update spread test to latest release changes (#147)
Browse files Browse the repository at this point in the history
* also change slice to base-passwd_data

Simpler slice with mutation scripts that is consistent across versions
of Chisel and we do not foresee changes to it in the near future.
  • Loading branch information
letFunny authored Aug 6, 2024
1 parent 504ad63 commit 73e7a7c
Showing 1 changed file with 9 additions and 7 deletions.
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

0 comments on commit 73e7a7c

Please sign in to comment.