You are here

public function WebformHelpTest::testHelp in Webform 8.5

Same name and namespace in other branches
  1. 6.x tests/src/Functional/WebformHelpTest.php \Drupal\Tests\webform\Functional\WebformHelpTest::testHelp()

Tests webform help.

File

tests/src/Functional/WebformHelpTest.php, line 31

Class

WebformHelpTest
Tests for webform help.

Namespace

Drupal\Tests\webform\Functional

Code

public function testHelp() {
  $this
    ->drupalLogin($this->rootUser);

  // Check notifications, promotion, and welcome messages displayed.
  $this
    ->drupalGet('/admin/structure/webform');
  $this
    ->assertRaw('This is a warning notification.');
  $this
    ->assertRaw('This is an info notification.');
  $this
    ->assertRaw('If you enjoy and value Drupal and the Webform module consider');

  // Close all notifications, promotion, and welcome messages.
  $this
    ->drupalGet('/admin/structure/webform');
  $this
    ->clickLink('×', 0);
  $this
    ->drupalGet('/admin/structure/webform');
  $this
    ->clickLink('×', 0);
  $this
    ->drupalGet('/admin/structure/webform');
  $this
    ->clickLink('×', 0);

  // Check notifications, promotion, and welcome messages closed.
  $this
    ->drupalGet('/admin/structure/webform');
  $this
    ->assertNoRaw('This is a warning notification.');
  $this
    ->assertNoRaw('This is an info notification.');
  $this
    ->assertNoRaw('If you enjoy and value Drupal and the Webform module consider');

  // Check that help is enabled.
  $this
    ->drupalGet('/admin/structure/webform/config/advanced');
  $this
    ->assertPattern('#<div id="block-[^"]+" role="complementary">#');
  $this
    ->assertRaw('The <strong>Advanced configuration</strong> page allows an administrator to enable/disable UI behaviors, manage requirements and define data used for testing webforms.');

  // Disable help via the UI which will clear the cached help block.
  $this
    ->drupalPostForm('/admin/structure/webform/config/advanced', [
    'ui[help_disabled]' => TRUE,
  ], 'Save configuration');

  // Check that help is disabled.
  $this
    ->drupalGet('/admin/structure/webform/config/advanced');
  $this
    ->assertNoPattern('#<div id="block-[^"]+" role="complementary">#');
  $this
    ->assertNoRaw('The <strong>Advanced configuration</strong> page allows an administrator to enable/disable UI behaviors, manage requirements and define data used for testing webforms.');
}