Skip to content

Commit

Permalink
tests: Add a new gendir based integration tests
Browse files Browse the repository at this point in the history
We previously only made an image of the host /usr/bin and verified it.
This also adds a new image based on the gendir helper that generates
a random image, which uses more file types.

Signed-off-by: Alexander Larsson <[email protected]>
  • Loading branch information
alexlarsson committed Sep 20, 2023
1 parent 4f3e11c commit b64a87e
Showing 1 changed file with 33 additions and 24 deletions.
57 changes: 33 additions & 24 deletions tests/integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,30 +10,39 @@ rm ${cfsroot}/tmp -rf
mkdir -p ${cfsroot}/{objects,roots,tmp}

cd ${cfsroot}/tmp
testsrc=/usr/bin
mkcomposefs --print-digest --digest-store=${cfsroot}/objects ${testsrc} ${cfsroot}/roots/test.cfs | tee digest.txt
prev_digest=$(cat digest.txt)
new_digest=$(mkcomposefs --by-digest --print-digest-only ${testsrc})
test "$prev_digest" = "$new_digest"

if which fsck.erofs &>/dev/null; then
fsck.erofs ${cfsroot}/roots/test.cfs
fi

mkdir -p mnt
mount.composefs -o basedir=${cfsroot}/objects ${cfsroot}/roots/test.cfs mnt
$orig/tests/dumpdir --no-nlink ${testsrc} > src-dump.txt
$orig/tests/dumpdir --no-nlink mnt > mnt-dump.txt
failed=
if ! diff -u src-dump.txt mnt-dump.txt; then
failed=1
fi
if test -n "${failed}"; then

run_test() {
local testsrc=$1
local dumpdir_args="$2"
mkcomposefs --print-digest --digest-store=${cfsroot}/objects ${testsrc} ${cfsroot}/roots/test.cfs | tee digest.txt
prev_digest=$(cat digest.txt)
new_digest=$(mkcomposefs --by-digest --print-digest-only ${testsrc})
test "$prev_digest" = "$new_digest"

if which fsck.erofs &>/dev/null; then
fsck.erofs ${cfsroot}/roots/test.cfs
fi

mkdir -p mnt
mount.composefs -o basedir=${cfsroot}/objects ${cfsroot}/roots/test.cfs mnt
$orig/tests/dumpdir $dumpdir_args ${testsrc} > src-dump.txt
$orig/tests/dumpdir $dumpdir_args mnt > mnt-dump.txt
failed=
if ! diff -u src-dump.txt mnt-dump.txt; then
failed=1
fi
if test -n "${failed}"; then
umount mnt
exit 1
fi

new_digest=$(mkcomposefs --by-digest --print-digest-only mnt)
test "$prev_digest" = "$new_digest"

umount mnt
exit 1
fi
}

new_digest=$(mkcomposefs --by-digest --print-digest-only mnt)
test "$prev_digest" = "$new_digest"
run_test /usr/bin "--no-nlink"

umount mnt
$orig/tests/gendir --privileged ${cfsroot}/tmp/rootfs
run_test ${cfsroot}/tmp/rootfs "--noescaped"

0 comments on commit b64a87e

Please sign in to comment.