7fd474f8e1
Closes: #646 Approved by: cgwalters
156 lines
4.3 KiB
Bash
Executable File
156 lines
4.3 KiB
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
. ${commondir}/libvm.sh
|
|
|
|
# create ssh-config if needed and export cmds
|
|
vm_setup
|
|
|
|
# stand up ssh connection and sanity check that it all works
|
|
if ! vm_ssh_wait 30; then
|
|
echo "ERROR: A running VM is required for 'make vmcheck'."
|
|
exit 1
|
|
fi
|
|
|
|
echo "VM is running."
|
|
|
|
# just error out if we're unlocked -- we use the current deployment as the
|
|
# fallback between each test, so we need to be sure it's in a state that works.
|
|
# also, the user might have forgotten that these tests are somewhat destructive
|
|
# and thus would wipe out unlocked changes, hotfix or not.
|
|
unlocked_cur=$(vm_get_booted_deployment_info unlocked)
|
|
if [[ $unlocked_cur != none ]]; then
|
|
echo "ERROR: VM is unlocked."
|
|
exit 1
|
|
fi
|
|
|
|
# remember the csum we're currently on and tag it so that ostree doesn't wipe it
|
|
csum_orig=$(vm_get_booted_csum)
|
|
vm_cmd ostree rev-parse $csum_orig &> /dev/null # validate
|
|
vm_cmd ostree refs vmcheck_orig --delete
|
|
vm_cmd ostree refs $csum_orig --create vmcheck_orig
|
|
|
|
# delete whatever tmp refs the previous testsuite runs may have created
|
|
vm_cmd ostree refs vmcheck_tmp --delete
|
|
|
|
# we bring our own test repo and test packages, so let's neuter any repo that
|
|
# comes with the distro to help speed up rpm-ostree metadata fetching since we
|
|
# don't cache it (e.g. on Fedora, it takes *forever* to fetch metadata, which we
|
|
# have to do dozens of times throughout the suite)
|
|
vm_cmd mv /etc/yum.repos.d{,.bak}
|
|
vm_cmd mkdir /etc/yum.repos.d
|
|
|
|
LOG=${LOG:-"$PWD/vmcheck.log"}
|
|
origdir=$(pwd)
|
|
echo -n '' > ${LOG}
|
|
|
|
testdir="$(dirname $(realpath $0))"
|
|
cd $testdir
|
|
|
|
colour_print() {
|
|
colour=$1; shift
|
|
[ ! -t 1 ] || echo -en "\e[${colour}m"
|
|
echo -n "$@"
|
|
[ ! -t 1 ] || echo -en "\e[0m"
|
|
echo
|
|
}
|
|
|
|
pass_print() {
|
|
colour_print 32 "$@" # green
|
|
}
|
|
|
|
fail_print() {
|
|
colour_print 31 "$@" # red
|
|
}
|
|
|
|
skip_print() {
|
|
colour_print 34 "$@" # blue
|
|
}
|
|
|
|
total=0
|
|
pass=0
|
|
fail=0
|
|
skip=0
|
|
notrun=0
|
|
for tf in $(find . -name 'test-*.sh' | sort); do
|
|
|
|
if [ -n "${TESTS+ }" ]; then
|
|
tfbn=$(basename "$tf" .sh)
|
|
tfbn=" ${tfbn#test-} "
|
|
if [[ " $TESTS " != *$tfbn* ]]; then
|
|
let "notrun += 1"
|
|
continue
|
|
fi
|
|
fi
|
|
|
|
let "total += 1"
|
|
|
|
bn=$(basename ${tf})
|
|
printf "Running $bn...\n"
|
|
printf "\n==== ${bn} ====\n" >> ${LOG}
|
|
|
|
# do some dirty piping to get some instant feedback and help debugging
|
|
if ${tf} |& tee -a ${LOG} \
|
|
| grep -e '^ok ' --line-buffered \
|
|
| xargs -d '\n' -n 1 echo " "; then
|
|
pass_print "PASS: $bn"
|
|
echo "PASS" >> ${LOG}
|
|
let "pass += 1"
|
|
else
|
|
if test $? = 77; then
|
|
skip_print "SKIP: $bn"
|
|
echo "SKIP" >> ${LOG}
|
|
let "skip += 1"
|
|
else
|
|
fail_print "FAIL: $bn"
|
|
echo "FAIL" >> ${LOG}
|
|
let "fail += 1"
|
|
fi
|
|
fi
|
|
|
|
# go back to the original vmcheck deployment if needed
|
|
csum_cur=$(vm_get_booted_csum)
|
|
unlocked_cur=$(vm_get_booted_deployment_info unlocked)
|
|
if [[ $csum_orig != $csum_cur ]] || \
|
|
[[ $unlocked_cur != none ]]; then
|
|
# redeploy under the name 'vmcheck' so that tests can never modify the
|
|
# vmcheck_orig ref itself (e.g. package layering)
|
|
echo "Restoring vmcheck commit" >> ${LOG}
|
|
vm_cmd ostree commit -b vmcheck --tree=ref=vmcheck_orig &>> ${LOG}
|
|
vm_cmd ostree refs vmcheck_tmp --delete # delete refs created by test
|
|
vm_cmd ostree admin deploy vmcheck &>> ${LOG}
|
|
vm_reboot &>> ${LOG}
|
|
fi
|
|
|
|
done
|
|
|
|
# put back the original yum repos
|
|
vm_cmd rm -rf /etc/yum.repos.d
|
|
vm_cmd mv /etc/yum.repos.d{.bak,}
|
|
|
|
# Gather post-failure system logs if necessary
|
|
ALL_LOGS=$LOG
|
|
if [ ${fail} -ne 0 ]; then
|
|
ALL_LOGS="$ALL_LOGS vmcheck-journal.txt"
|
|
vmcheck_journal=${origdir}/vmcheck-journal.txt
|
|
if ! vm_ssh_wait 30; then
|
|
echo "WARNING: Failed to wait for final reboot" > ${vmcheck_journal}
|
|
else
|
|
echo "Saving vmcheck-journal.txt"
|
|
vm_cmd 'journalctl --no-pager || true' > ${vmcheck_journal}
|
|
fi
|
|
fi
|
|
|
|
# tear down ssh connection if needed
|
|
if $SSH -O check &>/dev/null; then
|
|
$SSH -O exit &>/dev/null
|
|
fi
|
|
|
|
[ ${fail} -eq 0 ] && printer=pass || printer=fail
|
|
${printer}_print "TOTAL: $total PASS: $pass SKIP: $skip FAIL: $fail"
|
|
if test ${notrun} -gt 0; then
|
|
echo "NOTICE: Skipped ${notrun} tests not matching \"${TESTS}\""
|
|
fi
|
|
echo "See ${ALL_LOGS} for more information."
|
|
[ ${fail} -eq 0 ]
|