function HtmlResponseAttachmentsTest::assertTeapotHeaders

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/Render/HtmlResponseAttachmentsTest.php \Drupal\Tests\system\Functional\Render\HtmlResponseAttachmentsTest::assertTeapotHeaders()
  2. 10 core/modules/system/tests/src/Functional/Render/HtmlResponseAttachmentsTest.php \Drupal\Tests\system\Functional\Render\HtmlResponseAttachmentsTest::assertTeapotHeaders()
  3. 11.x 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
Test rendering of ['#attached'].
HtmlResponseAttachmentsTest::testRenderCachedBlock in core/modules/system/tests/src/Functional/Render/HtmlResponseAttachmentsTest.php
Test 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() {
    $headers = $this->getSession()
        ->getResponseHeaders();
    $this->assertEquals($headers['X-Test-Teapot'], [
        'Teapot Mode Active',
    ]);
    $this->assertEquals($headers['X-Test-Teapot-Replace'], [
        'Teapot replaced',
    ]);
    $this->assertEquals($headers['X-Test-Teapot-No-Replace'], [
        'This value is not replaced',
        'This one is added',
    ]);
}

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