CookieTest.php 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.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\Component\HttpFoundation\Tests;
  11. use PHPUnit\Framework\TestCase;
  12. use Symfony\Component\HttpFoundation\Cookie;
  13. /**
  14. * CookieTest.
  15. *
  16. * @author John Kary <john@johnkary.net>
  17. * @author Hugo Hamon <hugo.hamon@sensio.com>
  18. *
  19. * @group time-sensitive
  20. */
  21. class CookieTest extends TestCase
  22. {
  23. public function invalidNames()
  24. {
  25. return array(
  26. array(''),
  27. array(',MyName'),
  28. array(';MyName'),
  29. array(' MyName'),
  30. array("\tMyName"),
  31. array("\rMyName"),
  32. array("\nMyName"),
  33. array("\013MyName"),
  34. array("\014MyName"),
  35. );
  36. }
  37. /**
  38. * @dataProvider invalidNames
  39. * @expectedException \InvalidArgumentException
  40. */
  41. public function testInstantiationThrowsExceptionIfCookieNameContainsInvalidCharacters($name)
  42. {
  43. new Cookie($name);
  44. }
  45. /**
  46. * @expectedException \InvalidArgumentException
  47. */
  48. public function testInvalidExpiration()
  49. {
  50. new Cookie('MyCookie', 'foo', 'bar');
  51. }
  52. public function testNegativeExpirationIsNotPossible()
  53. {
  54. $cookie = new Cookie('foo', 'bar', -100);
  55. $this->assertSame(0, $cookie->getExpiresTime());
  56. }
  57. public function testGetValue()
  58. {
  59. $value = 'MyValue';
  60. $cookie = new Cookie('MyCookie', $value);
  61. $this->assertSame($value, $cookie->getValue(), '->getValue() returns the proper value');
  62. }
  63. public function testGetPath()
  64. {
  65. $cookie = new Cookie('foo', 'bar');
  66. $this->assertSame('/', $cookie->getPath(), '->getPath() returns / as the default path');
  67. }
  68. public function testGetExpiresTime()
  69. {
  70. $cookie = new Cookie('foo', 'bar');
  71. $this->assertEquals(0, $cookie->getExpiresTime(), '->getExpiresTime() returns the default expire date');
  72. $cookie = new Cookie('foo', 'bar', $expire = time() + 3600);
  73. $this->assertEquals($expire, $cookie->getExpiresTime(), '->getExpiresTime() returns the expire date');
  74. }
  75. public function testGetExpiresTimeIsCastToInt()
  76. {
  77. $cookie = new Cookie('foo', 'bar', 3600.9);
  78. $this->assertSame(3600, $cookie->getExpiresTime(), '->getExpiresTime() returns the expire date as an integer');
  79. }
  80. public function testConstructorWithDateTime()
  81. {
  82. $expire = new \DateTime();
  83. $cookie = new Cookie('foo', 'bar', $expire);
  84. $this->assertEquals($expire->format('U'), $cookie->getExpiresTime(), '->getExpiresTime() returns the expire date');
  85. }
  86. /**
  87. * @requires PHP 5.5
  88. */
  89. public function testConstructorWithDateTimeImmutable()
  90. {
  91. $expire = new \DateTimeImmutable();
  92. $cookie = new Cookie('foo', 'bar', $expire);
  93. $this->assertEquals($expire->format('U'), $cookie->getExpiresTime(), '->getExpiresTime() returns the expire date');
  94. }
  95. public function testGetExpiresTimeWithStringValue()
  96. {
  97. $value = '+1 day';
  98. $cookie = new Cookie('foo', 'bar', $value);
  99. $expire = strtotime($value);
  100. $this->assertEquals($expire, $cookie->getExpiresTime(), '->getExpiresTime() returns the expire date', 1);
  101. }
  102. public function testGetDomain()
  103. {
  104. $cookie = new Cookie('foo', 'bar', 0, '/', '.myfoodomain.com');
  105. $this->assertEquals('.myfoodomain.com', $cookie->getDomain(), '->getDomain() returns the domain name on which the cookie is valid');
  106. }
  107. public function testIsSecure()
  108. {
  109. $cookie = new Cookie('foo', 'bar', 0, '/', '.myfoodomain.com', true);
  110. $this->assertTrue($cookie->isSecure(), '->isSecure() returns whether the cookie is transmitted over HTTPS');
  111. }
  112. public function testIsHttpOnly()
  113. {
  114. $cookie = new Cookie('foo', 'bar', 0, '/', '.myfoodomain.com', false, true);
  115. $this->assertTrue($cookie->isHttpOnly(), '->isHttpOnly() returns whether the cookie is only transmitted over HTTP');
  116. }
  117. public function testCookieIsNotCleared()
  118. {
  119. $cookie = new Cookie('foo', 'bar', time() + 3600 * 24);
  120. $this->assertFalse($cookie->isCleared(), '->isCleared() returns false if the cookie did not expire yet');
  121. }
  122. public function testCookieIsCleared()
  123. {
  124. $cookie = new Cookie('foo', 'bar', time() - 20);
  125. $this->assertTrue($cookie->isCleared(), '->isCleared() returns true if the cookie has expired');
  126. }
  127. public function testToString()
  128. {
  129. $cookie = new Cookie('foo', 'bar', $expire = strtotime('Fri, 20-May-2011 15:25:52 GMT'), '/', '.myfoodomain.com', true);
  130. $this->assertEquals('foo=bar; expires=Fri, 20-May-2011 15:25:52 GMT; max-age='.($expire - time()).'; path=/; domain=.myfoodomain.com; secure; httponly', (string) $cookie, '->__toString() returns string representation of the cookie');
  131. $cookie = new Cookie('foo', null, 1, '/admin/', '.myfoodomain.com');
  132. $this->assertEquals('foo=deleted; expires='.gmdate('D, d-M-Y H:i:s T', $expire = time() - 31536001).'; max-age='.($expire - time()).'; path=/admin/; domain=.myfoodomain.com; httponly', (string) $cookie, '->__toString() returns string representation of a cleared cookie if value is NULL');
  133. $cookie = new Cookie('foo', 'bar', 0, '/', '');
  134. $this->assertEquals('foo=bar; path=/; httponly', (string) $cookie);
  135. }
  136. public function testRawCookie()
  137. {
  138. $cookie = new Cookie('foo', 'b a r', 0, '/', null, false, false);
  139. $this->assertFalse($cookie->isRaw());
  140. $this->assertEquals('foo=b+a+r; path=/', (string) $cookie);
  141. $cookie = new Cookie('foo', 'b+a+r', 0, '/', null, false, false, true);
  142. $this->assertTrue($cookie->isRaw());
  143. $this->assertEquals('foo=b+a+r; path=/', (string) $cookie);
  144. }
  145. public function testGetMaxAge()
  146. {
  147. $cookie = new Cookie('foo', 'bar');
  148. $this->assertEquals(0, $cookie->getMaxAge());
  149. $cookie = new Cookie('foo', 'bar', $expire = time() + 100);
  150. $this->assertEquals($expire - time(), $cookie->getMaxAge());
  151. $cookie = new Cookie('foo', 'bar', $expire = time() - 100);
  152. $this->assertEquals($expire - time(), $cookie->getMaxAge());
  153. }
  154. public function testFromString()
  155. {
  156. $cookie = Cookie::fromString('foo=bar; expires=Fri, 20-May-2011 15:25:52 GMT; path=/; domain=.myfoodomain.com; secure; httponly');
  157. $this->assertEquals(new Cookie('foo', 'bar', strtotime('Fri, 20-May-2011 15:25:52 GMT'), '/', '.myfoodomain.com', true, true, true), $cookie);
  158. $cookie = Cookie::fromString('foo=bar', true);
  159. $this->assertEquals(new Cookie('foo', 'bar'), $cookie);
  160. }
  161. }