ResponseTest.php 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?php
  2. /*
  3. * This file is part of the symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Tests\Component\HttpFoundation;
  11. use Symfony\Component\HttpFoundation\Response;
  12. class ResponseTest extends \PHPUnit_Framework_TestCase
  13. {
  14. public function testIsValidateable()
  15. {
  16. $response = new Response('', 200, array('Last-Modified' => $this->createDateTimeOneHourAgo()->format(DATE_RFC2822)));
  17. $this->assertTrue($response->isValidateable(), '->isValidateable() returns true if Last-Modified is present');
  18. $response = new Response('', 200, array('ETag' => '"12345"'));
  19. $this->assertTrue($response->isValidateable(), '->isValidateable() returns true if ETag is present');
  20. $response = new Response();
  21. $this->assertFalse($response->isValidateable(), '->isValidateable() returns false when no validator is present');
  22. }
  23. public function testGetDate()
  24. {
  25. $response = new Response('', 200, array('Date' => $this->createDateTimeOneHourAgo()->format(DATE_RFC2822)));
  26. $this->assertEquals(0, $this->createDateTimeOneHourAgo()->diff($response->getDate())->format('%s'), '->getDate() returns the Date header if present');
  27. $response = new Response();
  28. $date = $response->getDate();
  29. $this->assertLessThan(1, $date->diff(new \DateTime(), true)->format('%s'), '->getDate() returns the current Date if no Date header present');
  30. $response = new Response('', 200, array('Date' => $this->createDateTimeOneHourAgo()->format(DATE_RFC2822)));
  31. $now = $this->createDateTimeNow();
  32. $response->headers->set('Date', $now->format(DATE_RFC2822));
  33. $this->assertEquals(0, $now->diff($response->getDate())->format('%s'), '->getDate() returns the date when the header has been modified');
  34. }
  35. public function testGetMaxAge()
  36. {
  37. $response = new Response();
  38. $response->headers->set('Cache-Control', 's-maxage=600, max-age=0');
  39. $this->assertEquals(600, $response->getMaxAge(), '->getMaxAge() uses s-maxage cache control directive when present');
  40. $response = new Response();
  41. $response->headers->set('Cache-Control', 'max-age=600');
  42. $this->assertEquals(600, $response->getMaxAge(), '->getMaxAge() falls back to max-age when no s-maxage directive present');
  43. $response = new Response();
  44. $response->headers->set('Cache-Control', 'must-revalidate');
  45. $response->headers->set('Expires', $this->createDateTimeOneHourLater()->format(DATE_RFC2822));
  46. $this->assertEquals(3600, $response->getMaxAge(), '->getMaxAge() falls back to Expires when no max-age or s-maxage directive present');
  47. $response = new Response();
  48. $this->assertNull($response->getMaxAge(), '->getMaxAge() returns null if no freshness information available');
  49. }
  50. public function testIsPrivate()
  51. {
  52. $response = new Response();
  53. $response->headers->set('Cache-Control', 'max-age=100');
  54. $response->setPrivate();
  55. $this->assertEquals(100, $response->headers->getCacheControlDirective('max-age'), '->isPrivate() adds the private Cache-Control directive when set to true');
  56. $this->assertTrue($response->headers->getCacheControlDirective('private'), '->isPrivate() adds the private Cache-Control directive when set to true');
  57. $response = new Response();
  58. $response->headers->set('Cache-Control', 'public, max-age=100');
  59. $response->setPrivate();
  60. $this->assertEquals(100, $response->headers->getCacheControlDirective('max-age'), '->isPrivate() adds the private Cache-Control directive when set to true');
  61. $this->assertTrue($response->headers->getCacheControlDirective('private'), '->isPrivate() adds the private Cache-Control directive when set to true');
  62. $this->assertFalse($response->headers->hasCacheControlDirective('public'), '->isPrivate() removes the public Cache-Control directive');
  63. }
  64. public function testExpire()
  65. {
  66. $response = new Response();
  67. $response->headers->set('Cache-Control', 'max-age=100');
  68. $response->expire();
  69. $this->assertEquals(100, $response->headers->get('Age'), '->expire() sets the Age to max-age when present');
  70. $response = new Response();
  71. $response->headers->set('Cache-Control', 'max-age=100, s-maxage=500');
  72. $response->expire();
  73. $this->assertEquals(500, $response->headers->get('Age'), '->expire() sets the Age to s-maxage when both max-age and s-maxage are present');
  74. $response = new Response();
  75. $response->headers->set('Cache-Control', 'max-age=5, s-maxage=500');
  76. $response->headers->set('Age', '1000');
  77. $response->expire();
  78. $this->assertEquals(1000, $response->headers->get('Age'), '->expire() does nothing when the response is already stale/expired');
  79. $response = new Response();
  80. $response->expire();
  81. $this->assertFalse($response->headers->has('Age'), '->expire() does nothing when the response does not include freshness information');
  82. }
  83. public function testGetTtl()
  84. {
  85. $response = new Response();
  86. $this->assertNull($response->getTtl(), '->getTtl() returns null when no Expires or Cache-Control headers are present');
  87. $response = new Response();
  88. $response->headers->set('Expires', $this->createDateTimeOneHourLater()->format(DATE_RFC2822));
  89. $this->assertLessThan(1, 3600 - $response->getTtl(), '->getTtl() uses the Expires header when no max-age is present');
  90. $response = new Response();
  91. $response->headers->set('Expires', $this->createDateTimeOneHourAgo()->format(DATE_RFC2822));
  92. $this->assertLessThan(0, $response->getTtl(), '->getTtl() returns negative values when Expires is in part');
  93. $response = new Response();
  94. $response->headers->set('Cache-Control', 'max-age=60');
  95. $this->assertLessThan(1, 60 - $response->getTtl(), '->getTtl() uses Cache-Control max-age when present');
  96. }
  97. public function testGetVary()
  98. {
  99. $response = new Response();
  100. $this->assertEquals(array(), $response->getVary(), '->getVary() returns an empty array if no Vary header is present');
  101. $response = new Response();
  102. $response->headers->set('Vary', 'Accept-Language');
  103. $this->assertEquals(array('Accept-Language'), $response->getVary(), '->getVary() parses a single header name value');
  104. $response = new Response();
  105. $response->headers->set('Vary', 'Accept-Language User-Agent X-Foo');
  106. $this->assertEquals(array('Accept-Language', 'User-Agent', 'X-Foo'), $response->getVary(), '->getVary() parses multiple header name values separated by spaces');
  107. $response = new Response();
  108. $response->headers->set('Vary', 'Accept-Language,User-Agent, X-Foo');
  109. $this->assertEquals(array('Accept-Language', 'User-Agent', 'X-Foo'), $response->getVary(), '->getVary() parses multiple header name values separated by commas');
  110. }
  111. public function testDefaultContentType()
  112. {
  113. $headerMock = $this->getMock('Symfony\Component\HttpFoundation\ResponseHeaderBag', array('set'));
  114. $headerMock->expects($this->at(0))
  115. ->method('set')
  116. ->with('Content-Type', 'text/html; charset=UTF-8');
  117. $headerMock->expects($this->at(1))
  118. ->method('set')
  119. ->with('Content-Type', 'text/html; charset=Foo');
  120. $response = new Response();
  121. $response->headers = $headerMock;
  122. // verify first set()
  123. $response->__toString();
  124. $response->headers->remove('Content-Type');
  125. $response->setCharset('Foo');
  126. // verify second set()
  127. $response->__toString();
  128. }
  129. protected function createDateTimeOneHourAgo()
  130. {
  131. $date = new \DateTime();
  132. return $date->sub(new \DateInterval('PT1H'));
  133. }
  134. protected function createDateTimeOneHourLater()
  135. {
  136. $date = new \DateTime();
  137. return $date->add(new \DateInterval('PT1H'));
  138. }
  139. protected function createDateTimeNow()
  140. {
  141. return new \DateTime();
  142. }
  143. }