Files
bm/public_html/vendor/intervention/image/tests/FlipCommandTest.php
2025-09-24 13:26:28 +02:00

46 lines
1.6 KiB
PHP

<?php
use Intervention\Image\Gd\Commands\FlipCommand as FlipGd;
use Intervention\Image\Imagick\Commands\FlipCommand as FlipImagick;
use PHPUnit\Framework\TestCase;
class FlipCommandTest extends TestCase
{
public function tearDown()
{
Mockery::close();
}
public function testGd()
{
$size = Mockery::mock('\Intervention\Image\Size', [800, 600]);
$resource = imagecreatefromjpeg(__DIR__.'/images/test.jpg');
$image = Mockery::mock('Intervention\Image\Image');
$image->shouldReceive('getSize')->once()->andReturn($size);
$image->shouldReceive('getCore')->once()->andReturn($resource);
$image->shouldReceive('setCore')->once();
$command = new FlipGd(['h']);
$result = $command->execute($image);
$this->assertTrue($result);
}
public function testImagick()
{
$imagick = Mockery::mock('Imagick');
$imagick->shouldReceive('flopimage')->with()->andReturn(true);
$image = Mockery::mock('Intervention\Image\Image');
$image->shouldReceive('getCore')->once()->andReturn($imagick);
$command = new FlipImagick(['h']);
$result = $command->execute($image);
$this->assertTrue($result);
$imagick = Mockery::mock('Imagick');
$imagick->shouldReceive('flipimage')->with()->andReturn(true);
$image = Mockery::mock('Intervention\Image\Image');
$image->shouldReceive('getCore')->once()->andReturn($imagick);
$command = new FlipImagick(['v']);
$result = $command->execute($image);
$this->assertTrue($result);
}
}