class HelpBlockTest
Same name in this branch
- 11.x core/modules/help/tests/src/Functional/HelpBlockTest.php \Drupal\Tests\help\Functional\HelpBlockTest
Same name and namespace in other branches
- 10 core/modules/help/tests/src/Functional/HelpBlockTest.php \Drupal\Tests\help\Functional\HelpBlockTest
- 9 core/modules/help/tests/src/Functional/HelpBlockTest.php \Drupal\Tests\help\Functional\HelpBlockTest
- 8.9.x core/modules/help/tests/src/Functional/HelpBlockTest.php \Drupal\Tests\help\Functional\HelpBlockTest
- main core/modules/help/tests/src/Functional/HelpBlockTest.php \Drupal\Tests\help\Functional\HelpBlockTest
Tests display of help block.
Attributes
#[Group('help')]
#[RunTestsInSeparateProcesses]
Hierarchy
- class \Drupal\KernelTests\KernelTestBase implements \Drupal\Core\DependencyInjection\ServiceProviderInterface uses \Drupal\Tests\DrupalTestCaseTrait, \Drupal\KernelTests\AssertContentTrait, \Drupal\Tests\RandomGeneratorTrait, \Drupal\Tests\ConfigTestTrait, \Drupal\Tests\ExtensionListTestTrait, \Drupal\Tests\TestRequirementsTrait, \Drupal\Tests\PhpUnitCompatibilityTrait, \Prophecy\PhpUnit\ProphecyTrait, \Drupal\TestTools\Extension\DeprecationBridge\ExpectDeprecationTrait, \Drupal\Tests\BrowserHtmlDebugTrait, \Drupal\Tests\HttpKernelUiHelperTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\help\Kernel\HelpBlockTest uses \Drupal\Tests\HttpKernelUiHelperTrait, \Drupal\Tests\block\Traits\BlockCreationTrait extends \Drupal\KernelTests\KernelTestBase
Expanded class hierarchy of HelpBlockTest
File
-
core/
modules/ help/ tests/ src/ Kernel/ HelpBlockTest.php, line 16
Namespace
Drupal\Tests\help\KernelView source
class HelpBlockTest extends KernelTestBase {
use HttpKernelUiHelperTrait;
use BlockCreationTrait;
/**
* {@inheritdoc}
*/
protected static $modules = [
'help',
'help_page_test',
'block',
'more_help_page_test',
'system',
'user',
];
/**
* The help block instance.
*
* @var \Drupal\block\Entity\Block
*/
protected $helpBlock;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->installEntitySchema('block');
$this->container
->get('theme_installer')
->install([
'stark',
]);
$this->config('system.theme')
->set('default', 'stark')
->save();
$this->helpBlock = $this->placeBlock('help_block');
}
/**
* Logs in users, tests help pages.
*/
public function testHelp() : void {
$this->drupalGet('help_page_test/has_help');
$this->assertSession()
->pageTextContains('I have help!');
$this->assertSession()
->pageTextContains($this->helpBlock
->label());
$this->drupalGet('help_page_test/no_help');
// The help block should not appear when there is no help.
$this->assertSession()
->pageTextNotContains($this->helpBlock
->label());
// Ensure that if two hook_help() implementations both return a render array
// the output is as expected.
$this->drupalGet('help_page_test/test_array');
$this->assertSession()
->pageTextContains('Help text from more_help_page_test_help module.');
$this->assertSession()
->pageTextContains('Help text from help_page_test_help module.');
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.