From db8acb9d8f6c9101e4756a08388c06ab16450db5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Tue, 26 Nov 2024 10:35:35 +0100 Subject: [PATCH] Run tests on PHP 8.3, update test suite and report failed assertions --- .github/workflows/ci.yml | 32 +++++++++++++++++++++----------- composer.json | 10 +++++++--- phpunit.xml.dist | 17 +++++++++++++---- phpunit.xml.legacy | 17 ++++++++++------- 4 files changed, 51 insertions(+), 25 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index be3d46e..8b188e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,9 +11,10 @@ jobs: strategy: matrix: os: - - ubuntu-20.04 - - windows-2019 + - ubuntu-24.04 + - windows-2022 php: + - 8.3 - 8.2 - 8.1 - 8.0 @@ -27,11 +28,14 @@ jobs: - 5.4 - 5.3 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: xdebug + ini-file: development + - run: composer config secure-http false && composer config repo.packagist composer http://packagist.org && composer config preferred-install source + if: ${{ matrix.php < 5.5 && matrix.os == 'windows-2022' }} # legacy PHP on Windows is allowed to use insecure downloads until it will be removed again - run: composer install - run: vendor/bin/phpunit --coverage-text if: ${{ matrix.php >= 7.3 }} @@ -41,14 +45,20 @@ jobs: PHPUnit-hhvm: name: PHPUnit (HHVM) - runs-on: ubuntu-18.04 + runs-on: ubuntu-24.04 continue-on-error: true steps: - - uses: actions/checkout@v2 - - uses: azjezz/setup-hhvm@v1 + - uses: actions/checkout@v4 + - run: cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM + - name: Run hhvm composer.phar install + uses: docker://hhvm/hhvm:3.30-lts-latest with: - version: lts-3.30 - - run: composer self-update --2.2 # downgrade Composer for HHVM - - run: hhvm $(which composer) install - - run: hhvm vendor/bin/phpunit - - run: hhvm examples/13-benchmark-throughput.php + args: hhvm composer.phar install + - name: Run hhvm vendor/bin/phpunit + uses: docker://hhvm/hhvm:3.30-lts-latest + with: + args: hhvm vendor/bin/phpunit + - name: Run hhvm examples/13-benchmark-throughput.php + uses: docker://hhvm/hhvm:3.30-lts-latest + with: + args: hhvm examples/13-benchmark-throughput.php diff --git a/composer.json b/composer.json index 32aa713..ad50b25 100644 --- a/composer.json +++ b/composer.json @@ -32,14 +32,18 @@ "react/stream": "^1.2" }, "require-dev": { - "phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35", + "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36", "react/socket": "^1.8", "sebastian/environment": "^5.0 || ^3.0 || ^2.0 || ^1.0" }, "autoload": { - "psr-4": { "React\\ChildProcess\\": "src" } + "psr-4": { + "React\\ChildProcess\\": "src/" + } }, "autoload-dev": { - "psr-4": { "React\\Tests\\ChildProcess\\": "tests" } + "psr-4": { + "React\\Tests\\ChildProcess\\": "tests/" + } } } diff --git a/phpunit.xml.dist b/phpunit.xml.dist index fa88e7e..ac542e7 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,11 +1,12 @@ - - + + convertDeprecationsToExceptions="true"> ./tests/ @@ -16,4 +17,12 @@ ./src/ + + + + + + + + diff --git a/phpunit.xml.legacy b/phpunit.xml.legacy index d515789..8916116 100644 --- a/phpunit.xml.legacy +++ b/phpunit.xml.legacy @@ -1,15 +1,10 @@ - + + colors="true"> ./tests/ @@ -20,4 +15,12 @@ ./src/ + + + + + + + +