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\FamilyBookChartModule; 28use Fisharebest\Webtrees\Module\ModuleChartInterface; 29use Fisharebest\Webtrees\Module\ModuleListInterface; 30use Fisharebest\Webtrees\Registry; 31use Fisharebest\Webtrees\Services\ModuleService; 32use Fisharebest\Webtrees\Services\TreeService; 33use Fisharebest\Webtrees\TestCase; 34use Fisharebest\Webtrees\Tree; 35use Illuminate\Support\Collection; 36use PHPUnit\Framework\Attributes\CoversClass; 37 38#[CoversClass(RedirectFamilyBookPhp::class)] 39class RedirectFamilyBookPhpTest extends TestCase 40{ 41 protected static bool $uses_database = true; 42 43 public function testRedirect(): void 44 { 45 $tree = $this->createMock(Tree::class); 46 $tree 47 ->method('name') 48 ->willReturn('tree1'); 49 50 $tree_service = $this->createMock(TreeService::class); 51 $tree_service 52 ->expects($this->once()) 53 ->method('all') 54 ->willReturn(new Collection(['tree1' => $tree])); 55 56 $individual = $this->createMock(Individual::class); 57 58 $individual_factory = $this->createMock(IndividualFactory::class); 59 $individual_factory 60 ->expects($this->once()) 61 ->method('make') 62 ->with('X123', $tree) 63 ->willReturn($individual); 64 65 Registry::individualFactory($individual_factory); 66 67 $Compact_chart = $this->createMock(FamilyBookChartModule::class); 68 $Compact_chart 69 ->expects($this->once()) 70 ->method('chartUrl') 71 ->willReturn('https://www.example.com'); 72 73 $module_service = $this->createMock(ModuleService::class); 74 $module_service 75 ->expects($this->once()) 76 ->method('findByComponent') 77 ->with(ModuleChartInterface::class) 78 ->willReturn(new Collection([$Compact_chart])); 79 80 $handler = new RedirectFamilyBookPhp($module_service, $tree_service); 81 82 $request = self::createRequest(RequestMethodInterface::METHOD_GET, ['ged' => 'tree1', 'rootid' => 'X123']); 83 $response = $handler->handle($request); 84 85 self::assertSame(StatusCodeInterface::STATUS_MOVED_PERMANENTLY, $response->getStatusCode()); 86 self::assertSame('https://www.example.com', $response->getHeaderLine('Location')); 87 } 88 89 public function testModuleDisabled(): void 90 { 91 $module_service = $this->createMock(ModuleService::class); 92 $module_service 93 ->method('findByComponent') 94 ->with(ModuleChartInterface::class) 95 ->willReturn(new Collection()); 96 97 $tree = $this->createMock(Tree::class); 98 99 $tree_service = $this->createMock(TreeService::class); 100 $tree_service 101 ->expects($this->once()) 102 ->method('all') 103 ->willReturn(new Collection(['tree1' => $tree])); 104 105 $handler = new RedirectFamilyBookPhp($module_service, $tree_service); 106 107 $request = self::createRequest(RequestMethodInterface::METHOD_GET, ['ged' => 'tree1', 'rootid' => 'X123']); 108 109 $this->expectException(HttpGoneException::class); 110 111 $handler->handle($request); 112 } 113 114 public function testNoSuchTree(): void 115 { 116 $module_service = $this->createMock(ModuleService::class); 117 118 $tree_service = $this->createMock(TreeService::class); 119 $tree_service 120 ->expects($this->once()) 121 ->method('all') 122 ->willReturn(new Collection([])); 123 124 $handler = new RedirectFamilyBookPhp($module_service, $tree_service); 125 126 $request = self::createRequest(RequestMethodInterface::METHOD_GET, ['ged' => 'tree1', 'rootid' => 'X123']); 127 128 $this->expectException(HttpGoneException::class); 129 130 $handler->handle($request); 131 } 132} 133