mirror of
https://github.com/rvalitov/zabbix-php-fpm.git
synced 2023-11-05 03:30:27 +01:00
[add] tests for localhost
This commit is contained in:
parent
e2264c575a
commit
27d55ad811
67
tests/all.sh
67
tests/all.sh
@ -5,6 +5,28 @@
|
|||||||
|
|
||||||
MAX_POOLS=3
|
MAX_POOLS=3
|
||||||
MAX_PORTS=3
|
MAX_PORTS=3
|
||||||
|
MIN_PORT=9000
|
||||||
|
|
||||||
|
copyPool() {
|
||||||
|
ORIGINAL_FILE=$1
|
||||||
|
POOL_NAME=$2
|
||||||
|
POOL_SOCKET=$3
|
||||||
|
POOL_TYPE=$4
|
||||||
|
POOL_DIR=$(dirname "${ORIGINAL_FILE}")
|
||||||
|
PHP_VERSION=$(echo "$POOL_DIR" | grep -oP "(\d\.\d)")
|
||||||
|
|
||||||
|
NEW_POOL_FILE="$POOL_DIR/${POOL_NAME}.conf"
|
||||||
|
sudo cp "$ORIGINAL_FILE" "$NEW_POOL_FILE"
|
||||||
|
|
||||||
|
#Add status path
|
||||||
|
sudo sed -i 's#;pm.status_path.*#pm.status_path = /php-fpm-status#' "$NEW_POOL_FILE"
|
||||||
|
#Set pool manager
|
||||||
|
sudo sed -i "s#pm = dynamic#pm = $POOL_TYPE#" "$NEW_POOL_FILE"
|
||||||
|
#Socket
|
||||||
|
sudo sed -i "s#listen =.*#listen = $POOL_SOCKET#" "$NEW_POOL_FILE"
|
||||||
|
#Pool name
|
||||||
|
sudo sed -i "s#\[www\]#[$POOL_NAME]#" "$NEW_POOL_FILE"
|
||||||
|
}
|
||||||
|
|
||||||
setupPool() {
|
setupPool() {
|
||||||
POOL_FILE=$1
|
POOL_FILE=$1
|
||||||
@ -19,29 +41,28 @@ setupPool() {
|
|||||||
#Set pool manager
|
#Set pool manager
|
||||||
sudo sed -i 's#pm = dynamic#pm = static#' "$POOL_FILE"
|
sudo sed -i 's#pm = dynamic#pm = static#' "$POOL_FILE"
|
||||||
|
|
||||||
#Make copies and create new socket pools
|
#Create new socket pools
|
||||||
for ((c = 1; c <= MAX_POOLS; c++)); do
|
for ((c = 1; c <= MAX_POOLS; c++)); do
|
||||||
POOL_NAME="socket$c"
|
POOL_NAME="socket$c"
|
||||||
NEW_POOL_FILE="$POOL_DIR/${POOL_NAME}.conf"
|
POOL_SOCKET="/run/php/php${PHP_VERSION}-fpm-${POOL_NAME}.sock"
|
||||||
sudo cp "$POOL_FILE" "$NEW_POOL_FILE"
|
copyPool "$POOL_FILE" "$POOL_NAME" "$POOL_SOCKET" "static"
|
||||||
|
|
||||||
sudo sed -i "s#listen =.*#listen = /run/php/php${PHP_VERSION}-fpm-${POOL_NAME}.sock#" "$NEW_POOL_FILE"
|
|
||||||
sudo sed -i "s#\[www\]#[$POOL_NAME]#" "$NEW_POOL_FILE"
|
|
||||||
done
|
done
|
||||||
|
|
||||||
#Make copies and create HTTP pools
|
#Create TCP port based pools
|
||||||
#Division on 1 is required to convert from float to integer
|
#Division on 1 is required to convert from float to integer
|
||||||
START_PORT=$(echo "(9000 + $PHP_VERSION * 100)/1" | bc)
|
START_PORT=$(echo "($MIN_PORT + $PHP_VERSION * 100 + 1)/1" | bc)
|
||||||
for ((c = 1; c <= MAX_PORTS; c++)); do
|
for ((c = 1; c <= MAX_PORTS; c++)); do
|
||||||
POOL_NAME="http$c"
|
POOL_NAME="port$c"
|
||||||
POOL_PORT=$(echo "($START_PORT + $c)/1" | bc)
|
POOL_PORT=$(echo "($START_PORT + $c)/1" | bc)
|
||||||
NEW_POOL_FILE="$POOL_DIR/${POOL_NAME}.conf"
|
copyPool "$POOL_FILE" "$POOL_NAME" "$POOL_PORT" "static"
|
||||||
sudo cp "$POOL_FILE" "$NEW_POOL_FILE"
|
|
||||||
|
|
||||||
sudo sed -i "s#listen =.*#listen = $POOL_PORT#" "$NEW_POOL_FILE"
|
|
||||||
sudo sed -i "s#\[www\]#[$POOL_NAME]#" "$NEW_POOL_FILE"
|
|
||||||
done
|
done
|
||||||
|
|
||||||
|
#Create TCP IPv4 localhost pool
|
||||||
|
POOL_NAME="localhost"
|
||||||
|
POOL_PORT=$(echo "($MIN_PORT + $PHP_VERSION * 100)/1" | bc)
|
||||||
|
POOL_SOCKET="127.0.0.1:$POOL_PORT"
|
||||||
|
copyPool "$POOL_FILE" "$POOL_NAME" "$POOL_SOCKET" "static"
|
||||||
|
|
||||||
sudo service "php${PHP_VERSION}-fpm" restart
|
sudo service "php${PHP_VERSION}-fpm" restart
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -114,6 +135,7 @@ testStatusScriptSocket() {
|
|||||||
DATA=$(sudo bash "/etc/zabbix/zabbix_php_fpm_status.sh" "$PHP_POOL" "/php-fpm-status")
|
DATA=$(sudo bash "/etc/zabbix/zabbix_php_fpm_status.sh" "$PHP_POOL" "/php-fpm-status")
|
||||||
IS_OK=$(echo "$DATA" | grep -F '{"pool":"')
|
IS_OK=$(echo "$DATA" | grep -F '{"pool":"')
|
||||||
assertNotNull "Failed to get status from pool $PHP_POOL: $DATA" "$IS_OK"
|
assertNotNull "Failed to get status from pool $PHP_POOL: $DATA" "$IS_OK"
|
||||||
|
echo "Success test of $PHP_POOL"
|
||||||
}
|
}
|
||||||
|
|
||||||
testStatusScriptPort() {
|
testStatusScriptPort() {
|
||||||
@ -124,6 +146,7 @@ testStatusScriptPort() {
|
|||||||
DATA=$(sudo bash "/etc/zabbix/zabbix_php_fpm_status.sh" "$PHP_POOL" "/php-fpm-status")
|
DATA=$(sudo bash "/etc/zabbix/zabbix_php_fpm_status.sh" "$PHP_POOL" "/php-fpm-status")
|
||||||
IS_OK=$(echo "$DATA" | grep -F '{"pool":"')
|
IS_OK=$(echo "$DATA" | grep -F '{"pool":"')
|
||||||
assertNotNull "Failed to get status from pool $PHP_POOL: $DATA" "$IS_OK"
|
assertNotNull "Failed to get status from pool $PHP_POOL: $DATA" "$IS_OK"
|
||||||
|
echo "Success test of $PHP_POOL"
|
||||||
}
|
}
|
||||||
|
|
||||||
testZabbixStatusSocket() {
|
testZabbixStatusSocket() {
|
||||||
@ -132,6 +155,7 @@ testZabbixStatusSocket() {
|
|||||||
DATA=$(zabbix_get -s 127.0.0.1 -p 10050 -k php-fpm.status["$PHP_POOL","/php-fpm-status"])
|
DATA=$(zabbix_get -s 127.0.0.1 -p 10050 -k php-fpm.status["$PHP_POOL","/php-fpm-status"])
|
||||||
IS_OK=$(echo "$DATA" | grep -F '{"pool":"')
|
IS_OK=$(echo "$DATA" | grep -F '{"pool":"')
|
||||||
assertNotNull "Failed to get status from pool $PHP_POOL: $DATA" "$IS_OK"
|
assertNotNull "Failed to get status from pool $PHP_POOL: $DATA" "$IS_OK"
|
||||||
|
echo "Success test of $PHP_POOL"
|
||||||
}
|
}
|
||||||
|
|
||||||
testZabbixStatusPort() {
|
testZabbixStatusPort() {
|
||||||
@ -141,6 +165,7 @@ testZabbixStatusPort() {
|
|||||||
DATA=$(zabbix_get -s 127.0.0.1 -p 10050 -k php-fpm.status["$PHP_POOL","/php-fpm-status"])
|
DATA=$(zabbix_get -s 127.0.0.1 -p 10050 -k php-fpm.status["$PHP_POOL","/php-fpm-status"])
|
||||||
IS_OK=$(echo "$DATA" | grep -F '{"pool":"')
|
IS_OK=$(echo "$DATA" | grep -F '{"pool":"')
|
||||||
assertNotNull "Failed to get status from pool $PHP_POOL: $DATA" "$IS_OK"
|
assertNotNull "Failed to get status from pool $PHP_POOL: $DATA" "$IS_OK"
|
||||||
|
echo "Success test of $PHP_POOL"
|
||||||
}
|
}
|
||||||
|
|
||||||
testDiscoverScriptReturnsData() {
|
testDiscoverScriptReturnsData() {
|
||||||
@ -152,8 +177,7 @@ testDiscoverScriptReturnsData() {
|
|||||||
testDiscoverScriptDebug() {
|
testDiscoverScriptDebug() {
|
||||||
DATA=$(sudo bash "/etc/zabbix/zabbix_php_fpm_discovery.sh" "debug" "/php-fpm-status")
|
DATA=$(sudo bash "/etc/zabbix/zabbix_php_fpm_discovery.sh" "debug" "/php-fpm-status")
|
||||||
ERRORS_LIST=$(echo "$DATA" | grep -F 'Error:')
|
ERRORS_LIST=$(echo "$DATA" | grep -F 'Error:')
|
||||||
assertNull "Discover script errors: $DATA" "$ERRORS_LIST"
|
assertNull "Discover script errors: $ERRORS_LIST" "$ERRORS_LIST"
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
testZabbixDiscoverReturnsData() {
|
testZabbixDiscoverReturnsData() {
|
||||||
@ -162,14 +186,21 @@ testZabbixDiscoverReturnsData() {
|
|||||||
assertNotNull "Discover script failed: $DATA" "$IS_OK"
|
assertNotNull "Discover script failed: $DATA" "$IS_OK"
|
||||||
}
|
}
|
||||||
|
|
||||||
testZabbixDiscoverSimilarSocketPoolNames() {
|
testZabbixDiscoverNumberOfSocketPools() {
|
||||||
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"])
|
||||||
NUMBER_OF_POOLS=$(echo "$DATA" | grep -o -F '{"{#POOLNAME}":"socket1",' | wc -l)
|
NUMBER_OF_POOLS=$(echo "$DATA" | grep -o -F '{"{#POOLNAME}":"socket1",' | wc -l)
|
||||||
PHP_COUNT=$(getNumberOfPHPVersions)
|
PHP_COUNT=$(getNumberOfPHPVersions)
|
||||||
assertEquals "Number of pools mismatch" "$PHP_COUNT" "$NUMBER_OF_POOLS"
|
assertEquals "Number of pools mismatch" "$PHP_COUNT" "$NUMBER_OF_POOLS"
|
||||||
}
|
}
|
||||||
|
|
||||||
testZabbixDiscoverSimilarHttpPoolNames() {
|
testZabbixDiscoverNumberOfIPPools() {
|
||||||
|
DATA=$(zabbix_get -s 127.0.0.1 -p 10050 -k php-fpm.discover["/php-fpm-status"])
|
||||||
|
NUMBER_OF_POOLS=$(echo "$DATA" | grep -o -F '{"{#POOLNAME}":"localhost",' | wc -l)
|
||||||
|
PHP_COUNT=$(getNumberOfPHPVersions)
|
||||||
|
assertEquals "Number of pools mismatch" "$PHP_COUNT" "$NUMBER_OF_POOLS"
|
||||||
|
}
|
||||||
|
|
||||||
|
testZabbixDiscoverNumberOfPortPools() {
|
||||||
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"])
|
||||||
NUMBER_OF_POOLS=$(echo "$DATA" | grep -o -F '{"{#POOLNAME}":"http1",' | wc -l)
|
NUMBER_OF_POOLS=$(echo "$DATA" | grep -o -F '{"{#POOLNAME}":"http1",' | wc -l)
|
||||||
PHP_COUNT=$(getNumberOfPHPVersions)
|
PHP_COUNT=$(getNumberOfPHPVersions)
|
||||||
|
Loading…
Reference in New Issue
Block a user