You are here

protected function ToolkitTestTrait::assertImageEffect in Drupal 9

Asserts the effect processing of an image effect plugin.

Parameters

string[] $expected_operations: String array containing the operation names, e.g. load, save, crop, etc.

string $effect_name: The name of the image effect to test.

array $data: The data to be passed to the image effect.

8 calls to ToolkitTestTrait::assertImageEffect()
ImageEffectsTest::testConvertEffect in core/modules/image/tests/src/Kernel/ImageEffectsTest.php
Tests the 'image_convert' effect.
ImageEffectsTest::testCropEffect in core/modules/image/tests/src/Kernel/ImageEffectsTest.php
Tests the 'image_crop' effect.
ImageEffectsTest::testDesaturateEffect in core/modules/image/tests/src/Kernel/ImageEffectsTest.php
Tests the 'image_desaturate' effect.
ImageEffectsTest::testResizeEffect in core/modules/image/tests/src/Kernel/ImageEffectsTest.php
Tests the 'image_resize' effect.
ImageEffectsTest::testRotateEffect in core/modules/image/tests/src/Kernel/ImageEffectsTest.php
Tests the image_rotate_effect() function.

... See full list

File

core/tests/Drupal/Tests/Traits/Core/Image/ToolkitTestTrait.php, line 100

Class

ToolkitTestTrait
Provides common methods for image toolkit kernel tests.

Namespace

Drupal\Tests\Traits\Core\Image

Code

protected function assertImageEffect(array $expected_operations, string $effect_name, array $data) : void {
  $effect = $this->imageEffectPluginManager
    ->createInstance($effect_name, [
    'data' => $data,
  ]);
  $image = $this
    ->getImage();
  $this
    ->imageTestReset();
  $this
    ->assertTrue($effect
    ->applyEffect($image));
  $this
    ->assertToolkitOperationsCalled($expected_operations);
}