2018-10-02 06:38:33 +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!
|
|
|
|
#
|
|
|
|
#####
|
|
|
|
|
2019-06-02 13:20:42 +00:00
|
|
|
set -e
|
|
|
|
|
2018-10-02 06:38:33 +00:00
|
|
|
. /usr/share/beakerlib/beakerlib.sh
|
2019-06-02 13:08:03 +00:00
|
|
|
. $(dirname $0)/lib/lib.sh
|
2018-10-02 06:38:33 +00:00
|
|
|
|
2019-03-08 10:29:11 +00:00
|
|
|
CLI="${CLI:-./src/bin/composer-cli}"
|
2018-10-02 06:38:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
rlJournalStart
|
|
|
|
rlPhaseStartTest "compose start"
|
2019-01-25 16:53:50 +00:00
|
|
|
rlAssertEquals "SELinux operates in enforcing mode" "$(getenforce)" "Enforcing"
|
2018-10-02 06:38:33 +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"
|
2019-09-06 16:56:19 +00:00
|
|
|
wait_for_compose $UUID
|
2018-10-02 06:38:33 +00:00
|
|
|
rlPhaseEnd
|
|
|
|
|
2019-02-18 17:14:56 +00:00
|
|
|
rlPhaseStartCleanup
|
|
|
|
rlRun -t -c "$CLI compose delete $UUID"
|
|
|
|
rlPhaseEnd
|
|
|
|
|
2018-10-02 06:38:33 +00:00
|
|
|
rlJournalEnd
|
|
|
|
rlJournalPrintText
|