From 3b7c8d522d1ef0950d5c79232e161de05689fe53 Mon Sep 17 00:00:00 2001 From: Jo¶rgen Karlsson Date: Tue, 16 Feb 2016 20:24:56 +0100 Subject: ci: Freeze pip requirements + cleanups MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Freeze pip requirements for brahmaputra release to make sure we keep track of dependencies. Fixes internalURL problem with ericsson-virtual1 Add check to verify that nova, glance and heat services are functional Change-Id: I15c3d215596eaad31f8e260d129b8e07a7d63976 Signed-off-by: Jo¶rgen Karlsson --- ci/yardstick-verify | 44 ++++++++++++++++++++++++++++++-------------- 1 file changed, 30 insertions(+), 14 deletions(-) (limited to 'ci/yardstick-verify') diff --git a/ci/yardstick-verify b/ci/yardstick-verify index 630fed5f5..875b01ff2 100755 --- a/ci/yardstick-verify +++ b/ci/yardstick-verify @@ -54,10 +54,12 @@ while getopts "r:i:h" OPTION; do r) DISPATCHER_TYPE=http DISPATCHER_HTTP_TARGET=http://${OPTARG} + DISPATCHER_FILE_NAME= ;; i) DISPATCHER_TYPE=influxdb DISPATCHER_INFLUXDB_TARGET=http://${OPTARG} + DISPATCHER_FILE_NAME= ;; *) echo "${OPTION} is not a valid argument" @@ -112,10 +114,11 @@ install_yardstick() echo echo "========== Installing yardstick ==========" - if ! sudo python setup.py install; then - echo 'Yardstick installation failed!' - exit 1 - fi + # uninstall previous version + pip uninstall -y yardstick || true + + # Install yardstick + pip install . } build_yardstick_image() @@ -309,15 +312,13 @@ main() echo echo "========== Running Yardstick CI with following parameters ==========" echo "Script options: ${SCRIPT} $SCRIPT_ARGS" - echo "Result API: ${DISPATCHER_HTTP_TARGET:-$DISPATCHER_FILE_NAME}" + echo "Dispatcher: ${DISPATCHER_TYPE} ${DISPATCHER_FILE_NAME}" echo "YARDSTICK_VERSION: ${YARDSTICK_VERSION}" echo "Number of test suites: ${#SUITE_FILES[@]}" for suite in ${SUITE_FILES[*]}; do echo " $suite" done - - # install yardstick - install_yardstick + echo # check if some necessary variables is set if [ -z "$OS_AUTH_URL" ]; then @@ -325,12 +326,27 @@ main() exit 1 fi - # check if the api is up - echo "Checking if OS API is working..." - if ! glance image-list > /dev/null; then - echo "OS API is down" - exit 1 - fi + echo "OS_AUTH_URL is $OS_AUTH_URL" + echo + + # check OpenStack services + echo "Checking OpenStack services:" + for cmd in "glance image-list" "nova list" "heat stack-list"; do + echo " checking ${cmd/%\ */} ..." + if ! $cmd >/dev/null; then + echo "error: command \"$cmd\" failed" + exit 1 + fi + done + + echo + echo "Checking for External network:" + for net in $(neutron net-list --router:external -c name -f value); do + echo " external network: $net" + done + + # install yardstick + install_yardstick cleanup -- cgit 1.2.3-korg