. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\RequestHandlers; use Fig\Http\Message\RequestMethodInterface; use Fig\Http\Message\StatusCodeInterface; use Fisharebest\Webtrees\Factories\IndividualFactory; use Fisharebest\Webtrees\Http\Exceptions\HttpGoneException; use Fisharebest\Webtrees\Individual; use Fisharebest\Webtrees\Module\FanChartModule; use Fisharebest\Webtrees\Registry; use Fisharebest\Webtrees\Services\ModuleService; use Fisharebest\Webtrees\Services\TreeService; use Fisharebest\Webtrees\TestCase; use Fisharebest\Webtrees\Tree; use Illuminate\Support\Collection; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(RedirectFanChartPhp::class)] class RedirectFanChartPhpTest extends TestCase { protected static bool $uses_database = true; public function testRedirect(): void { $tree = $this->createStub(Tree::class); $tree ->method('name') ->willReturn('tree1'); $tree_service = $this->createStub(TreeService::class); $tree_service ->expects(self::once()) ->method('all') ->willReturn(new Collection(['tree1' => $tree])); $individual = $this->createStub(Individual::class); $individual_factory = $this->createStub(IndividualFactory::class); $individual_factory ->expects(self::once()) ->method('make') ->with('X123', $tree) ->willReturn($individual); Registry::individualFactory($individual_factory); $module = $this->createStub(FanChartModule::class); $module ->expects(self::once()) ->method('chartUrl') ->willReturn('https://www.example.com'); $module_service = $this->createStub(ModuleService::class); $module_service ->expects(self::once()) ->method('findByInterface') ->with(FanChartModule::class) ->willReturn(new Collection([$module])); $handler = new RedirectFanChartPhp($module_service, $tree_service); $request = self::createRequest( RequestMethodInterface::METHOD_GET, ['ged' => 'tree1', 'rootid' => 'X123'] ); $response = $handler->handle($request); self::assertSame(StatusCodeInterface::STATUS_MOVED_PERMANENTLY, $response->getStatusCode()); self::assertSame('https://www.example.com', $response->getHeaderLine('Location')); } public function testModuleDisabled(): void { $module_service = $this->createStub(ModuleService::class); $module_service ->expects(self::once())->method('findByInterface') ->with(FanChartModule::class) ->willReturn(new Collection()); $tree = $this->createStub(Tree::class); $tree_service = $this->createStub(TreeService::class); $tree_service ->expects(self::once()) ->method('all') ->willReturn(new Collection([$tree])); $handler = new RedirectFanChartPhp($module_service, $tree_service); $request = self::createRequest( RequestMethodInterface::METHOD_GET, ['ged' => 'tree1', 'rootid' => 'X123'] ); $this->expectException(HttpGoneException::class); $handler->handle($request); } public function testNoSuchTree(): void { $module = $this->createStub(FanChartModule::class); $module_service = $this->createStub(ModuleService::class); $module_service ->expects(self::once()) ->method('findByInterface') ->with(FanChartModule::class) ->willReturn(new Collection([$module])); $tree_service = $this->createStub(TreeService::class); $tree_service ->expects(self::once()) ->method('all') ->willReturn(new Collection([])); $handler = new RedirectFanChartPhp($module_service, $tree_service); $request = self::createRequest( RequestMethodInterface::METHOD_GET, ['ged' => 'tree1', 'rootid' => 'X123'] ); $this->expectException(HttpGoneException::class); $handler->handle($request); } }