mirror of
https://github.com/Intervention/image.git
synced 2025-01-17 20:28:21 +01:00
54 lines
2.0 KiB
PHP
54 lines
2.0 KiB
PHP
<?php
|
|
|
|
use Intervention\Image\Gd\Shapes\RectangleShape as RectangleGd;
|
|
use Intervention\Image\Imagick\Shapes\RectangleShape as RectangleImagick;
|
|
|
|
class RectangleShapeTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function tearDown()
|
|
{
|
|
Mockery::close();
|
|
}
|
|
|
|
public function testConstructor()
|
|
{
|
|
// gd
|
|
$rectangle = new RectangleGd(10, 15, 100, 150);
|
|
$this->assertInstanceOf('Intervention\Image\Gd\Shapes\RectangleShape', $rectangle);
|
|
$this->assertEquals(10, $rectangle->x1);
|
|
$this->assertEquals(15, $rectangle->y1);
|
|
$this->assertEquals(100, $rectangle->x2);
|
|
$this->assertEquals(150, $rectangle->y2);
|
|
|
|
// imagick
|
|
$rectangle = new RectangleImagick(10, 15, 100, 150);
|
|
$this->assertInstanceOf('Intervention\Image\Imagick\Shapes\RectangleShape', $rectangle);
|
|
$this->assertEquals(10, $rectangle->x1);
|
|
$this->assertEquals(15, $rectangle->y1);
|
|
$this->assertEquals(100, $rectangle->x2);
|
|
$this->assertEquals(150, $rectangle->y2);
|
|
}
|
|
|
|
public function testApplyToImage()
|
|
{
|
|
// gd
|
|
$core = imagecreatetruecolor(300, 200);
|
|
$image = Mockery::mock('\Intervention\Image\Image');
|
|
$image->shouldReceive('getCore')->once()->andReturn($core);
|
|
$rectangle = new RectangleGd(10, 15, 100, 150);
|
|
$result = $rectangle->applyToImage($image, 10, 20);
|
|
$this->assertInstanceOf('Intervention\Image\Gd\Shapes\RectangleShape', $rectangle);
|
|
$this->assertTrue($result);
|
|
|
|
// imagick
|
|
$core = Mockery::mock('\Imagick');
|
|
$core->shouldReceive('drawimage')->once();
|
|
$image = Mockery::mock('\Intervention\Image\Image');
|
|
$image->shouldReceive('getCore')->once()->andReturn($core);
|
|
$rectangle = new RectangleImagick(10, 15, 100, 150);
|
|
$result = $rectangle->applyToImage($image, 10, 20);
|
|
$this->assertInstanceOf('Intervention\Image\Imagick\Shapes\RectangleShape', $rectangle);
|
|
$this->assertTrue($result);
|
|
}
|
|
}
|