class ImageStyleFlushTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/image/tests/src/Functional/ImageStyleFlushTest.php \Drupal\Tests\image\Functional\ImageStyleFlushTest
- 9 core/modules/image/tests/src/Functional/ImageStyleFlushTest.php \Drupal\Tests\image\Functional\ImageStyleFlushTest
Tests flushing of image styles.
@group image
Hierarchy
- class \Drupal\Tests\BrowserTestBase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, FunctionalTestSetupTrait, TestSetupTrait, BlockCreationTrait, ConfigTestTrait, ExtensionListTestTrait, ContentTypeCreationTrait, NodeCreationTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings, UiHelperTrait, UserCreationTrait, XdebugRequestTrait
- class \Drupal\Tests\image\Functional\ImageFieldTestBase uses ImageFieldCreationTrait
- class \Drupal\Tests\image\Functional\ImageStyleFlushTest uses TestFileCreationTrait
- class \Drupal\Tests\image\Functional\ImageFieldTestBase uses ImageFieldCreationTrait
Expanded class hierarchy of ImageStyleFlushTest
3 string references to 'ImageStyleFlushTest'
- drupal7.php in core/
modules/ tracker/ tests/ fixtures/ drupal7.php - A database agnostic dump for testing purposes.
- drupal7.php in core/
modules/ rdf/ tests/ fixtures/ drupal7.php - A database agnostic dump for testing purposes.
- drupal7.php in core/
modules/ migrate_drupal/ tests/ fixtures/ drupal7.php - A database agnostic dump for testing purposes.
File
- core/
modules/ image/ tests/ src/ Functional/ ImageStyleFlushTest.php, line 14
Namespace
Drupal\Tests\image\FunctionalView source
class ImageStyleFlushTest extends ImageFieldTestBase {
use TestFileCreationTrait {
getTestFiles as drupalGetTestFiles;
compareFiles as drupalCompareFiles;
}
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Given an image style and a wrapper, generate an image.
*/
public function createSampleImage($style, $wrapper) {
static $file;
if (!isset($file)) {
$files = $this
->drupalGetTestFiles('image');
$file = reset($files);
}
// Make sure we have an image in our wrapper testing file directory.
$source_uri = \Drupal::service('file_system')
->copy($file->uri, $wrapper . '://');
// Build the derivative image.
$derivative_uri = $style
->buildUri($source_uri);
$derivative = $style
->createDerivative($source_uri, $derivative_uri);
return $derivative ? $derivative_uri : FALSE;
}
/**
* Count the number of images currently created for a style in a wrapper.
*/
public function getImageCount($style, $wrapper) {
$count = 0;
if (is_dir($wrapper . '://styles/' . $style
->id())) {
$count = count(\Drupal::service('file_system')
->scanDirectory($wrapper . '://styles/' . $style
->id(), '/.*/'));
}
return $count;
}
/**
* General test to flush a style.
*/
public function testFlush() {
// Setup a style to be created and effects to add to it.
$style_name = strtolower($this
->randomMachineName(10));
$style_label = $this
->randomString();
$style_path = 'admin/config/media/image-styles/manage/' . $style_name;
$effect_edits = [
'image_resize' => [
'data[width]' => 100,
'data[height]' => 101,
],
'image_scale' => [
'data[width]' => 110,
'data[height]' => 111,
'data[upscale]' => 1,
],
];
// Add style form.
$edit = [
'name' => $style_name,
'label' => $style_label,
];
$this
->drupalGet('admin/config/media/image-styles/add');
$this
->submitForm($edit, 'Create new style');
// Add each sample effect to the style.
foreach ($effect_edits as $effect => $edit) {
// Add the effect.
$this
->drupalGet($style_path);
$this
->submitForm([
'new' => $effect,
], 'Add');
if (!empty($edit)) {
$this
->submitForm($edit, 'Add effect');
}
}
// Load the saved image style.
$style = ImageStyle::load($style_name);
// Create an image for the 'public' wrapper.
$image_path = $this
->createSampleImage($style, 'public');
// Expecting to find 2 images, one is the sample.png image shown in
// image style preview.
$this
->assertEquals(2, $this
->getImageCount($style, 'public'), new FormattableMarkup('Image style %style image %file successfully generated.', [
'%style' => $style
->label(),
'%file' => $image_path,
]));
// Create an image for the 'private' wrapper.
$image_path = $this
->createSampleImage($style, 'private');
$this
->assertEquals(1, $this
->getImageCount($style, 'private'), new FormattableMarkup('Image style %style image %file successfully generated.', [
'%style' => $style
->label(),
'%file' => $image_path,
]));
// Remove the 'image_scale' effect and updates the style, which in turn
// forces an image style flush.
$style_path = 'admin/config/media/image-styles/manage/' . $style
->id();
$uuids = [];
foreach ($style
->getEffects() as $uuid => $effect) {
$uuids[$effect
->getPluginId()] = $uuid;
}
$this
->drupalGet($style_path . '/effects/' . $uuids['image_scale'] . '/delete');
$this
->submitForm([], 'Delete');
$this
->assertSession()
->statusCodeEquals(200);
$this
->drupalGet($style_path);
$this
->submitForm([], 'Save');
$this
->assertSession()
->statusCodeEquals(200);
// Post flush, expected 1 image in the 'public' wrapper (sample.png).
$this
->assertEquals(1, $this
->getImageCount($style, 'public'), new FormattableMarkup('Image style %style flushed correctly for %wrapper wrapper.', [
'%style' => $style
->label(),
'%wrapper' => 'public',
]));
// Post flush, expected no image in the 'private' wrapper.
$this
->assertEquals(0, $this
->getImageCount($style, 'private'), new FormattableMarkup('Image style %style flushed correctly for %wrapper wrapper.', [
'%style' => $style
->label(),
'%wrapper' => 'private',
]));
}
}