class ImageFxModifierTest in Modifiers Pack 8
@coversDefaultClass \Drupal\modifiers_image_fx\Plugin\modifiers\ImageFxModifier @group modifiers_pack
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\modifiers_image_fx\Unit\ImageFxModifierTest
Expanded class hierarchy of ImageFxModifierTest
File
- modules/
modifiers_image_fx/ tests/ src/ Unit/ ImageFxModifierTest.php, line 12
Namespace
Drupal\Tests\modifiers_image_fx\UnitView source
class ImageFxModifierTest extends UnitTestCase {
/**
* @covers ::modification
*/
public function testModification() {
// Effects without hover.
$actual_1 = ImageFxModifier::modification('.selector', [
'image_fx_blur' => '1',
'image_fx_brightness' => '2',
'image_fx_contrast' => '3',
'image_fx_hue_rotate' => '4',
'image_fx_invert' => '5',
'image_fx_grayscale' => '6',
'image_fx_saturate' => '7',
'image_fx_sepia' => '8',
'image_fx_opacity' => '9',
'image_fx_scale' => '10',
]);
$expected_css_1 = [
'all' => [
'.selector img' => [
'filter:blur(1px)',
'filter:brightness(2%)',
'filter:contrast(3%)',
'filter:hue-rotate(4deg)',
'filter:invert(5%)',
'filter:grayscale(6%)',
'filter:saturate(7%)',
'filter:sepia(8%)',
'filter:opacity(9%)',
'transform:scale(10)',
'-webkit-transform:translateZ(0)',
],
],
];
$this
->assertEquals($expected_css_1, $actual_1
->getCss());
$this
->assertEmpty($actual_1
->getLibraries());
$this
->assertEmpty($actual_1
->getSettings());
$this
->assertEmpty($actual_1
->getAttributes());
$this
->assertEmpty($actual_1
->getLinks());
// Effects on hover.
$actual_2 = ImageFxModifier::modification('.selector', [
'image_fx_h_blur' => '1',
'image_fx_h_brightness' => '2',
'image_fx_h_contrast' => '3',
'image_fx_h_hue_rotate' => '4',
'image_fx_h_invert' => '5',
'image_fx_h_grayscale' => '6',
'image_fx_h_saturate' => '7',
'image_fx_h_sepia' => '8',
'image_fx_h_opacity' => '9',
'image_fx_h_scale' => '10',
'image_fx_duration' => '1',
]);
$expected_css_2 = [
'all' => [
'.selector:hover img' => [
'filter:blur(1px)',
'filter:brightness(2%)',
'filter:contrast(3%)',
'filter:hue-rotate(4deg)',
'filter:invert(5%)',
'filter:grayscale(6%)',
'filter:saturate(7%)',
'filter:sepia(8%)',
'filter:opacity(9%)',
'transform:scale(10)',
],
'.selector img' => [
'transition-duration:1s',
'-webkit-transform:translateZ(0)',
],
],
];
$this
->assertEquals($expected_css_2, $actual_2
->getCss());
$this
->assertEmpty($actual_2
->getLibraries());
$this
->assertEmpty($actual_2
->getSettings());
$this
->assertEmpty($actual_2
->getAttributes());
$this
->assertEmpty($actual_2
->getLinks());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ImageFxModifierTest:: |
public | function | @covers ::modification | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 340 |