xref: /webtrees/tests/app/Http/Middleware/AuthManagerTest.php (revision d11be7027e34e3121be11cc025421873364403f9)
103f10823SGreg Roach<?php
203f10823SGreg Roach
303f10823SGreg Roach/**
403f10823SGreg Roach * webtrees: online genealogy
5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
603f10823SGreg Roach * This program is free software: you can redistribute it and/or modify
703f10823SGreg Roach * it under the terms of the GNU General Public License as published by
803f10823SGreg Roach * the Free Software Foundation, either version 3 of the License, or
903f10823SGreg Roach * (at your option) any later version.
1003f10823SGreg Roach * This program is distributed in the hope that it will be useful,
1103f10823SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
1203f10823SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1303f10823SGreg Roach * GNU General Public License for more details.
1403f10823SGreg Roach * You should have received a copy of the GNU General Public License
1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
1603f10823SGreg Roach */
17fcfa147eSGreg Roach
1803f10823SGreg Roachdeclare(strict_types=1);
1903f10823SGreg Roach
2003f10823SGreg Roachnamespace Fisharebest\Webtrees\Http\Middleware;
2103f10823SGreg Roach
2271378461SGreg Roachuse Fig\Http\Message\StatusCodeInterface;
231fe542e9SGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface;
2403f10823SGreg Roachuse Fisharebest\Webtrees\GuestUser;
2581b729d3SGreg Roachuse Fisharebest\Webtrees\Http\Exceptions\HttpAccessDeniedException;
2603f10823SGreg Roachuse Fisharebest\Webtrees\TestCase;
2703f10823SGreg Roachuse Fisharebest\Webtrees\Tree;
2803f10823SGreg Roachuse Fisharebest\Webtrees\User;
2903f10823SGreg Roachuse Psr\Http\Server\RequestHandlerInterface;
3003f10823SGreg Roach
3103f10823SGreg Roachuse function response;
3203f10823SGreg Roach
3303f10823SGreg Roach/**
3403f10823SGreg Roach * Test the AuthManager middleware.
3503f10823SGreg Roach *
3603f10823SGreg Roach * @covers \Fisharebest\Webtrees\Http\Middleware\AuthManager
3703f10823SGreg Roach */
3803f10823SGreg Roachclass AuthManagerTest extends TestCase
3903f10823SGreg Roach{
4003f10823SGreg Roach    /**
4103f10823SGreg Roach     * @return void
4203f10823SGreg Roach     */
4303f10823SGreg Roach    public function testAllowed(): void
4403f10823SGreg Roach    {
45cd94ca66SGreg Roach        $handler = $this->createMock(RequestHandlerInterface::class);
4603f10823SGreg Roach        $handler->method('handle')->willReturn(response('lorem ipsum'));
4703f10823SGreg Roach
48cd94ca66SGreg Roach        $user = $this->createMock(User::class);
491fe542e9SGreg Roach        $user->method('getPreference')->with(UserInterface::PREF_IS_ADMINISTRATOR)->willReturn('');
5003f10823SGreg Roach
51cd94ca66SGreg Roach        $tree = $this->createMock(Tree::class);
521fe542e9SGreg Roach        $tree->method('getUserPreference')->with($user, UserInterface::PREF_TREE_ROLE)->willReturn(UserInterface::ROLE_MANAGER);
5303f10823SGreg Roach
5403f10823SGreg Roach        $request    = self::createRequest()->withAttribute('tree', $tree)->withAttribute('user', $user);
5503f10823SGreg Roach        $middleware = new AuthManager();
5603f10823SGreg Roach        $response   = $middleware->process($request, $handler);
5703f10823SGreg Roach
585e933c21SGreg Roach        self::assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode());
595e933c21SGreg Roach        self::assertSame('lorem ipsum', (string) $response->getBody());
6003f10823SGreg Roach    }
6103f10823SGreg Roach
6203f10823SGreg Roach    /**
6303f10823SGreg Roach     * @return void
6403f10823SGreg Roach     */
6503f10823SGreg Roach    public function testNotAllowed(): void
6603f10823SGreg Roach    {
67d501c45dSGreg Roach        $this->expectException(HttpAccessDeniedException::class);
685fb051e9SGreg Roach        $this->expectExceptionMessage('You do not have permission to view this page.');
695fb051e9SGreg Roach
70cd94ca66SGreg Roach        $handler = $this->createMock(RequestHandlerInterface::class);
7103f10823SGreg Roach        $handler->method('handle')->willReturn(response('lorem ipsum'));
7203f10823SGreg Roach
73cd94ca66SGreg Roach        $user = $this->createMock(User::class);
741fe542e9SGreg Roach        $user->method('getPreference')->with(UserInterface::PREF_IS_ADMINISTRATOR)->willReturn('');
7503f10823SGreg Roach
76cd94ca66SGreg Roach        $tree = $this->createMock(Tree::class);
771fe542e9SGreg Roach        $tree->method('getUserPreference')->with($user, UserInterface::PREF_TREE_ROLE)->willReturn(UserInterface::ROLE_MODERATOR);
7803f10823SGreg Roach
7903f10823SGreg Roach        $request    = self::createRequest()->withAttribute('tree', $tree)->withAttribute('user', $user);
8003f10823SGreg Roach        $middleware = new AuthManager();
810c0910bfSGreg Roach
825fb051e9SGreg Roach        $middleware->process($request, $handler);
8303f10823SGreg Roach    }
8403f10823SGreg Roach
8503f10823SGreg Roach    /**
8603f10823SGreg Roach     * @return void
8703f10823SGreg Roach     */
8803f10823SGreg Roach    public function testNotLoggedIn(): void
8903f10823SGreg Roach    {
90cd94ca66SGreg Roach        $handler = $this->createMock(RequestHandlerInterface::class);
9103f10823SGreg Roach        $handler->method('handle')->willReturn(response('lorem ipsum'));
9203f10823SGreg Roach
93cd94ca66SGreg Roach        $tree = $this->createMock(Tree::class);
9403f10823SGreg Roach
9503f10823SGreg Roach        $request    = self::createRequest()->withAttribute('tree', $tree)->withAttribute('user', new GuestUser());
9603f10823SGreg Roach        $middleware = new AuthManager();
9703f10823SGreg Roach        $response   = $middleware->process($request, $handler);
9803f10823SGreg Roach
995e933c21SGreg Roach        self::assertSame(StatusCodeInterface::STATUS_FOUND, $response->getStatusCode());
10003f10823SGreg Roach    }
10103f10823SGreg Roach}
102