103f10823SGreg Roach<?php 203f10823SGreg Roach 303f10823SGreg Roach/** 403f10823SGreg Roach * webtrees: online genealogy 503f10823SGreg Roach * Copyright (C) 2019 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 1503f10823SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 1603f10823SGreg Roach */ 1703f10823SGreg Roachdeclare(strict_types=1); 1803f10823SGreg Roach 1903f10823SGreg Roachnamespace Fisharebest\Webtrees\Http\Middleware; 2003f10823SGreg Roach 21*71378461SGreg Roachuse Fig\Http\Message\StatusCodeInterface; 2203f10823SGreg Roachuse Fisharebest\Webtrees\GuestUser; 2303f10823SGreg Roachuse Fisharebest\Webtrees\TestCase; 2403f10823SGreg Roachuse Fisharebest\Webtrees\Tree; 2503f10823SGreg Roachuse Fisharebest\Webtrees\User; 2603f10823SGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 2703f10823SGreg Roachuse Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; 2803f10823SGreg Roach 2903f10823SGreg Roachuse function response; 3003f10823SGreg Roach 3103f10823SGreg Roach/** 3203f10823SGreg Roach * Test the AuthEditor middleware. 3303f10823SGreg Roach * 3403f10823SGreg Roach * @covers \Fisharebest\Webtrees\Http\Middleware\AuthEditor 3503f10823SGreg Roach */ 3603f10823SGreg Roachclass AuthEditorTest extends TestCase 3703f10823SGreg Roach{ 3803f10823SGreg Roach /** 3903f10823SGreg Roach * @return void 4003f10823SGreg Roach */ 4103f10823SGreg Roach public function testAllowed(): void 4203f10823SGreg Roach { 4303f10823SGreg Roach $handler = $this->createMock(RequestHandlerInterface::class); 4403f10823SGreg Roach $handler->method('handle')->willReturn(response('lorem ipsum')); 4503f10823SGreg Roach 4603f10823SGreg Roach $user = $this->createMock(User::class); 4703f10823SGreg Roach $user->method('getPreference')->with('canadmin')->willReturn('0'); 4803f10823SGreg Roach 4903f10823SGreg Roach $tree = $this->createMock(Tree::class); 5003f10823SGreg Roach $tree->method('getUserPreference')->with($user, 'canedit')->willReturn('edit'); 5103f10823SGreg Roach 5203f10823SGreg Roach $request = self::createRequest()->withAttribute('tree', $tree)->withAttribute('user', $user); 5303f10823SGreg Roach $middleware = new AuthEditor(); 5403f10823SGreg Roach $response = $middleware->process($request, $handler); 5503f10823SGreg Roach 56*71378461SGreg Roach $this->assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode()); 5703f10823SGreg Roach $this->assertSame('lorem ipsum', (string) $response->getBody()); 5803f10823SGreg Roach } 5903f10823SGreg Roach 6003f10823SGreg Roach /** 6103f10823SGreg Roach * @expectedException \Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException 6203f10823SGreg Roach * @return void 6303f10823SGreg Roach */ 6403f10823SGreg Roach public function testNotAllowed(): void 6503f10823SGreg Roach { 6603f10823SGreg Roach $handler = $this->createMock(RequestHandlerInterface::class); 6703f10823SGreg Roach $handler->method('handle')->willReturn(response('lorem ipsum')); 6803f10823SGreg Roach 6903f10823SGreg Roach $user = $this->createMock(User::class); 7003f10823SGreg Roach $user->method('getPreference')->with('canadmin')->willReturn('0'); 7103f10823SGreg Roach 7203f10823SGreg Roach $tree = $this->createMock(Tree::class); 7303f10823SGreg Roach $tree->method('getUserPreference')->with($user, 'canedit')->willReturn('access'); 7403f10823SGreg Roach 7503f10823SGreg Roach $request = self::createRequest()->withAttribute('tree', $tree)->withAttribute('user', $user); 7603f10823SGreg Roach $middleware = new AuthEditor(); 7703f10823SGreg Roach $middleware->process($request, $handler); 7803f10823SGreg Roach } 7903f10823SGreg Roach 8003f10823SGreg Roach /** 8103f10823SGreg Roach * @return void 8203f10823SGreg Roach */ 8303f10823SGreg Roach public function testNotLoggedIn(): void 8403f10823SGreg Roach { 8503f10823SGreg Roach $handler = $this->createMock(RequestHandlerInterface::class); 8603f10823SGreg Roach $handler->method('handle')->willReturn(response('lorem ipsum')); 8703f10823SGreg Roach 8803f10823SGreg Roach $tree = $this->createMock(Tree::class); 8903f10823SGreg Roach 9003f10823SGreg Roach $request = self::createRequest()->withAttribute('tree', $tree)->withAttribute('user', new GuestUser()); 9103f10823SGreg Roach $middleware = new AuthEditor(); 9203f10823SGreg Roach $response = $middleware->process($request, $handler); 9303f10823SGreg Roach 94*71378461SGreg Roach $this->assertSame(StatusCodeInterface::STATUS_FOUND, $response->getStatusCode()); 9503f10823SGreg Roach } 9603f10823SGreg Roach} 97