You are here

class CornersModifierTest in Modifiers Pack 8

@coversDefaultClass \Drupal\modifiers_corners\Plugin\modifiers\CornersModifier @group modifiers_pack

Hierarchy

Expanded class hierarchy of CornersModifierTest

File

modules/modifiers_corners/tests/src/Unit/CornersModifierTest.php, line 12

Namespace

Drupal\Tests\modifiers_corners\Unit
View source
class CornersModifierTest extends UnitTestCase {

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

    // Top left and right corners.
    $actual_1 = CornersModifier::modification('.selector', [
      'corners_tl_size' => '10',
      'corners_tl_units' => 'px',
      'corners_tr_size' => '20',
      'corners_tr_units' => '%',
    ]);
    $expected_css_1 = [
      'all' => [
        '.selector' => [
          'border-top-left-radius:10px',
          'border-top-right-radius:20%',
        ],
        '.selector:after' => [
          'border-top-left-radius:10px',
          'border-top-right-radius:20%',
        ],
        '.selector:before' => [
          'border-top-left-radius:10px',
          'border-top-right-radius:20%',
        ],
      ],
    ];
    $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());

    // Bottom left and right corners.
    $actual_2 = CornersModifier::modification('.selector', [
      'corners_bl_size' => '10',
      'corners_bl_units' => 'px',
      'corners_br_size' => '20',
      'corners_br_units' => '%',
    ]);
    $expected_css_2 = [
      'all' => [
        '.selector' => [
          'border-bottom-right-radius:20%',
          'border-bottom-left-radius:10px',
        ],
        '.selector:after' => [
          'border-bottom-right-radius:20%',
          'border-bottom-left-radius:10px',
        ],
        '.selector:before' => [
          'border-bottom-right-radius:20%',
          'border-bottom-left-radius:10px',
        ],
      ],
    ];
    $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
CornersModifierTest::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