184e2cf4eSGreg Roach<?php 284e2cf4eSGreg Roach/** 384e2cf4eSGreg Roach * webtrees: online genealogy 48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 584e2cf4eSGreg Roach * This program is free software: you can redistribute it and/or modify 684e2cf4eSGreg Roach * it under the terms of the GNU General Public License as published by 784e2cf4eSGreg Roach * the Free Software Foundation, either version 3 of the License, or 884e2cf4eSGreg Roach * (at your option) any later version. 984e2cf4eSGreg Roach * This program is distributed in the hope that it will be useful, 1084e2cf4eSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 1184e2cf4eSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 1284e2cf4eSGreg Roach * GNU General Public License for more details. 1384e2cf4eSGreg Roach * You should have received a copy of the GNU General Public License 1484e2cf4eSGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 1584e2cf4eSGreg Roach */ 16e7f56f2aSGreg Roachdeclare(strict_types=1); 17e7f56f2aSGreg Roach 1884e2cf4eSGreg Roachnamespace Fisharebest\Webtrees; 1984e2cf4eSGreg Roach 206ccdf4f0SGreg Roachuse Fig\Http\Message\StatusCodeInterface; 21bd1e4e13SGreg Roachuse Fisharebest\Localization\Locale\LocaleEnUs; 22bd1e4e13SGreg Roachuse Fisharebest\Localization\Locale\LocaleInterface; 23e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\Contracts\UserInterface; 24126654d7SGreg Roachuse Fisharebest\Webtrees\Http\Controllers\GedcomFileController; 258136679eSGreg Roachuse Fisharebest\Webtrees\Module\ModuleThemeInterface; 268136679eSGreg Roachuse Fisharebest\Webtrees\Module\WebtreesTheme; 278c3e1068SGreg Roachuse Fisharebest\Webtrees\Services\MigrationService; 28126654d7SGreg Roachuse Fisharebest\Webtrees\Services\TimeoutService; 29e5a6b4d4SGreg Roachuse Fisharebest\Webtrees\Services\UserService; 308b67c11aSGreg Roachuse Illuminate\Cache\ArrayStore; 318b67c11aSGreg Roachuse Illuminate\Cache\Repository; 320115bc16SGreg Roachuse Illuminate\Database\Capsule\Manager as DB; 33e16a1bfdSGreg Roachuse Illuminate\Database\Query\Builder; 347def76c7SGreg Roachuse League\Flysystem\Filesystem; 35*57ab2231SGreg Roachuse League\Flysystem\FilesystemInterface; 367def76c7SGreg Roachuse League\Flysystem\Memory\MemoryAdapter; 376ccdf4f0SGreg Roachuse Nyholm\Psr7\Factory\Psr17Factory; 386ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseFactoryInterface; 396ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestFactoryInterface; 406ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 416ccdf4f0SGreg Roachuse Psr\Http\Message\StreamFactoryInterface; 426ccdf4f0SGreg Roachuse Psr\Http\Message\UploadedFileFactoryInterface; 436ccdf4f0SGreg Roachuse Psr\Http\Message\UploadedFileInterface; 446ccdf4f0SGreg Roachuse Psr\Http\Message\UriFactoryInterface; 456ccdf4f0SGreg Roachuse function app; 467def76c7SGreg Roachuse function basename; 476ccdf4f0SGreg Roachuse function define; 486ccdf4f0SGreg Roachuse function defined; 496ccdf4f0SGreg Roachuse function filesize; 506ccdf4f0SGreg Roachuse function http_build_query; 51*57ab2231SGreg Roachuse function microtime; 526ccdf4f0SGreg Roachuse const UPLOAD_ERR_OK; 530115bc16SGreg Roach 5484e2cf4eSGreg Roach/** 5584e2cf4eSGreg Roach * Base class for unit tests 5684e2cf4eSGreg Roach */ 576ccdf4f0SGreg Roachclass TestCase extends \PHPUnit\Framework\TestCase implements StatusCodeInterface 5884e2cf4eSGreg Roach{ 5974d6dc0eSGreg Roach /** @var object */ 6074d6dc0eSGreg Roach public static $mock_functions; 61*57ab2231SGreg Roach /** @var bool */ 62*57ab2231SGreg Roach protected static $uses_database = false; 6374d6dc0eSGreg Roach 64061b43d7SGreg Roach /** 65061b43d7SGreg Roach * Things to run once, before all the tests. 66061b43d7SGreg Roach */ 67061b43d7SGreg Roach public static function setUpBeforeClass() 68061b43d7SGreg Roach { 69061b43d7SGreg Roach parent::setUpBeforeClass(); 70061b43d7SGreg Roach 716ccdf4f0SGreg Roach // Use nyholm as our PSR7 factory 726ccdf4f0SGreg Roach app()->bind(ResponseFactoryInterface::class, Psr17Factory::class); 736ccdf4f0SGreg Roach app()->bind(ServerRequestFactoryInterface::class, Psr17Factory::class); 746ccdf4f0SGreg Roach app()->bind(StreamFactoryInterface::class, Psr17Factory::class); 756ccdf4f0SGreg Roach app()->bind(UploadedFileFactoryInterface::class, Psr17Factory::class); 766ccdf4f0SGreg Roach app()->bind(UriFactoryInterface::class, Psr17Factory::class); 776ccdf4f0SGreg Roach 786ccdf4f0SGreg Roach // Use an array cache for database calls, etc. 796ccdf4f0SGreg Roach app()->instance('cache.array', new Repository(new ArrayStore())); 806ccdf4f0SGreg Roach 816ccdf4f0SGreg Roach app()->instance(UserService::class, new UserService()); 82*57ab2231SGreg Roach app()->instance(FilesystemInterface::class, new Filesystem(new MemoryAdapter())); 836ccdf4f0SGreg Roach app()->bind(LocaleInterface::class, LocaleEnUs::class); 84*57ab2231SGreg Roach app()->bind(ModuleThemeInterface::class, WebtreesTheme::class); 85*57ab2231SGreg Roach app()->bind(UserInterface::class, GuestUser::class); 866ccdf4f0SGreg Roach 87f397d0fdSGreg Roach defined('WT_DATA_DIR') || define('WT_DATA_DIR', Webtrees::ROOT_DIR . 'data/'); 886ccdf4f0SGreg Roach defined('WT_LOCALE') || define('WT_LOCALE', I18N::init('en-US', null, true)); 896ccdf4f0SGreg Roach 90061b43d7SGreg Roach if (static::$uses_database) { 91061b43d7SGreg Roach static::createTestDatabase(); 92061b43d7SGreg Roach } 93061b43d7SGreg Roach } 94061b43d7SGreg Roach 95061b43d7SGreg Roach /** 966ccdf4f0SGreg Roach * Create an SQLite in-memory database for testing 976ccdf4f0SGreg Roach */ 986ccdf4f0SGreg Roach protected static function createTestDatabase(): void 996ccdf4f0SGreg Roach { 1006ccdf4f0SGreg Roach $capsule = new DB(); 1016ccdf4f0SGreg Roach $capsule->addConnection([ 1026ccdf4f0SGreg Roach 'driver' => 'sqlite', 1036ccdf4f0SGreg Roach 'database' => ':memory:', 1046ccdf4f0SGreg Roach ]); 1056ccdf4f0SGreg Roach $capsule->setAsGlobal(); 106e16a1bfdSGreg Roach 107e16a1bfdSGreg Roach Builder::macro('whereContains', function ($column, string $search, string $boolean = 'and'): Builder { 108e16a1bfdSGreg Roach $search = strtr($search, ['\\' => '\\\\', '%' => '\\%', '_' => '\\_', ' ' => '%']); 109e16a1bfdSGreg Roach 110e16a1bfdSGreg Roach return $this->where($column, 'LIKE', '%' . $search . '%', $boolean); 111e16a1bfdSGreg Roach }); 1126ccdf4f0SGreg Roach 1136ccdf4f0SGreg Roach // Migrations create logs, which requires an IP address, which requires a request 1146ccdf4f0SGreg Roach self::createRequest(); 1156ccdf4f0SGreg Roach 1166ccdf4f0SGreg Roach // Create tables 1176ccdf4f0SGreg Roach $migration_service = new MigrationService; 1186ccdf4f0SGreg Roach $migration_service->updateSchema('\Fisharebest\Webtrees\Schema', 'WT_SCHEMA_VERSION', Webtrees::SCHEMA_VERSION); 1196ccdf4f0SGreg Roach 1206ccdf4f0SGreg Roach // Create config data 1216ccdf4f0SGreg Roach $migration_service->seedDatabase(); 1226ccdf4f0SGreg Roach } 1236ccdf4f0SGreg Roach 1246ccdf4f0SGreg Roach /** 125*57ab2231SGreg Roach * Create a request and bind it into the container. 126*57ab2231SGreg Roach * 127*57ab2231SGreg Roach * @param string $method 128*57ab2231SGreg Roach * @param string[] $query 129*57ab2231SGreg Roach * @param string[] $params 130*57ab2231SGreg Roach * @param UploadedFileInterface[] $files 131*57ab2231SGreg Roach * 132*57ab2231SGreg Roach * @return ServerRequestInterface 133*57ab2231SGreg Roach */ 134*57ab2231SGreg Roach protected static function createRequest(string $method = 'GET', array $query = [], array $params = [], array $files = []): ServerRequestInterface 135*57ab2231SGreg Roach { 136*57ab2231SGreg Roach /** @var ServerRequestFactoryInterface */ 137*57ab2231SGreg Roach $server_request_factory = app(ServerRequestFactoryInterface::class); 138*57ab2231SGreg Roach 139*57ab2231SGreg Roach $uri = 'https://webtrees.test/index.php?' . http_build_query($query); 140*57ab2231SGreg Roach 141*57ab2231SGreg Roach /** @var ServerRequestInterface $request */ 142*57ab2231SGreg Roach $request = $server_request_factory 143*57ab2231SGreg Roach ->createServerRequest($method, $uri) 144*57ab2231SGreg Roach ->withQueryParams($query) 145*57ab2231SGreg Roach ->withParsedBody($params) 146*57ab2231SGreg Roach ->withUploadedFiles($files) 147*57ab2231SGreg Roach ->withAttribute('base_url', 'https://webtrees.test') 148*57ab2231SGreg Roach ->withAttribute('client_ip', '127.0.0.1'); 149*57ab2231SGreg Roach 150*57ab2231SGreg Roach app()->instance(ServerRequestInterface::class, $request); 151*57ab2231SGreg Roach 152*57ab2231SGreg Roach return $request; 153*57ab2231SGreg Roach } 154*57ab2231SGreg Roach 155*57ab2231SGreg Roach /** 156061b43d7SGreg Roach * Things to run once, AFTER all the tests. 157061b43d7SGreg Roach */ 158061b43d7SGreg Roach public static function tearDownAfterClass() 159061b43d7SGreg Roach { 160061b43d7SGreg Roach if (static::$uses_database) { 161061b43d7SGreg Roach $pdo = DB::connection()->getPdo(); 16232f20c14SGreg Roach unset($pdo); 163061b43d7SGreg Roach } 164061b43d7SGreg Roach 165061b43d7SGreg Roach parent::tearDownAfterClass(); 166061b43d7SGreg Roach } 167061b43d7SGreg Roach 168061b43d7SGreg Roach /** 169061b43d7SGreg Roach * Things to run before every test. 170061b43d7SGreg Roach */ 1715c48bcd6SGreg Roach protected function setUp(): void 1720115bc16SGreg Roach { 1730115bc16SGreg Roach parent::setUp(); 1740115bc16SGreg Roach 175061b43d7SGreg Roach if (static::$uses_database) { 176061b43d7SGreg Roach DB::connection()->beginTransaction(); 177061b43d7SGreg Roach } 178061b43d7SGreg Roach } 179061b43d7SGreg Roach 180061b43d7SGreg Roach /** 181061b43d7SGreg Roach * Things to run after every test 182061b43d7SGreg Roach */ 183a49feabaSGreg Roach protected function tearDown() 184a49feabaSGreg Roach { 18532f20c14SGreg Roach if (static::$uses_database) { 186061b43d7SGreg Roach DB::connection()->rollBack(); 187061b43d7SGreg Roach } 18832f20c14SGreg Roach 1898b67c11aSGreg Roach app('cache.array')->flush(); 1908b67c11aSGreg Roach 19132f20c14SGreg Roach Site::$preferences = []; 19232f20c14SGreg Roach Tree::$trees = []; 193bec87e94SGreg Roach GedcomRecord::$gedcom_record_cache = null; 194bec87e94SGreg Roach GedcomRecord::$pending_record_cache = null; 19532f20c14SGreg Roach 19632f20c14SGreg Roach Auth::logout(); 1970115bc16SGreg Roach } 1980115bc16SGreg Roach 1990115bc16SGreg Roach /** 2000115bc16SGreg Roach * Import a GEDCOM file into the test database. 2010115bc16SGreg Roach * 2020115bc16SGreg Roach * @param string $gedcom_file 203061b43d7SGreg Roach * 204061b43d7SGreg Roach * @return Tree 2050115bc16SGreg Roach */ 206061b43d7SGreg Roach protected function importTree(string $gedcom_file): Tree 2070115bc16SGreg Roach { 208061b43d7SGreg Roach $tree = Tree::create(basename($gedcom_file), basename($gedcom_file)); 2096ccdf4f0SGreg Roach 2106ccdf4f0SGreg Roach $stream = app(StreamFactoryInterface::class)->createStreamFromFile(__DIR__ . '/data/' . $gedcom_file); 2116ccdf4f0SGreg Roach $tree->importGedcomFile($stream, $gedcom_file); 2120115bc16SGreg Roach 2131ad2dde6SGreg Roach View::share('tree', $tree); 214*57ab2231SGreg Roach 215*57ab2231SGreg Roach $timeout_service = new TimeoutService(microtime(true)); 216*57ab2231SGreg Roach $controller = new GedcomFileController($timeout_service); 217*57ab2231SGreg Roach $request = self::createRequest()->withAttribute('tree', $tree); 218126654d7SGreg Roach 219126654d7SGreg Roach do { 220*57ab2231SGreg Roach $controller->import($request); 221126654d7SGreg Roach 222126654d7SGreg Roach $imported = $tree->getPreference('imported'); 223126654d7SGreg Roach } while (!$imported); 224061b43d7SGreg Roach 225061b43d7SGreg Roach return $tree; 2260115bc16SGreg Roach } 2276ccdf4f0SGreg Roach 2286ccdf4f0SGreg Roach /** 2296ccdf4f0SGreg Roach * Create an uploaded file for a request. 2306ccdf4f0SGreg Roach * 2316ccdf4f0SGreg Roach * @param string $filename 2326ccdf4f0SGreg Roach * @param string $mime_type 2336ccdf4f0SGreg Roach * 2346ccdf4f0SGreg Roach * @return UploadedFileInterface 2356ccdf4f0SGreg Roach */ 2366ccdf4f0SGreg Roach protected function createUploadedFile(string $filename, string $mime_type): UploadedFileInterface 2376ccdf4f0SGreg Roach { 2386ccdf4f0SGreg Roach /** @var StreamFactoryInterface */ 2396ccdf4f0SGreg Roach $stream_factory = app(StreamFactoryInterface::class); 2406ccdf4f0SGreg Roach 2416ccdf4f0SGreg Roach /** @var UploadedFileFactoryInterface */ 2426ccdf4f0SGreg Roach $uploaded_file_factory = app(UploadedFileFactoryInterface::class); 2436ccdf4f0SGreg Roach 2446ccdf4f0SGreg Roach $stream = $stream_factory->createStreamFromFile($filename); 2456ccdf4f0SGreg Roach $size = filesize($filename); 2466ccdf4f0SGreg Roach $status = UPLOAD_ERR_OK; 2476ccdf4f0SGreg Roach $client_name = basename($filename); 2486ccdf4f0SGreg Roach 2496ccdf4f0SGreg Roach return $uploaded_file_factory->createUploadedFile($stream, $size, $status, $client_name, $mime_type); 2506ccdf4f0SGreg Roach } 25184e2cf4eSGreg Roach} 252