mirror of
https://github.com/Intervention/image.git
synced 2025-02-24 22:22:32 +01:00
93 lines
5.0 KiB
PHP
93 lines
5.0 KiB
PHP
<?php
|
|
|
|
use Intervention\Image\Gd\Commands\FitCommand as FitGd;
|
|
use Intervention\Image\Imagick\Commands\FitCommand as FitImagick;
|
|
|
|
class FitCommandTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function tearDown()
|
|
{
|
|
Mockery::close();
|
|
}
|
|
|
|
public function testGdFit()
|
|
{
|
|
$cropped_size = Mockery::mock('\Intervention\Image\Size', [800, 400]);
|
|
$cropped_size->shouldReceive('getWidth')->times(2)->andReturn(800);
|
|
$cropped_size->shouldReceive('getHeight')->times(2)->andReturn(400);
|
|
$cropped_size->shouldReceive('resize')->with(200, 100, null)->once()->andReturn($cropped_size);
|
|
$cropped_size->pivot = Mockery::mock('\Intervention\Image\Point', [0, 100]);
|
|
$original_size = Mockery::mock('\Intervention\Image\Size', [800, 600]);
|
|
$original_size->shouldReceive('fit')->with(Mockery::any(), 'center')->once()->andReturn($cropped_size);
|
|
$resource = imagecreatefromjpeg(__DIR__.'/images/test.jpg');
|
|
$image = Mockery::mock('Intervention\Image\Image');
|
|
$image->shouldReceive('getSize')->once()->andReturn($original_size);
|
|
$image->shouldReceive('getCore')->once()->andReturn($resource);
|
|
$image->shouldReceive('setCore')->once();
|
|
$command = new FitGd([200, 100]);
|
|
$result = $command->execute($image);
|
|
$this->assertTrue($result);
|
|
}
|
|
|
|
public function testGdFitWithPosition()
|
|
{
|
|
$cropped_size = Mockery::mock('\Intervention\Image\Size', [800, 400]);
|
|
$cropped_size->shouldReceive('getWidth')->times(2)->andReturn(800);
|
|
$cropped_size->shouldReceive('getHeight')->times(2)->andReturn(400);
|
|
$cropped_size->shouldReceive('resize')->with(200, 100, null)->once()->andReturn($cropped_size);
|
|
$cropped_size->pivot = Mockery::mock('\Intervention\Image\Point', [0, 100]);
|
|
$original_size = Mockery::mock('\Intervention\Image\Size', [800, 600]);
|
|
$original_size->shouldReceive('fit')->with(Mockery::any(), 'top-left')->once()->andReturn($cropped_size);
|
|
$resource = imagecreatefromjpeg(__DIR__.'/images/test.jpg');
|
|
$image = Mockery::mock('Intervention\Image\Image');
|
|
$image->shouldReceive('getSize')->once()->andReturn($original_size);
|
|
$image->shouldReceive('getCore')->once()->andReturn($resource);
|
|
$image->shouldReceive('setCore')->once();
|
|
$command = new FitGd([200, 100, null, 'top-left']);
|
|
$result = $command->execute($image);
|
|
$this->assertTrue($result);
|
|
}
|
|
|
|
public function testImagickFit()
|
|
{
|
|
$cropped_size = Mockery::mock('\Intervention\Image\Size', [800, 400]);
|
|
$cropped_size->shouldReceive('getWidth')->once()->andReturn(200);
|
|
$cropped_size->shouldReceive('getHeight')->once()->andReturn(100);
|
|
$cropped_size->shouldReceive('resize')->with(200, 100, null)->once()->andReturn($cropped_size);
|
|
$cropped_size->pivot = Mockery::mock('\Intervention\Image\Point', [0, 100]);
|
|
$original_size = Mockery::mock('\Intervention\Image\Size', [800, 600]);
|
|
$original_size->shouldReceive('fit')->with(Mockery::any(), 'center')->once()->andReturn($cropped_size);
|
|
$imagick = Mockery::mock('Imagick');
|
|
$imagick->shouldReceive('cropimage')->with(800, 400, 0, 100)->andReturn(true);
|
|
$imagick->shouldReceive('scaleimage')->with(200, 100)->once()->andReturn(true);
|
|
$imagick->shouldReceive('setimagepage')->with(0, 0, 0, 0)->andReturn(true);
|
|
$image = Mockery::mock('Intervention\Image\Image');
|
|
$image->shouldReceive('getSize')->once()->andReturn($original_size);
|
|
$image->shouldReceive('getCore')->times(3)->andReturn($imagick);
|
|
$command = new FitImagick([200, 100]);
|
|
$result = $command->execute($image);
|
|
$this->assertTrue($result);
|
|
}
|
|
|
|
public function testImagickFitWithPosition()
|
|
{
|
|
$cropped_size = Mockery::mock('\Intervention\Image\Size', [800, 400]);
|
|
$cropped_size->shouldReceive('getWidth')->once()->andReturn(200);
|
|
$cropped_size->shouldReceive('getHeight')->once()->andReturn(100);
|
|
$cropped_size->shouldReceive('resize')->with(200, 100, null)->once()->andReturn($cropped_size);
|
|
$cropped_size->pivot = Mockery::mock('\Intervention\Image\Point', [0, 100]);
|
|
$original_size = Mockery::mock('\Intervention\Image\Size', [800, 600]);
|
|
$original_size->shouldReceive('fit')->with(Mockery::any(), 'top-left')->once()->andReturn($cropped_size);
|
|
$imagick = Mockery::mock('Imagick');
|
|
$imagick->shouldReceive('cropimage')->with(800, 400, 0, 100)->andReturn(true);
|
|
$imagick->shouldReceive('scaleimage')->with(200, 100)->once()->andReturn(true);
|
|
$imagick->shouldReceive('setimagepage')->with(0, 0, 0, 0)->andReturn(true);
|
|
$image = Mockery::mock('Intervention\Image\Image');
|
|
$image->shouldReceive('getSize')->once()->andReturn($original_size);
|
|
$image->shouldReceive('getCore')->times(3)->andReturn($imagick);
|
|
$command = new FitImagick([200, 100, null, 'top-left']);
|
|
$result = $command->execute($image);
|
|
$this->assertTrue($result);
|
|
}
|
|
}
|