![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/inventory.corals.io/vendor/league/glide/tests/Manipulators/ |
<?php namespace League\Glide\Manipulators; use Mockery; use PHPUnit\Framework\TestCase; class CropTest extends TestCase { private $manipulator; public function setUp(): void { $this->manipulator = new Crop(); $this->image = Mockery::mock('Intervention\Image\Image', function ($mock) { $mock->shouldReceive('width')->andReturn(100); $mock->shouldReceive('height')->andReturn(100); }); } public function tearDown(): void { Mockery::close(); } public function testCreateInstance() { $this->assertInstanceOf('League\Glide\Manipulators\Crop', $this->manipulator); } public function testRun() { $this->image->shouldReceive('crop')->with(100, 100, 0, 0)->once(); $this->assertInstanceOf( 'Intervention\Image\Image', $this->manipulator->setParams(['crop' => '100,100,0,0'])->run($this->image) ); } public function testGetCoordinates() { $this->assertSame([100, 100, 0, 0], $this->manipulator->setParams(['crop' => '100,100,0,0'])->getCoordinates($this->image)); $this->assertSame([101, 1, 1, 1], $this->manipulator->setParams(['crop' => '101,1,1,1'])->getCoordinates($this->image)); $this->assertSame([1, 101, 1, 1], $this->manipulator->setParams(['crop' => '1,101,1,1'])->getCoordinates($this->image)); $this->assertSame(null, $this->manipulator->setParams(['crop' => null])->getCoordinates($this->image)); $this->assertSame(null, $this->manipulator->setParams(['crop' => '1,1,1,'])->getCoordinates($this->image)); $this->assertSame(null, $this->manipulator->setParams(['crop' => '1,1,,1'])->getCoordinates($this->image)); $this->assertSame(null, $this->manipulator->setParams(['crop' => '1,,1,1'])->getCoordinates($this->image)); $this->assertSame(null, $this->manipulator->setParams(['crop' => ',1,1,1'])->getCoordinates($this->image)); $this->assertSame(null, $this->manipulator->setParams(['crop' => '-1,1,1,1'])->getCoordinates($this->image)); $this->assertSame(null, $this->manipulator->setParams(['crop' => '1,1,101,1'])->getCoordinates($this->image)); $this->assertSame(null, $this->manipulator->setParams(['crop' => '1,1,1,101'])->getCoordinates($this->image)); $this->assertSame(null, $this->manipulator->setParams(['crop' => 'a'])->getCoordinates($this->image)); $this->assertSame(null, $this->manipulator->setParams(['crop' => ''])->getCoordinates($this->image)); } public function testValidateCoordinates() { $this->assertSame([100, 100, 0, 0], $this->manipulator->limitToImageBoundaries($this->image, [100, 100, 0, 0])); $this->assertSame([90, 90, 10, 10], $this->manipulator->limitToImageBoundaries($this->image, [100, 100, 10, 10])); } }