Allow overriding $CLI outside test scripts

this will allow you to test against installed RPM like so:

    # export CLI="/usr/bin/composer-cli"
    # make test_images

If you already have lorax-composer running then you can directly
execute test scripts:

    # ./tests/cli/test_build_and_deploy_aws.sh

(cherry picked from commit 85dfbd7911)
(cherry picked from commit 1053c7477e)
This commit is contained in:
Alexander Todorov 2019-03-08 12:29:11 +02:00 committed by Brian C. Lane
parent d0ac25d022
commit 530279c44a
12 changed files with 51 additions and 26 deletions

View File

@ -3,7 +3,7 @@
. /usr/share/beakerlib/beakerlib.sh
CLI="./src/bin/composer-cli"
CLI="${CLI:-./src/bin/composer-cli}"
rlJournalStart

View File

@ -9,7 +9,7 @@
. /usr/share/beakerlib/beakerlib.sh
CLI="./src/bin/composer-cli"
CLI="${CLI:-./src/bin/composer-cli}"
rlJournalStart

View File

@ -9,7 +9,7 @@
. /usr/share/beakerlib/beakerlib.sh
CLI="./src/bin/composer-cli"
CLI="${CLI:-./src/bin/composer-cli}"
rlJournalStart

View File

@ -9,7 +9,7 @@
. /usr/share/beakerlib/beakerlib.sh
CLI="./src/bin/composer-cli"
CLI="${CLI:-./src/bin/composer-cli}"
rlJournalStart

View File

@ -9,7 +9,7 @@
. /usr/share/beakerlib/beakerlib.sh
CLI="./src/bin/composer-cli"
CLI="${CLI:-./src/bin/composer-cli}"
rlJournalStart

View File

@ -11,7 +11,7 @@
. /usr/share/beakerlib/beakerlib.sh
CLI="./src/bin/composer-cli"
CLI="${CLI:-./src/bin/composer-cli}"
rlJournalStart

View File

@ -9,7 +9,7 @@
. /usr/share/beakerlib/beakerlib.sh
CLI="./src/bin/composer-cli"
CLI="${CLI:-./src/bin/composer-cli}"
QEMU="/usr/bin/qemu-kvm"
rlJournalStart

View File

@ -11,7 +11,7 @@
. /usr/share/beakerlib/beakerlib.sh
CLI="./src/bin/composer-cli"
CLI="${CLI:-./src/bin/composer-cli}"
rlJournalStart

View File

@ -9,7 +9,7 @@
. /usr/share/beakerlib/beakerlib.sh
CLI="./src/bin/composer-cli"
CLI="${CLI:-./src/bin/composer-cli}"
QEMU="/usr/bin/qemu-kvm"
rlJournalStart

View File

@ -3,7 +3,7 @@
. /usr/share/beakerlib/beakerlib.sh
CLI="./src/bin/composer-cli"
CLI="${CLI:-./src/bin/composer-cli}"
rlJournalStart

View File

@ -9,7 +9,7 @@
. /usr/share/beakerlib/beakerlib.sh
CLI="./src/bin/composer-cli"
CLI="${CLI:-./src/bin/composer-cli}"
rlJournalStart

View File

@ -3,22 +3,37 @@
# setup
rm -rf /var/tmp/beakerlib-*/
export top_srcdir=`pwd`
. ./tests/testenv.sh
BLUEPRINTS_DIR=`mktemp -d '/tmp/composer-blueprints.XXXXX'`
cp ./tests/pylorax/blueprints/*.toml $BLUEPRINTS_DIR
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
}
SHARE_DIR=`mktemp -d '/tmp/composer-share.XXXXX'`
cp -R ./share/* $SHARE_DIR
chmod a+rx -R $SHARE_DIR
function teardown_tests {
mv $1/composer/live-iso.ks.orig $1/composer/live-iso.ks
}
# explicitly enable sshd for live-iso b/c it is disabled by default
# due to security concerns (no root password required)
sed -i 's/^services.*/services --disabled="network" --enabled="NetworkManager,sshd"/' $SHARE_DIR/composer/live-iso.ks
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
# start the lorax-composer daemon
./src/sbin/lorax-composer --sharedir $SHARE_DIR $BLUEPRINTS_DIR &
# wait for the backend to become ready
tries=0
@ -45,9 +60,19 @@ else
fi
# Stop lorax-composer and remove /run/weldr/api.socket
pkill -9 lorax-composer
rm -f /run/weldr/api.socket
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
# look for failures
grep RESULT_STRING /var/tmp/beakerlib-*/TestResults | grep -v PASS && exit 1