class FieldHelpTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/field/tests/src/Functional/FieldHelpTest.php \Drupal\Tests\field\Functional\FieldHelpTest
- 9 core/modules/field/tests/src/Functional/FieldHelpTest.php \Drupal\Tests\field\Functional\FieldHelpTest
Tests help display for the Field module.
@group field
Hierarchy
- class \Drupal\Tests\BrowserTestBase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, FunctionalTestSetupTrait, TestSetupTrait, BlockCreationTrait, ConfigTestTrait, ExtensionListTestTrait, ContentTypeCreationTrait, NodeCreationTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings, UiHelperTrait, UserCreationTrait, XdebugRequestTrait
- class \Drupal\Tests\field\Functional\FieldHelpTest
Expanded class hierarchy of FieldHelpTest
File
- core/
modules/ field/ tests/ src/ Functional/ FieldHelpTest.php, line 12
Namespace
Drupal\Tests\field\FunctionalView source
class FieldHelpTest extends BrowserTestBase {
/**
* Modules to enable.
*
* @var array
*/
protected static $modules = [
'field',
'help',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* The admin user that will be created.
*/
protected $adminUser;
protected function setUp() : void {
parent::setUp();
// Create the admin user.
$this->adminUser = $this
->drupalCreateUser([
'access administration pages',
'view the administration theme',
]);
}
/**
* Tests the Field module's help page.
*/
public function testFieldHelp() {
// Log in the admin user.
$this
->drupalLogin($this->adminUser);
// Visit the Help page and make sure no warnings or notices are thrown.
$this
->drupalGet('admin/help/field');
// Enable the Options, Email and Field API Test modules.
\Drupal::service('module_installer')
->install([
'options',
'field_test',
]);
$this
->drupalGet('admin/help/field');
$this
->assertSession()
->linkExists('Options', 0, 'Options module is listed on the Field help page.');
// Verify that modules with field types that do not implement hook_help are
// listed.
$this
->assertSession()
->pageTextContains('Field API Test');
$this
->assertSession()
->linkNotExists('Field API Test', 'Modules with field types that do not implement hook_help are not linked.');
$this
->assertSession()
->linkNotExists('Link', 'Modules that have not been installed, are not listed.');
}
}