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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
|
<?php
/**
* webtrees: online genealogy
* Copyright (C) 2023 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 <https://www.gnu.org/licenses/>.
*/
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\TimeoutService;
use Fisharebest\Webtrees\Services\TreeService;
use Illuminate\Database\Capsule\Manager as DB;
use Nyholm\Psr7\Factory\Psr17Factory;
use Psr\Http\Message\ResponseFactoryInterface;
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 Psr\Http\Message\UriFactoryInterface;
use function app;
use function basename;
use function filesize;
use function http_build_query;
use function implode;
use function preg_match;
use function str_starts_with;
use function strcspn;
use function strlen;
use function strpos;
use function substr;
use const UPLOAD_ERR_OK;
/**
* Base class for unit tests
*/
class TestCase extends \PHPUnit\Framework\TestCase
{
public static ?object $mock_functions = null;
protected static bool $uses_database = false;
/**
* Things to run once, before all the tests.
*/
public static function setUpBeforeClass(): void
{
parent::setUpBeforeClass();
$webtrees = new Webtrees();
$webtrees->bootstrap();
// PSR7 messages and PSR17 message-factories
Webtrees::set(ResponseFactoryInterface::class, Psr17Factory::class);
Webtrees::set(ServerRequestFactoryInterface::class, Psr17Factory::class);
Webtrees::set(StreamFactoryInterface::class, Psr17Factory::class);
Webtrees::set(UploadedFileFactoryInterface::class, Psr17Factory::class);
Webtrees::set(UriFactoryInterface::class, Psr17Factory::class);
// This is normally set in middleware.
Webtrees::set(ModuleThemeInterface::class, WebtreesTheme::class);
// Need the routing table, to generate URLs.
$router_container = new RouterContainer('/');
(new WebRoutes())->load($router_container->getMap());
Webtrees::set(RouterContainer::class, $router_container);
if (static::$uses_database) {
static::createTestDatabase();
I18N::init('en-US');
// This is normally set in middleware.
(new Gedcom())->registerTags(Registry::elementFactory(), true);
// Boot modules
(new ModuleService())->bootModules(new WebtreesTheme());
} else {
I18N::init('en-US', true);
}
}
/**
* Things to run once, AFTER all the tests.
*/
public static function tearDownAfterClass(): void
{
if (static::$uses_database) {
$pdo = DB::connection()->getPdo();
unset($pdo);
}
parent::tearDownAfterClass();
}
/**
* Create an SQLite in-memory database for testing
*/
protected static function createTestDatabase(): void
{
$capsule = new DB();
$capsule->addConnection([
'driver' => 'sqlite',
'database' => ':memory:',
]);
$capsule->setAsGlobal();
// 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 array<string> $query
* @param array<string> $params
* @param array<UploadedFileInterface> $files
* @param array<string> $attributes
*
* @return ServerRequestInterface
*/
protected static function createRequest(
string $method = RequestMethodInterface::METHOD_GET,
array $query = [],
array $params = [],
array $files = [],
array $attributes = []
): ServerRequestInterface {
/** @var ServerRequestFactoryInterface */
$server_request_factory = app(ServerRequestFactoryInterface::class);
$uri = 'https://webtrees.test/index.php?' . http_build_query($query);
$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', new Route());
foreach ($attributes as $key => $value) {
$request = $request->withAttribute($key, $value);
if ($key === 'tree') {
app()->instance(Tree::class, $value);
}
}
app()->instance(ServerRequestInterface::class, $request);
return $request;
}
/**
* 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(): void
{
if (static::$uses_database) {
DB::connection()->rollBack();
}
Site::$preferences = [];
Auth::logout();
}
/**
* Import a GEDCOM file into the test database.
*
* @param string $gedcom_file
*
* @return Tree
*/
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));
$stream = app(StreamFactoryInterface::class)->createStreamFromFile(__DIR__ . '/data/' . $gedcom_file);
$tree_service->importGedcomFile($tree, $stream, $gedcom_file, '');
$timeout_service = new TimeoutService();
$controller = new GedcomLoad($gedcom_import_service, $timeout_service);
$request = self::createRequest()->withAttribute('tree', $tree);
do {
$controller->handle($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);
}
/**
* Assert that a response contains valid HTML - either a full page or a fragment.
*
* @param ResponseInterface $response
*/
protected function validateHtmlResponse(ResponseInterface $response): void
{
self::assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode());
self::assertEquals('text/html; charset=UTF-8', $response->getHeaderLine('content-type'));
$html = $response->getBody()->getContents();
self::assertStringStartsWith('<DOCTYPE html>', $html);
$this->validateHtml(substr($html, strlen('<DOCTYPE html>')));
}
/**
* Assert that a response contains valid HTML - either a full page or a fragment.
*
* @param string $html
*/
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('~^</([a-z]+)>~', $html, $match)) {
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)) {
$tag = $match[1];
$self_closing = $match[2] === '/';
$message = 'Tag ' . $tag . ' is not allowed at ' . implode(':', $stack) . '.';
switch ($tag) {
case 'html':
static::assertSame([], $stack);
break;
case 'head':
case 'body':
static::assertSame(['head'], $stack);
break;
case 'div':
static::assertNotContains('span', $stack, $message);
break;
}
if (!$self_closing) {
$stack[] = $tag;
}
if ($tag === 'script' && !$self_closing) {
$html = substr($html, strpos($html, '</script>'));
} else {
$html = substr($html, strlen($match[0]));
}
} else {
static::fail('Unrecognised tag: ' . substr($html, 0, 40));
}
}
} while ($html !== '');
static::assertSame([], $stack);
}
}
|