1
0
mirror of https://github.com/Intervention/image.git synced 2025-02-24 22:22:32 +01:00
intervention_image/tests/ResizeCommandTest.php
2017-09-02 21:24:22 +02:00

49 lines
2.1 KiB
PHP

<?php
use Intervention\Image\Gd\Commands\ResizeCommand as ResizeCommandGd;
use Intervention\Image\Imagick\Commands\ResizeCommand as ResizeCommandImagick;
class ResizeCommandTest extends PHPUnit_Framework_TestCase
{
public function tearDown()
{
Mockery::close();
}
public function testGd()
{
$callback = function ($constraint) { $constraint->upsize(); };
$resource = imagecreatefromjpeg(__DIR__.'/images/test.jpg');
$image = Mockery::mock('Intervention\Image\Image');
$size = Mockery::mock('Intervention\Image\Size', [800, 600]);
$size->shouldReceive('resize')->with(300, 200, $callback)->once()->andReturn($size);
$size->shouldReceive('getWidth')->once()->andReturn(800);
$size->shouldReceive('getHeight')->once()->andReturn(600);
$image->shouldReceive('getWidth')->once()->andReturn(800);
$image->shouldReceive('getHeight')->once()->andReturn(600);
$image->shouldReceive('getSize')->once()->andReturn($size);
$image->shouldReceive('getCore')->once()->andReturn($resource);
$image->shouldReceive('setCore')->once();
$command = new ResizeCommandGd([300, 200, $callback]);
$result = $command->execute($image);
$this->assertTrue($result);
}
public function testImagick()
{
$callback = function ($constraint) { $constraint->upsize(); };
$imagick = Mockery::mock('Imagick');
$imagick->shouldReceive('scaleimage')->with(300, 200)->once()->andReturn(true);
$size = Mockery::mock('Intervention\Image\Size', [800, 600]);
$size->shouldReceive('resize')->with(300, 200, $callback)->once()->andReturn($size);
$size->shouldReceive('getWidth')->once()->andReturn(300);
$size->shouldReceive('getHeight')->once()->andReturn(200);
$image = Mockery::mock('Intervention\Image\Image');
$image->shouldReceive('getCore')->once()->andReturn($imagick);
$image->shouldReceive('getSize')->once()->andReturn($size);
$command = new ResizeCommandImagick([300, 200, $callback]);
$result = $command->execute($image);
$this->assertTrue($result);
}
}