2018-12-12 11:38:09 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Note: execute this file from the project root directory
|
|
|
|
|
2019-06-17 12:35:31 +00:00
|
|
|
set -e
|
|
|
|
|
2018-12-12 11:38:09 +00:00
|
|
|
. /usr/share/beakerlib/beakerlib.sh
|
2019-06-17 12:35:31 +00:00
|
|
|
. $(dirname $0)/lib/lib.sh
|
2018-12-12 11:38:09 +00:00
|
|
|
|
2019-03-08 10:29:11 +00:00
|
|
|
CLI="${CLI:-./src/bin/composer-cli}"
|
2018-12-12 11:38:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
rlJournalStart
|
|
|
|
rlPhaseStartTest "compose types"
|
|
|
|
rlAssertEquals "lists all supported types" \
|
|
|
|
"`$CLI compose types | sort | xargs`" "ami ext4-filesystem live-iso openstack partitioned-disk qcow2 tar vhd vmdk"
|
|
|
|
rlPhaseEnd
|
|
|
|
|
|
|
|
rlPhaseStartTest "compose start"
|
|
|
|
UUID=`$CLI --test=2 compose start example-http-server tar`
|
|
|
|
rlAssertEquals "exit code should be zero" $? 0
|
|
|
|
|
|
|
|
UUID=`echo $UUID | cut -f 2 -d' '`
|
|
|
|
rlPhaseEnd
|
|
|
|
|
2018-12-13 11:16:40 +00:00
|
|
|
rlPhaseStartTest "compose details"
|
2018-12-12 11:38:09 +00:00
|
|
|
if [ -n "$UUID" ]; then
|
2018-12-13 11:16:40 +00:00
|
|
|
rlRun -t -c "$CLI compose details $UUID | egrep 'RUNNING|WAITING'"
|
2018-12-12 11:38:09 +00:00
|
|
|
else
|
|
|
|
rlFail "Compose UUID is empty!"
|
|
|
|
fi
|
|
|
|
rlPhaseEnd
|
|
|
|
|
|
|
|
rlPhaseStartTest "compose image"
|
|
|
|
if [ -n "$UUID" ]; then
|
2019-06-17 12:35:31 +00:00
|
|
|
until $CLI compose details $UUID | grep 'FINISHED\|FAILED'; do
|
2018-12-12 11:38:09 +00:00
|
|
|
sleep 60
|
|
|
|
rlLogInfo "Waiting for compose to finish ..."
|
|
|
|
done;
|
|
|
|
|
|
|
|
rlRun -t -c "$CLI compose image $UUID"
|
|
|
|
rlAssertExists "$UUID-root.tar.xz"
|
2019-04-08 09:12:28 +00:00
|
|
|
|
|
|
|
# because this path is listed in the documentation
|
|
|
|
rlAssertExists "/var/lib/lorax/composer/results/$UUID/"
|
|
|
|
rlAssertExists "/var/lib/lorax/composer/results/$UUID/root.tar.xz"
|
|
|
|
rlAssertNotDiffer "/var/lib/lorax/composer/results/$UUID/root.tar.xz" "$UUID-root.tar.xz"
|
2018-12-12 11:38:09 +00:00
|
|
|
else
|
|
|
|
rlFail "Compose UUID is empty!"
|
|
|
|
fi
|
|
|
|
rlPhaseEnd
|
|
|
|
|
|
|
|
rlJournalEnd
|
|
|
|
rlJournalPrintText
|