xref: /webtrees/tests/app/Http/Middleware/AuthAdministratorTest.php (revision b8fc901f205cd6af65496b916bf63547a3065a2f)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2019 webtrees development team
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18declare(strict_types=1);
19
20namespace Fisharebest\Webtrees\Http\Middleware;
21
22use Fig\Http\Message\StatusCodeInterface;
23use Fisharebest\Webtrees\GuestUser;
24use Fisharebest\Webtrees\TestCase;
25use Fisharebest\Webtrees\User;
26use Psr\Http\Server\RequestHandlerInterface;
27use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
28
29use function response;
30
31/**
32 * Test the AuthAdministrator middleware.
33 *
34 * @covers \Fisharebest\Webtrees\Http\Middleware\AuthAdministrator
35 */
36class AuthAdministratorTest extends TestCase
37{
38    /**
39     * @return void
40     */
41    public function testAllowed(): void
42    {
43        $handler = $this->createMock(RequestHandlerInterface::class);
44        $handler->method('handle')->willReturn(response('lorem ipsum'));
45
46        $user = $this->createMock(User::class);
47        $user->method('getPreference')->with(User::PREF_IS_ADMINISTRATOR)->willReturn('1');
48
49        $request    = self::createRequest()->withAttribute('user', $user);
50        $middleware = new AuthAdministrator();
51        $response   = $middleware->process($request, $handler);
52
53        $this->assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode());
54        $this->assertSame('lorem ipsum', (string) $response->getBody());
55    }
56
57    /**
58     * @return void
59     */
60    public function testNotAllowed(): void
61    {
62        $this->expectException(AccessDeniedHttpException::class);
63        $this->expectExceptionMessage('You do not have permission to view this page.');
64
65        $handler = $this->createMock(RequestHandlerInterface::class);
66        $handler->method('handle')->willReturn(response('lorem ipsum'));
67
68        $user = $this->createMock(User::class);
69        $user->method('getPreference')->with(User::PREF_IS_ADMINISTRATOR)->willReturn('');
70
71        $request    = self::createRequest()->withAttribute('user', $user);
72        $middleware = new AuthAdministrator();
73
74        $middleware->process($request, $handler);
75    }
76
77    /**
78     * @return void
79     */
80    public function testNotLoggedIn(): void
81    {
82        $handler = $this->createMock(RequestHandlerInterface::class);
83        $handler->method('handle')->willReturn(response('lorem ipsum'));
84
85        $request    = self::createRequest()->withAttribute('user', new GuestUser());
86        $middleware = new AuthAdministrator();
87        $response   = $middleware->process($request, $handler);
88
89        $this->assertSame(StatusCodeInterface::STATUS_FOUND, $response->getStatusCode());
90    }
91}
92