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
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests;
use Doctrine\DBAL\Configuration;
use Doctrine\DBAL\Connection;
use Doctrine\DBAL\Driver\AbstractSQLiteDriver\Middleware\EnableForeignKeys;
use Doctrine\DBAL\Driver\Mysqli;
use Doctrine\DBAL\Driver\OCI8\Middleware\InitializeSession;
use Doctrine\DBAL\DriverManager;
use Doctrine\DBAL\Exception\DatabaseObjectNotFoundException;
use Doctrine\DBAL\Platforms\AbstractPlatform;
use Doctrine\DBAL\Platforms\DB2Platform;
use Doctrine\DBAL\Platforms\OraclePlatform;
use Doctrine\DBAL\Platforms\SQLitePlatform;
use Doctrine\DBAL\Schema\DefaultSchemaManagerFactory;
use InvalidArgumentException;
use PDO;
use PHPUnit\Framework\Assert;
use function array_map;
use function assert;
use function extension_loaded;
use function file_exists;
use function implode;
use function in_array;
use function is_string;
use function str_starts_with;
use function strlen;
use function substr;
use function unlink;
/**
* TestUtil is a class with static utility methods used during tests.
*
* @phpstan-import-type Params from DriverManager
*/
class TestUtil
{
/** Whether the database schema is initialized. */
private static bool $initialized = false;
/**
* Creates a new <b>test</b> database connection using the following parameters
* of the $GLOBALS array:
*
* 'db_driver': The name of the Doctrine DBAL database driver to use.
* 'db_user': The username to use for connecting.
* 'db_password': The password to use for connecting.
* 'db_host': The hostname of the database to connect to.
* 'db_server': The server name of the database to connect to
* (optional, some vendors allow multiple server instances with different names on the same host).
* 'db_dbname': The name of the database to connect to.
* 'db_port': The port of the database to connect to.
*
* Usually these variables of the $GLOBALS array are filled by PHPUnit based
* on an XML configuration file. If no such parameters exist, an SQLite
* in-memory database is used.
*
* @return Connection The database connection instance.
*/
public static function getConnection(): Connection
{
$params = self::getConnectionParams();
if (empty($params['memory']) && ! self::$initialized) {
self::initializeDatabase();
self::$initialized = true;
}
assert(isset($params['driver']));
return DriverManager::getConnection(
$params,
self::createConfiguration($params['driver']),
);
}
/** @return Params */
public static function getConnectionParams(): array
{
$params = self::getTestConnectionParameters();
if (isset($params['driver'])) {
return $params;
}
if (! extension_loaded('pdo_sqlite')) {
Assert::markTestSkipped('PDO SQLite extension is not loaded');
}
return [
'driver' => 'pdo_sqlite',
'memory' => true,
];
}
private static function initializeDatabase(): void
{
$testConnParams = self::getTestConnectionParameters();
$privConnParams = self::getPrivilegedConnectionParameters();
// Connect as a privileged user to create and drop the test database.
$privConn = DriverManager::getConnection($privConnParams);
$platform = $privConn->getDatabasePlatform();
if ($platform instanceof SQLitePlatform) {
if (isset($testConnParams['path']) && file_exists($testConnParams['path'])) {
unlink($testConnParams['path']);
}
} elseif ($platform instanceof DB2Platform) {
$testConn = DriverManager::getConnection($testConnParams);
$sm = $testConn->createSchemaManager();
$schema = $sm->introspectSchema();
$sm->dropSchemaObjects($schema);
$testConn->close();
} else {
if (! $platform instanceof OraclePlatform) {
if (! isset($testConnParams['dbname'])) {
throw new InvalidArgumentException(
'You must have a database configured in your connection.',
);
}
$dbname = $testConnParams['dbname'];
} else {
if (! isset($testConnParams['user'])) {
throw new InvalidArgumentException(
'You must have a user configured in your connection.',
);
}
$dbname = $testConnParams['user'];
}
$sm = $privConn->createSchemaManager();
try {
$sm->dropDatabase($dbname);
} catch (DatabaseObjectNotFoundException) {
}
$sm->createDatabase($dbname);
}
$privConn->close();
}
private static function createConfiguration(string $driver): Configuration
{
$configuration = new Configuration();
switch ($driver) {
case 'pdo_oci':
case 'oci8':
$configuration->setMiddlewares([new InitializeSession()]);
break;
case 'pdo_sqlite':
case 'sqlite3':
$configuration->setMiddlewares([new EnableForeignKeys()]);
break;
}
$configuration->setSchemaManagerFactory(new DefaultSchemaManagerFactory());
return $configuration;
}
/** @return Params */
private static function getPrivilegedConnectionParameters(): array
{
if (isset($GLOBALS['tmpdb_driver'])) {
return self::mapConnectionParameters($GLOBALS, 'tmpdb_');
}
$parameters = self::mapConnectionParameters($GLOBALS, 'db_');
unset($parameters['dbname']);
return $parameters;
}
/** @return Params */
private static function getTestConnectionParameters(): array
{
return self::mapConnectionParameters($GLOBALS, 'db_');
}
/**
* @param array<string,mixed> $configuration
*
* @return Params
*/
private static function mapConnectionParameters(array $configuration, string $prefix): array
{
$parameters = [];
foreach ($configuration as $key => $value) {
if (! str_starts_with($key, $prefix)) {
continue;
}
$parameters[substr($key, strlen($prefix))] = $value;
}
if (isset($parameters['port'])) {
$parameters['port'] = (int) $parameters['port'];
}
foreach ($configuration as $param => $value) {
if (! str_starts_with($param, $prefix . 'driver_option_')) {
continue;
}
$option = substr($param, strlen($prefix . 'driver_option_'));
if ($option === Mysqli\Connection::OPTION_FLAGS) {
$value = (int) $value;
}
$parameters['driverOptions'][$option] = $value;
}
return $parameters;
}
public static function getPrivilegedConnection(): Connection
{
return DriverManager::getConnection(self::getPrivilegedConnectionParameters());
}
public static function isDriverOneOf(string ...$names): bool
{
$params = self::getConnectionParams();
assert(isset($params['driver']));
return in_array($params['driver'], $names, true);
}
public static function isPdoStringifyFetchesEnabled(): bool
{
return (self::getConnectionParams()['driverOptions'][PDO::ATTR_STRINGIFY_FETCHES] ?? false) === true;
}
/**
* Generates a query that will return the given rows without the need to create a temporary table.
*
* @param list<string> $columnNames The names of the result columns. Must be non-empty.
* @param list<list<mixed>> $rows The rows of the result. Each row must have the same number of columns
* as the number of column names.
*/
public static function generateResultSetQuery(array $columnNames, array $rows, AbstractPlatform $platform): string
{
return implode(' UNION ALL ', array_map(static function (array $row) use ($columnNames, $platform): string {
return $platform->getDummySelectSQL(
implode(', ', array_map(static function (string $column, $value) use ($platform): string {
if (is_string($value)) {
$value = $platform->quoteStringLiteral($value);
}
return $value . ' ' . $platform->quoteSingleIdentifier($column);
}, $columnNames, $row)),
);
}, $rows));
}
}
|