2018-12-10 12:45:27 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# Note: execute this file from the project root directory
|
|
|
|
|
|
|
|
#####
|
|
|
|
#
|
|
|
|
# Make sure an ext4-filesystem compose can be built without errors!
|
|
|
|
# Note: according to existing test plan we're not going to validate
|
|
|
|
# direct usage-scenarios for this image type!
|
|
|
|
#
|
|
|
|
#####
|
|
|
|
|
|
|
|
. /usr/share/beakerlib/beakerlib.sh
|
|
|
|
|
2019-03-08 10:29:11 +00:00
|
|
|
CLI="${CLI:-./src/bin/composer-cli}"
|
2018-12-10 12:45:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
rlJournalStart
|
|
|
|
rlPhaseStartTest "compose start"
|
2019-01-25 16:53:50 +00:00
|
|
|
rlAssertEquals "SELinux operates in enforcing mode" "$(getenforce)" "Enforcing"
|
2018-12-10 12:45:27 +00:00
|
|
|
UUID=`$CLI compose start example-http-server ext4-filesystem`
|
|
|
|
rlAssertEquals "exit code should be zero" $? 0
|
|
|
|
|
|
|
|
UUID=`echo $UUID | cut -f 2 -d' '`
|
|
|
|
rlPhaseEnd
|
|
|
|
|
|
|
|
rlPhaseStartTest "compose finished"
|
|
|
|
if [ -n "$UUID" ]; then
|
|
|
|
until $CLI compose info $UUID | grep FINISHED; do
|
|
|
|
sleep 10
|
|
|
|
rlLogInfo "Waiting for compose to finish ..."
|
|
|
|
done;
|
|
|
|
else
|
|
|
|
rlFail "Compose UUID is empty!"
|
|
|
|
fi
|
|
|
|
rlPhaseEnd
|
|
|
|
|
2019-02-18 17:16:36 +00:00
|
|
|
rlPhaseStartCleanup
|
|
|
|
rlRun -t -c "$CLI compose delete $UUID"
|
|
|
|
rlPhaseEnd
|
|
|
|
|
2018-12-10 12:45:27 +00:00
|
|
|
rlJournalEnd
|
|
|
|
rlJournalPrintText
|