. */ declare(strict_types=1); namespace Fisharebest\Webtrees; use Aura\Router\Route; use Aura\Router\RouterContainer; use Fig\Http\Message\RequestMethodInterface; use Fig\Http\Message\StatusCodeInterface; use Fisharebest\Webtrees\Http\RequestHandlers\GedcomLoad; use Fisharebest\Webtrees\Http\Routes\WebRoutes; use Fisharebest\Webtrees\Module\ModuleThemeInterface; use Fisharebest\Webtrees\Module\WebtreesTheme; use Fisharebest\Webtrees\Services\GedcomImportService; use Fisharebest\Webtrees\Services\MigrationService; use Fisharebest\Webtrees\Services\ModuleService; use Fisharebest\Webtrees\Services\PhpService; use Fisharebest\Webtrees\Services\TimeoutService; use Fisharebest\Webtrees\Services\TreeService; use PHPUnit\Framework\Constraint\Callback; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestFactoryInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Message\StreamFactoryInterface; use Psr\Http\Message\UploadedFileFactoryInterface; use Psr\Http\Message\UploadedFileInterface; use function array_shift; use function basename; use function filesize; use function http_build_query; use function implode; use function preg_match; use function preg_split; use function str_starts_with; use function strcspn; use function strlen; use function strpos; use function substr; use const UPLOAD_ERR_OK; class TestCase extends \PHPUnit\Framework\TestCase { protected static bool $uses_database = false; private static function createTestDatabase(): void { DB::connect( driver: DB::SQLITE, host: '', port: '', database: ':memory:', username: '', password: '', prefix: 'wt_', key: '', certificate: '', ca: '', verify_certificate: false, ); // Create tables $migration_service = new MigrationService(); $migration_service->updateSchema('\Fisharebest\Webtrees\Schema', 'WT_SCHEMA_VERSION', Webtrees::SCHEMA_VERSION); // Create config data $migration_service->seedDatabase(); } /** * Create a request and bind it into the container. * * @param array> $query * @param array $params * @param array $files * @param array $attributes */ protected static function createRequest( string $method = RequestMethodInterface::METHOD_GET, array $query = [], array $params = [], array $files = [], array $attributes = [] ): ServerRequestInterface { $server_request_factory = Registry::container()->get(ServerRequestFactoryInterface::class); self::assertInstanceOf(ServerRequestFactoryInterface::class, $server_request_factory); $uri = 'https://webtrees.test/index.php?' . http_build_query($query); $route = new Route(); $route->name('dummy'); $request = $server_request_factory ->createServerRequest($method, $uri) ->withQueryParams($query) ->withParsedBody($params) ->withUploadedFiles($files) ->withAttribute('base_url', 'https://webtrees.test') ->withAttribute('client-ip', '127.0.0.1') ->withAttribute('user', new GuestUser()) ->withAttribute('route', $route); foreach ($attributes as $key => $value) { $request = $request->withAttribute($key, $value); if ($key === 'tree' && $value instanceof Tree) { Registry::container()->set(Tree::class, $value); } } Registry::container()->set(ServerRequestInterface::class, $request); return $request; } protected function setUp(): void { parent::setUp(); $webtrees = new Webtrees(); $webtrees->bootstrap(); // This is normally set in middleware. Registry::container()->set(ModuleThemeInterface::class, new WebtreesTheme()); // Need the routing table, to generate URLs. $router_container = new RouterContainer('/'); (new WebRoutes())->load($router_container->getMap()); Registry::container()->set(RouterContainer::class, $router_container); I18N::init('en-US', true); if (static::$uses_database) { self::createTestDatabase(); I18N::init('en-US'); // This is normally set in middleware. (new Gedcom())->registerTags(Registry::elementFactory(), true); // Boot modules (new ModuleService())->bootModules(new WebtreesTheme()); } self::createRequest(); } protected function tearDown(): void { if (static::$uses_database) { DB::connection()->disconnect(); } Session::clear(); // Session data is stored in the super-global Site::$preferences = []; // These are cached from the database } protected function importTree(string $gedcom_file): Tree { $gedcom_import_service = new GedcomImportService(); $tree_service = new TreeService($gedcom_import_service); $tree = $tree_service->create(basename($gedcom_file), basename($gedcom_file)); // Creating a new tree will create a header and one individual DB::table('individuals')->where('i_file', '=', $tree->id())->delete(); DB::table('families')->where('f_file', '=', $tree->id())->delete(); DB::table('sources')->where('s_file', '=', $tree->id())->delete(); DB::table('other')->where('o_file', '=', $tree->id())->delete(); DB::table('places')->where('p_file', '=', $tree->id())->delete(); DB::table('placelinks')->where('pl_file', '=', $tree->id())->delete(); DB::table('name')->where('n_file', '=', $tree->id())->delete(); DB::table('dates')->where('d_file', '=', $tree->id())->delete(); DB::table('change')->where('gedcom_id', '=', $tree->id())->delete(); DB::table('link')->where('l_file', '=', $tree->id())->delete(); DB::table('media_file')->where('m_file', '=', $tree->id())->delete(); DB::table('media')->where('m_file', '=', $tree->id())->delete(); $records = preg_split('/\n(?=0)/', file_get_contents(__DIR__ . '/data/' . $gedcom_file)); foreach ($records as $record) { $gedcom_import_service->importRecord($record, $tree, false); } return $tree; } protected function createUploadedFile(string $filename, string $mime_type): UploadedFileInterface { $stream_factory = Registry::container()->get(StreamFactoryInterface::class); $uploaded_file_factory = Registry::container()->get(UploadedFileFactoryInterface::class); self::assertInstanceOf(StreamFactoryInterface::class, $stream_factory); self::assertInstanceOf(UploadedFileFactoryInterface::class, $uploaded_file_factory); $stream = $stream_factory->createStreamFromFile($filename); $size = filesize($filename); $status = UPLOAD_ERR_OK; $client_name = basename($filename); self::assertIsInt($size); return $uploaded_file_factory->createUploadedFile($stream, $size, $status, $client_name, $mime_type); } protected function validateHtmlResponse(ResponseInterface $response): void { self::assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode()); self::assertSame('text/html; charset=UTF-8', $response->getHeaderLine('content-type')); $html = $response->getBody()->getContents(); self::assertStringStartsWith('', $html); $this->validateHtml(substr($html, strlen(''))); } protected function validateHtml(string $html): void { $stack = []; do { $html = substr($html, strcspn($html, '<>')); if (str_starts_with($html, '>')) { static::fail('Unescaped > found in HTML'); } if (str_starts_with($html, '<')) { if (preg_match('~^~', $html, $match) === 1) { if ($match[1] !== array_pop($stack)) { static::fail('Closing tag matches nothing: ' . $match[0] . ' at ' . implode(':', $stack)); } $html = substr($html, strlen($match[0])); } elseif (preg_match('~^<([a-z]+)(?:\s+[a-z_\-]+="[^">]*")*\s*(/?)>~', $html, $match) === 1) { $tag = $match[1]; $self_closing = $match[2] === '/'; $message = 'Tag ' . $tag . ' is not allowed at ' . implode(':', $stack) . '.'; switch ($tag) { case 'html': self::assertSame([], $stack); break; case 'head': case 'body': self::assertSame(['head'], $stack); break; case 'div': self::assertNotContains('span', $stack, $message); break; } if (!$self_closing) { $stack[] = $tag; } if ($tag === 'script' && !$self_closing) { $offset = strpos($html, ''); self::assertIsInt($offset); $html = substr($html, $offset); } else { $html = substr($html, strlen($match[0])); } } else { static::fail('Unrecognised tag: ' . substr($html, 0, 40)); } } } while ($html !== ''); self::assertSame([], $stack); } /** * Workaround for removal of withConsecutive in phpunit 10. * * @param array $parameters * @return Callback */ protected static function withConsecutive(array $parameters): Callback { return self::callback(static function (mixed $parameter) use ($parameters): bool { static $array = null; $array ??= $parameters; return $parameter === array_shift($array); }); } }