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\HttpGoneException; 26use Fisharebest\Webtrees\Individual; 27use Fisharebest\Webtrees\Module\DescendancyChartModule; 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\RedirectDescendencyPhp 37 */ 38class RedirectDescendancyPhpTest extends TestCase 39{ 40 protected static bool $uses_database = true; 41 42 public function testRedirect(): void 43 { 44 $tree = $this->createStub(Tree::class); 45 $tree 46 ->method('name') 47 ->willReturn('tree1'); 48 49 $tree_service = $this->createStub(TreeService::class); 50 $tree_service 51 ->expects(self::once()) 52 ->method('all') 53 ->willReturn(new Collection(['tree1' => $tree])); 54 55 $individual = $this->createStub(Individual::class); 56 57 $individual_factory = $this->createStub(IndividualFactory::class); 58 $individual_factory 59 ->expects(self::once()) 60 ->method('make') 61 ->with('X123', $tree) 62 ->willReturn($individual); 63 64 Registry::individualFactory($individual_factory); 65 66 $descendancy_chart = $this->createStub(DescendancyChartModule::class); 67 $descendancy_chart 68 ->expects(self::once()) 69 ->method('chartUrl') 70 ->willReturn('https://www.example.com'); 71 72 $module_service = $this->createStub(ModuleService::class); 73 $module_service 74 ->expects(self::once()) 75 ->method('findByInterface') 76 ->with(DescendancyChartModule::class) 77 ->willReturn(new Collection([$descendancy_chart])); 78 79 $handler = new RedirectDescendencyPhp($module_service, $tree_service); 80 81 $request = self::createRequest(RequestMethodInterface::METHOD_GET, ['ged' => 'tree1', 'rootid' => 'X123']); 82 $response = $handler->handle($request); 83 84 self::assertSame(StatusCodeInterface::STATUS_MOVED_PERMANENTLY, $response->getStatusCode()); 85 self::assertSame('https://www.example.com', $response->getHeaderLine('Location')); 86 } 87 88 public function testModuleDisabled(): void 89 { 90 $module_service = $this->createStub(ModuleService::class); 91 $module_service 92 ->expects(self::once())->method('findByInterface') 93 ->with(DescendancyChartModule::class) 94 ->willReturn(new Collection()); 95 96 $tree = $this->createStub(Tree::class); 97 98 $tree_service = $this->createStub(TreeService::class); 99 $tree_service 100 ->expects(self::once()) 101 ->method('all') 102 ->willReturn(new Collection([$tree])); 103 104 $handler = new RedirectDescendencyPhp($module_service, $tree_service); 105 106 $request = self::createRequest( 107 RequestMethodInterface::METHOD_GET, 108 ['ged' => 'tree1', 'rootid' => 'X123'] 109 ); 110 111 $this->expectException(HttpGoneException::class); 112 113 $handler->handle($request); 114 } 115 116 public function testNoSuchTree(): void 117 { 118 $module = $this->createStub(DescendancyChartModule::class); 119 120 $module_service = $this->createStub(ModuleService::class); 121 $module_service 122 ->expects(self::once()) 123 ->method('findByInterface') 124 ->with(DescendancyChartModule::class) 125 ->willReturn(new Collection([$module])); 126 127 $tree_service = $this->createStub(TreeService::class); 128 $tree_service 129 ->expects(self::once()) 130 ->method('all') 131 ->willReturn(new Collection([])); 132 133 $handler = new RedirectDescendencyPhp($module_service, $tree_service); 134 135 $request = self::createRequest( 136 RequestMethodInterface::METHOD_GET, 137 ['ged' => 'tree1', 'rootid' => 'X123'] 138 ); 139 140 $this->expectException(HttpGoneException::class); 141 142 $handler->handle($request); 143 } 144} 145