forked from Intervention/image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWidenCommandTest.php
49 lines (45 loc) · 2.04 KB
/
WidenCommandTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
use Intervention\Image\Gd\Commands\WidenCommand as WidenGd;
use Intervention\Image\Imagick\Commands\WidenCommand as WidenImagick;
use PHPUnit\Framework\TestCase;
class WidenCommandTest extends 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', [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 WidenGd([200]);
$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')->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 WidenImagick([200]);
$result = $command->execute($image);
$this->assertTrue($result);
}
}