You are here

protected function HtmlResponseAttachmentsTest::assertTeapotHeaders in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/Render/HtmlResponseAttachmentsTest.php \Drupal\Tests\system\Functional\Render\HtmlResponseAttachmentsTest::assertTeapotHeaders()

Helper function to make assertions about added HTTP headers.

2 calls to HtmlResponseAttachmentsTest::assertTeapotHeaders()
HtmlResponseAttachmentsTest::testAttachments in core/modules/system/tests/src/Functional/Render/HtmlResponseAttachmentsTest.php
Tests rendering of ['#attached'].
HtmlResponseAttachmentsTest::testRenderCachedBlock in core/modules/system/tests/src/Functional/Render/HtmlResponseAttachmentsTest.php
Tests caching of ['#attached'].

File

core/modules/system/tests/src/Functional/Render/HtmlResponseAttachmentsTest.php, line 100

Class

HtmlResponseAttachmentsTest
Functional tests for HtmlResponseAttachmentsProcessor.

Namespace

Drupal\Tests\system\Functional\Render

Code

protected function assertTeapotHeaders() {
  $this
    ->assertSession()
    ->responseHeaderEquals('X-Test-Teapot', 'Teapot Mode Active');
  $this
    ->assertSession()
    ->responseHeaderEquals('X-Test-Teapot-Replace', 'Teapot replaced');
  $this
    ->assertSession()
    ->responseHeaderEquals('X-Test-Teapot-No-Replace', 'This value is not replaced');
}