public function HttpCacheTest::testDoesNotReloadResponsesWhenAllowReloadIsSetFalseDefault

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/HttpCache/HttpCacheTest.php, line 281

Class

HttpCacheTest

Namespace

Symfony\Component\HttpKernel\Tests\HttpCache

Code

public function testDoesNotReloadResponsesWhenAllowReloadIsSetFalseDefault() {
  $count = 0;
  $this
    ->setNextResponse(200, array(
    'Cache-Control' => 'public, max-age=10000',
  ), '', function ($request, $response) use (&$count) {
    ++$count;
    $response
      ->setContent(1 == $count ? 'Hello World' : 'Goodbye World');
  });
  $this
    ->request('GET', '/');
  $this
    ->assertEquals(200, $this->response
    ->getStatusCode());
  $this
    ->assertEquals('Hello World', $this->response
    ->getContent());
  $this
    ->assertTraceContains('store');
  $this
    ->request('GET', '/');
  $this
    ->assertEquals(200, $this->response
    ->getStatusCode());
  $this
    ->assertEquals('Hello World', $this->response
    ->getContent());
  $this
    ->assertTraceContains('fresh');
  $this->cacheConfig['allow_reload'] = false;
  $this
    ->request('GET', '/', array(
    'HTTP_CACHE_CONTROL' => 'no-cache',
  ));
  $this
    ->assertEquals(200, $this->response
    ->getStatusCode());
  $this
    ->assertEquals('Hello World', $this->response
    ->getContent());
  $this
    ->assertTraceNotContains('reload');
  $this
    ->request('GET', '/', array(
    'HTTP_CACHE_CONTROL' => 'no-cache',
  ));
  $this
    ->assertEquals(200, $this->response
    ->getStatusCode());
  $this
    ->assertEquals('Hello World', $this->response
    ->getContent());
  $this
    ->assertTraceNotContains('reload');
}