-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathFunctionalTestCase.php
More file actions
393 lines (346 loc) · 11.9 KB
/
FunctionalTestCase.php
File metadata and controls
393 lines (346 loc) · 11.9 KB
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
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
<?php
declare(strict_types=1);
namespace MakinaCorpus\DbToolsBundle\Test;
use Doctrine\DBAL\Configuration;
use Doctrine\DBAL\Connection;
use Doctrine\DBAL\DriverManager;
use Doctrine\DBAL\Driver\AbstractSQLiteDriver\Middleware\EnableForeignKeys;
use Doctrine\DBAL\Driver\OCI8\Middleware\InitializeSession;
use Doctrine\DBAL\Logging\Middleware;
use Doctrine\DBAL\Schema\Column;
use Doctrine\DBAL\Schema\DefaultSchemaManagerFactory;
use Doctrine\Persistence\ManagerRegistry;
use MakinaCorpus\DbToolsBundle\Anonymization\Anonymizator;
use MakinaCorpus\DbToolsBundle\Anonymization\Anonymizer\AnonymizerRegistry;
use MakinaCorpus\DbToolsBundle\Anonymization\Anonymizer\Options;
use MakinaCorpus\DbToolsBundle\Anonymization\Config\AnonymizationConfig;
use MakinaCorpus\DbToolsBundle\Anonymization\Config\AnonymizerConfig;
use MakinaCorpus\DbToolsBundle\Bridge\Symfony\DoctrineDatabaseSessionRegistry;
use MakinaCorpus\DbToolsBundle\Database\DatabaseSessionRegistry;
use MakinaCorpus\QueryBuilder\DatabaseSession;
use MakinaCorpus\QueryBuilder\Bridge\Doctrine\DoctrineQueryBuilder;
use MakinaCorpus\QueryBuilder\Error\Server\DatabaseObjectDoesNotExistError;
use Psr\Log\AbstractLogger;
abstract class FunctionalTestCase extends UnitTestCase
{
private bool $initialized = false;
/**
* @deprecated
* Remove when hard dependency on doctrine/dbal will be gone.
*/
private ?Connection $connection = null;
/**
* @var string[]
*/
private array $createdTables = [];
/** @after */
protected function disconnect(): void
{
try {
foreach ($this->createdTables as $tableName) {
$this->dropTableIfExist($tableName);
}
} finally {
$this->createdTables = [];
}
if ($this->connection) {
while ($this->connection->isTransactionActive()) {
$this->connection->rollBack();
}
unset($this->connection);
}
}
/**
* Initialize database.
*/
protected function initializeDatabase(): void
{
$privConnection = $this->createPrivConnection();
try {
$privConnection->createSchemaManager()->createDatabase('test_db');
} catch (\Exception $e) {
} finally {
$privConnection->close();
}
}
/**
* Get testing connection object.
*
* @deprecated
* Remove when hard dependency on doctrine/dbal will is gone.
*/
protected function getDoctrineConnection(): Connection
{
if (!$this->initialized) {
$this->initializeDatabase();
$this->initialized = true;
}
return $this->connection ??= $this->createDoctrineConnection();
}
/**
* Get database session.
*/
#[\Override]
protected function getDatabaseSession(): DatabaseSession
{
return new DoctrineQueryBuilder($this->getDoctrineConnection());
}
/**
* Create database session registry.
*/
protected function getDatabaseSessionRegistry(): DatabaseSessionRegistry
{
$doctrineConnection = $this->getDoctrineConnection();
$doctrineRegistry = $this->createMock(ManagerRegistry::class);
$doctrineRegistry
->method('getConnection')
->willReturn($doctrineConnection)
;
$doctrineRegistry
->method('getConnections')
->willReturn([
'default' => $doctrineConnection,
// For backupper and restorer tests.
'another' => $doctrineConnection,
])
;
$doctrineRegistry
->method('getDefaultConnectionName')
->willReturn('default')
;
return new DoctrineDatabaseSessionRegistry($doctrineRegistry);
}
/**
* Skip for given database.
*/
protected function skipIfDatabase(string $database, ?string $message = null): void
{
if ($this->getDatabaseSession()->vendorIs($database)) {
self::markTestSkipped(\sprintf("Test disabled for database '%s'", $database));
}
}
/**
* Skip for given database.
*/
protected function skipIfDatabaseNot(string $database, ?string $message = null): void
{
if (!$this->getDatabaseSession()->vendorIs($database)) {
self::markTestSkipped(\sprintf("Test disabled for database '%s'", $database));
}
}
/**
* Skip for given database, and greater than version.
*/
protected function skipIfDatabaseGreaterThan(string $database, string $version, ?string $message = null): void
{
$this->skipIfDatabase($database);
if ($this->getDatabaseSession()->vendorVersionIs($version, '>=')) {
self::markTestSkipped($message ?? \sprintf("Test disabled for database '%s' at version >= '%s'", $database, $version));
}
}
/**
* Skip for given database, and lower than version.
*/
protected function skipIfDatabaseLessThan(string $database, string $version, ?string $message = null): void
{
if (!$this->getDatabaseSession()->vendorIs($database)) {
return;
}
if ($this->getDatabaseSession()->vendorVersionIs($version, '<')) {
self::markTestSkipped($message ?? \sprintf("Test disabled for database '%s' at version <= '%s'", $database, $version));
}
}
/**
* Create table with columns.
*
* @param array<string,string|array|Column> $columns
* @param array<array<string,mixed>> $rows
*/
protected function createOrReplaceTable(
string $tableName,
array $columns,
array $rows = [],
): void {
$this->dropTableIfExist($tableName);
$tableBuilder = $this
->getDatabaseSession()
->getSchemaManager()
->modify()
->createTable($tableName)
;
foreach ($columns as $name => $column) {
if (\is_string($column)) {
$tableBuilder->column(
name: $name,
type: $column,
nullable: true,
);
} elseif (\is_array($column)) {
$tableBuilder->column(
name: $name,
type: $column['type'] ?? 'text',
nullable: !($column['notnull'] ?? true),
);
} elseif (!$column instanceof Column) {
throw new \InvalidArgumentException(\sprintf("Column must be a string (type), and array (doctrine/dbal Column class options) or a %s instance", Column::class));
}
}
$tableBuilder->endTable()->commit();
$this->createdTables[] = $tableName;
// We have to insert one by one because the test case might
// use a different set of columns for each row.
foreach ($rows as $row) {
$this->getDatabaseSession()->insert($tableName)->values($row)->executeStatement();
}
}
/**
* Drop table if exists.
*/
protected function dropTableIfExist(string $tableName): void
{
try {
$this
->getDatabaseSession()
->getSchemaManager()
->modify()
->dropTable($tableName)
->commit()
;
} catch (DatabaseObjectDoesNotExistError) {
}
}
/**
* For anonymizers unit test, creates an anonymizator with the given
* configuration, which should register all anonymizers required for
* the test.
*/
protected function createAnonymizatorWithConfig(AnonymizerConfig ...$anonymizerConfig): Anonymizator
{
$config = new AnonymizationConfig();
foreach ($anonymizerConfig as $userConfig) {
$config->add($userConfig);
}
return new Anonymizator(
$this->getDatabaseSession(),
new AnonymizerRegistry(),
$config
);
}
/**
* For anonymizers unit test, creates an anonymizator with the given
* configuration, which should register all anonymizers required for
* the test.
*/
protected function createAnonymizatorArbitrary(
string $table,
string $targetName,
string $anonymizer,
?Options $options = null,
): Anonymizator {
$config = new AnonymizationConfig();
$config->add(new AnonymizerConfig($table, $targetName, $anonymizer, $options ?? new Options(), __DIR__));
return new Anonymizator(
$this->getDatabaseSession(),
new AnonymizerRegistry(),
$config
);
}
/**
* Create database connection.
*
* Default will use a mock object.
*
* @deprecated
* Remove when hard dependency on doctrine/dbal will be gone.
*/
private function createDoctrineConnection(): Connection
{
$params = $this->getConnectionParameters();
return DriverManager::getConnection(
$params,
self::createConfiguration($params['driver']),
);
}
/**
* Get connection parameters from environment.
*/
private function getConnectionParameters(): array
{
if (!$driver = \getenv('DBAL_DRIVER')) {
self::markTestSkipped("Missing 'DBAL_DRIVER' environment variable.");
}
$driverOptions = [];
if (\str_contains($driver, 'sqlsrv')) {
// https://stackoverflow.com/questions/71688125/odbc-driver-18-for-sql-serverssl-provider-error1416f086
$driverOptions['TrustServerCertificate'] = "true";
}
$params = \array_filter([
'dbname' => \getenv('DBAL_DBNAME'),
'driver' => $driver,
'driverOptions' => $driverOptions,
'host' => \getenv('DBAL_HOST'),
'password' => \getenv('DBAL_PASSWORD'),
'port' => ($port = \getenv('DBAL_PORT')) ? ((int) $port) : null,
'user' => \getenv('DBAL_USER'),
'path' => \getenv('DBAL_PATH'),
]);
return $params;
}
/**
* Connexion with administration rights, for database setup.
*/
private function createPrivConnection(): Connection
{
$params = $this->getConnectionParameters();
if ($value = \getenv('DBAL_ROOT_USER')) {
$params['user'] = $value;
}
if ($value = \getenv('DBAL_ROOT_PASSWORD')) {
$params['password'] = $value;
}
// Avoid error upon connection when database does not exit.
unset($params['dbname']);
return DriverManager::getConnection(
$params,
self::createConfiguration($params['driver']),
);
}
/**
* Code copied and adapted from doctrine/dbal package.
*
* @see \Doctrine\DBAL\Tests\FunctionalTestCase
*/
private static function createConfiguration(string $driver): Configuration
{
$configuration = new Configuration();
$middlewares = [];
// @todo Option
/* @phpstan-ignore-next-line */
if (false) {
$middlewares[] = new Middleware(
new class () extends AbstractLogger {
#[\Override]
public function log($level, string|\Stringable $message, array $context = []): void
{
if (\str_contains($message, 'Executing statement')) {
echo $message, \print_r($context, true), "\n";
}
}
},
);
}
switch ($driver) {
case 'pdo_oci':
case 'oci8':
$middlewares[] = new InitializeSession();
break;
case 'pdo_sqlite':
case 'sqlite3':
$middlewares[] = new EnableForeignKeys();
break;
}
$configuration->setMiddlewares($middlewares);
$configuration->setSchemaManagerFactory(new DefaultSchemaManagerFactory());
return $configuration;
}
}