]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tests/front/controller/admin/LogoutControllerTest.php
Process session filters through Slim controllers
[github/shaarli/Shaarli.git] / tests / front / controller / admin / LogoutControllerTest.php
1 <?php
2
3 declare(strict_types=1);
4
5 namespace Shaarli\Front\Controller\Admin;
6
7 /** Override PHP builtin setcookie function in the local namespace to mock it... more or less */
8 if (!function_exists('Shaarli\Front\Controller\setcookie')) {
9 function setcookie(string $name, string $value): void {
10 $_COOKIE[$name] = $value;
11 }
12 }
13
14 use PHPUnit\Framework\TestCase;
15 use Shaarli\Security\LoginManager;
16 use Shaarli\Security\SessionManager;
17 use Slim\Http\Request;
18 use Slim\Http\Response;
19
20 class LogoutControllerTest extends TestCase
21 {
22 use FrontAdminControllerMockHelper;
23
24 /** @var LogoutController */
25 protected $controller;
26
27 public function setUp(): void
28 {
29 $this->createContainer();
30
31 $this->controller = new LogoutController($this->container);
32
33 setcookie(LoginManager::$STAY_SIGNED_IN_COOKIE, $cookie = 'hi there');
34 }
35
36 public function testValidControllerInvoke(): void
37 {
38 $this->createValidContainerMockSet();
39
40 $request = $this->createMock(Request::class);
41 $response = new Response();
42
43 $this->container->pageCacheManager->expects(static::once())->method('invalidateCaches');
44
45 $this->container->sessionManager = $this->createMock(SessionManager::class);
46 $this->container->sessionManager->expects(static::once())->method('logout');
47
48 static::assertSame('hi there', $_COOKIE[LoginManager::$STAY_SIGNED_IN_COOKIE]);
49
50 $result = $this->controller->index($request, $response);
51
52 static::assertInstanceOf(Response::class, $result);
53 static::assertSame(302, $result->getStatusCode());
54 static::assertContains('./', $result->getHeader('Location'));
55 static::assertSame('false', $_COOKIE[LoginManager::$STAY_SIGNED_IN_COOKIE]);
56 }
57 }