public function HttpCacheTest::testEsiRecalculateContentLengthHeader in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Tests/HttpCache/HttpCacheTest.php \Symfony\Component\HttpKernel\Tests\HttpCache\HttpCacheTest::testEsiRecalculateContentLengthHeader()
File
- vendor/
symfony/ http-kernel/ Tests/ HttpCache/ HttpCacheTest.php, line 1109
Class
Namespace
Symfony\Component\HttpKernel\Tests\HttpCacheCode
public function testEsiRecalculateContentLengthHeader() {
$responses = array(
array(
'status' => 200,
'body' => '<esi:include src="/foo" />',
'headers' => array(
'Content-Length' => 26,
'Cache-Control' => 's-maxage=300',
'Surrogate-Control' => 'content="ESI/1.0"',
),
),
array(
'status' => 200,
'body' => 'Hello World!',
'headers' => array(),
),
);
$this
->setNextResponses($responses);
$this
->request('GET', '/', array(), array(), true);
$this
->assertEquals('Hello World!', $this->response
->getContent());
$this
->assertEquals(12, $this->response->headers
->get('Content-Length'));
}