ConvertTest.php

Same filename and directory in other branches
  1. 9 core/modules/image/tests/src/Functional/ImageEffect/ConvertTest.php
  2. 11.x core/modules/image/tests/src/Functional/ImageEffect/ConvertTest.php

Namespace

Drupal\Tests\image\Functional\ImageEffect

File

core/modules/image/tests/src/Functional/ImageEffect/ConvertTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\image\Functional\ImageEffect;

use Drupal\Core\File\FileExists;
use Drupal\image\Entity\ImageStyle;
use Drupal\Tests\BrowserTestBase;

/**
 * Tests for the Convert image effect.
 *
 * @group image
 */
class ConvertTest extends BrowserTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'image',
  ];
  
  /**
   * Tests that files stored in the root folder are converted properly.
   */
  public function testConvertFileInRoot() : void {
    // Create the test image style with a Convert effect.
    $image_style = ImageStyle::create([
      'name' => 'image_effect_test',
      'label' => 'Image Effect Test',
    ]);
    $this->assertEquals(SAVED_NEW, $image_style->save());
    $image_style->addImageEffect([
      'id' => 'image_convert',
      'data' => [
        'extension' => 'jpeg',
      ],
    ]);
    $this->assertEquals(SAVED_UPDATED, $image_style->save());
    // Create a copy of a test image file in root.
    $test_uri = 'public://image-test-do.png';
    \Drupal::service('file_system')->copy('core/tests/fixtures/files/image-test.png', $test_uri, FileExists::Replace);
    $this->assertFileExists($test_uri);
    // Execute the image style on the test image via a GET request.
    $derivative_uri = 'public://styles/image_effect_test/public/image-test-do.png.jpeg';
    $this->assertFileDoesNotExist($derivative_uri);
    $url = \Drupal::service('file_url_generator')->transformRelative($image_style->buildUrl($test_uri));
    $this->drupalGet($this->getAbsoluteUrl($url));
    $this->assertSession()
      ->statusCodeEquals(200);
    $this->assertFileExists($derivative_uri);
  }

}

Classes

Title Deprecated Summary
ConvertTest Tests for the Convert image effect.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.