3
0
mirror of https://github.com/rvalitov/zabbix-php-fpm.git synced 2023-11-05 03:30:27 +01:00

[add] multiple run steps

This commit is contained in:
Ramil Valitov 2020-07-07 19:46:50 +03:00
parent ff69832d45
commit 6f0bea84df
No known key found for this signature in database
GPG Key ID: 2AB186DABDFE1914

View File

@ -330,13 +330,9 @@ testZabbixDiscoverRunDuration() {
DATA=$(zabbix_get -s 127.0.0.1 -p 10050 -k php-fpm.discover["/php-fpm-status"]) DATA=$(zabbix_get -s 127.0.0.1 -p 10050 -k php-fpm.discover["/php-fpm-status"])
END_TIME=$(date +%s%N) END_TIME=$(date +%s%N)
ELAPSED_TIME=$(echo "($END_TIME - $START_TIME)/1000000" | bc) ELAPSED_TIME=$(echo "($END_TIME - $START_TIME)/1000000" | bc)
CHECK_OK_COUNT=$(echo "$DATA" | grep -o -F "execution time OK" | wc -l)
STOP_OK_COUNT=$(echo "$DATA" | grep -o -F "stop required" | wc -l)
MAX_TIME=$(echo "$ZABBIX_TIMEOUT * 1000" | bc) MAX_TIME=$(echo "$ZABBIX_TIMEOUT * 1000" | bc)
echo "Elapsed time $ELAPSED_TIME ms" echo "Elapsed time $ELAPSED_TIME ms"
echo "Success time checks: $CHECK_OK_COUNT"
echo "Stop time checks: $STOP_OK_COUNT"
assertTrue "The script worked for too long" "[ $ELAPSED_TIME -lt $MAX_TIME ]" assertTrue "The script worked for too long" "[ $ELAPSED_TIME -lt $MAX_TIME ]"
} }
@ -516,11 +512,19 @@ testZabbixDiscoverManyPools() {
} }
testDiscoverScriptManyPoolsRunDuration() { testDiscoverScriptManyPoolsRunDuration() {
MAX_RUNS=5
for ((c = 1; c <= MAX_RUNS; c++)); do
echo "Run #$c..."
testDiscoverScriptRunDuration testDiscoverScriptRunDuration
done
} }
testZabbixDiscoverManyPoolsRunDuration() { testZabbixDiscoverManyPoolsRunDuration() {
MAX_RUNS=5
for ((c = 1; c <= MAX_RUNS; c++)); do
echo "Run #$c..."
testZabbixDiscoverRunDuration testZabbixDiscoverRunDuration
done
} }
# Load shUnit2. # Load shUnit2.