PageCacheTagsTestBase.php

Same filename in this branch
  1. 8.9.x core/modules/system/src/Tests/Cache/PageCacheTagsTestBase.php
Same filename and directory in other branches
  1. 9 core/modules/system/tests/src/Functional/Cache/PageCacheTagsTestBase.php
  2. 10 core/modules/system/tests/src/Functional/Cache/PageCacheTagsTestBase.php
  3. 11.x core/modules/system/tests/src/Functional/Cache/PageCacheTagsTestBase.php

Namespace

Drupal\Tests\system\Functional\Cache

File

core/modules/system/tests/src/Functional/Cache/PageCacheTagsTestBase.php

View source
<?php

namespace Drupal\Tests\system\Functional\Cache;

use Drupal\Core\Url;
use Drupal\Tests\BrowserTestBase;
use Drupal\Component\Render\FormattableMarkup;

/**
 * Provides helper methods for page cache tags tests.
 */
abstract class PageCacheTagsTestBase extends BrowserTestBase {
    
    /**
     * {@inheritdoc}
     *
     * Always enable header dumping in page cache tags tests, this aids debugging.
     */
    protected $dumpHeaders = TRUE;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() {
        parent::setUp();
        // Enable page caching.
        $config = $this->config('system.performance');
        $config->set('cache.page.max_age', 3600);
        $config->save();
    }
    
    /**
     * Verify that when loading a given page, it's a page cache hit or miss.
     *
     * @param \Drupal\Core\Url $url
     *   The page for this URL will be loaded.
     * @param string $hit_or_miss
     *   'HIT' if a page cache hit is expected, 'MISS' otherwise.
     * @param array|false $tags
     *   When expecting a page cache hit, you may optionally specify an array of
     *   expected cache tags. While FALSE, the cache tags will not be verified.
     */
    protected function verifyPageCache(Url $url, $hit_or_miss, $tags = FALSE) {
        $this->drupalGet($url);
        $message = new FormattableMarkup('Page cache @hit_or_miss for %path.', [
            '@hit_or_miss' => $hit_or_miss,
            '%path' => $url->toString(),
        ]);
        $this->assertEqual($this->drupalGetHeader('X-Drupal-Cache'), $hit_or_miss, $message);
        if ($hit_or_miss === 'HIT' && is_array($tags)) {
            $absolute_url = $url->setAbsolute()
                ->toString();
            $cid_parts = [
                $absolute_url,
                '',
            ];
            $cid = implode(':', $cid_parts);
            $cache_entry = \Drupal::cache('page')->get($cid);
            sort($cache_entry->tags);
            $tags = array_unique($tags);
            sort($tags);
            $this->assertIdentical($cache_entry->tags, $tags);
        }
    }
    
    /**
     * Verify that when loading a given page, it's a page cache hit or miss.
     *
     * @param \Drupal\Core\Url $url
     *   The page for this URL will be loaded.
     * @param string $hit_or_miss
     *   'HIT' if a page cache hit is expected, 'MISS' otherwise.
     */
    protected function verifyDynamicPageCache(Url $url, $hit_or_miss) {
        $this->drupalGet($url);
        $message = new FormattableMarkup('Dynamic page cache @hit_or_miss for %path.', [
            '@hit_or_miss' => $hit_or_miss,
            '%path' => $url->toString(),
        ]);
        $this->assertSame($hit_or_miss, $this->getSession()
            ->getResponseHeader('X-Drupal-Dynamic-Cache'), $message);
    }

}

Classes

Title Deprecated Summary
PageCacheTagsTestBase Provides helper methods for page cache tags tests.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.