You are here

class RelativeHeightModifierTest in Modifiers Pack 8

@coversDefaultClass \Drupal\modifiers_relative_height\Plugin\modifiers\RelativeHeightModifier @group modifiers_pack

Hierarchy

Expanded class hierarchy of RelativeHeightModifierTest

File

modules/modifiers_relative_height/tests/src/Unit/RelativeHeightModifierTest.php, line 12

Namespace

Drupal\Tests\modifiers_relative_height\Unit
View source
class RelativeHeightModifierTest extends UnitTestCase {

  /**
   * @covers ::modification
   */
  public function testModification() {

    // Vertical align is empty.
    $actual_1 = RelativeHeightModifier::modification('.selector', [
      'relative_height' => '1.500',
    ]);
    $expected_css_1 = [
      'all' => [
        '.selector' => [
          'overflow:hidden',
        ],
      ],
    ];
    $expected_libraries_1 = [
      'modifiers_relative_height/apply',
    ];
    $expected_settings_1 = [
      'namespace' => 'RelativeHeightModifier',
      'callback' => 'apply',
      'selector' => '.selector',
      'media' => 'all',
      'args' => [
        'ratio' => '1.500',
      ],
    ];
    $this
      ->assertEquals($expected_css_1, $actual_1
      ->getCss());
    $this
      ->assertEquals($expected_libraries_1, $actual_1
      ->getLibraries());
    $this
      ->assertEquals($expected_settings_1, $actual_1
      ->getSettings());
    $this
      ->assertEmpty($actual_1
      ->getAttributes());
    $this
      ->assertEmpty($actual_1
      ->getLinks());

    // Vertical align is not empty.
    $actual_2 = RelativeHeightModifier::modification('.selector', [
      'relative_height' => '1.500',
      'vertical_align' => 'top',
    ]);
    $expected_css_2 = [
      'all' => [
        '.selector' => [
          'display:flex',
          'align-items:flex-start',
          'overflow:hidden',
        ],
      ],
    ];
    $expected_libraries_2 = [
      'modifiers_relative_height/apply',
    ];
    $expected_settings_2 = [
      'namespace' => 'RelativeHeightModifier',
      'callback' => 'apply',
      'selector' => '.selector',
      'media' => 'all',
      'args' => [
        'ratio' => '1.500',
      ],
    ];
    $this
      ->assertEquals($expected_css_2, $actual_2
      ->getCss());
    $this
      ->assertEquals($expected_libraries_2, $actual_2
      ->getLibraries());
    $this
      ->assertEquals($expected_settings_2, $actual_2
      ->getSettings());
    $this
      ->assertEmpty($actual_2
      ->getAttributes());
    $this
      ->assertEmpty($actual_2
      ->getLinks());
  }

}

Members

Namesort descending Modifiers Type Description Overrides
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.
RelativeHeightModifierTest::testModification public function @covers ::modification
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