You are here

public function PageCacheTest::testQueryParameterFormatRequests in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/page_cache/tests/src/Functional/PageCacheTest.php \Drupal\Tests\page_cache\Functional\PageCacheTest::testQueryParameterFormatRequests()
  2. 9 core/modules/page_cache/tests/src/Functional/PageCacheTest.php \Drupal\Tests\page_cache\Functional\PageCacheTest::testQueryParameterFormatRequests()

Tests support for different cache items with different request formats specified via a query parameter.

File

core/modules/page_cache/tests/src/Functional/PageCacheTest.php, line 123

Class

PageCacheTest
Enables the page cache and tests it with various HTTP requests.

Namespace

Drupal\Tests\page_cache\Functional

Code

public function testQueryParameterFormatRequests() {
  $config = $this
    ->config('system.performance');
  $config
    ->set('cache.page.max_age', 300);
  $config
    ->save();
  $accept_header_cache_url = Url::fromRoute('system_test.page_cache_accept_header');
  $accept_header_cache_url_with_json = Url::fromRoute('system_test.page_cache_accept_header', [
    '_format' => 'json',
  ]);
  $this
    ->drupalGet($accept_header_cache_url);

  // Verify that HTML page was not yet cached.
  $this
    ->assertSession()
    ->responseHeaderEquals('X-Drupal-Cache', 'MISS');
  $this
    ->drupalGet($accept_header_cache_url);

  // Verify that HTML page was cached.
  $this
    ->assertSession()
    ->responseHeaderEquals('X-Drupal-Cache', 'HIT');

  // Verify that the correct HTML response was returned.
  $this
    ->assertSession()
    ->responseContains('<p>oh hai this is html.</p>');
  $this
    ->drupalGet($accept_header_cache_url_with_json);

  // Verify that JSON response was not yet cached.
  $this
    ->assertSession()
    ->responseHeaderEquals('X-Drupal-Cache', 'MISS');
  $this
    ->drupalGet($accept_header_cache_url_with_json);

  // Verify that JSON response was cached.
  $this
    ->assertSession()
    ->responseHeaderEquals('X-Drupal-Cache', 'HIT');

  // Verify that the correct JSON response was returned.
  $this
    ->assertSession()
    ->responseContains('{"content":"oh hai this is json"}');
}