From 27d55ad8119196a8bd59621421b57e9523baa24a Mon Sep 17 00:00:00 2001 From: Ramil Valitov Date: Mon, 29 Jun 2020 12:42:42 +0300 Subject: [PATCH] [add] tests for localhost --- tests/all.sh | 67 ++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 49 insertions(+), 18 deletions(-) diff --git a/tests/all.sh b/tests/all.sh index 3a29aa5..e4842d8 100644 --- a/tests/all.sh +++ b/tests/all.sh @@ -5,6 +5,28 @@ MAX_POOLS=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() { POOL_FILE=$1 @@ -19,29 +41,28 @@ setupPool() { #Set pool manager 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 POOL_NAME="socket$c" - NEW_POOL_FILE="$POOL_DIR/${POOL_NAME}.conf" - sudo cp "$POOL_FILE" "$NEW_POOL_FILE" - - 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" + POOL_SOCKET="/run/php/php${PHP_VERSION}-fpm-${POOL_NAME}.sock" + copyPool "$POOL_FILE" "$POOL_NAME" "$POOL_SOCKET" "static" done - #Make copies and create HTTP pools + #Create TCP port based pools #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 - POOL_NAME="http$c" + POOL_NAME="port$c" POOL_PORT=$(echo "($START_PORT + $c)/1" | bc) - NEW_POOL_FILE="$POOL_DIR/${POOL_NAME}.conf" - 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" + copyPool "$POOL_FILE" "$POOL_NAME" "$POOL_PORT" "static" 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 } @@ -114,6 +135,7 @@ testStatusScriptSocket() { DATA=$(sudo bash "/etc/zabbix/zabbix_php_fpm_status.sh" "$PHP_POOL" "/php-fpm-status") IS_OK=$(echo "$DATA" | grep -F '{"pool":"') assertNotNull "Failed to get status from pool $PHP_POOL: $DATA" "$IS_OK" + echo "Success test of $PHP_POOL" } testStatusScriptPort() { @@ -124,6 +146,7 @@ testStatusScriptPort() { DATA=$(sudo bash "/etc/zabbix/zabbix_php_fpm_status.sh" "$PHP_POOL" "/php-fpm-status") IS_OK=$(echo "$DATA" | grep -F '{"pool":"') assertNotNull "Failed to get status from pool $PHP_POOL: $DATA" "$IS_OK" + echo "Success test of $PHP_POOL" } 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"]) IS_OK=$(echo "$DATA" | grep -F '{"pool":"') assertNotNull "Failed to get status from pool $PHP_POOL: $DATA" "$IS_OK" + echo "Success test of $PHP_POOL" } 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"]) IS_OK=$(echo "$DATA" | grep -F '{"pool":"') assertNotNull "Failed to get status from pool $PHP_POOL: $DATA" "$IS_OK" + echo "Success test of $PHP_POOL" } testDiscoverScriptReturnsData() { @@ -152,8 +177,7 @@ testDiscoverScriptReturnsData() { testDiscoverScriptDebug() { DATA=$(sudo bash "/etc/zabbix/zabbix_php_fpm_discovery.sh" "debug" "/php-fpm-status") ERRORS_LIST=$(echo "$DATA" | grep -F 'Error:') - assertNull "Discover script errors: $DATA" "$ERRORS_LIST" - + assertNull "Discover script errors: $ERRORS_LIST" "$ERRORS_LIST" } testZabbixDiscoverReturnsData() { @@ -162,14 +186,21 @@ testZabbixDiscoverReturnsData() { 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"]) NUMBER_OF_POOLS=$(echo "$DATA" | grep -o -F '{"{#POOLNAME}":"socket1",' | wc -l) PHP_COUNT=$(getNumberOfPHPVersions) 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"]) NUMBER_OF_POOLS=$(echo "$DATA" | grep -o -F '{"{#POOLNAME}":"http1",' | wc -l) PHP_COUNT=$(getNumberOfPHPVersions)