test_ehdd_restart() { test_start "ehdd-restart" # a keyfile must be in use, to avoid user interaction if [ -z "$EHDD_KEYFILE" ]; then test_failure "EHDD_KEYFILE must be set" test_end return fi # the keyfile must exist if [ ! -e "$EHDD_KEYFILE" ]; then test_failure "Keyfile path '$EHDD_KEYFILE' does not exist" test_end return fi # shutdown and unmount local rc=0 pushd .. >/dev/null record "[Run ehdd/shutdown.sh]" ehdd/shutdown.sh >>$TEST_OF 2>&1 [ $? -ne 0 ] && test_failure "Could not unmount encryption-at-rest drive" # startup record "[Run ehdd/run-this-after-reboot.sh]" ehdd/run-this-after-reboot.sh >>$TEST_OF 2>&1 [ $? -ne 0 ] && test_failure "Could not start encryption-at-rest" # wait for management daemon record "wait for management daemon" while ! management/cli.py user >>$TEST_OF 2>&1; do record "sleep 1" sleep 1 done popd >/dev/null test_end } suite_start "ehdd" test_ehdd_restart suite_end