home
/
zktecojo
/
public_html
/
vendor
/
intervention
/
image
/
tests
➕ New
📤 Upload
✎ Editing:
TrimCommandTest.php
← Back
<?php use Intervention\Image\Gd\Commands\TrimCommand as TrimGd; use Intervention\Image\Imagick\Commands\TrimCommand as TrimImagick; class TrimCommandTest extends PHPUnit_Framework_TestCase { public function tearDown() { Mockery::close(); } public function testGd() { $resource = imagecreatefromjpeg(__DIR__.'/images/test.jpg'); $image = Mockery::mock('Intervention\Image\Image'); $baseColor = Mockery::mock('Intervention\Image\Gd\Color'); $baseColor->shouldReceive('differs')->with($baseColor, 45)->andReturn(true); $image->shouldReceive('getCore')->once()->andReturn($resource); $image->shouldReceive('getWidth')->once()->andReturn(800); $image->shouldReceive('getHeight')->once()->andReturn(600); $image->shouldReceive('pickColor')->with(0, 0, 'object')->times(2)->andReturn($baseColor); $image->shouldReceive('pickColor')->with(799, 0, 'object')->once()->andReturn($baseColor); $image->shouldReceive('setCore')->once(); $command = new TrimGd(array('top-left', array('left', 'right'), 45, 2)); $result = $command->execute($image); $this->assertTrue($result); } public function testImagick() { $baseColorPixel = new \ImagickPixel; $baseColor = Mockery::mock('Intervention\Image\Gd\Color'); $baseColor->shouldReceive('getPixel')->once()->andReturn($baseColorPixel); $imagick = Mockery::mock('Imagick'); $imagick->width = 100; $imagick->height = 100; $imagick->shouldReceive('borderimage')->with($baseColorPixel, 1, 1)->once()->andReturn(true); $imagick->shouldReceive('trimimage')->with(29632.5)->once()->andReturn(true); $imagick->shouldReceive('getimagepage')->once()->andReturn(array('x' => 50, 'y' => 50)); $imagick->shouldReceive('cropimage')->with(104, 202, 47, 0)->once()->andReturn(true); $imagick->shouldReceive('setimagepage')->with(0, 0, 0, 0)->once()->andReturn(true); $imagick->shouldReceive('destroy')->with()->once()->andReturn(true); $image = Mockery::mock('Intervention\Image\Image'); $image->shouldReceive('getWidth')->once()->andReturn(800); $image->shouldReceive('getHeight')->once()->andReturn(600); $image->shouldReceive('pickColor')->with(0, 0, 'object')->once()->andReturn($baseColor); $image->shouldReceive('getCore')->times(3)->andReturn($imagick); $command = new TrimImagick(array('top-left', array('left', 'right'), 45, 2)); $result = $command->execute($image); $this->assertTrue($result); } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel