a2fc684164
Separate upgrade logic to is_upgrade job var and rename scenarios to match. Rename "ACTION" to "SCENARIO" (as it is a scenario). Separate testing of dashboard (aka Horizon) and increase its timeout to 5 minutes (CentOS 7 slow as always). Separate initialization of core OpenStack. Use gate setup script from ./tests/ Remove useless tox setupenv. Do not deploy Heat when not really necessary. Change-Id: I4fca319ccc3de7188f8b7b44c9c71321e3899467
61 lines
1.5 KiB
Bash
Executable File
61 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -o xtrace
|
|
set -o errexit
|
|
|
|
export PYTHONUNBUFFERED=1
|
|
|
|
|
|
function check_dashboard {
|
|
# Query the dashboard, and check that the returned page looks like a login
|
|
# page.
|
|
DASHBOARD_URL=${OS_AUTH_URL%:*}
|
|
output_path=$1
|
|
if ! curl --include --location --fail $DASHBOARD_URL > $output_path; then
|
|
return 1
|
|
fi
|
|
if ! grep Login $output_path >/dev/null; then
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
function test_dashboard_logged {
|
|
. /etc/kolla/admin-openrc.sh
|
|
|
|
echo "TESTING: Dashboard"
|
|
# The dashboard has been known to take some time to become accessible, so
|
|
# use retries.
|
|
output_path=$(mktemp)
|
|
attempt=1
|
|
while ! check_dashboard $output_path; do
|
|
echo "Dashboard not accessible yet"
|
|
attempt=$((attempt+1))
|
|
if [[ $attempt -eq 30 ]]; then
|
|
echo "FAILED: Dashboard did not become accessible. Response:"
|
|
cat $output_path
|
|
return 1
|
|
fi
|
|
sleep 10
|
|
done
|
|
echo "SUCCESS: Dashboard"
|
|
}
|
|
|
|
function test_dashboard {
|
|
echo "Testing dashboard"
|
|
log_file=/tmp/logs/ansible/test-dashboard
|
|
if [[ -f $log_file ]]; then
|
|
log_file=${log_file}-upgrade
|
|
fi
|
|
test_dashboard_logged > $log_file 2>&1
|
|
result=$?
|
|
if [[ $result != 0 ]]; then
|
|
echo "Testing dashboard failed. See ansible/test-dashboard for details"
|
|
else
|
|
echo "Successfully tested dashboard. See ansible/test-dashboard for details"
|
|
fi
|
|
return $result
|
|
}
|
|
|
|
|
|
test_dashboard
|