xref: /webtrees/tests/app/Http/Middleware/AuthAdministratorTest.php (revision fcfa147e10aaa6c7ff580c29bd6e5b88666befc1)
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('canadmin')->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        $handler = $this->createMock(RequestHandlerInterface::class);
63        $handler->method('handle')->willReturn(response('lorem ipsum'));
64
65        $user = $this->createMock(User::class);
66        $user->method('getPreference')->with('canadmin')->willReturn('');
67
68        $request    = self::createRequest()->withAttribute('user', $user);
69        $middleware = new AuthAdministrator();
70        $response   = $middleware->process($request, $handler);
71
72        $this->assertSame(StatusCodeInterface::STATUS_FOUND, $response->getStatusCode());
73    }
74
75    /**
76     * @return void
77     */
78    public function testNotLoggedIn(): void
79    {
80        $handler = $this->createMock(RequestHandlerInterface::class);
81        $handler->method('handle')->willReturn(response('lorem ipsum'));
82
83        $request    = self::createRequest()->withAttribute('user', new GuestUser());
84        $middleware = new AuthAdministrator();
85        $response   = $middleware->process($request, $handler);
86
87        $this->assertSame(StatusCodeInterface::STATUS_FOUND, $response->getStatusCode());
88    }
89}
90