diff --git a/.github/workflows/ci-smoke-linux.yml b/.github/workflows/ci-smoke-linux.yml index 42a0de7e..364b6cc1 100644 --- a/.github/workflows/ci-smoke-linux.yml +++ b/.github/workflows/ci-smoke-linux.yml @@ -195,6 +195,13 @@ jobs: make test-smoke-framework-wordpress if: success() || failure() + - name: "Test Container" + shell: bash + run: | + cd .tests/ + make test-smoke-container + if: success() || failure() + # ------------------------------------------------------------ # Finish # ------------------------------------------------------------ diff --git a/.github/workflows/test-config.yml b/.github/workflows/test-config.yml index 881f380d..2a922884 100644 --- a/.github/workflows/test-config.yml +++ b/.github/workflows/test-config.yml @@ -209,6 +209,13 @@ jobs: make test-smoke-framework-wordpress if: success() || failure() + - name: "Test Container" + shell: bash + run: | + cd .tests/ + make test-smoke-container + if: success() || failure() + # ------------------------------------------------------------ # Finish # ------------------------------------------------------------ diff --git a/.github/workflows/test-versions.yml b/.github/workflows/test-versions.yml index 93c73f0f..2f7683fb 100644 --- a/.github/workflows/test-versions.yml +++ b/.github/workflows/test-versions.yml @@ -266,6 +266,13 @@ jobs: make test-smoke-framework-wordpress if: success() || failure() + - name: "Test Container" + shell: bash + run: | + cd .tests/ + make test-smoke-container + if: success() || failure() + # ------------------------------------------------------------ # Finish # ------------------------------------------------------------ diff --git a/.tests/Makefile b/.tests/Makefile index a5df37b6..d6643f91 100644 --- a/.tests/Makefile +++ b/.tests/Makefile @@ -161,6 +161,13 @@ test-smoke-framework-wordpress: $(PWD)/tests/framework-wordpress.sh +### +### Container +### +test-smoke-container: + $(PWD)/tests/container-mysql.sh + + # ------------------------------------------------------------------------------------------------- # Helper Targets # ------------------------------------------------------------------------------------------------- diff --git a/.tests/tests/container-mysql.sh b/.tests/tests/container-mysql.sh new file mode 100755 index 00000000..72b802e6 --- /dev/null +++ b/.tests/tests/container-mysql.sh @@ -0,0 +1,103 @@ +#!/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=("") + + +echo +echo "# --------------------------------------------------------------------------------------------------" +echo "# [Container] MySQL" +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 +### +MYSQL_ROOT_PASSWORD="$( "${SCRIPT_PATH}/../scripts/env-getvar.sh" "MYSQL_ROOT_PASSWORD" )" + +DB_NAME="my_db" +TBL_NAME="my_table" + +ROWS=2000 # how many insert statements +GROUPED=1000 # how many grouped inserts: INSERT INTO tbl VALUES ('1') ('2') ('3'); +DATALEN=200 # Length of the data per value + + +# Install pipe viewer +run "docker-compose exec --user root -T php bash -c 'apt update && apt install -y pv'" "${RETRIES}" "${DVLBOX_PATH}" + +# Drop database +run "docker-compose exec --user devilbox -T php bash -c 'mysql --host=mysql --user=root --password='\\''${MYSQL_ROOT_PASSWORD}'\\'' -e '\\''DROP DATABASE IF EXISTS ${DB_NAME};'\\'''" "${RETRIES}" "${DVLBOX_PATH}" + +# Delete mysql.sql file +run "docker-compose exec --user devilbox -T php bash -c 'rm -f /home/devilbox/mysql.sql'" "${RETRIES}" "${DVLBOX_PATH}" + +# Create SQL File +run "docker-compose exec --user devilbox -T php bash -c ' +( + echo \"CREATE DATABASE ${DB_NAME} COLLATE '\\''utf8mb4_bin'\\'';\"; + echo \"USE ${DB_NAME};\"; + echo \"CREATE TABLE ${TBL_NAME} ( + id int unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY, + dt varchar(256) COLLATE '\\''utf8mb4_bin'\\'' NOT NULL + );\"; + + >&2 printf \"Creating random mysql.sql file: \"; + + for i in \$(seq ${ROWS}); do + + MY_VAL=\$(openssl rand -hex ${DATALEN}); + MY_VAL=\${MY_VAL:$((DATALEN-1))}; + + echo \"INSERT INTO ${TBL_NAME} (dt) VALUES\"; + for num in \$( seq $((GROUPED-1)) ); do + echo \" ('\\''\${i}-\${num} \${MY_VAL}'\\''), \"; + done + echo \" ('\\''\${i}-\${GROUPED} \${MY_VAL}'\\''); \"; + >&2 printf \".\"; + done; +) > /home/devilbox/mysql.sql +'" "${RETRIES}" "${DVLBOX_PATH}" +printf "\\n" +run "docker-compose exec --user devilbox -T php bash -c 'ls -lap /home/devilbox/mysql.sql'" "${RETRIES}" "${DVLBOX_PATH}" + +# Import SQL file +run "docker-compose exec --user devilbox -T php bash -c 'pv -f -i 1 -p -t -e /home/devilbox/mysql.sql | mysql --host=mysql --user=root --password='\\''${MYSQL_ROOT_PASSWORD}'\\'''" "${RETRIES}" "${DVLBOX_PATH}" + +# Compare inserted rows +COUNT="$( run "docker-compose exec --user devilbox -T php bash -c 'mysql --host=mysql --user=root --password='\\''${MYSQL_ROOT_PASSWORD}'\\'' -e '\\''SELECT COUNT(*) AS cnt FROM ${DB_NAME}.${TBL_NAME};'\\''' | grep -Ei '[0-9]+'" "1" "${DVLBOX_PATH}" )" +COUNT="$( echo "${COUNT}" | grep -Eo '[0-9]+' )" + +if [ "${COUNT}" -ne "$(( ROWS * GROUPED ))" ]; then + >&2 echo "Error, Expected rows $(( ROWS * GROUPED )), found rows: ${COUNT}" + exit 1 +fi +echo "Success, Expected rows $(( ROWS * GROUPED )), found rows: ${COUNT}" diff --git a/.travis.yml b/.travis.yml index 5987b4c8..1612d473 100644 --- a/.travis.yml +++ b/.travis.yml @@ -365,5 +365,6 @@ script: retry make test-smoke-autostart && retry make test-smoke-framework-cakephp && retry make test-smoke-framework-drupal && - retry make test-smoke-framework-wordpress; + retry make test-smoke-framework-wordpress && + retry make test-smoke-container; fi diff --git a/CHANGELOG.md b/CHANGELOG.md index 99f610cd..c667b9c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ major versions. #### Added - [#654](https://github.com/cytopia/devilbox/issues/654) Added Opcache Control Panel +- Integration tests for MySQL Docker image ## Release v1.4.0 (2020-01-02)