xref: /webtrees/tests/app/Http/Middleware/AuthEditorTest.php (revision 71378461661e7642e52abe7d41c9cfffb3e5369b)
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 */
17declare(strict_types=1);
18
19namespace Fisharebest\Webtrees\Http\Middleware;
20
21use Fig\Http\Message\StatusCodeInterface;
22use Fisharebest\Webtrees\GuestUser;
23use Fisharebest\Webtrees\TestCase;
24use Fisharebest\Webtrees\Tree;
25use Fisharebest\Webtrees\User;
26use Psr\Http\Server\RequestHandlerInterface;
27use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
28
29use function response;
30
31/**
32 * Test the AuthEditor middleware.
33 *
34 * @covers \Fisharebest\Webtrees\Http\Middleware\AuthEditor
35 */
36class AuthEditorTest 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('0');
48
49        $tree = $this->createMock(Tree::class);
50        $tree->method('getUserPreference')->with($user, 'canedit')->willReturn('edit');
51
52        $request    = self::createRequest()->withAttribute('tree', $tree)->withAttribute('user', $user);
53        $middleware = new AuthEditor();
54        $response   = $middleware->process($request, $handler);
55
56        $this->assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode());
57        $this->assertSame('lorem ipsum', (string) $response->getBody());
58    }
59
60    /**
61     * @expectedException \Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException
62     * @return void
63     */
64    public function testNotAllowed(): void
65    {
66        $handler = $this->createMock(RequestHandlerInterface::class);
67        $handler->method('handle')->willReturn(response('lorem ipsum'));
68
69        $user = $this->createMock(User::class);
70        $user->method('getPreference')->with('canadmin')->willReturn('0');
71
72        $tree = $this->createMock(Tree::class);
73        $tree->method('getUserPreference')->with($user, 'canedit')->willReturn('access');
74
75        $request    = self::createRequest()->withAttribute('tree', $tree)->withAttribute('user', $user);
76        $middleware = new AuthEditor();
77        $middleware->process($request, $handler);
78    }
79
80    /**
81     * @return void
82     */
83    public function testNotLoggedIn(): void
84    {
85        $handler = $this->createMock(RequestHandlerInterface::class);
86        $handler->method('handle')->willReturn(response('lorem ipsum'));
87
88        $tree = $this->createMock(Tree::class);
89
90        $request    = self::createRequest()->withAttribute('tree', $tree)->withAttribute('user', new GuestUser());
91        $middleware = new AuthEditor();
92        $response   = $middleware->process($request, $handler);
93
94        $this->assertSame(StatusCodeInterface::STATUS_FOUND, $response->getStatusCode());
95    }
96}
97