You are here

public function BlockCacheTest::testCachePermissions in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/block/tests/src/Functional/BlockCacheTest.php \Drupal\Tests\block\Functional\BlockCacheTest::testCachePermissions()
  2. 10 core/modules/block/tests/src/Functional/BlockCacheTest.php \Drupal\Tests\block\Functional\BlockCacheTest::testCachePermissions()

Test a cacheable block without any additional cache context.

File

core/modules/block/tests/src/Functional/BlockCacheTest.php, line 127

Class

BlockCacheTest
Tests block caching.

Namespace

Drupal\Tests\block\Functional

Code

public function testCachePermissions() {

  // user.permissions is a required context, so a user with different
  // permissions will see a different version of the block.
  \Drupal::state()
    ->set('block_test.cache_contexts', []);
  $current_content = $this
    ->randomMachineName();
  \Drupal::state()
    ->set('block_test.content', $current_content);
  $this
    ->drupalGet('');
  $this
    ->assertText($current_content, 'Block content displays.');
  $old_content = $current_content;
  $current_content = $this
    ->randomMachineName();
  \Drupal::state()
    ->set('block_test.content', $current_content);
  $this
    ->drupalGet('user');
  $this
    ->assertText($old_content, 'Block content served from cache.');
  $this
    ->drupalLogout();
  $this
    ->drupalGet('user');
  $this
    ->assertText($current_content, 'Block content not served from cache.');
}