You are here

class ImageFxModifierTest in Modifiers Pack 8

@coversDefaultClass \Drupal\modifiers_image_fx\Plugin\modifiers\ImageFxModifier @group modifiers_pack

Hierarchy

Expanded class hierarchy of ImageFxModifierTest

File

modules/modifiers_image_fx/tests/src/Unit/ImageFxModifierTest.php, line 12

Namespace

Drupal\Tests\modifiers_image_fx\Unit
View 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

Namesort descending Modifiers Type Description Overrides
ImageFxModifierTest::testModification public function @covers ::modification
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUp protected function 340