BlockContentContextualLinksTest.php

Same filename and directory in other branches
  1. 11.x core/modules/block_content/tests/src/Functional/BlockContentContextualLinksTest.php
  2. 10 core/modules/block_content/tests/src/Functional/BlockContentContextualLinksTest.php
  3. 9 core/modules/block_content/tests/src/Functional/BlockContentContextualLinksTest.php

Namespace

Drupal\Tests\block_content\Functional

File

core/modules/block_content/tests/src/Functional/BlockContentContextualLinksTest.php

View source
<?php

namespace Drupal\Tests\block_content\Functional;


/**
 * Tests views contextual links on block content.
 *
 * @group block_content
 */
class BlockContentContextualLinksTest extends BlockContentTestBase {
  
  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'contextual',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * Tests contextual links.
   */
  public function testBlockContentContextualLinks() {
    $block_content = $this->createBlockContent();
    $block = $this->placeBlock('block_content:' . $block_content->uuid());
    $user = $this->drupalCreateUser([
      'administer blocks',
      'access contextual links',
    ]);
    $this->drupalLogin($user);
    $this->drupalGet('<front>');
    $this->assertSession()
      ->elementAttributeContains('css', 'div[data-contextual-id]', 'data-contextual-id', 'block:block=' . $block->id() . ':langcode=en|block_content:block_content=' . $block_content->id() . ':');
  }

}

Classes

Title Deprecated Summary
BlockContentContextualLinksTest Tests views contextual links on block content.

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