View source
<?php
namespace Drupal\Tests\imageapi_optimize_binaries\Unit;
use Drupal\imageapi_optimize_binaries\Plugin\ImageAPIOptimizeProcessor\AdvPng;
class AdvPngTest extends BinaryTestCase {
public function testDefaultConfig() {
$config = [];
$loggerMock = $this
->getLoggerMock();
$imageFactoryMock = $this
->getImageFactoryMock();
$fileSystemMock = $this
->getFileSystemMock();
$shellOperationsMock = $this
->getShellOperationsMock();
$advpng = new AdvPng($config, 'advpng', [], $loggerMock, $imageFactoryMock, $fileSystemMock, $shellOperationsMock);
$this
->assertArrayHasKey('recompress', $advpng
->defaultConfiguration());
$this
->assertArrayHasKey('mode', $advpng
->defaultConfiguration());
}
public function testOnlyApplyToPNG() {
$config = [];
$loggerMock = $this
->getLoggerMock();
$imageFactoryMock = $this
->getImageFactoryMock();
$fileSystemMock = $this
->getFileSystemMock();
$shellOperationsMock = $this
->getShellOperationsMock();
$advpng = new AdvPng($config, 'advpng', [], $loggerMock, $imageFactoryMock, $fileSystemMock, $shellOperationsMock);
$imagePNGMock = $this
->createMock('\\Drupal\\Core\\Image\\ImageInterface');
$imagePNGMock
->method('getMimeType')
->willReturn('image/jpeg');
$imageFactoryMock
->method('get')
->willReturn($imagePNGMock);
$shellOperationsMock
->expects($this
->never())
->method('execShellCommand');
$this
->assertFalse($advpng
->applyToImage('public://test_image.jpg'));
}
public function testPNGOptimized($config, $options) {
$loggerMock = $this
->getLoggerMock();
$imageFactoryMock = $this
->getImageFactoryMock();
$fileSystemMock = $this
->getFileSystemMock();
$shellOperationsMock = $this
->getShellOperationsMock();
$advpng = new AdvPng([
'data' => $config,
], 'advpng', [], $loggerMock, $imageFactoryMock, $fileSystemMock, $shellOperationsMock);
$imagePNGMock = $this
->createMock('\\Drupal\\Core\\Image\\ImageInterface');
$imagePNGMock
->method('getMimeType')
->willReturn('image/png');
$imageFactoryMock
->method('get')
->willReturn($imagePNGMock);
$shellOperationsMock
->expects($this
->once())
->method('execShellCommand')
->with($this
->equalTo('advpng'), $this
->identicalTo($options), $this
->identicalTo([
'public://test_image.png',
]));
$advpng
->applyToImage('public://test_image.png');
}
public function advpngProvider() {
$cases = [];
$cases[] = [
[],
[
'--quiet',
'--recompress',
'-3',
],
];
$cases[] = [
[
'recompress' => FALSE,
],
[
'--quiet',
'-3',
],
];
$cases[] = [
[
'recompress' => FALSE,
'mode' => 1,
],
[
'--quiet',
'-1',
],
];
$cases[] = [
[
'mode' => 0,
],
[
'--quiet',
'--recompress',
'-0',
],
];
$cases[] = [
[
'mode' => 4,
],
[
'--quiet',
'--recompress',
'-4',
],
];
return $cases;
}
}