2018-10-02 20:30:02 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Note: execute this file from the project root directory
|
|
|
|
|
|
|
|
# setup
|
2018-09-21 09:46:54 +00:00
|
|
|
rm -rf /var/tmp/beakerlib-*/
|
2018-10-02 20:30:02 +00:00
|
|
|
|
2019-03-08 10:29:11 +00:00
|
|
|
function setup_tests {
|
|
|
|
# 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"/' $1/composer/live-iso.ks
|
2019-02-28 15:31:05 +00:00
|
|
|
# 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}" \
|
|
|
|
$1/composer/live-iso.ks
|
2019-03-08 10:29:11 +00:00
|
|
|
}
|
2018-12-10 12:45:27 +00:00
|
|
|
|
2019-03-08 10:29:11 +00:00
|
|
|
function teardown_tests {
|
|
|
|
mv $1/composer/live-iso.ks.orig $1/composer/live-iso.ks
|
|
|
|
}
|
2018-12-10 12:45:27 +00:00
|
|
|
|
2019-03-08 10:29:11 +00:00
|
|
|
if [ -z "$CLI" ]; then
|
|
|
|
export top_srcdir=`pwd`
|
|
|
|
. ./tests/testenv.sh
|
|
|
|
|
|
|
|
BLUEPRINTS_DIR=`mktemp -d '/tmp/composer-blueprints.XXXXX'`
|
|
|
|
cp ./tests/pylorax/blueprints/*.toml $BLUEPRINTS_DIR
|
|
|
|
|
|
|
|
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 lorax-composer daemon
|
|
|
|
./src/sbin/lorax-composer --sharedir $SHARE_DIR $BLUEPRINTS_DIR &
|
|
|
|
else
|
|
|
|
SHARE_DIR="/usr/share/lorax"
|
|
|
|
setup_tests $SHARE_DIR
|
|
|
|
systemctl restart lorax-composer
|
|
|
|
fi
|
2019-02-27 13:01:28 +00:00
|
|
|
|
2018-10-02 20:30:02 +00:00
|
|
|
|
|
|
|
# wait for the backend to become ready
|
2018-12-10 12:45:27 +00:00
|
|
|
tries=0
|
|
|
|
until curl -m 15 --unix-socket /run/weldr/api.socket http://localhost:4000/api/status | grep 'db_supported.*true'; do
|
|
|
|
tries=$((tries + 1))
|
|
|
|
if [ $tries -gt 20 ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
2018-10-02 20:30:02 +00:00
|
|
|
sleep 2
|
|
|
|
echo "DEBUG: Waiting for backend API to become ready before testing ..."
|
|
|
|
done;
|
|
|
|
|
2018-12-10 12:45:27 +00:00
|
|
|
|
2019-01-23 14:32:32 +00:00
|
|
|
export BEAKERLIB_JOURNAL=0
|
2019-01-23 22:09:45 +00:00
|
|
|
export PATH="/usr/local/bin:$PATH"
|
2018-12-10 12:45:27 +00:00
|
|
|
if [ -z "$*" ]; then
|
|
|
|
# invoke cli/ tests which can be executed without special preparation
|
|
|
|
./tests/cli/test_blueprints_sanity.sh
|
|
|
|
./tests/cli/test_compose_sanity.sh
|
|
|
|
else
|
|
|
|
# execute other cli tests which need more adjustments in the calling environment
|
|
|
|
# or can't be executed inside Travis CI
|
2019-01-25 17:47:38 +00:00
|
|
|
for TEST in "$@"; do
|
2018-12-10 12:45:27 +00:00
|
|
|
./$TEST
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
2018-10-02 20:30:02 +00:00
|
|
|
|
2019-03-08 10:29:11 +00:00
|
|
|
if [ -z "$CLI" ]; then
|
|
|
|
# stop lorax-composer and remove /run/weldr/api.socket
|
|
|
|
# only if running against source
|
|
|
|
pkill -9 lorax-composer
|
|
|
|
rm -f /run/weldr/api.socket
|
|
|
|
teardown_tests $SHARE_DIR
|
|
|
|
else
|
|
|
|
systemctl stop lorax-composer
|
|
|
|
teardown_tests $SHARE_DIR
|
|
|
|
# start lorax-composer again so we can continue with manual or other kinds
|
|
|
|
# of testing on the same system
|
|
|
|
systemctl start lorax-composer
|
|
|
|
fi
|
2018-10-02 23:23:42 +00:00
|
|
|
|
2018-10-02 20:30:02 +00:00
|
|
|
# look for failures
|
2018-09-21 09:46:54 +00:00
|
|
|
grep RESULT_STRING /var/tmp/beakerlib-*/TestResults | grep -v PASS && exit 1
|
2018-10-02 20:30:02 +00:00
|
|
|
|
|
|
|
# explicit return code for Makefile
|
|
|
|
exit 0
|