2019-10-15 23:48:13 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Note: execute this file from the project root directory
|
|
|
|
|
|
|
|
#####
|
|
|
|
#
|
|
|
|
# Test the qcow2 image
|
|
|
|
#
|
|
|
|
#####
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
. /usr/share/beakerlib/beakerlib.sh
|
|
|
|
. $(dirname $0)/lib/lib.sh
|
|
|
|
|
|
|
|
rlJournalStart
|
|
|
|
rlPhaseStartTest "Verify VM instance"
|
|
|
|
# Just the fact that this is running means the image can boot and ssh is working
|
2019-10-23 09:50:33 +00:00
|
|
|
verify_image root localhost "-p 22"
|
2019-10-15 23:48:13 +00:00
|
|
|
rlAssertExists "/root/.ssh/authorized_keys"
|
|
|
|
rlPhaseEnd
|
|
|
|
rlJournalEnd
|
|
|
|
rlJournalPrintText
|