1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
#!/usr/bin/env bash
# For the license, see the LICENSE file in the root directory.
ROOT=${abs_top_builddir:-$(dirname "$0")/..}
TESTDIR=${abs_top_testdir:-$(dirname "$0")}
source "${TESTDIR}/common"
skip_test_no_tpm12 "${SWTPM_EXE}"
STATEBASENAME="tpm-00.permall"
trap "cleanup" SIGTERM EXIT
function cleanup()
{
rm -rf "${workdir}"
}
# Test 1: --not-overwrite with dummy state file
workdir="$(mktemp -d)" || exit 1
statefile="${workdir}/${STATEBASENAME}"
dummydata="DUMMY"
echo "$dummydata" > "${statefile}"
if ! $SWTPM_SETUP \
--not-overwrite \
--tpm-state "${workdir}" \
--config "${SWTPM_SETUP_CONF}" \
--logfile "${workdir}/logfile" \
--tpm "${SWTPM_EXE} socket ${SWTPM_TEST_SECCOMP_OPT}";
then
echo "Test 1 failed: Error: Could not run $SWTPM_SETUP."
echo "Setup Logfile:"
cat "${workdir}/logfile"
exit 1
fi
if ! grep -q "${dummydata}" "${statefile}"; then
echo "Test 1 failed: Error: The state file was unexpectedly overwritten."
echo "Setup Logfile:"
cat "${workdir}/logfile"
exit 1
fi
echo "Test 1 passed"
cleanup
# Test 2: --overwrite with dummy state file
workdir="$(mktemp -d)" || exit 1
statefile="${workdir}/${STATEBASENAME}"
dummydata="DUMMY"
echo "$dummydata" > "${statefile}"
if ! $SWTPM_SETUP \
--overwrite \
--tpm-state "${workdir}" \
--config "${SWTPM_SETUP_CONF}" \
--logfile "${workdir}/logfile" \
--tpm "${SWTPM_EXE} socket ${SWTPM_TEST_SECCOMP_OPT}";
then
echo "Test 2 failed: Error: Could not run $SWTPM_SETUP."
echo "Setup Logfile:"
cat "${workdir}/logfile"
exit 1
fi
if grep -q "${dummydata}" "${statefile}"; then
echo "Test 2 failed: Error: The state file was not overwritten."
echo "Setup Logfile:"
cat "${workdir}/logfile"
exit 1
fi
echo "Test 2 passed"
cleanup
# Test 3: neither "--overwrite" nor "--not-overwrite" with dummy state file
workdir="$(mktemp -d)" || exit 1
statefile="${workdir}/${STATEBASENAME}"
dummydata="DUMMY"
echo "$dummydata" > "${statefile}"
$SWTPM_SETUP \
--tpm-state "${workdir}" \
--config "${SWTPM_SETUP_CONF}" \
--logfile "${workdir}/logfile" \
--tpm "${SWTPM_EXE} socket ${SWTPM_TEST_SECCOMP_OPT}"
if [ $? -ne 1 ]; then
echo "Test 3 failed: Error: $SWTPM_SETUP did not exit with exit code 1."
echo "Setup Logfile:"
cat "${workdir}/logfile"
exit 1
fi
if ! grep -q "${dummydata}" "${statefile}"; then
echo "Test 3 failed: Error: The state file was unexpectedly overwritten."
echo "Setup Logfile:"
cat "${workdir}/logfile"
exit 1
fi
echo "Test 3 passed"
cleanup
exit 0
|