function BlockInvalidRegionTest::testBlockInInvalidRegion

Tests that blocks assigned to invalid regions work correctly.

File

drupal/core/modules/block/lib/Drupal/block/Tests/BlockInvalidRegionTest.php, line 46
Definition of Drupal\block\Tests\BlockInvalidRegionTest.

Class

BlockInvalidRegionTest
Tests that a block assigned to an invalid region triggers the warning.

Namespace

Drupal\block\Tests

Code

function testBlockInInvalidRegion() {

  // Enable a test block and place it in an invalid region.
  $block = $this
    ->drupalPlaceBlock('test_html_id');
  $block
    ->set('region', 'invalid_region');
  $block
    ->save();
  $warning_message = t('The block %info was assigned to the invalid region %region and has been disabled.', array(
    '%info' => $block
      ->id(),
    '%region' => 'invalid_region',
  ));

  // Clearing the cache should disable the test block placed in the invalid region.
  $this
    ->drupalPost('admin/config/development/performance', array(), 'Clear all caches');
  $this
    ->assertRaw($warning_message, 'Enabled block was in the invalid region and has been disabled.');

  // Clear the cache to check if the warning message is not triggered.
  $this
    ->drupalPost('admin/config/development/performance', array(), 'Clear all caches');
  $this
    ->assertNoRaw($warning_message, 'Disabled block in the invalid region will not trigger the warning.');

  // Place disabled test block in the invalid region of the default theme.
  $block = entity_load('block', $block
    ->id());
  $block
    ->set('region', 'invalid_region');
  $block
    ->save();

  // Clear the cache to check if the warning message is not triggered.
  $this
    ->drupalPost('admin/config/development/performance', array(), 'Clear all caches');
  $this
    ->assertNoRaw($warning_message, 'Disabled block in the invalid region will not trigger the warning.');
}