You are here

protected function FilterFormTest::assertDisabledTextarea in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/filter/tests/src/Functional/FilterFormTest.php \Drupal\Tests\filter\Functional\FilterFormTest::assertDisabledTextarea()
  2. 10 core/modules/filter/tests/src/Functional/FilterFormTest.php \Drupal\Tests\filter\Functional\FilterFormTest::assertDisabledTextarea()

Asserts that a textarea with a given ID has been disabled from editing.

Parameters

string $id: The HTML ID of the textarea.

Return value

bool TRUE if the assertion passed; FALSE otherwise.

1 call to FilterFormTest::assertDisabledTextarea()
FilterFormTest::doFilterFormTestAsNonAdmin in core/modules/filter/tests/src/Functional/FilterFormTest.php
Tests the behavior of the 'text_format' element as a normal user.

File

core/modules/filter/tests/src/Functional/FilterFormTest.php, line 250

Class

FilterFormTest
Tests form elements with associated text formats.

Namespace

Drupal\Tests\filter\Functional

Code

protected function assertDisabledTextarea($id) {
  $textarea = $this
    ->assertSession()
    ->fieldDisabled($id);
  $this
    ->assertSame('textarea', $textarea
    ->getTagName());
  $this
    ->assertSame('This field has been disabled because you do not have sufficient permissions to edit it.', $textarea
    ->getText());

  // Make sure the text format select is not shown.
  $select_id = str_replace('value', 'format--2', $id);
  $this
    ->assertNoSelect($select_id);
}