class JpegoptimFilterTest

@group integration

Hierarchy

Expanded class hierarchy of JpegoptimFilterTest

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Filter/JpegoptimFilterTest.php, line 20

Namespace

Assetic\Test\Filter
View source
class JpegoptimFilterTest extends BaseImageFilterTest {
  private $filter;
  protected function setUp() {
    if (!isset($_SERVER['JPEGOPTIM_BIN'])) {
      $this
        ->markTestSkipped('No jpegoptim configuration.');
    }
    $this->filter = new JpegoptimFilter($_SERVER['JPEGOPTIM_BIN']);
  }
  public function testFilter() {
    $asset = new FileAsset(__DIR__ . '/fixtures/home.jpg');
    $asset
      ->load();
    $before = $asset
      ->getContent();
    $this->filter
      ->filterDump($asset);
    $this
      ->assertNotEmpty($asset
      ->getContent(), '->filterLoad() sets content');
    $this
      ->assertNotEquals($before, $asset
      ->getContent(), '->filterDump() changes the content');
    $this
      ->assertMimeType('image/jpeg', $asset
      ->getContent(), '->filterDump() creates JPEG data');
  }

}

Members