You are here

public function BlockHiddenRegionTest::testBlockNotInHiddenRegion in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/block/src/Tests/BlockHiddenRegionTest.php \Drupal\block\Tests\BlockHiddenRegionTest::testBlockNotInHiddenRegion()

Tests that hidden regions do not inherit blocks when a theme is installed.

File

core/modules/block/src/Tests/BlockHiddenRegionTest.php, line 51
Contains \Drupal\block\Tests\BlockHiddenRegionTest.

Class

BlockHiddenRegionTest
Tests that a newly installed theme does not inherit blocks to its hidden regions.

Namespace

Drupal\block\Tests

Code

public function testBlockNotInHiddenRegion() {

  // Ensure that the search form block is displayed.
  $this
    ->drupalGet('');
  $this
    ->assertText('Search', 'Block was displayed on the front page.');

  // Install "block_test_theme" and set it as the default theme.
  $theme = 'block_test_theme';

  // We need to install a non-hidden theme so that there is more than one
  // local task.
  \Drupal::service('theme_handler')
    ->install(array(
    $theme,
    'stark',
  ));
  $this
    ->config('system.theme')
    ->set('default', $theme)
    ->save();

  // Installing a theme will cause the kernel terminate event to rebuild the
  // router. Simulate that here.
  \Drupal::service('router.builder')
    ->rebuildIfNeeded();

  // Ensure that "block_test_theme" is set as the default theme.
  $this
    ->drupalGet('admin/structure/block');
  $this
    ->assertText('Block test theme(' . t('active tab') . ')', 'Default local task on blocks admin page is the block test theme.');

  // Ensure that the search form block is displayed.
  $this
    ->drupalGet('');
  $this
    ->assertText('Search', 'Block was displayed on the front page.');
}