]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tests/front/controller/admin/LogoutControllerTest.php
Use multi-level routes for existing controllers instead of 1 level everywhere
[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\Admin\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 $request = $this->createMock(Request::class);
39 $response = new Response();
40
41 $this->container->pageCacheManager->expects(static::once())->method('invalidateCaches');
42
43 $this->container->sessionManager = $this->createMock(SessionManager::class);
44 $this->container->sessionManager->expects(static::once())->method('logout');
45
46 static::assertSame('hi there', $_COOKIE[LoginManager::$STAY_SIGNED_IN_COOKIE]);
47
48 $result = $this->controller->index($request, $response);
49
50 static::assertInstanceOf(Response::class, $result);
51 static::assertSame(302, $result->getStatusCode());
52 static::assertSame(['/subfolder/'], $result->getHeader('location'));
53 static::assertSame('false', $_COOKIE[LoginManager::$STAY_SIGNED_IN_COOKIE]);
54 }
55 }