forked from zauberzeug/nicegui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_startup.sh
executable file
·39 lines (36 loc) · 983 Bytes
/
test_startup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env bash
run() {
output=`{ timeout 10 python3 $1; } 2>&1`
exitcode=$?
test $exitcode -eq 124 && exitcode=0 # exitcode 124 is comming from "timeout command above"
echo $output | grep -e "NiceGUI ready to go" -e "Uvicorn running on http://0.0.0.0:8000" > /dev/null || exitcode=1
echo $output | grep "Traceback" > /dev/null && exitcode=1
echo $output | grep "Error" > /dev/null && exitcode=1
if test $exitcode -ne 0; then
echo "wrong exit code $exitcode. Output was:"
echo $output
return 1
fi
}
check() {
echo checking $1 ----------
pushd $(dirname "$1") >/dev/null
if run $(basename "$1"); then
echo "ok --------"
popd > /dev/null
else
echo "failed -------"
popd > /dev/null
return 1
fi
}
error=0
check main.py || error=1
for path in examples/*
do
if test -f $path/main.py
then
check $path/main.py || error=1
fi
done
test $error -eq 0