New tests: build ext4-filesystem and partitioned-disk composes
for the moment we just make sure these two can be built without
visible errors.
(cherry picked from commit 2eb62014db
)
This commit is contained in:
parent
a8d8a4a2ef
commit
7c38d74c00
37
tests/cli/test_compose_ext4-filesystem.sh
Executable file
37
tests/cli/test_compose_ext4-filesystem.sh
Executable file
@ -0,0 +1,37 @@
|
|||||||
|
#!/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
|
||||||
|
|
||||||
|
CLI="./src/bin/composer-cli"
|
||||||
|
|
||||||
|
|
||||||
|
rlJournalStart
|
||||||
|
rlPhaseStartTest "compose start"
|
||||||
|
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
|
||||||
|
|
||||||
|
rlJournalEnd
|
||||||
|
rlJournalPrintText
|
37
tests/cli/test_compose_partitioned-disk.sh
Executable file
37
tests/cli/test_compose_partitioned-disk.sh
Executable file
@ -0,0 +1,37 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Note: execute this file from the project root directory
|
||||||
|
|
||||||
|
#####
|
||||||
|
#
|
||||||
|
# Make sure a partitioned-disk 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
|
||||||
|
|
||||||
|
CLI="./src/bin/composer-cli"
|
||||||
|
|
||||||
|
|
||||||
|
rlJournalStart
|
||||||
|
rlPhaseStartTest "compose start"
|
||||||
|
UUID=`$CLI compose start example-http-server partitioned-disk`
|
||||||
|
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
|
||||||
|
|
||||||
|
rlJournalEnd
|
||||||
|
rlJournalPrintText
|
@ -23,6 +23,8 @@ done;
|
|||||||
# invoke cli/ tests
|
# invoke cli/ tests
|
||||||
./tests/cli/test_blueprints_sanity.sh
|
./tests/cli/test_blueprints_sanity.sh
|
||||||
./tests/cli/test_compose_sanity.sh
|
./tests/cli/test_compose_sanity.sh
|
||||||
|
./tests/cli/test_compose_ext4-filesystem.sh
|
||||||
|
./tests/cli/test_compose_partitioned-disk.sh
|
||||||
|
|
||||||
# Stop lorax-composer and remove /run/weldr/api.socket
|
# Stop lorax-composer and remove /run/weldr/api.socket
|
||||||
pkill -9 lorax-composer
|
pkill -9 lorax-composer
|
||||||
|
Loading…
Reference in New Issue
Block a user