/var/www/flurhymez/vendor/league/glide/tests/Manipulators
Edit: /var/www/flurhymez/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());
}
}