1
0
mirror of https://github.com/Intervention/image.git synced 2025-02-07 06:10:37 +01:00
intervention_image/tests/GetsizeCommandTest.php

38 lines
1.3 KiB
PHP
Raw Normal View History

2014-05-10 20:28:08 +02:00
<?php
use Intervention\Image\Gd\Commands\GetSizeCommand as GetSizeGd;
use Intervention\Image\Imagick\Commands\GetSizeCommand as GetSizeImagick;
class GetSizeCommandTest extends PHPUnit_Framework_TestCase
{
public function tearDown()
{
Mockery::close();
}
public function testGd()
{
$resource = imagecreatefromjpeg(__DIR__.'/images/test.jpg');
$image = Mockery::mock('Intervention\Image\Image');
$image->shouldReceive('getCore')->times(2)->andReturn($resource);
$command = new GetSizeGd(array());
$result = $command->execute($image);
$this->assertTrue($result);
$this->assertTrue($command->hasOutput());
$this->assertInstanceOf('Intervention\Image\Size', $command->getOutput());
}
public function testImagick()
{
$imagick = Mockery::mock('Imagick');
2014-05-22 19:27:49 +02:00
$imagick->shouldReceive('identifyimage')->with();
2014-05-10 20:28:08 +02:00
$image = Mockery::mock('Intervention\Image\Image');
$image->shouldReceive('getCore')->once()->andReturn($imagick);
$command = new GetSizeImagick(array());
$result = $command->execute($image);
$this->assertTrue($result);
$this->assertTrue($command->hasOutput());
$this->assertInstanceOf('Intervention\Image\Size', $command->getOutput());
}
}