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!
|
|
|
|
#
|
|
|
|
#####
|
|
|
|
|
2019-06-25 09:50:37 +00:00
|
|
|
set -e
|
|
|
|
|
2018-12-10 12:45:27 +00:00
|
|
|
. /usr/share/beakerlib/beakerlib.sh
|
2019-06-25 09:50:37 +00:00
|
|
|
. $(dirname $0)/lib/lib.sh
|
2018-12-10 12:45:27 +00:00
|
|
|
|
2019-03-08 10:29:11 +00:00
|
|
|
CLI="${CLI:-./src/bin/composer-cli}"
|
2018-12-10 12:45:27 +00:00
|
|
|
|
|
|
|
rlJournalStart
|
2019-11-21 10:33:46 +00:00
|
|
|
rlPhaseStartSetup
|
|
|
|
if [[ -n "$SUBSCRIPTION_HOSTNAME" && -n "$SUBSCRIPTION_USERNAME" && -n "$SUBSCRIPTION_PASSWORD" ]]; then
|
|
|
|
rlRun -t -c "cp -r /etc/yum.repos.d /etc/yum.repos.backup"
|
|
|
|
rlRun -t -c "rm -f /etc/yum.repos.d/*.repo"
|
|
|
|
rlRun -t -c "subscription-manager config --server.hostname=$SUBSCRIPTION_HOSTNAME"
|
|
|
|
subscription-manager register --username=$SUBSCRIPTION_USERNAME --password=$SUBSCRIPTION_PASSWORD
|
|
|
|
rlAssert0 "'subscription-manager register' succeeded" $?
|
|
|
|
rlRun -t -c "subscription-manager attach --auto"
|
|
|
|
rlRun -t -c "systemctl restart lorax-composer"
|
|
|
|
rlLogInfo "System is subscribed"
|
|
|
|
else
|
|
|
|
rlLogInfo "System is not subscribed"
|
|
|
|
fi
|
|
|
|
rlPhaseEnd
|
|
|
|
|
2018-12-10 12:45:27 +00:00
|
|
|
rlPhaseStartTest "compose start"
|
2019-01-25 16:53:50 +00:00
|
|
|
rlAssertEquals "SELinux operates in enforcing mode" "$(getenforce)" "Enforcing"
|
2019-11-29 12:23:28 +00:00
|
|
|
rlRun -t -c "$CLI blueprints push $(dirname $0)/lib/test-http-server.toml"
|
|
|
|
UUID=`$CLI compose start test-http-server ext4-filesystem`
|
2018-12-10 12:45:27 +00:00
|
|
|
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-12-10 12:45:27 +00:00
|
|
|
rlPhaseEnd
|
|
|
|
|
2019-02-18 17:16:36 +00:00
|
|
|
rlPhaseStartCleanup
|
|
|
|
rlRun -t -c "$CLI compose delete $UUID"
|
2019-11-21 10:33:46 +00:00
|
|
|
if [[ -n "$SUBSCRIPTION_HOSTNAME" && -n "$SUBSCRIPTION_USERNAME" && -n "$SUBSCRIPTION_PASSWORD" ]]; then
|
|
|
|
rlRun -t -c "subscription-manager unregister"
|
|
|
|
rlRun -t -c "rm -rf /etc/yum.repos.d"
|
|
|
|
rlRun -t -c "mv /etc/yum.repos.backup /etc/yum.repos.d"
|
|
|
|
fi
|
2019-02-18 17:16:36 +00:00
|
|
|
rlPhaseEnd
|
|
|
|
|
2018-12-10 12:45:27 +00:00
|
|
|
rlJournalEnd
|
|
|
|
rlJournalPrintText
|