From b8eeff7c6fdbfa5fe308e37a09853a6bc1f20d60 Mon Sep 17 00:00:00 2001 From: "Yiting.Li" Date: Sat, 9 Jan 2016 09:50:27 +0800 Subject: JIRA: BOTTLENECKS-29 End to End test framework bottleneck vstf test suite ci script(currently progress is ok without vstf images) Change-Id: Ifdd1289b05d2916f6022c01c2581674e01bc022f Signed-off-by: Yiting.Li --- .../heat_template/vstf_heat_template/vstf_test.sh | 79 ++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 utils/infra_setup/heat_template/vstf_heat_template/vstf_test.sh (limited to 'utils/infra_setup/heat_template/vstf_heat_template/vstf_test.sh') diff --git a/utils/infra_setup/heat_template/vstf_heat_template/vstf_test.sh b/utils/infra_setup/heat_template/vstf_heat_template/vstf_test.sh new file mode 100644 index 00000000..5f5aa36f --- /dev/null +++ b/utils/infra_setup/heat_template/vstf_heat_template/vstf_test.sh @@ -0,0 +1,79 @@ +#!/bin/bash +set -x + +VM_MANAGER_USER="root" +VM_MANAGER_PASSWD="root" +STACK_NAME="vstf" +#load func +source ./ssh.sh +source ./scp.sh + +function fn_parser_ipaddress(){ + #parser and get output ipaddress + manager_control_private_ip=`heat output-show ${STACK_NAME} manager_control_private_ip | sed 's/\"//g'` + manager_control_public_ip=`heat output-show ${STACK_NAME} manager_control_public_ip | sed 's/\"//g'` + + local ipaddr="" + for ipaddr in ${manager_control_private_ip} ${manager_control_public_ip} + do + if [ "${ipaddr}x" == "x" ] + then + echo "[ERROR]The ipaddress is null ,get ip from heat output failed" + exit 1 + fi + done + + return 0 +} + +function fn_vstf_test_config(){ + #get testing ipaddress + tester_testing_ip=`nova list | grep "vstf-tester" | grep "bottlenecks-testing" | awk -F'bottlenecks-testing=' '{print $2}' | awk '{print $1}'` + target_testing_ip=`nova list | grep "vstf-target" | grep "bottlenecks-testing" | awk -F'bottlenecks-testing=' '{print $2}' | awk '{print $1}'` + echo "tester_testing_ip = ${tester_testing_ip}" + echo "target_testing_ip = ${target_testing_ip}" + #setting testting ipaddress + local cmd='vstfadm settings ${tester_testing_ip} ${target_testing_ip}' + echo "$cmd" + #run_cmd ${manager_control_public_ip} ${VM_MANAGER_USER} ${VM_MANAGER_PASSWD} "${cmd}" + + return 0 +} + +function fn_testing_scenario(){ + local head_cmd="vstfadm perf-test " + local test_length_list="64" + local test_scenario_list="Tu-1 Tu-3" + local test_tool="netperf" + local protocol="udp" + local test_type="frameloss" + for scene in ${test_scenario_list} + do + local cmd="${head_cmd} ${scene} ${test_tool} ${protocol} ${test_type} \"${test_length_list}\" > /root/${scene}-result.txt" + echo ${cmd} + run_cmd ${manager_control_public_ip} ${VM_MANAGER_USER} ${VM_MANAGER_PASSWD} "${head_cmd} ${scene} ${test_tool} ${protocol} ${test_type} \"${test_length_list}\" > /root/${scene}" + done + return 0 +} + +function fn_result(){ + local test_scenario_list="Tu-1 Tu-3" + mkdir ./result + rm -rf ./result/* + for scene in ${test_scenario_list} + do + remote_scp_cmd ${manager_control_public_ip} ${VM_MANAGER_USER} ${VM_MANAGER_PASSWD} "/root/${scene}-result.txt" "./result/${scene}" "file" + done + return 0 +} + +function main(){ + fn_parser_ipaddress + fn_vstf_test_config + #fn_testing_scenario + #fn_result + return 0 +} + +main +set +x -- cgit 1.2.3-korg