test_all_scripts.sh: reformatted

This commit is contained in:
Jed Reynolds
2020-12-18 11:09:52 -08:00
parent 0673825f9e
commit 5e767b0bb3

View File

@@ -14,47 +14,56 @@ STOP_NUM=9
START_NUM=0 START_NUM=0
#Test array #Test array
testCommands=("./example_wpa_connection.py --num_stations $NUM_STA --ssid jedway-r8000-36 --passwd jedway-r8000-36 --radio $RADIO_USED --security wpa" testCommands=("./example_wpa_connection.py --num_stations $NUM_STA --ssid jedway-r8000-36 --passwd jedway-r8000-36 --radio $RADIO_USED --security wpa"
"./example_wpa2_connection.py --num_stations $NUM_STA --ssid $SSID_USED --passwd $SSID_USED --radio $RADIO_USED --security wpa2" "./example_wpa2_connection.py --num_stations $NUM_STA --ssid $SSID_USED --passwd $SSID_USED --radio $RADIO_USED --security wpa2"
"./example_wep_connection.py --num_stations $NUM_STA --ssid jedway-wep-48 --passwd jedway-wep-48 --radio $RADIO_USED --security wep" "./example_wep_connection.py --num_stations $NUM_STA --ssid jedway-wep-48 --passwd jedway-wep-48 --radio $RADIO_USED --security wep"
"./example_wpa3_connection.py --num_stations $NUM_STA --ssid jedway-wpa3-1 --passwd jedway-wpa3-1 --radio $RADIO_USED --security wpa3" "./example_wpa3_connection.py --num_stations $NUM_STA --ssid jedway-wpa3-1 --passwd jedway-wpa3-1 --radio $RADIO_USED --security wpa3"
"./test_ipv4_connection.py --radio wiphy2 --num_stations $NUM_STA --ssid $SSID_USED --passwd $PASSWD_USED --security $SECURITY --debug --upstream_port eth1" "./test_ipv4_connection.py --radio wiphy2 --num_stations $NUM_STA --ssid $SSID_USED --passwd $PASSWD_USED --security $SECURITY --debug --upstream_port eth1"
"./test_generic.py --mgr localhost --mgr_port 4122 --radio $RADIO_USED --ssid SSID_USED --passwd $PASSWD_USED --num_stations $NUM_STA --type lfping --dest 10.40.0.1 --security $SECURITY" "./test_generic.py --mgr localhost --mgr_port 4122 --radio $RADIO_USED --ssid SSID_USED --passwd $PASSWD_USED --num_stations $NUM_STA --type lfping --dest 10.40.0.1 --security $SECURITY"
"./test_generic.py --mgr localhost --mgr_port 4122 --radio $RADIO_USED --ssid $SSID_USED --passwd $PASSWD_USED --num_stations $NUM_STA --type speedtest --speedtest_min_up 20 --speedtest_min_dl 20 --speedtest_max_ping 150 --security $SECURITY" "./test_generic.py --mgr localhost --mgr_port 4122 --radio $RADIO_USED --ssid $SSID_USED --passwd $PASSWD_USED --num_stations $NUM_STA --type speedtest --speedtest_min_up 20 --speedtest_min_dl 20 --speedtest_max_ping 150 --security $SECURITY"
"./test_ipv4_l4_urls_per_ten.py --upstream_port eth1 --radio $RADIO_USED --num_stations $NUM_STA --security $SECURITY --ssid $SSID_USED --passwd $PASSWD_USED --num_tests 1 --requests_per_ten 600 --target_per_ten 600" "./test_ipv4_l4_urls_per_ten.py --upstream_port eth1 --radio $RADIO_USED --num_stations $NUM_STA --security $SECURITY --ssid $SSID_USED --passwd $PASSWD_USED --num_tests 1 --requests_per_ten 600 --target_per_ten 600"
"./test_ipv4_l4_wifi.py --upstream_port eth1 --radio wiphy0 --num_stations $NUM_STA --security $SECURITY --ssid jedway-wpa2-x2048-4-4 --passwd jedway-wpa2-x2048-4-4 --test_duration 3m" "./test_ipv4_l4_wifi.py --upstream_port eth1 --radio wiphy0 --num_stations $NUM_STA --security $SECURITY --ssid jedway-wpa2-x2048-4-4 --passwd jedway-wpa2-x2048-4-4 --test_duration 3m"
"./test_ipv4_l4.py --radio wiphy3 --num_stations 4 --security wpa2 --ssid jedway-wpa2-x2048-4-1 --passwd jedway-wpa2-x2048-4-1 --url \"dl http://10.40.0.1 /dev/null\" --test_duration 2m --debug" "./test_ipv4_l4.py --radio wiphy3 --num_stations 4 --security wpa2 --ssid jedway-wpa2-x2048-4-1 --passwd jedway-wpa2-x2048-4-1 --url \"dl http://10.40.0.1 /dev/null\" --test_duration 2m --debug"
) )
function ret_case_num(){ function ret_case_num() {
case $1 in case $1 in
"example_wpa_connection") "example_wpa_connection")
echo 1 ;; echo 1
;;
"example_wpa2_connection") "example_wpa2_connection")
echo 2 ;; echo 2
;;
"example_wpa3_connection") "example_wpa3_connection")
echo 4 ;; echo 4
;;
"example_wep_connection") "example_wep_connection")
echo 3 ;; echo 3
;;
"test_ipv4_connection") "test_ipv4_connection")
echo 5 ;; echo 5
;;
"test_generic") "test_generic")
echo 6 ;; echo 6
;;
"test_ipv4_l4_urls_per_ten") "test_ipv4_l4_urls_per_ten")
echo 7 ;; echo 7
;;
"test_ipv4_l4_wifi") "test_ipv4_l4_wifi")
echo 8 ;; echo 8
;;
"test_ipv4_l4") "test_ipv4_l4")
echo 9 ;; echo 9
;;
esac esac
} }
function blank_db() { function blank_db() {
echo "Loading blank scenario..." >> ~/test_all_output_file.txt echo "Loading blank scenario..." >>~/test_all_output_file.txt
./scenario.py --load BLANK >> ~/test_all_output_file.txt ./scenario.py --load BLANK >>~/test_all_output_file.txt
#check_blank.py #check_blank.py
} }
function echo_print(){ function echo_print() {
echo "Beginning $CURR_TEST_NAME test..." >> ~/test_all_output_file.txt echo "Beginning $CURR_TEST_NAME test..." >>~/test_all_output_file.txt
} }
function run_test(){ function run_test() {
for i in "${testCommands[@]}"; do for i in "${testCommands[@]}"; do
CURR_TEST_NAME=${i%%.py*} CURR_TEST_NAME=${i%%.py*}
CURR_TEST_NAME=${CURR_TEST_NAME#./*} CURR_TEST_NAME=${CURR_TEST_NAME#./*}
@@ -64,7 +73,7 @@ function run_test(){
fi fi
if [[ $CURR_TEST_NUM -gt $START_NUM ]] || [[ $CURR_TEST_NUM -eq $START_NUM ]]; then if [[ $CURR_TEST_NUM -gt $START_NUM ]] || [[ $CURR_TEST_NUM -eq $START_NUM ]]; then
echo_print echo_print
eval $i >> ~/test_all_output_file.txt eval $i >>~/test_all_output_file.txt
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo $CURR_TEST_NAME failure echo $CURR_TEST_NAME failure
else else
@@ -76,7 +85,7 @@ function run_test(){
fi fi
done done
} }
function check_args(){ function check_args() {
if [ ! -z $1 ]; then if [ ! -z $1 ]; then
START_NUM=$1 START_NUM=$1
fi fi
@@ -84,7 +93,7 @@ function check_args(){
STOP_NUM=$2 STOP_NUM=$2
fi fi
} }
true > ~/test_all_output_file.txt true >~/test_all_output_file.txt
check_args $1 $2 check_args $1 $2
run_test run_test
#test generic and fileio are for macvlans #test generic and fileio are for macvlans