/var/www/cobraambalaj/vendor/league/glide/tests/Manipulators
NameSizeModeActions
Helpers/-0755rm
BackgroundTest.php12980644editdlrm
BlurTest.php14080644editdlrm
BorderTest.php40800644editdlrm
BrightnessTest.php14670644editdlrm
ContrastTest.php14470644editdlrm
CropTest.php28650644editdlrm
EncodeTest.php57770644editdlrm
FilterTest.php23750644editdlrm
FlipTest.php12920644editdlrm
GammaTest.php16110644editdlrm
OrientationTest.php19300644editdlrm
PixelateTest.php14650644editdlrm
SharpenTest.php14530644editdlrm
SizeTest.php106660644editdlrm
WatermarkTest.php98420644editdlrm
Edit: /var/www/cobraambalaj/vendor/league/glide/tests/Manipulators/EncodeTest.php (5777B)
jpg = $manager->canvas(100, 100)->encode('jpg'); $this->png = $manager->canvas(100, 100)->encode('png'); $this->gif = $manager->canvas(100, 100)->encode('gif'); if (function_exists('imagecreatefromwebp')) { $this->webp = $manager->canvas(100, 100)->encode('webp'); } $this->manipulator = new Encode(); } public function tearDown(): void { Mockery::close(); } public function testCreateInstance() { $this->assertInstanceOf('League\Glide\Manipulators\Encode', $this->manipulator); } public function testRun() { $this->assertSame('image/jpeg', $this->manipulator->setParams(['fm' => 'jpg'])->run($this->jpg)->mime); $this->assertSame('image/jpeg', $this->manipulator->setParams(['fm' => 'jpg'])->run($this->png)->mime); $this->assertSame('image/jpeg', $this->manipulator->setParams(['fm' => 'jpg'])->run($this->gif)->mime); $this->assertSame('image/jpeg', $this->manipulator->setParams(['fm' => 'pjpg'])->run($this->jpg)->mime); $this->assertSame('image/jpeg', $this->manipulator->setParams(['fm' => 'pjpg'])->run($this->png)->mime); $this->assertSame('image/jpeg', $this->manipulator->setParams(['fm' => 'pjpg'])->run($this->gif)->mime); $this->assertSame('image/png', $this->manipulator->setParams(['fm' => 'png'])->run($this->jpg)->mime); $this->assertSame('image/png', $this->manipulator->setParams(['fm' => 'png'])->run($this->png)->mime); $this->assertSame('image/png', $this->manipulator->setParams(['fm' => 'png'])->run($this->gif)->mime); $this->assertSame('image/gif', $this->manipulator->setParams(['fm' => 'gif'])->run($this->jpg)->mime); $this->assertSame('image/gif', $this->manipulator->setParams(['fm' => 'gif'])->run($this->png)->mime); $this->assertSame('image/gif', $this->manipulator->setParams(['fm' => 'gif'])->run($this->gif)->mime); if (function_exists('imagecreatefromwebp')) { $this->assertSame('image/jpeg', $this->manipulator->setParams(['fm' => 'jpg'])->run($this->webp)->mime); $this->assertSame('image/jpeg', $this->manipulator->setParams(['fm' => 'pjpg'])->run($this->webp)->mime); $this->assertSame('image/png', $this->manipulator->setParams(['fm' => 'png'])->run($this->webp)->mime); $this->assertSame('image/gif', $this->manipulator->setParams(['fm' => 'gif'])->run($this->webp)->mime); $this->assertSame('image/webp', $this->manipulator->setParams(['fm' => 'webp'])->run($this->jpg)->mime); $this->assertSame('image/webp', $this->manipulator->setParams(['fm' => 'webp'])->run($this->png)->mime); $this->assertSame('image/webp', $this->manipulator->setParams(['fm' => 'webp'])->run($this->gif)->mime); $this->assertSame('image/webp', $this->manipulator->setParams(['fm' => 'webp'])->run($this->webp)->mime); } } public function testGetFormat() { $image = Mockery::mock('Intervention\Image\Image', function ($mock) { $mock->shouldReceive('mime')->andReturn('image/jpeg')->once(); $mock->shouldReceive('mime')->andReturn('image/png')->once(); $mock->shouldReceive('mime')->andReturn('image/gif')->once(); $mock->shouldReceive('mime')->andReturn('image/bmp')->once(); $mock->shouldReceive('mime')->andReturn('image/jpeg')->twice(); if (function_exists('imagecreatefromwebp')) { $mock->shouldReceive('mime')->andReturn('image/webp')->once(); } }); $this->assertSame('jpg', $this->manipulator->setParams(['fm' => 'jpg'])->getFormat($image)); $this->assertSame('png', $this->manipulator->setParams(['fm' => 'png'])->getFormat($image)); $this->assertSame('gif', $this->manipulator->setParams(['fm' => 'gif'])->getFormat($image)); $this->assertSame('jpg', $this->manipulator->setParams(['fm' => null])->getFormat($image)); $this->assertSame('png', $this->manipulator->setParams(['fm' => null])->getFormat($image)); $this->assertSame('gif', $this->manipulator->setParams(['fm' => null])->getFormat($image)); $this->assertSame('jpg', $this->manipulator->setParams(['fm' => null])->getFormat($image)); $this->assertSame('jpg', $this->manipulator->setParams(['fm' => ''])->getFormat($image)); $this->assertSame('jpg', $this->manipulator->setParams(['fm' => 'invalid'])->getFormat($image)); if (function_exists('imagecreatefromwebp')) { $this->assertSame('webp', $this->manipulator->setParams(['fm' => null])->getFormat($image)); } } public function testGetQuality() { $this->assertSame(100, $this->manipulator->setParams(['q' => '100'])->getQuality()); $this->assertSame(100, $this->manipulator->setParams(['q' => 100])->getQuality()); $this->assertSame(90, $this->manipulator->setParams(['q' => null])->getQuality()); $this->assertSame(90, $this->manipulator->setParams(['q' => 'a'])->getQuality()); $this->assertSame(50, $this->manipulator->setParams(['q' => '50.50'])->getQuality()); $this->assertSame(90, $this->manipulator->setParams(['q' => '-1'])->getQuality()); $this->assertSame(90, $this->manipulator->setParams(['q' => '101'])->getQuality()); } }