BlockHtmlTest.php

Same filename and directory in other branches
  1. 9 core/modules/block/tests/src/Functional/BlockHtmlTest.php
  2. 8.9.x core/modules/block/tests/src/Functional/BlockHtmlTest.php
  3. 11.x core/modules/block/tests/src/Functional/BlockHtmlTest.php

Namespace

Drupal\Tests\block\Functional

File

core/modules/block/tests/src/Functional/BlockHtmlTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\block\Functional;

use Drupal\Tests\BrowserTestBase;

/**
 * Tests block HTML ID validity.
 *
 * @group block
 */
class BlockHtmlTest extends BrowserTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'block',
    'block_test',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->drupalLogin($this->drupalCreateUser([
      'administer blocks',
      'access administration pages',
    ]));
    // Enable the test_html block, to test HTML ID and attributes.
    \Drupal::keyValue('block_test')->set('attributes', [
      'data-custom-attribute' => 'foo',
    ]);
    \Drupal::keyValue('block_test')->set('content', $this->randomMachineName());
    $this->drupalPlaceBlock('test_html', [
      'id' => 'test_html_block',
    ]);
    // Enable a menu block, to test more complicated HTML.
    $this->drupalPlaceBlock('system_menu_block:admin', [
      'id' => 'test_menu_block',
    ]);
  }
  
  /**
   * Tests for valid HTML for a block.
   */
  public function testHtml() : void {
    $this->drupalGet('');
    // Ensure that a block's ID is converted to an HTML valid ID, and that
    // block-specific attributes are added to the same DOM element.
    $this->assertSession()
      ->elementExists('xpath', '//div[@id="block-test-html-block" and @data-custom-attribute="foo"]');
    // Ensure expected markup for a menu block.
    $this->assertSession()
      ->elementExists('xpath', '//nav[@id="block-test-menu-block"]/ul/li');
  }

}

Classes

Title Deprecated Summary
BlockHtmlTest Tests block HTML ID validity.

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