1
0
mirror of https://github.com/Intervention/image.git synced 2025-01-16 19:58:14 +01:00
intervention_image/tests/BaseTestCase.php

141 lines
4.3 KiB
PHP
Raw Permalink Normal View History

2021-10-21 14:32:05 +02:00
<?php
2024-01-16 12:01:29 +01:00
declare(strict_types=1);
2021-10-21 14:32:05 +02:00
namespace Intervention\Image\Tests;
use Intervention\Image\Colors\Rgb\Channels\Alpha;
use Intervention\Image\Colors\Rgb\Channels\Blue;
use Intervention\Image\Colors\Rgb\Channels\Green;
use Intervention\Image\Colors\Rgb\Channels\Red;
use Intervention\Image\Colors\Rgb\Color as RgbColor;
use Intervention\Image\EncodedImage;
2021-10-21 14:32:05 +02:00
use Intervention\Image\Interfaces\ColorInterface;
use Mockery\Adapter\Phpunit\MockeryTestCase;
use PHPUnit\Framework\ExpectationFailedException;
2021-10-21 14:32:05 +02:00
abstract class BaseTestCase extends MockeryTestCase
2021-10-21 14:32:05 +02:00
{
2024-05-09 09:58:10 +02:00
public static function getTestResourcePath($filename = 'test.jpg'): string
2023-10-03 10:08:37 +02:00
{
return sprintf('%s/resources/%s', __DIR__, $filename);
2023-10-03 10:08:37 +02:00
}
2024-05-09 09:58:10 +02:00
public static function getTestResourceData($filename = 'test.jpg'): string
2023-10-03 10:08:37 +02:00
{
2024-05-09 09:58:10 +02:00
return file_get_contents(self::getTestResourcePath($filename));
2023-10-03 10:08:37 +02:00
}
2024-08-03 11:15:29 +02:00
public static function getTestResourcePointer($filename = 'test.jpg')
{
$pointer = fopen('php://temp', 'rw');
2024-05-09 09:58:10 +02:00
fputs($pointer, self::getTestResourceData($filename));
rewind($pointer);
return $pointer;
}
/**
* Assert that given color equals the given color channel values in the given optional tolerance
*
* @param int $r
* @param int $g
* @param int $b
* @param int $a
* @param ColorInterface $color
* @param int $tolerance
* @throws ExpectationFailedException
* @return void
*/
protected function assertColor(int $r, int $g, int $b, int $a, ColorInterface $color, int $tolerance = 0)
2021-10-21 14:32:05 +02:00
{
// build errorMessage
$errorMessage = function (int $r, int $g, $b, int $a, ColorInterface $color): string {
$color = 'rgba(' . implode(', ', [
$color->channel(Red::class)->value(),
$color->channel(Green::class)->value(),
$color->channel(Blue::class)->value(),
$color->channel(Alpha::class)->value(),
]) . ')';
return implode(' ', [
'Failed asserting that color',
$color,
'equals',
'rgba(' . $r . ', ' . $g . ', ' . $b . ', ' . $a . ')'
]);
};
// build color channel value range
$range = function (int $base, int $tolerance): array {
return range(max($base - $tolerance, 0), min($base + $tolerance, 255));
};
$this->assertContains(
$color->channel(Red::class)->value(),
$range($r, $tolerance),
$errorMessage($r, $g, $b, $a, $color)
);
$this->assertContains(
$color->channel(Green::class)->value(),
$range($g, $tolerance),
$errorMessage($r, $g, $b, $a, $color)
);
$this->assertContains(
$color->channel(Blue::class)->value(),
$range($b, $tolerance),
$errorMessage($r, $g, $b, $a, $color)
);
$this->assertContains(
$color->channel(Alpha::class)->value(),
$range($a, $tolerance),
$errorMessage($r, $g, $b, $a, $color)
);
}
protected function assertTransparency(ColorInterface $color)
{
$this->assertInstanceOf(RgbColor::class, $color);
$channel = $color->channel(Alpha::class);
$this->assertEquals(0, $channel->value());
2021-10-21 14:32:05 +02:00
}
2023-11-12 11:32:08 +01:00
protected function assertMediaType(string|array $allowed, string|EncodedImage $input): void
2023-11-12 11:32:08 +01:00
{
$pointer = fopen('php://temp', 'rw');
fputs($pointer, (string) $input);
rewind($pointer);
$detected = mime_content_type($pointer);
fclose($pointer);
2023-11-12 11:32:08 +01:00
$allowed = is_string($allowed) ? [$allowed] : $allowed;
$this->assertTrue(in_array($detected, $allowed));
}
2024-01-16 16:49:24 +01:00
protected function assertMediaTypeBitmap(string|EncodedImage $input): void
2024-01-16 16:49:24 +01:00
{
$this->assertMediaType([
'image/x-ms-bmp',
'image/bmp',
'bmp',
'ms-bmp',
'x-bitmap',
'x-bmp',
'x-ms-bmp',
'x-win-bitmap',
'x-windows-bmp',
'x-xbitmap',
'image/ms-bmp',
'image/x-bitmap',
'image/x-bmp',
'image/x-ms-bmp',
'image/x-win-bitmap',
'image/x-windows-bmp',
'image/x-xbitmap',
], $input);
}
2021-10-21 14:32:05 +02:00
}