1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
|
<?php
/**
* webtrees: online genealogy
* Copyright (C) 2019 webtrees development team
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
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\FilesystemInterface;
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 function microtime;
use const UPLOAD_ERR_OK;
/**
* Base class for unit tests
*/
class TestCase extends \PHPUnit\Framework\TestCase implements StatusCodeInterface
{
/** @var object */
public static $mock_functions;
/** @var bool */
protected static $uses_database = false;
/**
* 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()->instance(UserService::class, new UserService());
app()->instance(FilesystemInterface::class, new Filesystem(new MemoryAdapter()));
app()->bind(LocaleInterface::class, LocaleEnUs::class);
app()->bind(ModuleThemeInterface::class, WebtreesTheme::class);
app()->bind(UserInterface::class, GuestUser::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();
}
/**
* 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 = 'https://webtrees.test/index.php?' . http_build_query($query);
/** @var ServerRequestInterface $request */
$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');
app()->instance(ServerRequestInterface::class, $request);
return $request;
}
/**
* 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);
$timeout_service = new TimeoutService(microtime(true));
$controller = new GedcomFileController($timeout_service);
$request = self::createRequest()->withAttribute('tree', $tree);
do {
$controller->import($request);
$imported = $tree->getPreference('imported');
} while (!$imported);
return $tree;
}
/**
* 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);
}
}
|