function BlockCacheTestCase::testCachePerPage

7.x block.test BlockCacheTestCase::testCachePerPage()

Test DRUPAL_CACHE_PER_PAGE.

File

drupal-7.x/modules/block/block.test, line 641
Tests for block.module.

Class

BlockCacheTestCase
Test block caching.

Code

function testCachePerPage() {
  $this->setCacheMode(DRUPAL_CACHE_PER_PAGE);
  $current_content = $this->randomName();
  variable_set('block_test_content', $current_content);

  $this->drupalGet('node');
  $this->assertText($current_content, 'Block content displays on the node page.');

  $old_content = $current_content;
  $current_content = $this->randomName();
  variable_set('block_test_content', $current_content);

  $this->drupalGet('user');
  $this->assertNoText($old_content, 'Block content cached for the node page does not show up for the user page.');
  $this->drupalGet('node');
  $this->assertText($old_content, 'Block content cached for the node page.');
}