1<?php 2 3/** 4 * webtrees: online genealogy 5 * 'Copyright (C) 2023 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 <https://www.gnu.org/licenses/>. 16 */ 17 18declare(strict_types=1); 19 20namespace Fisharebest\Webtrees\Http\RequestHandlers; 21 22use Fig\Http\Message\RequestMethodInterface; 23use Fig\Http\Message\StatusCodeInterface; 24use Fisharebest\Webtrees\Factories\IndividualFactory; 25use Fisharebest\Webtrees\Http\Exceptions\HttpNotFoundException; 26use Fisharebest\Webtrees\Individual; 27use Fisharebest\Webtrees\Module\TimelineChartModule; 28use Fisharebest\Webtrees\Registry; 29use Fisharebest\Webtrees\Services\ModuleService; 30use Fisharebest\Webtrees\Services\TreeService; 31use Fisharebest\Webtrees\TestCase; 32use Fisharebest\Webtrees\Tree; 33use Illuminate\Support\Collection; 34 35/** 36 * @covers \Fisharebest\Webtrees\Http\RequestHandlers\RedirectTimeLinePhp 37 */ 38class RedirectTimeLinePhpTest extends TestCase 39{ 40 /** 41 * @return void 42 */ 43 public function testRedirect(): void 44 { 45 $tree = $this->createStub(Tree::class); 46 $tree 47 ->method('name') 48 ->willReturn('tree1'); 49 50 $tree_service = $this->createStub(TreeService::class); 51 $tree_service 52 ->expects(self::once()) 53 ->method('all') 54 ->willReturn(new Collection(['tree1' => $tree])); 55 56 $individual = $this->createStub(Individual::class); 57 58 $individual_factory = $this->createStub(IndividualFactory::class); 59 $individual_factory 60 ->expects(self::once()) 61 ->method('make') 62 ->with('X123', $tree) 63 ->willReturn($individual); 64 65 Registry::individualFactory($individual_factory); 66 67 $module = $this->createStub(TimelineChartModule::class); 68 $module 69 ->expects(self::once()) 70 ->method('chartUrl') 71 ->willReturn('https://www.example.com'); 72 73 $module_service = $this->createStub(ModuleService::class); 74 $module_service 75 ->expects(self::once()) 76 ->method('findByInterface') 77 ->with(TimelineChartModule::class) 78 ->willReturn(new Collection([$module])); 79 80 $handler = new RedirectTimeLinePhp($module_service, $tree_service); 81 82 $request = self::createRequest( 83 RequestMethodInterface::METHOD_GET, 84 ['ged' => 'tree1', 'pids' => ['X123']] 85 ); 86 87 $response = $handler->handle($request); 88 89 self::assertSame(StatusCodeInterface::STATUS_MOVED_PERMANENTLY, $response->getStatusCode()); 90 self::assertSame('https://www.example.com', $response->getHeaderLine('Location')); 91 } 92 93 /** 94 * @return void 95 */ 96 public function testModuleDisabled(): void 97 { 98 $module_service = $this->createStub(ModuleService::class); 99 $module_service 100 ->expects(self::once())->method('findByInterface') 101 ->with(TimelineChartModule::class) 102 ->willReturn(new Collection()); 103 104 $tree = $this->createStub(Tree::class); 105 106 $tree_service = $this->createStub(TreeService::class); 107 $tree_service 108 ->expects(self::once()) 109 ->method('all') 110 ->willReturn(new Collection([$tree])); 111 112 $handler = new RedirectTimeLinePhp($module_service, $tree_service); 113 114 $request = self::createRequest( 115 RequestMethodInterface::METHOD_GET, 116 ['ged' => 'tree1', 'pids' => ['X123']] 117 ); 118 119 $this->expectException(HttpNotFoundException::class); 120 121 $handler->handle($request); 122 } 123 124 /** 125 * @return void 126 */ 127 public function testNoSuchTree(): void 128 { 129 $module = $this->createStub(TimelineChartModule::class); 130 131 $module_service = $this->createStub(ModuleService::class); 132 $module_service 133 ->expects(self::once()) 134 ->method('findByInterface') 135 ->with(TimelineChartModule::class) 136 ->willReturn(new Collection([$module])); 137 138 $tree_service = $this->createStub(TreeService::class); 139 $tree_service 140 ->expects(self::once()) 141 ->method('all') 142 ->willReturn(new Collection([])); 143 144 $handler = new RedirectTimeLinePhp($module_service, $tree_service); 145 146 $request = self::createRequest( 147 RequestMethodInterface::METHOD_GET, 148 ['ged' => 'tree1', 'pids' => ['X123']] 149 ); 150 151 $this->expectException(HttpNotFoundException::class); 152 153 $handler->handle($request); 154 } 155} 156