Add test for canceling a running compose

This is a modification of an existing test for compose sanity.
This commit is contained in:
Jakub Rusz 2020-01-03 14:17:56 +01:00 committed by Brian C. Lane
parent ed15b81818
commit badc07854c
1 changed files with 20 additions and 0 deletions

View File

@ -22,6 +22,26 @@ rlJournalStart
rlPhaseEnd
rlPhaseStartTest "compose start"
UUID=`$CLI compose start example-http-server ami`
rlAssertEquals "exit code should be zero" $? 0
UUID=`echo $UUID | cut -f 2 -d' '`
if [ -n "$UUID" ]; then
until $CLI compose info $UUID | grep 'RUNNING'; do
sleep 20
rlLogInfo "Waiting for compose to start running..."
done;
else
rlFail "Compose UUID is empty!"
fi
rlPhaseEnd
rlPhaseStartTest "cancel compose"
rlRun -t -c "$CLI compose cancel $UUID"
rlRun -t -c "$CLI compose info $UUID" 1 "compose is canceled"
rlPhaseEnd
rlPhaseStartTest "compose start again"
UUID=`$CLI --test=2 compose start example-http-server tar`
rlAssertEquals "exit code should be zero" $? 0