You are here

public function ModalRendererTest::testModalRenderer in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/FunctionalJavascript/ModalRendererTest.php \Drupal\Tests\system\FunctionalJavascript\ModalRendererTest::testModalRenderer()

Tests that links respect 'data-dialog-renderer' attribute.

File

core/modules/system/tests/src/FunctionalJavascript/ModalRendererTest.php, line 27

Class

ModalRendererTest
Tests that dialog links use different renderer services.

Namespace

Drupal\Tests\system\FunctionalJavascript

Code

public function testModalRenderer() {
  $session_assert = $this
    ->assertSession();
  $this
    ->drupalGet('/dialog_renderer-test-links');
  $this
    ->clickLink('Normal Modal!');

  // Neither of the wide modals should have been used.
  $style = $session_assert
    ->waitForElementVisible('css', '.ui-dialog')
    ->getAttribute('style');
  $this
    ->assertStringNotContainsString('700px', $style);
  $this
    ->assertStringNotContainsString('1000px', $style);
  $this
    ->drupalGet('/dialog_renderer-test-links');
  $this
    ->clickLink('Wide Modal!');
  $this
    ->assertNotEmpty($session_assert
    ->waitForElementVisible('css', '.ui-dialog[style*="width: 700px;"]'));
  $this
    ->drupalGet('/dialog_renderer-test-links');
  $this
    ->clickLink('Extra Wide Modal!');
  $this
    ->assertNotEmpty($session_assert
    ->waitForElementVisible('css', '.ui-dialog[style*="width: 1000px;"]'));
}