mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-03 05:18:24 +03:00
718cca8055
Follow the precedent set in https://github.com/coreos/rpm-ostree/pull/2106 and rename the directory, to more clearly move away from the "uninstalled" test model. Prep for Rust-based tests.
43 lines
1.3 KiB
Bash
43 lines
1.3 KiB
Bash
#!/bin/bash
|
|
|
|
# Run test-basic.sh as root.
|
|
# https://github.com/ostreedev/ostree/pull/1199
|
|
|
|
set -xeuo pipefail
|
|
|
|
. ${KOLA_EXT_DATA}/libinsttest.sh
|
|
|
|
fatal "FIXME - need to also sync over the installed tests"
|
|
|
|
date
|
|
# These tests sort of bypass the installed-tests spec;
|
|
# fixing that would require installing g-d-t-r, though
|
|
# more ideally we architect things with a "control" container
|
|
# distinct from the host.
|
|
export G_TEST_SRCDIR=$(realpath $dn/../../..)
|
|
|
|
# Use /var/tmp to hopefully use XFS + O_TMPFILE etc.
|
|
prepare_tmpdir /var/tmp
|
|
trap _tmpdir_cleanup EXIT
|
|
/usr/libexec/installed-tests/libostree/test-basic.sh
|
|
/usr/libexec/installed-tests/libostree/test-basic-c
|
|
date
|
|
|
|
# Test error message when opening a non-world-readable object
|
|
# https://github.com/ostreedev/ostree/issues/1562
|
|
rm repo files -rf
|
|
chmod a+rx .
|
|
ostree --repo=repo init --mode=bare
|
|
mkdir files
|
|
touch files/unreadable
|
|
chmod 0 files/unreadable
|
|
ostree --repo=repo commit -b testbranch --tree=dir=files
|
|
# We should be able to read as root due to CAP_DAC_OVERRIDE
|
|
ostree --repo=repo cat testbranch /unreadable >/dev/null
|
|
if setpriv --reuid bin --regid bin --clear-groups ostree --repo=repo cat testbranch /unreadable 2>err.txt; then
|
|
fatal "Listed unreadable object as non-root"
|
|
fi
|
|
assert_file_has_content err.txt "Opening content object.*openat: Permission denied"
|
|
|
|
date
|