BlockCacheTestCase::testNoCache

7 block.test BlockCacheTestCase::testNoCache()
8 block.test BlockCacheTestCase::testNoCache()

Test DRUPAL_NO_CACHE.

File

modules/block/block.test, line 594
Tests for block.module.

Code

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

  // If DRUPAL_NO_CACHE has no effect, the next request would be cached.
  $this->drupalGet('');
  $this->assertText($current_content, t('Block content displays.'));

  // A cached copy should not be served.
  $current_content = $this->randomName();
  variable_set('block_test_content', $current_content);
  $this->drupalGet('');
  $this->assertText($current_content, t('DRUPAL_NO_CACHE prevents blocks from being cached.'));
}
Login or register to post comments