e7cfd20ca3
Nested virt is not reliable enough, especially on other arches, to rely
on for testing the created images. This moves the test code into
test_boot_* scripts to be run from inside the booted images.
It also adds copying the results of the build into
/var/tmp/test-results/, and includes the generated ssh key so that
whatever boots the image can also log in.
The tests/test_image.sh script has been added to handle running the
test_boot_* scripts without any of the extra lorax-composer specific
setup.
Cherry-picked from b8bf258a3c
Related: rhbz#1769525
24 lines
580 B
Bash
Executable File
24 lines
580 B
Bash
Executable File
#!/bin/bash
|
|
# Note: execute this file from the project root directory
|
|
|
|
#####
|
|
#
|
|
# Test the live-iso image
|
|
#
|
|
#####
|
|
|
|
set -e
|
|
|
|
. /usr/share/beakerlib/beakerlib.sh
|
|
. $(dirname $0)/lib/lib.sh
|
|
|
|
rlJournalStart
|
|
rlPhaseStartTest "Verify live iso"
|
|
# Just the fact that this is running means the image can boot and ssh is working
|
|
rlRun -t -c "passwd --status root | grep -E '^root\s+NP?'" 0 "root account has no password set"
|
|
rlAssertGrep "liveuser" /etc/passwd
|
|
rlAssertGrep "custom_cmdline_arg" /proc/cmdline
|
|
rlPhaseEnd
|
|
rlJournalEnd
|
|
rlJournalPrintText
|