CookieTest.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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 Symfony\Component\HttpFoundation\Cookie;
  12. /**
  13. * CookieTest.
  14. *
  15. * @author John Kary <john@johnkary.net>
  16. * @author Hugo Hamon <hugo.hamon@sensio.com>
  17. *
  18. * @group time-sensitive
  19. */
  20. class CookieTest extends \PHPUnit_Framework_TestCase
  21. {
  22. public function invalidNames()
  23. {
  24. return array(
  25. array(''),
  26. array(',MyName'),
  27. array(';MyName'),
  28. array(' MyName'),
  29. array("\tMyName"),
  30. array("\rMyName"),
  31. array("\nMyName"),
  32. array("\013MyName"),
  33. array("\014MyName"),
  34. );
  35. }
  36. /**
  37. * @dataProvider invalidNames
  38. * @expectedException \InvalidArgumentException
  39. */
  40. public function testInstantiationThrowsExceptionIfCookieNameContainsInvalidCharacters($name)
  41. {
  42. new Cookie($name);
  43. }
  44. /**
  45. * @expectedException \InvalidArgumentException
  46. */
  47. public function testInvalidExpiration()
  48. {
  49. $cookie = new Cookie('MyCookie', 'foo', 'bar');
  50. }
  51. public function testGetValue()
  52. {
  53. $value = 'MyValue';
  54. $cookie = new Cookie('MyCookie', $value);
  55. $this->assertSame($value, $cookie->getValue(), '->getValue() returns the proper value');
  56. }
  57. public function testGetPath()
  58. {
  59. $cookie = new Cookie('foo', 'bar');
  60. $this->assertSame('/', $cookie->getPath(), '->getPath() returns / as the default path');
  61. }
  62. public function testGetExpiresTime()
  63. {
  64. $cookie = new Cookie('foo', 'bar', 3600);
  65. $this->assertEquals(3600, $cookie->getExpiresTime(), '->getExpiresTime() returns the expire date');
  66. }
  67. public function testConstructorWithDateTime()
  68. {
  69. $expire = new \DateTime();
  70. $cookie = new Cookie('foo', 'bar', $expire);
  71. $this->assertEquals($expire->format('U'), $cookie->getExpiresTime(), '->getExpiresTime() returns the expire date');
  72. }
  73. /**
  74. * @requires PHP 5.5
  75. */
  76. public function testConstructorWithDateTimeImmutable()
  77. {
  78. $expire = new \DateTimeImmutable();
  79. $cookie = new Cookie('foo', 'bar', $expire);
  80. $this->assertEquals($expire->format('U'), $cookie->getExpiresTime(), '->getExpiresTime() returns the expire date');
  81. }
  82. public function testGetExpiresTimeWithStringValue()
  83. {
  84. $value = '+1 day';
  85. $cookie = new Cookie('foo', 'bar', $value);
  86. $expire = strtotime($value);
  87. $this->assertEquals($expire, $cookie->getExpiresTime(), '->getExpiresTime() returns the expire date', 1);
  88. }
  89. public function testGetDomain()
  90. {
  91. $cookie = new Cookie('foo', 'bar', 3600, '/', '.myfoodomain.com');
  92. $this->assertEquals('.myfoodomain.com', $cookie->getDomain(), '->getDomain() returns the domain name on which the cookie is valid');
  93. }
  94. public function testIsSecure()
  95. {
  96. $cookie = new Cookie('foo', 'bar', 3600, '/', '.myfoodomain.com', true);
  97. $this->assertTrue($cookie->isSecure(), '->isSecure() returns whether the cookie is transmitted over HTTPS');
  98. }
  99. public function testIsHttpOnly()
  100. {
  101. $cookie = new Cookie('foo', 'bar', 3600, '/', '.myfoodomain.com', false, true);
  102. $this->assertTrue($cookie->isHttpOnly(), '->isHttpOnly() returns whether the cookie is only transmitted over HTTP');
  103. }
  104. public function testCookieIsNotCleared()
  105. {
  106. $cookie = new Cookie('foo', 'bar', time() + 3600 * 24);
  107. $this->assertFalse($cookie->isCleared(), '->isCleared() returns false if the cookie did not expire yet');
  108. }
  109. public function testCookieIsCleared()
  110. {
  111. $cookie = new Cookie('foo', 'bar', time() - 20);
  112. $this->assertTrue($cookie->isCleared(), '->isCleared() returns true if the cookie has expired');
  113. }
  114. public function testToString()
  115. {
  116. $cookie = new Cookie('foo', 'bar', strtotime('Fri, 20-May-2011 15:25:52 GMT'), '/', '.myfoodomain.com', true);
  117. $this->assertEquals('foo=bar; expires=Fri, 20-May-2011 15:25:52 GMT; path=/; domain=.myfoodomain.com; secure; httponly', $cookie->__toString(), '->__toString() returns string representation of the cookie');
  118. $cookie = new Cookie('foo', null, 1, '/admin/', '.myfoodomain.com');
  119. $this->assertEquals('foo=deleted; expires='.gmdate('D, d-M-Y H:i:s T', time() - 31536001).'; path=/admin/; domain=.myfoodomain.com; httponly', $cookie->__toString(), '->__toString() returns string representation of a cleared cookie if value is NULL');
  120. $cookie = new Cookie('foo', 'bar', 0, '/', '');
  121. $this->assertEquals('foo=bar; path=/; httponly', $cookie->__toString());
  122. }
  123. }