Add email functionality to regression_test.sh and improve update_dependencies.py

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2021-05-27 08:58:59 -07:00
parent 58a085d65c
commit b71e698ef1
2 changed files with 23 additions and 13 deletions

View File

@@ -101,18 +101,21 @@ if [ ! -d "${REPORT_DATA}" ]; then
fi
TEST_DIR="${REPORT_DATA}/${NOW}"
function run_l3_longevity {
function run_l3_longevity() {
./test_l3_longevity.py --test_duration 15s --upstream_port eth1 --radio "radio==wiphy0 stations==4 ssid==$SSID_USED ssid_pw==$PASSWD_USED security==$SECURITY" --radio "radio==wiphy1 stations==4 ssid==$SSID_USED ssid_pw==$PASSWD_USED security==$SECURITY" --mgr "$MGR"
}
function testgroup_list_groups {
./scenario.py --load test_l3_scenario_throughput;./testgroup.py --group_name group1 --add_group --add_cx cx0000,cx0001,cx0002 --remove_cx cx0003 --list_groups --debug --mgr "$MGR"
function testgroup_list_groups() {
./scenario.py --load test_l3_scenario_throughput
./testgroup.py --group_name group1 --add_group --add_cx cx0000,cx0001,cx0002 --remove_cx cx0003 --list_groups --debug --mgr "$MGR"
}
function testgroup_list_connections {
./scenario.py --load test_l3_scenario_throughput;./testgroup.py --group_name group1 --add_group --add_cx cx0000,cx0001,cx0002 --remove_cx cx0003 --show_group --debug --mgr "$MGR"
function testgroup_list_connections() {
./scenario.py --load test_l3_scenario_throughput
./testgroup.py --group_name group1 --add_group --add_cx cx0000,cx0001,cx0002 --remove_cx cx0003 --show_group --debug --mgr "$MGR"
}
function testgroup_delete_group {
./scenario.py --load test_l3_scenario_throughput;./testgroup.py --group_name group1 --add_group --add_cx cx0000,cx0001,cx0002 --remove_cx cx0003;./testgroup.py --group_name group1--del_group --debug --mgr "$MGR"
function testgroup_delete_group() {
./scenario.py --load test_l3_scenario_throughput
./testgroup.py --group_name group1 --add_group --add_cx cx0000,cx0001,cx0002 --remove_cx cx0003
./testgroup.py --group_name group1--del_group --debug --mgr "$MGR"
}
if [[ $MGRLEN -gt 0 ]]; then
testCommands=(
@@ -357,6 +360,9 @@ function html_generator() {
rm -f "${HOMEPATH}/html-reports/latest.html"
fi
ln -s "${fname}" "${HOMEPATH}/html-reports/latest.html"
HOSTNAME=$(ip -4 addr show eth0 | grep -oP '(?<=inet\s)\d+(\.\d+){3}')
content="View the latest regression report at ${HOSTNAME}/html-reports/latest.html"
mail -s "Regression Results" scripters@candelatech.com <<<$content
}
results=()

View File

@@ -18,7 +18,11 @@ def main():
packages_installed = []
packages_failed =[]
for package in packages:
command = "pip3 install {} ".format(package)#pandas plotly numpy paramiko bokeh websocket-client pyarrow xlsxwriter pyshark influxdb influxdb-client matplotlib pdfkit pip-search --upgrade"
command = "if ($( pip3 install {} --upgrade > /tmp/pip-out 2> /tmp/pip-err ));" \
"then echo Success;" \
"else echo Problem installing {} please run that by hand;" \
"fi".format(package, package)
res = subprocess.call(command, shell = True)
if res == 0:
print("Package {} install SUCCESS Returned Value: {} ".format(package, res))
@@ -28,10 +32,10 @@ def main():
print("To see errors try: pip3 install {}".format(package))
packages_failed.append(package)
print("Install Complete")
print("Packages Installed Success: {}".format(packages_installed))
print("Packages Failed (Some scripts may not need these packages): {}".format(packages_failed))
if len(packages_failed) > 0:
print("Install Complete")
print("Packages Installed Success: {}\n".format(packages_installed))
print("Packages Failed (Some scripts may not need these packages): {}".format(packages_failed))
if __name__ == "__main__":
main()