Skip to content

Commit

Permalink
Add support for PHPUnit 11
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Oct 27, 2024
1 parent 2faf000 commit 1c5f8b1
Show file tree
Hide file tree
Showing 4 changed files with 65 additions and 70 deletions.
123 changes: 60 additions & 63 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,74 +1,71 @@
name: glide

on:
pull_request: ~
push:
branches:
- 3.x
pull_request: ~
push:
branches:
- 3.x

jobs:
coding-style:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: gd, imagick
- name: php-cs-fixer
run: |
composer update --no-interaction --no-ansi --no-progress
vendor/bin/php-cs-fixer fix --dry-run --diff
tests:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
php-version: ['8.1', '8.2', '8.3', '8.4']
dependencies: [highest]
include:
- php-version: '8.1'
dependencies: lowest
steps:
- uses: actions/checkout@v4

tests:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
php-version: ['8.1', '8.2', '8.3', '8.4']
prefer-lowest: ['']
include:
- php-version: '8.1'
prefer-lowest: 'prefer-lowest'
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: gd, imagick
coverage: pcov

- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: gd, imagick
coverage: pcov
- name: Composer install
uses: ramsey/composer-install@v3
with:
dependency-versions: ${{ matrix.dependencies }}

- name: Composer
run: |
if ${{ matrix.prefer-lowest == 'prefer-lowest' }}; then
composer update --no-interaction --no-ansi --no-progress --prefer-lowest
else
composer update --no-interaction --no-ansi --no-progress
fi
- name: PHPUnit
run: |
if [[ ${{ matrix.php-version }} == '8.3' ]]; then
vendor/bin/phpunit --display-incomplete --display-skipped --display-deprecations --display-phpunit-deprecations --coverage-clover=coverage.xml
else
vendor/bin/phpunit
fi
- name: PHPUnit
run: |
if [[ ${{ matrix.php-version }} == '8.3' ]]; then
vendor/bin/phpunit --display-incomplete --display-skipped --coverage-clover=coverage.xml
else
vendor/bin/phpunit
fi
- name: Code Coverage Report
if: matrix.php-version == '8.3'
uses: codecov/codecov-action@v3

- name: Code Coverage Report
if: matrix.php-version == '8.3'
uses: codecov/codecov-action@v3
coding-style:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: gd, imagick
- name: php-cs-fixer
run: |
composer update --no-interaction --no-ansi --no-progress
vendor/bin/php-cs-fixer fix --dry-run --diff
psalm:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: gd, imagick
tools: vimeo/psalm:5
- name: psalm
run: |
composer update --no-interaction --no-ansi --no-progress
psalm --output-format=github
psalm:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: gd, imagick
tools: vimeo/psalm:5
- name: psalm
run: |
composer update --no-interaction --no-ansi --no-progress
psalm --output-format=github
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
},
"require-dev": {
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^10.5",
"phpunit/phpunit": "^10.5 || ^11.0",
"friendsofphp/php-cs-fixer": "^3.48"
},
"autoload": {
Expand Down
5 changes: 2 additions & 3 deletions tests/Manipulators/WatermarkTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
use Intervention\Image\Interfaces\DriverInterface;
use Intervention\Image\Interfaces\ImageInterface;
use League\Glide\Filesystem\FilesystemException;
use PHPUnit\Framework\Attributes\DoesNotPerformAssertions;
use PHPUnit\Framework\TestCase;

class WatermarkTest extends TestCase
Expand Down Expand Up @@ -80,9 +81,7 @@ public function testRun()
);
}

/**
* @doesNotPerformAssertions
*/
#[DoesNotPerformAssertions]
public function testGetImage()
{
$this->manipulator->getWatermarks()
Expand Down
5 changes: 2 additions & 3 deletions tests/ServerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use League\Glide\Filesystem\FileNotFoundException;
use League\Glide\Filesystem\FilesystemException;
use PHPUnit\Framework\Attributes\RunInSeparateProcess;
use PHPUnit\Framework\TestCase;

class ServerTest extends TestCase
Expand Down Expand Up @@ -485,9 +486,7 @@ public function testGetImageAsBase64WithUnreadableSource()
$this->server->getImageAsBase64('image.jpg', []);
}

/**
* @runInSeparateProcess
*/
#[RunInSeparateProcess]
public function testOutputImage()
{
$this->server->setCache(\Mockery::mock('League\Flysystem\FilesystemOperator', function ($mock) {
Expand Down

0 comments on commit 1c5f8b1

Please sign in to comment.