function TourHelpPageTest::verifyHelp

Same name and namespace in other branches
  1. 9 core/modules/tour/tests/src/Functional/TourHelpPageTest.php \Drupal\Tests\tour\Functional\TourHelpPageTest::verifyHelp()
  2. 10 core/modules/tour/tests/src/Functional/TourHelpPageTest.php \Drupal\Tests\tour\Functional\TourHelpPageTest::verifyHelp()
  3. 11.x core/modules/tour/tests/src/Functional/TourHelpPageTest.php \Drupal\Tests\tour\Functional\TourHelpPageTest::verifyHelp()

Verifies the logged in user has access to the help properly.

Parameters

bool $tours_ok: (optional) TRUE (default) if the user should see tours, FALSE if not.

1 call to TourHelpPageTest::verifyHelp()
TourHelpPageTest::testHelp in core/modules/tour/tests/src/Functional/TourHelpPageTest.php
Logs in users, tests help pages.

File

core/modules/tour/tests/src/Functional/TourHelpPageTest.php, line 76

Class

TourHelpPageTest
Verifies help page display of tours.

Namespace

Drupal\Tests\tour\Functional

Code

protected function verifyHelp($tours_ok = TRUE) {
    $this->drupalGet('admin/help');
    // All users should be able to see the module section.
    $this->assertText('Module overviews are provided by modules');
    foreach ($this->getModuleList() as $name) {
        $this->assertSession()
            ->linkExists($name);
    }
    // Some users should be able to see the tour section.
    if ($tours_ok) {
        $this->assertText('Tours guide you through workflows');
    }
    else {
        $this->assertNoText('Tours guide you through workflows');
    }
    $titles = $this->getTourList();
    // Test the titles that should be links.
    foreach ($titles[0] as $title) {
        if ($tours_ok) {
            $this->assertSession()
                ->linkExists($title);
        }
        else {
            $this->assertSession()
                ->linkNotExists($title);
            // Just test the first item in the list of links that should not
            // be there, because the second matches the name of a module that is
            // in the Module overviews section, so the link will be there and
            // this test will fail. Testing one should be sufficient to verify
            // the page is working correctly.
            break;
        }
    }
    // Test the titles that should not be links.
    foreach ($titles[1] as $title) {
        if ($tours_ok) {
            $this->assertText($title);
            $this->assertSession()
                ->linkNotExistsExact($title);
        }
        else {
            $this->assertNoText($title);
            // Just test the first item in the list of text that should not
            // be there, because the second matches part of the name of a module
            // that is in the Module overviews section, so the text will be there
            // and this test will fail. Testing one should be sufficient to verify
            // the page is working correctly.
            break;
        }
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.