7b08fa8838
- avoids having to modify them in the first place so less changes to the SUT - will help with transition to osbuild-composer backend - each test which needs a blueprint either declares it on its own (some already do this) or may use a shared blueprints from the tests lib dir
112 lines
3.2 KiB
Bash
Executable File
112 lines
3.2 KiB
Bash
Executable File
#!/bin/bash
|
|
# Note: execute this file from the project root directory
|
|
# Note: Use test/check-cli && test/check-cloud if you want to
|
|
# execute test scenarios by hand!
|
|
|
|
set -eu
|
|
|
|
. $(dirname $0)/cli/lib/lib.sh
|
|
|
|
CLI="${CLI:-}"
|
|
|
|
function setup_tests {
|
|
[ "$BACKEND" == "osbuild-composer" ] && return 0
|
|
|
|
local share_dir=$1
|
|
|
|
# explicitly enable sshd for live-iso b/c it is disabled by default
|
|
# due to security concerns (no root password required)
|
|
sed -i.orig 's/^services.*/services --disabled="network" --enabled="NetworkManager,sshd"/' $share_dir/composer/live-iso.ks
|
|
|
|
# Make the live-iso boot more quickly (isolinux.cfg)
|
|
for cfg in "$share_dir"/templates.d/99-generic/live/config_files/*/isolinux.cfg; do
|
|
sed -i.orig 's/^timeout.*/timeout 20/' "$cfg"
|
|
done
|
|
|
|
# Make the live-iso boot more quickly (grub.cfg)
|
|
for cfg in "$share_dir"/templates.d/99-generic/live/config_files/*/grub.conf; do
|
|
sed -i.orig 's/^timeout.*/timeout 2/' "$cfg"
|
|
done
|
|
|
|
# Make the live-iso boot more quickly (grub2-efi.cfg)
|
|
for cfg in "$share_dir"/templates.d/99-generic/live/config_files/*/grub2-efi.cfg; do
|
|
sed -i.orig 's/^set timeout.*/set timeout=2/' "$cfg"
|
|
done
|
|
|
|
# explicitly enable logging in with empty passwords via ssh, because
|
|
# the default sshd setting for PermitEmptyPasswords is 'no'
|
|
awk -i inplace "
|
|
/%post/ && FLAG != 2 {FLAG=1}
|
|
/%end/ && FLAG == 1 {print \"sed -i 's/.*PermitEmptyPasswords.*/PermitEmptyPasswords yes/' /etc/ssh/sshd_config\"; FLAG=2}
|
|
{print}" \
|
|
$share_dir/composer/live-iso.ks
|
|
}
|
|
|
|
function teardown_tests {
|
|
[ "$BACKEND" == "osbuild-composer" ] && return 0
|
|
|
|
local share_dir=$1
|
|
|
|
mv $share_dir/composer/live-iso.ks.orig $share_dir/composer/live-iso.ks
|
|
|
|
# Restore all the configuration files
|
|
for cfg in "$share_dir"/templates.d/99-generic/live/config_files/*/*.orig; do
|
|
mv "$cfg" "${cfg%%.orig}"
|
|
done
|
|
}
|
|
|
|
# cloud credentials
|
|
if [ -f "~/.config/lorax-test-env" ]; then
|
|
. ~/.config/lorax-test-env
|
|
fi
|
|
|
|
if [ -f "/var/tmp/lorax-test-env" ]; then
|
|
. /var/tmp/lorax-test-env
|
|
fi
|
|
|
|
if [ -z "$CLI" ]; then
|
|
export top_srcdir=`pwd`
|
|
. ./tests/testenv.sh
|
|
|
|
export BLUEPRINTS_DIR=`mktemp -d '/tmp/composer-blueprints.XXXXX'`
|
|
cp ./tests/pylorax/blueprints/*.toml $BLUEPRINTS_DIR
|
|
|
|
export SHARE_DIR=`mktemp -d '/tmp/composer-share.XXXXX'`
|
|
cp -R ./share/* $SHARE_DIR
|
|
chmod a+rx -R $SHARE_DIR
|
|
|
|
setup_tests $SHARE_DIR
|
|
# start the backend daemon
|
|
composer_start
|
|
else
|
|
export PACKAGE="composer-cli"
|
|
export BLUEPRINTS_DIR="/var/lib/lorax/composer/blueprints"
|
|
composer_stop
|
|
setup_tests /usr/share/lorax
|
|
composer_start
|
|
fi
|
|
|
|
# Clean out the test-results directory
|
|
if [ -e "/var/tmp/test-results" ]; then
|
|
rm -rf "/var/tmp/test-results"
|
|
fi
|
|
|
|
setup_beakerlib_env
|
|
|
|
run_beakerlib_tests "$@"
|
|
|
|
if [ -z "$CLI" ]; then
|
|
# stop backend and remove /run/weldr/api.socket
|
|
# only if running against source
|
|
composer_stop
|
|
teardown_tests $SHARE_DIR
|
|
else
|
|
composer_stop
|
|
teardown_tests /usr/share/lorax
|
|
# start backend again so we can continue with manual or other kinds
|
|
# of testing on the same system
|
|
composer_start
|
|
fi
|
|
|
|
parse_beakerlib_results
|