2019-04-01 14:47:50 +00:00
|
|
|
# Note: execute this file from the project root directory
|
|
|
|
|
|
|
|
#####
|
|
|
|
#
|
|
|
|
# Make sure a google compose can be built without errors
|
|
|
|
#
|
|
|
|
#####
|
|
|
|
|
2019-06-02 13:20:42 +00:00
|
|
|
set -e
|
|
|
|
|
2019-04-01 14:47:50 +00:00
|
|
|
. /usr/share/beakerlib/beakerlib.sh
|
2019-06-02 13:08:03 +00:00
|
|
|
. $(dirname $0)/lib/lib.sh
|
2019-04-01 14:47:50 +00:00
|
|
|
|
|
|
|
CLI="${CLI:-./src/bin/composer-cli}"
|
|
|
|
|
|
|
|
rlJournalStart
|
|
|
|
rlPhasStartTest "compose start"
|
|
|
|
rlAssertEquals "SELinux operates in enforcing mode" "$(getenforce)" "Enforcing"
|
|
|
|
UUID=`$CLI compose start example-http-server google`
|
|
|
|
rlAssertEquals "exit code should be zero" $? 0
|
|
|
|
|
|
|
|
UUID=`echo $UUID | cut -f 2 -d ' '`
|
|
|
|
rlPhaseEnd
|
|
|
|
|
|
|
|
rlPhaseStart "compose finished"
|
2019-09-06 16:56:19 +00:00
|
|
|
wait_for_compose $UUID
|
2019-04-01 14:47:50 +00:00
|
|
|
rlPhaseEnd
|
|
|
|
|
|
|
|
rlPhaseStart "compose check"
|
|
|
|
$CLI compose image $UUID
|
|
|
|
rlAssertEquals "exit code should be zero" $? 0
|
|
|
|
|
|
|
|
fileList=$(gzip -cd "$UUID-disk.tar.gz" | tar tf -)
|
|
|
|
rlAssertEquals "archive should contain disk.raw" "$fileList" "disk.raw"
|
|
|
|
rlPhaseEnd
|
|
|
|
|
|
|
|
rlPhaseStartCleanup
|
|
|
|
rlRun "rm -rf $UUID-disk.tar.gz"
|
|
|
|
rlRun -t -c "$CLI compose delete $UUID"
|
|
|
|
rlPhaseEnd
|
|
|
|
|
|
|
|
rlJournalEnd
|
|
|
|
rlJournalPrintText
|