xref: /webtrees/tests/app/Http/RequestHandlers/RedirectCompactPhpTest.php (revision 00ef1d3af59aba99c1ae5c92c7e655525c97797b)
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\CompactTreeChartModule;
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(RedirectCompactPhp::class)]
39class RedirectCompactPhpTest 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        $module = $this->createMock(CompactTreeChartModule::class);
68        $module
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([$module]));
79
80        $handler = new RedirectCompactPhp($module_service, $tree_service);
81
82        $request = self::createRequest(RequestMethodInterface::METHOD_GET, ['ged' => 'tree1', 'rootid' => 'X123']);
83
84        $response = $handler->handle($request);
85
86        self::assertSame(StatusCodeInterface::STATUS_MOVED_PERMANENTLY, $response->getStatusCode());
87        self::assertSame('https://www.example.com', $response->getHeaderLine('Location'));
88    }
89
90    public function testModuleDisabled(): void
91    {
92        $module_service = $this->createMock(ModuleService::class);
93        $module_service
94            ->expects($this->once())->method('findByComponent')
95            ->with(ModuleChartInterface::class)
96            ->willReturn(new Collection());
97
98        $tree = $this->createMock(Tree::class);
99
100        $tree_service = $this->createMock(TreeService::class);
101        $tree_service
102            ->expects($this->once())
103            ->method('all')
104            ->willReturn(new Collection(['tree1' => $tree]));
105
106        $handler = new RedirectCompactPhp($module_service, $tree_service);
107
108        $request = self::createRequest(RequestMethodInterface::METHOD_GET, ['ged' => 'tree1', 'rootid' => 'X123']);
109
110        $this->expectException(HttpGoneException::class);
111
112        $handler->handle($request);
113    }
114
115    public function testNoSuchTree(): void
116    {
117        $tree_service = $this->createMock(TreeService::class);
118        $tree_service
119            ->expects($this->once())
120            ->method('all')
121            ->willReturn(new Collection([]));
122
123        $module_service = $this->createMock(ModuleService::class);
124
125        $handler = new RedirectCompactPhp($module_service, $tree_service);
126
127        $request = self::createRequest(RequestMethodInterface::METHOD_GET, ['ged' => 'tree1', 'rootid' => 'X123']);
128
129        $this->expectException(HttpGoneException::class);
130
131        $handler->handle($request);
132    }
133}
134