. */ declare(strict_types=1); namespace Fisharebest\Webtrees; use Fig\Http\Message\StatusCodeInterface; use Fisharebest\Localization\Locale\LocaleEnUs; use Fisharebest\Localization\Locale\LocaleInterface; use Fisharebest\Webtrees\Contracts\UserInterface; use Fisharebest\Webtrees\Http\Controllers\GedcomFileController; use Fisharebest\Webtrees\Module\ModuleThemeInterface; use Fisharebest\Webtrees\Module\WebtreesTheme; use Fisharebest\Webtrees\Services\MigrationService; use Fisharebest\Webtrees\Services\TimeoutService; use Fisharebest\Webtrees\Services\UserService; use Illuminate\Cache\ArrayStore; use Illuminate\Cache\Repository; use Illuminate\Database\Capsule\Manager as DB; use Illuminate\Database\Query\Builder; use League\Flysystem\Filesystem; use League\Flysystem\Memory\MemoryAdapter; use Nyholm\Psr7\Factory\Psr17Factory; use Psr\Http\Message\ResponseFactoryInterface; 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 Psr\Http\Message\UriFactoryInterface; use function app; use function basename; use function define; use function defined; use function filesize; use function http_build_query; use const UPLOAD_ERR_OK; /** * Base class for unit tests */ class TestCase extends \PHPUnit\Framework\TestCase implements StatusCodeInterface { /** @var bool */ protected static $uses_database = false; /** @var object */ public static $mock_functions; /** * Things to run once, before all the tests. */ public static function setUpBeforeClass() { parent::setUpBeforeClass(); // Use nyholm as our PSR7 factory app()->bind(ResponseFactoryInterface::class, Psr17Factory::class); app()->bind(ServerRequestFactoryInterface::class, Psr17Factory::class); app()->bind(StreamFactoryInterface::class, Psr17Factory::class); app()->bind(UploadedFileFactoryInterface::class, Psr17Factory::class); app()->bind(UriFactoryInterface::class, Psr17Factory::class); // Use an array cache for database calls, etc. app()->instance('cache.array', new Repository(new ArrayStore())); app()->bind(Tree::class, static function () { return null; }); app()->instance(UserService::class, new UserService()); app()->instance(UserInterface::class, new GuestUser()); app()->instance(Filesystem::class, new Filesystem(new MemoryAdapter())); app()->bind(ModuleThemeInterface::class, WebtreesTheme::class); app()->bind(LocaleInterface::class, LocaleEnUs::class); defined('WT_DATA_DIR') || define('WT_DATA_DIR', Webtrees::ROOT_DIR . 'data/'); defined('WT_LOCALE') || define('WT_LOCALE', I18N::init('en-US', null, true)); if (static::$uses_database) { static::createTestDatabase(); } } /** * Create an SQLite in-memory database for testing */ protected static function createTestDatabase(): void { $capsule = new DB(); $capsule->addConnection([ 'driver' => 'sqlite', 'database' => ':memory:', ]); $capsule->setAsGlobal(); Builder::macro('whereContains', function ($column, string $search, string $boolean = 'and'): Builder { $search = strtr($search, ['\\' => '\\\\', '%' => '\\%', '_' => '\\_', ' ' => '%']); return $this->where($column, 'LIKE', '%' . $search . '%', $boolean); }); // Migrations create logs, which requires an IP address, which requires a request self::createRequest(); // Create tables $migration_service = new MigrationService; $migration_service->updateSchema('\Fisharebest\Webtrees\Schema', 'WT_SCHEMA_VERSION', Webtrees::SCHEMA_VERSION); // Create config data $migration_service->seedDatabase(); } /** * Things to run once, AFTER all the tests. */ public static function tearDownAfterClass() { if (static::$uses_database) { $pdo = DB::connection()->getPdo(); unset($pdo); } parent::tearDownAfterClass(); } /** * Things to run before every test. */ protected function setUp(): void { parent::setUp(); if (static::$uses_database) { DB::connection()->beginTransaction(); } } /** * Things to run after every test */ protected function tearDown() { if (static::$uses_database) { DB::connection()->rollBack(); } app('cache.array')->flush(); Site::$preferences = []; Tree::$trees = []; GedcomRecord::$gedcom_record_cache = null; GedcomRecord::$pending_record_cache = null; Auth::logout(); } /** * Import a GEDCOM file into the test database. * * @param string $gedcom_file * * @return Tree */ protected function importTree(string $gedcom_file): Tree { $tree = Tree::create(basename($gedcom_file), basename($gedcom_file)); $stream = app(StreamFactoryInterface::class)->createStreamFromFile(__DIR__ . '/data/' . $gedcom_file); $tree->importGedcomFile($stream, $gedcom_file); View::share('tree', $tree); $gedcom_file_controller = new GedcomFileController(); do { $gedcom_file_controller->import(new TimeoutService(microtime(true)), $tree); $imported = $tree->getPreference('imported'); } while (!$imported); return $tree; } /** * Create a request and bind it into the container. * * @param string $method * @param string[] $query * @param string[] $params * @param UploadedFileInterface[] $files * * @return ServerRequestInterface */ protected static function createRequest(string $method = 'GET', array $query = [], array $params = [], array $files = []): ServerRequestInterface { /** @var ServerRequestFactoryInterface */ $server_request_factory = app(ServerRequestFactoryInterface::class); $uri = 'http://localhost/index.php?' . http_build_query($query); /** @var ServerRequestInterface $request */ $request = $server_request_factory ->createServerRequest($method, $uri) ->withQueryParams($query) ->withParsedBody($params) ->withUploadedFiles($files) ->withAttribute('client_ip', '127.0.0.1'); app()->instance(ServerRequestInterface::class, $request); return $request; } /** * Create an uploaded file for a request. * * @param string $filename * @param string $mime_type * * @return UploadedFileInterface */ protected function createUploadedFile(string $filename, string $mime_type): UploadedFileInterface { /** @var StreamFactoryInterface */ $stream_factory = app(StreamFactoryInterface::class); /** @var UploadedFileFactoryInterface */ $uploaded_file_factory = app(UploadedFileFactoryInterface::class); $stream = $stream_factory->createStreamFromFile($filename); $size = filesize($filename); $status = UPLOAD_ERR_OK; $client_name = basename($filename); return $uploaded_file_factory->createUploadedFile($stream, $size, $status, $client_name, $mime_type); } }