public function StreamedResponseTest::testPrepareWith10Protocol

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Tests/StreamedResponseTest.php, line 40

Class

StreamedResponseTest

Namespace

Symfony\Component\HttpFoundation\Tests

Code

public function testPrepareWith10Protocol() {
  $response = new StreamedResponse(function () {
    echo 'foo';
  });
  $request = Request::create('/');
  $request->server
    ->set('SERVER_PROTOCOL', 'HTTP/1.0');
  $response
    ->prepare($request);
  $this
    ->assertEquals('1.0', $response
    ->getProtocolVersion());
  $this
    ->assertNull($response->headers
    ->get('Transfer-Encoding'));
  $this
    ->assertEquals('no-cache, private', $response->headers
    ->get('Cache-Control'));
}