#!/usr/bin/env bash # NOTE: Parsing curl to tac to circumnvent "failed writing body" # https://stackoverflow.com/questions/16703647/why-curl-return-and-error-23-failed-writing-body set -e set -u set -o pipefail SCRIPT_PATH="$( cd "$(dirname "$0")" && pwd -P )" DVLBOX_PATH="$( cd "${SCRIPT_PATH}/../.." && pwd -P )" # shellcheck disable=SC1090 . "${SCRIPT_PATH}/../scripts/.lib.sh" RETRIES=10 DISABLED_VERSIONS=("5.2" "5.3" "5.4") echo echo "# --------------------------------------------------------------------------------------------------" echo "# [Vendor] phpRedmin" echo "# --------------------------------------------------------------------------------------------------" echo # ------------------------------------------------------------------------------------------------- # Pre-check # ------------------------------------------------------------------------------------------------- PHP_VERSION="$( get_php_version "${DVLBOX_PATH}" )" if [[ ${DISABLED_VERSIONS[*]} =~ ${PHP_VERSION} ]]; then printf "[SKIP] Skipping all checks for PHP %s\\n" "${PHP_VERSION}" exit 0 fi # ------------------------------------------------------------------------------------------------- # ENTRYPOINT # ------------------------------------------------------------------------------------------------- ### ### Get required env values ### HOST_PORT_HTTPD="$( "${SCRIPT_PATH}/../scripts/env-getvar.sh" "HOST_PORT_HTTPD" )" ### ### Ensure PHPRedmin works ### URL="/vendor/phpredmin/public/index.php" printf "[TEST] Fetch %s" "${URL}" if [ "$( run "\ curl -sS --fail 'http://localhost:${HOST_PORT_HTTPD}${URL}' \ | tac \ | tac \ | grep -Ec 'Strings|Hashes|Lists|Sets|Sorted Sets'" \ "${RETRIES}" "" "0" )" != "5" ]; then printf "\\r[FAIL] Fetch %s\\n" "${URL}" run "curl -sS 'http://localhost:${HOST_PORT_HTTPD}${URL}' || true" run "curl -sS -I 'http://localhost:${HOST_PORT_HTTPD}${URL}' || true" exit 1 else printf "\\r[OK] Fetch %s\\n" "${URL}" fi ### ### Ensure PHPRedmin works in subdirectory ### URL="/vendor/phpredmin/public/index.php/welcome/info/0/0" printf "[TEST] Fetch %s" "${URL}" if [ "$( run "\ curl -sS --fail 'http://localhost:${HOST_PORT_HTTPD}${URL}' \ | tac \ | tac \ | grep -Ec '(Version:)|(Mode:)|(Role:)|(OS:)|(Uptime:)'" \ "${RETRIES}" "" "0" )" != "5" ]; then printf "\\r[FAIL] Fetch %s\\n" "${URL}" run "curl -sS 'http://localhost:${HOST_PORT_HTTPD}${URL}' || true" run "curl -sS -I 'http://localhost:${HOST_PORT_HTTPD}${URL}' || true" exit 1 else printf "\\r[OK] Fetch %s\\n" "${URL}" fi