ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
CookieWrapperTest.php
Go to the documentation of this file.
1 <?php
24 namespace ILIAS\HTTP\Cookies;
25 
32 
38 #[BackupGlobals(false)]
39 #[BackupStaticProperties(false)]
40 #[PreserveGlobalState(false)]
41 class CookieWrapperTest extends TestCase
42 {
46  private Cookie $cookie;
48 
49 
50  public static function setUpBeforeClass(): void
51  {
52  parent::setUpBeforeClass();
53  self::$cookieFactory = new CookieFactoryImpl();
54  }
55 
56 
57  protected function setUp(): void
58  {
59  parent::setUp();
60 
61  //setup the cookie we want to use for our tests.
62  $cookieName = "ilias";
63  $cookieValue = "theNewCookiesAreYummy";
64  $this->cookie = self::$cookieFactory->create($cookieName, $cookieValue);
65  }
66 
67 
68  #[Test]
70  {
71  $newValue = "yes!";
72  $newCookie = $this->cookie->withValue("yes!");
73  $this->assertEquals($newValue, $newCookie->getValue());
74  $this->assertNotEquals($this->cookie->getValue(), $newCookie->getValue());
75  }
76 
77 
78  #[Test]
80  {
81  $expires = 1000;
82  $newCookie = $this->cookie->withExpires($expires);
83 
84  $this->assertEquals($expires, $newCookie->getExpires());
85  $this->assertNotEquals($this->cookie->getExpires(), $newCookie->getExpires());
86  }
87 
88 
89  #[Test]
91  {
92  $newCookie = $this->cookie->rememberForLongTime();
93 
94  //remember forever changes the date of expiry so they should differ by quite a bit.
95  $this->assertNotEquals($this->cookie->getExpires(), $newCookie->getExpires());
96  }
97 
98 
99  #[Test]
101  {
102  $newCookie = $this->cookie->expire();
103 
104  //expire changes the date of expiry so they should differ by quite a bit.
105  $this->assertNotEquals($this->cookie->getExpires(), $newCookie->getExpires());
106  }
107 
108 
109  #[Test]
111  {
112  $maxAge = 1000;
113  $newCookie = $this->cookie->withMaxAge($maxAge);
114 
115  $this->assertEquals($maxAge, $newCookie->getMaxAge());
116  $this->assertNotEquals($this->cookie->getMaxAge(), $newCookie->getMaxAge());
117  }
118 
119 
120  #[Test]
122  {
123  $path = '/ilias';
124  $newCookie = $this->cookie->withPath($path);
125 
126  $this->assertEquals($path, $newCookie->getPath());
127  $this->assertNotEquals($this->cookie->getPath(), $newCookie->getPath());
128  }
129 
130 
131  #[Test]
133  {
134  $domain = 'ilias.de';
135  $newCookie = $this->cookie->withDomain($domain);
136 
137  $this->assertEquals($domain, $newCookie->getDomain());
138  $this->assertNotEquals($this->cookie->getDomain(), $newCookie->getDomain());
139  }
140 
141 
142  #[Test]
144  {
145  $secure = true;
146  $newCookie = $this->cookie->withSecure($secure);
147 
148  $this->assertTrue($newCookie->getSecure());
149  $this->assertNotEquals($this->cookie->getSecure(), $newCookie->getSecure());
150  }
151 
152 
153  #[Test]
155  {
156  $httpOnly = true;
157  $newCookie = $this->cookie->withHttpOnly($httpOnly);
158 
159  $this->assertTrue($newCookie->getHttpOnly());
160  $this->assertNotEquals($this->cookie->getHttpOnly(), $newCookie->getHttpOnly());
161  }
162 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition: Cookie.php:19
$path
Definition: ltiservices.php:29
static CookieFactoryImpl $cookieFactory