. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\RequestHandlers; use Fig\Http\Message\RequestMethodInterface; use Fig\Http\Message\StatusCodeInterface; use Fisharebest\Webtrees\Factories\SourceFactory; use Fisharebest\Webtrees\Http\Exceptions\HttpBadRequestException; use Fisharebest\Webtrees\Http\Exceptions\HttpGoneException; use Fisharebest\Webtrees\Registry; use Fisharebest\Webtrees\Services\TreeService; use Fisharebest\Webtrees\Source; use Fisharebest\Webtrees\TestCase; use Fisharebest\Webtrees\Tree; use Illuminate\Support\Collection; /** * @covers \Fisharebest\Webtrees\Http\RequestHandlers\RedirectSourcePhp */ class RedirectSourcePhpTest 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])); $source = $this->createStub(Source::class); $source ->method('url') ->willReturn('https://www.example.com'); $source_factory = $this->createStub(SourceFactory::class); $source_factory ->expects(self::once()) ->method('make') ->with('X123', $tree) ->willReturn($source); Registry::sourceFactory($source_factory); $handler = new RedirectSourcePhp($tree_service); $request = self::createRequest( RequestMethodInterface::METHOD_GET, ['ged' => 'tree1', 'sid' => 'X123'] ); $response = $handler->handle($request); self::assertSame(StatusCodeInterface::STATUS_MOVED_PERMANENTLY, $response->getStatusCode()); self::assertSame('https://www.example.com', $response->getHeaderLine('Location')); } public function testNoSuchRecord(): void { $tree = $this->createStub(Tree::class); $tree_service = $this->createStub(TreeService::class); $tree_service ->expects(self::once()) ->method('all') ->willReturn(new Collection([$tree])); $handler = new RedirectSourcePhp($tree_service); $request = self::createRequest( RequestMethodInterface::METHOD_GET, ['ged' => 'tree1', 'sid' => 'X123'] ); $this->expectException(HttpGoneException::class); $handler->handle($request); } public function testMissingXrefParameter(): void { $tree_service = $this->createStub(TreeService::class); $handler = new RedirectSourcePhp($tree_service); $request = self::createRequest(RequestMethodInterface::METHOD_GET, ['ged' => 'tree1']); $this->expectException(HttpBadRequestException::class); $handler->handle($request); } }