public function SevenLayoutBuilderTest::testContextualLinks in Drupal 10
Tests the layout builder has expected contextual links with Seven.
See also
File
- core/
themes/ seven/ tests/ src/ Functional/ SevenLayoutBuilderTest.php, line 74
Class
- SevenLayoutBuilderTest
- Tests the Seven theme.
Namespace
Drupal\Tests\seven\FunctionalCode
public function testContextualLinks() {
$assert_session = $this
->assertSession();
$page = $this
->getSession()
->getPage();
$this
->drupalLogin($this
->drupalCreateUser([
'configure any layout',
'administer node display',
'administer node fields',
'access contextual links',
]));
$field_ui_prefix = 'admin/structure/types/manage/bundle_with_section_field';
// From the manage display page, go to manage the layout.
$this
->drupalGet("{$field_ui_prefix}/display/default");
$assert_session
->linkNotExists('Manage layout');
$assert_session
->fieldDisabled('layout[allow_custom]');
$this
->submitForm([
'layout[enabled]' => TRUE,
], 'Save');
$assert_session
->linkExists('Manage layout');
$this
->clickLink('Manage layout');
// Add a new block.
$assert_session
->linkExists('Add block');
$this
->clickLink('Add block');
$assert_session
->linkExists('Powered by Drupal');
$this
->clickLink('Powered by Drupal');
$page
->fillField('settings[label]', 'This is the label');
$page
->checkField('settings[label_display]');
$page
->pressButton('Add block');
// Test that the block has the contextual class applied and the container
// for contextual links.
$assert_session
->elementExists('css', 'div.block-system-powered-by-block.contextual-region div[data-contextual-id]');
// Ensure other blocks do not have contextual links.
$assert_session
->elementExists('css', 'div.block-page-title-block');
$assert_session
->elementNotExists('css', 'div.block-page-title-block.contextual-region div[data-contextual-id]');
}