diff --git a/.docker/php53/Dockerfile b/.docker/php53/Dockerfile index fa7261082..38bf19a67 100644 --- a/.docker/php53/Dockerfile +++ b/.docker/php53/Dockerfile @@ -1,12 +1,20 @@ -FROM buildpack-deps:jessie +FROM buildpack-deps:jessie as php53 ENV PHP_VERSION 5.3.29 +RUN set -eux; \ + codename='jessie'; \ + { \ + echo "deb http://archive.debian.org/debian ${codename} main"; \ + echo "deb http://archive.debian.org/debian ${codename}-backports main"; \ + echo "deb http://archive.debian.org/debian-security ${codename}/updates main"; \ + } > /etc/apt/sources.list; + # php 5.3 needs older autoconf RUN set -eux; \ \ apt-get update; \ - apt-get install -y \ + apt-get install -y --force-yes --no-upgrade --no-install-recommends \ curl \ autoconf2.13 \ ; \ @@ -18,7 +26,7 @@ RUN set -eux; \ dpkg -i bison_2.7.1.dfsg-1_amd64.deb; \ rm *.deb; \ \ - curl -sSLf "https://php.net/get/php-$PHP_VERSION.tar.bz2/from/this/mirror" -o php.tar.bz2; \ + curl --insecure -sSLf "https://php.net/get/php-$PHP_VERSION.tar.bz2/from/this/mirror" -o php.tar.bz2; \ echo 'c4e1cf6972b2a9c7f2777a18497d83bf713cdbecabb65d3ff62ba441aebb0091 php.tar.bz2' | sha256sum -cw --status; \ \ mkdir -p /usr/src/php; \ @@ -32,6 +40,8 @@ RUN set -eux; \ --with-pdo-mysql \ --with-zlib \ --enable-mbstring \ + --with-openssl=/usr \ + --with-libdir=lib/x86_64-linux-gnu \ ; \ make -j"$(nproc)"; \ make install; \ @@ -40,9 +50,56 @@ RUN set -eux; \ bison \ libbison-dev \ ; \ - apt-get purge -y --auto-remove \ + apt-get purge -y --force-yes --auto-remove \ autoconf2.13 \ ; \ rm -r /usr/src/php CMD ["php", "-a"] + +FROM php53 + +# Install APC PHP extension +# +RUN set -eux; \ + \ + pecl install apc-3.1.13; \ + echo 'extension=apc.so' >> /usr/local/lib/php.ini; \ + \ + rm -r /tmp/pear; + +# Install composer +# +RUN set -eux; \ + composerVersion='1.10.27'; \ + installerUrl='https://raw.githubusercontent.com/composer/getcomposer.org/a19025d6c0a1ff9fc1fac341128b2823193be462/web/installer'; \ + \ + curl --insecure -sSLf "${installerUrl}" -o /usr/local/bin/composer-installer.php; \ + echo '203196aedb1a3b0f563363796bbf6f647a4f8c2419bc1dfc5aa45adc1725025d /usr/local/bin/composer-installer.php' \ + | sha256sum -cw --status; \ + \ + { \ + echo '#! /usr/bin/env php'; \ + cat /usr/local/bin/composer-installer.php; \ + } > /usr/local/bin/composer-installer; \ + rm /usr/local/bin/composer-installer.php; \ + chmod +x /usr/local/bin/composer-installer; \ + \ + composer-installer \ + --disable-tls \ + --version="${composerVersion}" \ + --filename=composer \ + --install-dir=/usr/local/bin \ + ; \ + \ + echo '230d28fb29f3c6c07ab2382390bef313e36de17868b2bd23b2e070554cae23d2 /usr/local/bin/composer' \ + | sha256sum -cw --status; \ + \ + composer --version; \ + \ + apt-get update; \ + apt-get install -y --force-yes --no-upgrade --no-install-recommends \ + git \ + ; \ + rm -r /var/lib/apt/lists/*; \ + :; diff --git a/.docker/php54/Dockerfile b/.docker/php54/Dockerfile index 91baa8c85..b330bcdb0 100644 --- a/.docker/php54/Dockerfile +++ b/.docker/php54/Dockerfile @@ -1,5 +1,92 @@ FROM php:5.4-cli +RUN set -eux; \ + codename='jessie'; \ + { \ + echo "deb http://archive.debian.org/debian ${codename} main"; \ + echo "deb http://archive.debian.org/debian ${codename}-backports main"; \ + echo "deb http://archive.debian.org/debian-security ${codename}/updates main"; \ + } > /etc/apt/sources.list; + +RUN set -eux; \ + apt-get update; \ + apt-get install -y --force-yes --no-upgrade --no-install-recommends \ + ca-certificates \ + ; \ + \ + apt-get clean; \ + rm -rf /var/lib/apt/lists/*; \ + :; + RUN docker-php-ext-install pdo RUN docker-php-ext-install pdo_mysql RUN docker-php-ext-install mbstring + +# Install APC PHP extension +# +RUN set -eux; \ + pecl install apc-3.1.13; \ + docker-php-ext-enable apc; \ + rm -r /tmp/pear; + +# Install memcache PHP extension +# +ARG MEMCACHE_VERSION +RUN set -eux; \ + buildDeps=' \ + libzip-dev \ + '; \ + apt-get update; \ + apt-get install -y --force-yes --no-upgrade --no-install-recommends \ + $buildDeps \ + ; \ + \ + pecl install memcache-${MEMCACHE_VERSION}; \ + docker-php-ext-enable memcache; \ + \ + apt-get purge -y --force-yes --auto-remove -o APT::AutoRemove::RecommendsImportant=true \ + $buildDeps \ + ; \ + apt-get clean; \ + rm -rf /var/lib/apt/lists/*; \ + rm -r /tmp/pear + +# Install composer +# +RUN set -eux; \ + composerVersion='1.10.27'; \ + installerUrl='https://raw.githubusercontent.com/composer/getcomposer.org/a19025d6c0a1ff9fc1fac341128b2823193be462/web/installer'; \ + \ + curl --insecure -sSLf "${installerUrl}" -o /usr/local/bin/composer-installer.php; \ + echo '203196aedb1a3b0f563363796bbf6f647a4f8c2419bc1dfc5aa45adc1725025d /usr/local/bin/composer-installer.php' \ + | sha256sum -cw --status; \ + \ + { \ + echo '#! /usr/bin/env php'; \ + cat /usr/local/bin/composer-installer.php; \ + } > /usr/local/bin/composer-installer; \ + rm /usr/local/bin/composer-installer.php; \ + chmod +x /usr/local/bin/composer-installer; \ + \ + composer-installer \ + --disable-tls \ + --version="${composerVersion}" \ + --filename=composer \ + --install-dir=/usr/local/bin \ + ; \ + \ + echo '230d28fb29f3c6c07ab2382390bef313e36de17868b2bd23b2e070554cae23d2 /usr/local/bin/composer' \ + | sha256sum -cw --status; \ + \ + composer --version; \ + \ + apt-get update; \ + apt-get install -y --force-yes --no-upgrade --no-install-recommends \ + git \ + libzip-dev \ + unzip \ + ; \ + rm -r /var/lib/apt/lists/*; \ + \ + docker-php-ext-install zip; \ + :; diff --git a/.docker/php55_71/Dockerfile b/.docker/php55_71/Dockerfile index 7c901b83a..9438ad49f 100644 --- a/.docker/php55_71/Dockerfile +++ b/.docker/php55_71/Dockerfile @@ -1,6 +1,98 @@ ARG PHP_TAG FROM php:${PHP_TAG} +RUN set -eux; \ + codename='jessie'; \ + { \ + echo "deb http://archive.debian.org/debian ${codename} main"; \ + echo "deb http://archive.debian.org/debian ${codename}-backports main"; \ + echo "deb http://archive.debian.org/debian-security ${codename}/updates main"; \ + } > /etc/apt/sources.list; + +RUN set -eux; \ + apt-get update; \ + apt-get install -y --force-yes --no-upgrade --no-install-recommends \ + ca-certificates \ + ; \ + \ + apt-get clean; \ + rm -rf /var/lib/apt/lists/*; \ + :; + RUN docker-php-ext-install pdo RUN docker-php-ext-install pdo_mysql RUN docker-php-ext-install mbstring + +# Install APCu PHP extension +# +ARG APCU_VERSION +RUN set -eux; \ + \ + test x"" = x"${APCU_VERSION}" || { \ + pecl install apcu-${APCU_VERSION}; \ + docker-php-ext-enable apcu; \ + \ + rm -r /tmp/pear; \ + } + +# Install memcache PHP extension +# +ARG MEMCACHE_VERSION +RUN set -eux; \ + buildDeps=' \ + libzip-dev \ + '; \ + apt-get update; \ + apt-get install -y --force-yes --no-upgrade --no-install-recommends \ + $buildDeps \ + ; \ + \ + pecl install memcache-${MEMCACHE_VERSION}; \ + docker-php-ext-enable memcache; \ + \ + apt-get purge -y --force-yes --auto-remove -o APT::AutoRemove::RecommendsImportant=true \ + $buildDeps \ + ; \ + apt-get clean; \ + rm -rf /var/lib/apt/lists/*; \ + rm -r /tmp/pear + +# Install composer +# +RUN set -eux; \ + composerVersion='1.10.27'; \ + installerUrl='https://raw.githubusercontent.com/composer/getcomposer.org/a19025d6c0a1ff9fc1fac341128b2823193be462/web/installer'; \ + \ + curl --insecure -sSLf "${installerUrl}" -o /usr/local/bin/composer-installer.php; \ + echo '203196aedb1a3b0f563363796bbf6f647a4f8c2419bc1dfc5aa45adc1725025d /usr/local/bin/composer-installer.php' \ + | sha256sum -cw --status; \ + \ + { \ + echo '#! /usr/bin/env php'; \ + cat /usr/local/bin/composer-installer.php; \ + } > /usr/local/bin/composer-installer; \ + rm /usr/local/bin/composer-installer.php; \ + chmod +x /usr/local/bin/composer-installer; \ + \ + composer-installer \ + --disable-tls \ + --version="${composerVersion}" \ + --filename=composer \ + --install-dir=/usr/local/bin \ + ; \ + \ + echo '230d28fb29f3c6c07ab2382390bef313e36de17868b2bd23b2e070554cae23d2 /usr/local/bin/composer' \ + | sha256sum -cw --status; \ + \ + composer --version; \ + \ + apt-get update; \ + apt-get install -y --force-yes --no-upgrade --no-install-recommends \ + git \ + libzip-dev \ + unzip \ + ; \ + rm -r /var/lib/apt/lists/*; \ + \ + docker-php-ext-install zip; \ + :; diff --git a/.docker/php72_73/Dockerfile b/.docker/php72_73/Dockerfile index 1cc2965f5..8e8864668 100644 --- a/.docker/php72_73/Dockerfile +++ b/.docker/php72_73/Dockerfile @@ -5,6 +5,40 @@ RUN docker-php-ext-install pdo RUN docker-php-ext-install pdo_mysql RUN docker-php-ext-install mbstring +# Install APCu PHP extension +# +ARG APCU_VERSION +RUN set -eux; \ + \ + test x"" = x"${APCU_VERSION}" || { \ + pecl install apcu-${APCU_VERSION}; \ + docker-php-ext-enable apcu; \ + \ + rm -r /tmp/pear; \ + } + +# Install memcache PHP extension +# +ARG MEMCACHE_VERSION +RUN set -eux; \ + buildDeps=' \ + libzip-dev \ + '; \ + apt-get update; \ + apt-get install -y --force-yes --no-upgrade --no-install-recommends \ + $buildDeps \ + ; \ + \ + pecl install memcache-${MEMCACHE_VERSION}; \ + docker-php-ext-enable memcache; \ + \ + apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=true \ + $buildDeps \ + ; \ + apt-get clean; \ + rm -rf /var/lib/apt/lists/*; \ + rm -r /tmp/pear + # For consistent mime type file guesser RUN set -eux; \ distFilePath=`which file`; \ @@ -20,3 +54,43 @@ RUN set -eux; \ \ file /bin/ls --mime | grep application/x-executable; \ :; + +# Install composer +# +RUN set -eux; \ + composerVersion='1.10.27'; \ + installerUrl='https://raw.githubusercontent.com/composer/getcomposer.org/a19025d6c0a1ff9fc1fac341128b2823193be462/web/installer'; \ + \ + curl --insecure -sSLf "${installerUrl}" -o /usr/local/bin/composer-installer.php; \ + echo '203196aedb1a3b0f563363796bbf6f647a4f8c2419bc1dfc5aa45adc1725025d /usr/local/bin/composer-installer.php' \ + | sha256sum -cw --status; \ + \ + { \ + echo '#! /usr/bin/env php'; \ + cat /usr/local/bin/composer-installer.php; \ + } > /usr/local/bin/composer-installer; \ + rm /usr/local/bin/composer-installer.php; \ + chmod +x /usr/local/bin/composer-installer; \ + \ + composer-installer \ + --disable-tls \ + --version="${composerVersion}" \ + --filename=composer \ + --install-dir=/usr/local/bin \ + ; \ + \ + echo '230d28fb29f3c6c07ab2382390bef313e36de17868b2bd23b2e070554cae23d2 /usr/local/bin/composer' \ + | sha256sum -cw --status; \ + \ + composer --version; \ + \ + apt-get update; \ + apt-get install -y --force-yes --no-upgrade --no-install-recommends \ + git \ + libzip-dev \ + unzip \ + ; \ + rm -r /var/lib/apt/lists/*; \ + \ + docker-php-ext-install zip; \ + :; diff --git a/.docker/php74_82/Dockerfile b/.docker/php74_82/Dockerfile deleted file mode 100644 index 7d13d7c82..000000000 --- a/.docker/php74_82/Dockerfile +++ /dev/null @@ -1,34 +0,0 @@ -ARG PHP_VERSION -FROM php:${PHP_VERSION}-cli - -RUN docker-php-ext-install pdo -RUN docker-php-ext-install pdo_mysql - -# Install mbstring PHP extension -# -RUN set -eux; \ - apt-get update; \ - apt-get install -y --no-upgrade --no-install-recommends \ - libonig-dev \ - ; \ - \ - apt-get clean; \ - rm -rf /var/lib/apt/lists/*; \ - \ - docker-php-ext-install mbstring - -# For consistent mime type file guesser -RUN set -eux; \ - distFilePath=`which file`; \ - \ - mv ${distFilePath} ${distFilePath}.dist; \ - { \ - echo '#! /bin/sh -eu'; \ - echo ''; \ - echo "${distFilePath}"'.dist "$@" | sed -e s,application/x-pie-executable,application/x-executable,g'; \ - } | tee ${distFilePath}; \ - \ - chmod +x ${distFilePath}; \ - \ - file /bin/ls --mime | grep application/x-executable; \ - :; diff --git a/.docker/php74_83/Dockerfile b/.docker/php74_83/Dockerfile new file mode 100644 index 000000000..8e134233d --- /dev/null +++ b/.docker/php74_83/Dockerfile @@ -0,0 +1,108 @@ +ARG PHP_VERSION +FROM php:${PHP_VERSION}-cli + +RUN docker-php-ext-install pdo +RUN docker-php-ext-install pdo_mysql + +# Install mbstring PHP extension +# +RUN set -eux; \ + apt-get update; \ + apt-get install -y --force-yes --no-upgrade --no-install-recommends \ + libonig-dev \ + ; \ + \ + apt-get clean; \ + rm -rf /var/lib/apt/lists/*; \ + \ + docker-php-ext-install mbstring + +# Install APCu PHP extension +# +ARG APCU_VERSION +RUN set -eux; \ + \ + test x"" = x"${APCU_VERSION}" || { \ + pecl install apcu-${APCU_VERSION}; \ + docker-php-ext-enable apcu; \ + \ + rm -r /tmp/pear; \ + } + +# Install memcache PHP extension +# +ARG MEMCACHE_VERSION +RUN set -eux; \ + buildDeps=' \ + libzip-dev \ + '; \ + apt-get update; \ + apt-get install -y --force-yes --no-upgrade --no-install-recommends \ + $buildDeps \ + ; \ + \ + pecl install memcache-${MEMCACHE_VERSION}; \ + docker-php-ext-enable memcache; \ + \ + apt-get purge -y --force-yes --auto-remove -o APT::AutoRemove::RecommendsImportant=true \ + $buildDeps \ + ; \ + apt-get clean; \ + rm -rf /var/lib/apt/lists/*; \ + rm -r /tmp/pear + +# For consistent mime type file guesser +RUN set -eux; \ + distFilePath=`which file`; \ + \ + mv ${distFilePath} ${distFilePath}.dist; \ + { \ + echo '#! /bin/sh -eu'; \ + echo ''; \ + echo "${distFilePath}"'.dist "$@" | sed -e s,application/x-pie-executable,application/x-executable,g'; \ + } | tee ${distFilePath}; \ + \ + chmod +x ${distFilePath}; \ + \ + file /bin/ls --mime | grep application/x-executable; \ + :; + +# Install composer +# +RUN set -eux; \ + composerVersion='1.10.27'; \ + installerUrl='https://raw.githubusercontent.com/composer/getcomposer.org/a19025d6c0a1ff9fc1fac341128b2823193be462/web/installer'; \ + \ + curl --insecure -sSLf "${installerUrl}" -o /usr/local/bin/composer-installer.php; \ + echo '203196aedb1a3b0f563363796bbf6f647a4f8c2419bc1dfc5aa45adc1725025d /usr/local/bin/composer-installer.php' \ + | sha256sum -cw --status; \ + \ + { \ + echo '#! /usr/bin/env php'; \ + cat /usr/local/bin/composer-installer.php; \ + } > /usr/local/bin/composer-installer; \ + rm /usr/local/bin/composer-installer.php; \ + chmod +x /usr/local/bin/composer-installer; \ + \ + composer-installer \ + --disable-tls \ + --version="${composerVersion}" \ + --filename=composer \ + --install-dir=/usr/local/bin \ + ; \ + \ + echo '230d28fb29f3c6c07ab2382390bef313e36de17868b2bd23b2e070554cae23d2 /usr/local/bin/composer' \ + | sha256sum -cw --status; \ + \ + composer --version; \ + \ + apt-get update; \ + apt-get install -y --force-yes --no-upgrade --no-install-recommends \ + git \ + libzip-dev \ + unzip \ + ; \ + rm -r /var/lib/apt/lists/*; \ + \ + docker-php-ext-install zip; \ + :; diff --git a/.gitignore b/.gitignore index 4a2fca764..dbe6fbd51 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,5 @@ tests/DoctrineTest/doctrine_tests/* /tests/tmp /tests/foo.sq3 /vendor/ +/var/ +/.env.* diff --git a/README.md b/README.md index eede636ae..11804ddfb 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,6 @@ Using [Composer](http://getcomposer.org/doc/00-intro.md) as dependency managemen composer install - Tests ----- @@ -35,7 +34,11 @@ Tests ### How to execute all tests on all supported PHP versions and dependencies? - tests/bin/test + test/bin/test + +### Want to do specific test ? Ask help with the option. + + test/bin/test --help ### When you finish your work day, do not forget to clean up your desk diff --git a/docker-compose.yml b/docker-compose.yml index 9c36afacc..b2466a08a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,23 +4,14 @@ volumes: db_socket: services: - composer: - image: composer - working_dir: /app - volumes: - - .:/app - entrypoint: - - sh - - -c - - | - exec tail -f /dev/null - php53: build: .docker/php53 working_dir: /app/tests volumes: - .:/app - db_socket:/var/run/mysqld + environment: + COMPOSER_HOME: /app/var/cache/composer entrypoint: - sh - -c @@ -31,13 +22,22 @@ services: echo 'short_open_tag = off' echo 'magic_quotes_gpc = off' echo 'date.timezone = "UTC"' + echo 'apc.enable_cli = on' + echo 'apc.use_request_time = 0' } | tee -a /usr/local/lib/php.ini exec tail -f /dev/null + depends_on: + - db php54: &services_php54 build: context: .docker/php54 + args: + MEMCACHE_VERSION: '3.0.8' + environment: + MEMCACHED_HOST: memcached + COMPOSER_HOME: /app/var/cache/composer working_dir: /app/tests volumes: - .:/app @@ -52,11 +52,14 @@ services: echo 'short_open_tag = off' echo 'magic_quotes_gpc = off' echo 'date.timezone = "UTC"' + echo 'apc.enable_cli = on' + echo 'apc.use_request_time = 0' } | tee -a /usr/local/etc/php/php.ini exec tail -f /dev/null depends_on: - db + - memcached php55: <<: *services_php54 @@ -64,6 +67,8 @@ services: context: .docker/php55_71 args: PHP_TAG: '5.5-cli' + MEMCACHE_VERSION: '3.0.8' + APCU_VERSION: '4.0.11' php56: <<: *services_php54 @@ -71,6 +76,8 @@ services: context: .docker/php55_71 args: PHP_TAG: '5.6-cli-jessie' + MEMCACHE_VERSION: '3.0.8' + APCU_VERSION: '4.0.11' php70: <<: *services_php54 @@ -78,6 +85,8 @@ services: context: .docker/php55_71 args: PHP_TAG: '7.0-cli-jessie' + MEMCACHE_VERSION: '4.0.5.2' + APCU_VERSION: '' php71: <<: *services_php54 @@ -85,6 +94,8 @@ services: context: .docker/php55_71 args: PHP_TAG: '7.1-cli-jessie' + MEMCACHE_VERSION: '4.0.5.2' + APCU_VERSION: '' php72: <<: *services_php54 @@ -92,6 +103,8 @@ services: context: .docker/php72_73 args: PHP_VERSION: '7.2' + MEMCACHE_VERSION: '4.0.5.2' + APCU_VERSION: '' php73: <<: *services_php54 @@ -99,34 +112,53 @@ services: context: .docker/php72_73 args: PHP_VERSION: '7.3' + MEMCACHE_VERSION: '4.0.5.2' + APCU_VERSION: '' php74: <<: *services_php54 build: - context: .docker/php74_82 + context: .docker/php74_83 args: PHP_VERSION: '7.4' + MEMCACHE_VERSION: '4.0.5.2' + APCU_VERSION: '' php80: <<: *services_php54 build: - context: .docker/php74_82 + context: .docker/php74_83 args: PHP_VERSION: '8.0' + MEMCACHE_VERSION: '8.0' + APCU_VERSION: '' php81: <<: *services_php54 build: - context: .docker/php74_82 + context: .docker/php74_83 args: PHP_VERSION: '8.1' + MEMCACHE_VERSION: '8.0' + APCU_VERSION: '' php82: <<: *services_php54 build: - context: .docker/php74_82 + context: .docker/php74_83 args: PHP_VERSION: '8.2' + MEMCACHE_VERSION: '8.0' + APCU_VERSION: '' + + php83: + <<: *services_php54 + build: + context: .docker/php74_83 + args: + PHP_VERSION: '8.3' + MEMCACHE_VERSION: '8.0' + APCU_VERSION: '' db: image: mysql:5.5.62 @@ -143,3 +175,6 @@ services: } | tee /docker-entrypoint-initdb.d/init.sql exec /usr/local/bin/docker-entrypoint.sh mysqld + + memcached: + image: memcached:1.6.13-alpine3.15 diff --git a/tests/bin/test b/tests/bin/test index 2df829884..201928b0e 100755 --- a/tests/bin/test +++ b/tests/bin/test @@ -1,76 +1,273 @@ #! /bin/sh -eu -# -# [] [] [] -# -# example: php70 -# One of highest (default), lowest -# -# Both arguments can be a space separated value. -# Example: "lowest highest" -# - -# Configuration -# -dependencyPreferences='highest' -skipPHPVersions='php8' - -# Commands -# -dcexec="docker-compose exec -u `id -u`:`id -g`" -composerUpdate='composer update --prefer-dist --optimize-autoloader' -doctrineTestSuite='run.php' - -# Parse arguments -# -phpVersions="${1-}" -dependencyPreferences="${2-${dependencyPreferences}}" -phpTestRuntime="${3-${doctrineTestSuite}}" - -script () -{ - echo - echo - echo $0 ${1} ${2} - echo - ${dcexec} ${1} php ${phpTestRuntime} -} - -scriptAll () -{ - for dependencyPreference in ${dependencyPreferences} - do - install_${dependencyPreference} - - for phpVersion in ${phpVersions} + +__DIR__=`dirname "$0"` +ROOT_DIR="${__DIR__}/../.." + +main () +{ + importEnvironmentVariablesFromDirectory "${ROOT_DIR}" + + configureWithArguments ${1+"$@"} + + startDockerComposeServices + + populatePHPVersions + + runTests +} + +printHelp () +{ + cat <...] + [--dependency-preference ...] + [--php-test-runtime ] + +Options: + --help Show this screen. + --php-versions Select specific php versions. [default: ${PHP_VERSIONS}] + Examples: + php53 + 'php53 php54' + --dependency-preference Select spectific dependency preference. [default: ${DEPENDENCY_PREFERENCES}] + Allows values: + - highest + - lowest + --php-test-runtime The endpoint command to run test. [default: ${PHP_TEST_RUNTIME}] + +Files: + There are a few configuration files to control certain aspects of operation. + + /.env + This is the default configuration file read on startup. + + /.env.local + This is the custom configuration file read on startup. + To be used to extends /.env with custom configuration. + +Examples: + + * How to execute all tests on all supported PHP versions and dependencies? + + $ test/bin/test + + * How to execute all tests on specific PHP version ? + + $ test/bin/test --php-versions 'php56 php74 php82' + + * How to execute all tests on lowest and highest dependency preference ? + + $ test/bin/test --dependency-preferences 'lowest highest' + + * How to customize the PHP test runtime ? + + $ test/bin/test --php-test-runtime index.php + + * When you finish your work day, do not forget to clean up your desk + + $ docker-compose down +EOF +} + +importEnvironmentVariablesFromDirectory () +{ + a_directory=${1} + + . "${a_directory}"/.env + + if test -r "${a_directory}"/.env.local; then + . "${a_directory}"/.env.local + else :; fi +} + +startDockerComposeServices () +{ + echo "+ ${DOCKER_COMPOSE} build" + ${DOCKER_COMPOSE} up -d --build --remove-orphans > /dev/null +} + +configureWithArguments () +{ + # Commands + # + DOCKER_COMPOSE_EXEC="${DOCKER_COMPOSE} exec -u `id -u`:`id -g`" + COMPOSER_UPDATE='composer update --working-dir=/app --prefer-dist --no-suggest --optimize-autoloader' + + # Default Options + # + DEPENDENCY_PREFERENCES='highest' + PHP_VERSIONS='all' + PHP_TEST_RUNTIME='run.php' + hasHelpOption=false + + parseOperands ${1+"$@"} + + if ${hasHelpOption}; then + printHelp + + exit 0 + else :; fi +} + +populatePHPVersions () +{ + if test x'all' = x"${PHP_VERSIONS}"; then + PHP_VERSIONS=`fetchAllPHPVersions` + else :; fi +} + +fetchAllPHPVersions () +{ + ${DOCKER_COMPOSE} 2>/dev/null ps --services --filter status=running \ + | grep php \ + | sort +} + +runTests () +{ + for dependencyPreference in ${DEPENDENCY_PREFERENCES} do - script ${phpVersion} ${dependencyPreference} + for phpVersion in ${PHP_VERSIONS} + do + runTestsForOnePhpVersionAndOneDependencyPreference ${phpVersion} ${dependencyPreference} + done done - done } -fetchAllPHPVersions () +runTestsForOnePhpVersionAndOneDependencyPreference () { - docker-compose 2>/dev/null ps --services --filter status=running \ - | grep php \ - | sort \ - | grep -v ${skipPHPVersions} + a_phpVersion=${1} + a_dependencyPreference=${2} + + echo + echo + echo $0 ${a_phpVersion} ${a_dependencyPreference} + echo + + install_${a_dependencyPreference} ${a_phpVersion} + + ${DOCKER_COMPOSE_EXEC} ${a_phpVersion} php ${PHP_TEST_RUNTIME} } install_highest () { - ${dcexec} composer ${composerUpdate} + b_service=${1} + + ${DOCKER_COMPOSE_EXEC} ${b_service} ${COMPOSER_UPDATE} } install_lowest () { - ${dcexec} composer ${composerUpdate} --prefer-lowest + c_service=${1} + + ${DOCKER_COMPOSE_EXEC} ${c_service} ${COMPOSER_UPDATE} --prefer-lowest } -echo '+ docker-compose build' -docker-compose up -d --build --remove-orphans > /dev/null +parseOperands () +{ + parseOperands_init -test x"" != x"${phpVersions}" || { - phpVersions=`fetchAllPHPVersions` + for parseOperands_currentOperand + do + if parseOperands_previousOptionNeedsValue; then + parseOperands_assignValueToVariableToSet + + continue + else :; fi + + parseOperands_extractValueFromCurrentOperand + + case ${parseOperands_endOfOptions}${parseOperands_currentOperand} in #( + --) + parseOperands_endOfOptions='yes' + ;; #( + --help) + hasHelpOption=${optionValue} + ;; #( + --php-versions) + variableToSet=PHP_VERSIONS + ;; #( + --php-versions=*) + PHP_VERSIONS=${optionValue} + ;; #( + --dependency-preferences) + variableToSet=DEPENDENCY_PREFERENCES + ;; #( + --dependency-preferences=*) + DEPENDENCY_PREFERENCES=${optionValue} + ;; #( + --php-test-runtime) + variableToSet=PHP_TEST_RUNTIME + ;; #( + --php-test-runtime=*) + PHP_TEST_RUNTIME=${optionValue} + ;; #( + # --flag-option) + # hasFlagOption=${optionValue} + # ;; #( + # --value-option) + # variableToSet=valueOption + # ;; #( + # --value-option=*) + # valueOption=${optionValue} + # ;; #( + -*) + : + ;; #( + *) + parseOperands_argumentPosition=`expr 1 \+ ${parseOperands_argumentPosition}` + + case ${parseOperands_argumentPosition} in #( + # 1) + # firstArgument=${parseOperands_currentOperand} + # ;; #( + *) + : + ;; + esac + ;; + esac + done +} + +parseOperands_init () +{ + variableToSet= + optionValue= + + parseOperands_endOfOptions= + parseOperands_argumentPosition=0 + parseOperands_operandEnabledValue=':' +} + +parseOperands_assignValueToVariableToSet () +{ + eval ${variableToSet}=\"${parseOperands_currentOperand}\" + + variableToSet= +} + +parseOperands_previousOptionNeedsValue () +{ + test x != x"${variableToSet}" +} + +parseOperands_extractValueFromCurrentOperand () +{ + case ${parseOperands_currentOperand} in #( + ?*=?*) + optionValue=`expr X"${parseOperands_currentOperand}" : X'[^=]*=\(.*\)'` + ;; #( + ?*=) + optionValue= + ;; #( + *) + optionValue=${parseOperands_operandEnabledValue} + ;; + esac } -scriptAll +main ${1+"$@"}