nextcloud/tests/lib/appframework/http
Lukas Reschke 048139074d Add functions to modify cookies to response class
Currently there is no AppFramework way to modify cookies, which makes it unusable for quite some use-cases or results in untestable code.

This PR adds some basic functionalities to add and invalidate cookies.

Usage:
```php
$response = new TemplateResponse(...);
$response->addCookie('foo', 'bar');
$response->invalidateCookie('foo');
$response->addCookie('bar', 'foo', new \DateTime('2015-01-01 00:00'));
```

Existing cookies can be accessed with the AppFramework using `$this->request->getCookie($name)`.
2014-11-27 14:19:00 +01:00
..
DataResponseTest.php Make remaining files extend the test base 2014-11-19 14:53:59 +01:00
DispatcherTest.php Add functions to modify cookies to response class 2014-11-27 14:19:00 +01:00
DownloadResponseTest.php Make remaining files extend the test base 2014-11-19 14:53:59 +01:00
HttpTest.php Make remaining files extend the test base 2014-11-19 14:53:59 +01:00
JSONResponseTest.php Make remaining files extend the test base 2014-11-19 14:53:59 +01:00
RedirectResponseTest.php Make remaining files extend the test base 2014-11-19 14:53:59 +01:00
requeststream.php Implement PUT an PATCH support 2013-10-01 20:13:13 +02:00
RequestTest.php Make remaining files extend the test base 2014-11-19 14:53:59 +01:00
ResponseTest.php Add functions to modify cookies to response class 2014-11-27 14:19:00 +01:00
TemplateResponseTest.php Make remaining files extend the test base 2014-11-19 14:53:59 +01:00