828a516cb3
Adding only rel-eng optional repo for live-iso can cause broken dependencies if the base repo (nightly) contains packages in newer versions than what is required by packages in optional repo. A better way in the live-iso test is to add a rel-eng or nightly optional repo based on the already existing repos. Fixes: rhbz#1826029
105 lines
2.7 KiB
Bash
Executable File
105 lines
2.7 KiB
Bash
Executable File
#!/bin/bash
|
|
# Note: execute this file from the project root directory
|
|
|
|
#####
|
|
#
|
|
# Builds live-iso image and test it with QEMU-KVM
|
|
#
|
|
#####
|
|
|
|
set -e
|
|
|
|
. /usr/share/beakerlib/beakerlib.sh
|
|
. $(dirname $0)/lib/lib.sh
|
|
|
|
CLI="${CLI:-./src/bin/composer-cli}"
|
|
|
|
rlJournalStart
|
|
rlPhaseStartSetup
|
|
if grep -qE "https?://.*/nightly/" /etc/yum.repos.d/*; then
|
|
RELEASE_TYPE="nightly"
|
|
else
|
|
RELEASE_TYPE="rel-eng"
|
|
fi
|
|
|
|
OPTIONAL_REPO="/etc/yum.repos.d/rhel7-${RELEASE_TYPE}-optional.repo"
|
|
|
|
if [ ! -f "$OPTIONAL_REPO" ]; then
|
|
composer_stop
|
|
cat > $OPTIONAL_REPO << __EOF__
|
|
[rhel7-${RELEASE_TYPE}-optional]
|
|
gpgcheck=0
|
|
enabled=1
|
|
skip_if_unavailable=0
|
|
name=rhel7-${RELEASE_TYPE}-optional
|
|
baseurl=http://download-node-02.eng.bos.redhat.com/rhel-7/$RELEASE_TYPE/latest-RHEL-7/compose/Server-optional/\$basearch/os/
|
|
__EOF__
|
|
composer_start
|
|
fi
|
|
rlPhaseEnd
|
|
|
|
rlPhaseStartTest "compose start"
|
|
rlAssertEquals "SELinux operates in enforcing mode" "$(getenforce)" "Enforcing"
|
|
|
|
TMP_DIR=$(mktemp -d /tmp/composer.XXXXX)
|
|
SSH_KEY_DIR=$(mktemp -d /tmp/composer-ssh-keys.XXXXXX)
|
|
|
|
rlRun -t -c "ssh-keygen -t rsa -N '' -f $SSH_KEY_DIR/id_rsa"
|
|
PUB_KEY=$(cat "$SSH_KEY_DIR/id_rsa.pub")
|
|
|
|
cat > "$TMP_DIR/with-ssh.toml" << __EOF__
|
|
name = "with-ssh"
|
|
description = "HTTP image with SSH"
|
|
version = "0.0.1"
|
|
|
|
[[packages]]
|
|
name = "httpd"
|
|
version = "*"
|
|
|
|
[[packages]]
|
|
name = "openssh-server"
|
|
version = "*"
|
|
|
|
[[packages]]
|
|
name = "beakerlib"
|
|
version = "*"
|
|
|
|
[customizations.services]
|
|
enabled = ["sshd"]
|
|
|
|
[[customizations.user]]
|
|
name = "root"
|
|
key = "$PUB_KEY"
|
|
|
|
[customizations.kernel]
|
|
append = "custom_cmdline_arg console=ttyS0,115200n8 console=tty0"
|
|
__EOF__
|
|
|
|
rlRun -t -c "$CLI blueprints push $TMP_DIR/with-ssh.toml"
|
|
|
|
# NOTE: live-iso.ks explicitly disables sshd but test_cli.sh enables it
|
|
UUID=$($CLI compose start with-ssh live-iso)
|
|
rlAssertEquals "exit code should be zero" $? 0
|
|
|
|
UUID=$(echo "$UUID" | cut -f 2 -d' ')
|
|
rlPhaseEnd
|
|
|
|
rlPhaseStartTest "compose finished"
|
|
wait_for_compose "$UUID"
|
|
|
|
# Save the results for boot test
|
|
rlAssertExists "/var/lib/lorax/composer/results/$UUID/live.iso"
|
|
rlRun -t -c "mkdir -p /var/tmp/test-results/"
|
|
rlRun -t -c "cp /var/lib/lorax/composer/results/$UUID/live.iso /var/tmp/test-results/"
|
|
# Include the ssh key needed to log into the image
|
|
rlRun -t -c "cp $SSH_KEY_DIR/* /var/tmp/test-results"
|
|
rlPhaseEnd
|
|
|
|
rlPhaseStartCleanup
|
|
rlRun -t -c "$CLI compose delete $UUID"
|
|
rlRun -t -c "rm -rf $OPTIONAL_REPO $TMP_DIR $SSH_KEY_DIR"
|
|
rlPhaseEnd
|
|
|
|
rlJournalEnd
|
|
rlJournalPrintText
|