--odlip $odl_ip --odlwebport $odl_port
# push results to the DB in case of CI
- # if [[ "$report" == "-r" &&
- # -n "$DEPLOY_SCENARIO" && "$DEPLOY_SCENARIO" != "none" &&
- # -n "$INSTALLER_TYPE" && "$INSTALLER_TYPE" != "none" ]] &&
- # env | grep NODE_NAME > /dev/null; then
- # odl_logs="/home/opnfv/functest/results/odl/"
- # odl_path="${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/"
- # node_name=$(env | grep NODE_NAME | cut -f2 -d'=')
- # python ${odl_path}/odlreport2db.py -x ${odl_logs}/output.xml -i ${INSTALLER_TYPE} -p ${node_name} -s ${DEPLOY_SCENARIO}
- # fi
+ if [[ "$report" == "-r" &&
+ -n "$DEPLOY_SCENARIO" && "$DEPLOY_SCENARIO" != "none" &&
+ -n "$INSTALLER_TYPE" && "$INSTALLER_TYPE" != "none" ]] &&
+ env | grep NODE_NAME > /dev/null; then
+ odl_logs="/home/opnfv/functest/results/odl/"
+ odl_path="${FUNCTEST_REPO_DIR}/testcases/Controllers/ODL/"
+ node_name=$(env | grep NODE_NAME | cut -f2 -d'=')
+ python ${odl_path}/odlreport2db.py -x ${odl_logs}/output.xml -i ${INSTALLER_TYPE} -p ${node_name} -s ${DEPLOY_SCENARIO}
+ fi
;;
"tempest_smoke_serial")
python ${FUNCTEST_REPO_DIR}/testcases/OpenStack/tempest/run_tempest.py \
$clean_flag --sanity all $report
;;
"bgpvpn")
- python ${repos_dir}/sdnvpn/test/functest/run_tests.py
+ sdnvpn_repo_dir=${repos_dir}/sdnvpn/test/functest/
+ python ${sdnvpn_repo_dir}/run_tests.py $report
;;
"onos")
python ${FUNCTEST_REPO_DIR}/testcases/Controllers/ONOS/Teston/onosfunctest.py
- ;;
+ ;;
+ "onos_sfc")
+ python ${FUNCTEST_REPO_DIR}/testcases/Controllers/ONOS/Teston/onosfunctest.py -t sfc
+ ;;
"promise")
python ${FUNCTEST_REPO_DIR}/testcases/features/promise.py $report
sleep 10 # to let the instances terminate
"domino")
python ${FUNCTEST_REPO_DIR}/testcases/features/domino.py
;;
+ "odl-sfc")
+ bash ${FUNCTEST_REPO_DIR}/testcases/features/sfc/server_presetup_CI.bash
+ ret_val=$?
+ if [ $ret_val != 0 ]; then
+ exit $ret_val
+ fi
+ source ${FUNCTEST_REPO_DIR}/testcases/features/sfc/tackerc
+ python ${FUNCTEST_REPO_DIR}/testcases/features/sfc/sfc.py
+ ;;
+ "parser")
+ python ${FUNCTEST_REPO_DIR}/testcases/vnf/RNC/parser.py
+ ;;
*)
echo "The test case '${test_name}' does not exist."
exit 1