2014-05-10 20:28:08 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Intervention\Image\Gd\Commands\HeightenCommand as HeightenGd;
|
|
|
|
use Intervention\Image\Imagick\Commands\HeightenCommand as HeightenImagick;
|
|
|
|
|
|
|
|
class HeightenCommandTest extends PHPUnit_Framework_TestCase
|
|
|
|
{
|
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
Mockery::close();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGd()
|
|
|
|
{
|
|
|
|
$callback = function ($constraint) { $constraint->aspectRatio(); };
|
|
|
|
$resource = imagecreatefromjpeg(__DIR__.'/images/test.jpg');
|
|
|
|
$image = Mockery::mock('Intervention\Image\Image');
|
|
|
|
$size = Mockery::mock('Intervention\Image\Size', array(800, 600));
|
|
|
|
$size->shouldReceive('resize')->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 HeightenGd(array(200));
|
|
|
|
$result = $command->execute($image);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testImagick()
|
|
|
|
{
|
|
|
|
$callback = function ($constraint) { $constraint->upsize(); };
|
|
|
|
$imagick = Mockery::mock('Imagick');
|
2015-04-22 17:43:41 +02:00
|
|
|
$imagick->shouldReceive('scaleimage')->with(300, 200)->once()->andReturn(true);
|
2014-05-10 20:28:08 +02:00
|
|
|
$size = Mockery::mock('Intervention\Image\Size', array(800, 600));
|
|
|
|
$size->shouldReceive('resize')->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 HeightenImagick(array(200));
|
|
|
|
$result = $command->execute($image);
|
|
|
|
$this->assertTrue($result);
|
|
|
|
}
|
|
|
|
}
|