X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=tests%2Fruntests.sh;fp=tests%2Fruntests.sh;h=6691d047d14170ad49264022c2024a49d6803b97;hb=549b3592dd8587ab843132afbcca2bf31a55ee8f;hp=0000000000000000000000000000000000000000;hpb=b9bca788919819024b0486e6bfecc0f1bfcacee7;p=openstack-build%2Fcinder-build.git diff --git a/tests/runtests.sh b/tests/runtests.sh new file mode 100755 index 000000000..6691d047d --- /dev/null +++ b/tests/runtests.sh @@ -0,0 +1,86 @@ +#!/bin/bash -x +echo "Testing $1" + +RES=0 + + +function test_cinder_service(){ + echo "Starting Cinder $1..." + service $1 start + sleep 5 + + service_result=0 + service_running=`netstat -nat | grep $2 | wc -l` + if [ $service_running -eq 0 ]; then + echo "Can not start Cinder $1 service" + RES=1 + else + echo "Cinder $1 successfully started" + service $1 stop + fi +} + + +function check_file_exists(){ + if [ ! -f "$1" ]; then + RES=1 + fi +} + + +function test_cinder_configs(){ + declare -a files=("/etc/cinder/cinder.conf" "/etc/cinder/api-paste.ini" "/etc/cinder/policy.json") + for f in "${files[@]}" + do + check_file_exists "$f" + done +} + + +case $1 in + python-cinder) + declare -a imports=("cinder" "cinder.volume.drivers.lvm" "cinder.volume.drivers.rbd") + for i in "${imports[@]}" + do + python -c "import $i" + if [ $? -ne 0 ]; then + RES=1 + break + fi + done + ;; + openstack-cinder) + test_cinder_configs + + count=`ls -1 /usr/bin/cinder* 2>/dev/null | wc -l` + if [ $count -eq 0 ]; then + RES=1 + fi + + test_cinder_service openstack-cinder-api 8776 + check_file_exists "/usr/bin/cinder-volume" + check_file_exists "/usr/bin/cinder-scheduler" + ;; + cinder-common) + test_cinder_configs + check_file_exists "/usr/bin/cinder-manage" + ;; + cinder-scheduler) + check_file_exists "/usr/bin/cinder-scheduler" + ;; + cinder-api) + check_file_exists "/usr/bin/cinder-api" + test_cinder_service cinder-api 8776 + ;; + cinder-volume) + check_file_exists "/usr/bin/cinder-volume" + ;; + openstack-cinder-doc) + echo "No test for docs defined" + ;; + *) + echo "Test is not defined, skipping..." + ;; +esac + +exit $RES