From 019227b6f4fdbbc93e14c7231a1e30c4523479ce Mon Sep 17 00:00:00 2001 From: Peter Bandzi Date: Thu, 23 Apr 2015 17:17:43 +0200 Subject: Script for starting Robotframework ODL suites. Script do clone integration test from git activate python venv and start test suites with specified parameters test suites are specified in test_list.txt JIRA: FUNCTEST-5 Change-Id: Ic80b2e5760fd09a235bf946d0172e426d121a157 Signed-off-by: Peter Bandzi --- testcases/Controllers/ODL/CI/start_tests.sh | 75 +++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 testcases/Controllers/ODL/CI/start_tests.sh (limited to 'testcases/Controllers/ODL/CI/start_tests.sh') diff --git a/testcases/Controllers/ODL/CI/start_tests.sh b/testcases/Controllers/ODL/CI/start_tests.sh new file mode 100644 index 000000000..48ad787fd --- /dev/null +++ b/testcases/Controllers/ODL/CI/start_tests.sh @@ -0,0 +1,75 @@ +#!/bin/bash +# Script requires that test environment is created already +# it includes python2.7 virtual env with robot packages and git + +# Colors +green='\033[0;32m' +light_green='\033[1;32m' +nc='\033[0m' # No Color + + +echo -e "${green}Current environment parameters for ODL suite.${nc}" +# Following vars might be also specified as CLI params +set -x +PATH_TO_VENV=${PATH_TO_VENV:-~/.virtualenvs/robot/bin/activate} +OSTACK_IP=${OSTACK_IP:-'oscontrol'} +ODL_PORT=${ODL_PORT:-8081} +USR_NAME=${USR_NAME:-'admin'} +PASS=${PASS:-'octopus'} +set +x + +usage="Script for starting ODL tests. + +usage: +[var=value] bash $(basename "$0") [-h] + +where: + -h show this help text + var one of the following: OSTACK_IP, ODL_PORT, USER, PASS, PATH_TO_VENV + value new value for var + +example: + OSTACK_IP=oscontro1 ODL_PORT=8080 bash $(basename "$0")" + +while getopts ':h' option; do + case "$option" in + h) echo "$usage" + exit + ;; + \?) printf "illegal option: -%s\n" "$OPTARG" >&2 + echo "$usage" >&2 + exit 1 + ;; + esac +done + +echo -e "${green}Cloning ODL integration git repo.${nc}" +if [ -d integration ]; then + cd integration + git checkout -- . + git pull + cd - +else + git clone https://github.com/opendaylight/integration.git +fi + +# Change openstack password for admin tenant in neutron suite +sed -i "s/\"password\": \"admin\"/\"password\": \"${PASS}\"/" integration/test/csit/suites/openstack/neutron/__init__.robot + +echo -e "${green}Activate python virtual env.${nc}" +source $PATH_TO_VENV + +# List of tests are specified in test_list.txt +# those are relative paths to test directories from integartion suite +# script reads each line from file so no empty lines are allowed +echo -e "${green}Executing chosen tests.${nc}" +while read line +do + echo -e "${light_green}Starting test: $line ${nc}" + pybot -v OPENSTACK:${OSTACK_IP} -v PORT:${ODL_PORT} -v CONTROLLER:${OSTACK_IP} $line +done < test_list.txt + +echo -e "${green}Deactivate venv.${nc}" +deactivate + +# Now we can copy output.xml, log.html and report.xml files generated by robot. -- cgit 1.2.3-korg