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
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Tools;
use Doctrine\DBAL\Driver;
use Doctrine\DBAL\DriverManager;
use Doctrine\DBAL\Tools\DsnParser;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\TestCase;
use function get_class;
use function ksort;
/** @phpstan-import-type Params from DriverManager */
final class DsnParserTest extends TestCase
{
/** @phpstan-param Params $expected */
#[DataProvider('databaseUrls')]
public function testDatabaseUrl(string $dsn, array $expected): void
{
$parser = new DsnParser(['mysql' => 'mysqli', 'sqlite' => 'sqlite3']);
$actual = $parser->parse($dsn);
// We don't care about the order of the array keys, so let's normalize both
// arrays before comparing them.
ksort($expected);
ksort($actual);
self::assertSame($expected, $actual);
}
/** @phpstan-return iterable<string, array{string, Params}> */
public static function databaseUrls(): iterable
{
return [
'simple URL' => [
'mysql://foo:bar@localhost/baz',
[
'user' => 'foo',
'password' => 'bar',
'host' => 'localhost',
'dbname' => 'baz',
'driver' => 'mysqli',
],
],
'simple URL with port' => [
'mysql://foo:bar@localhost:11211/baz',
[
'user' => 'foo',
'password' => 'bar',
'host' => 'localhost',
'port' => 11211,
'dbname' => 'baz',
'driver' => 'mysqli',
],
],
'sqlite relative URL with host' => [
'sqlite://localhost/foo/dbname.sqlite',
[
'host' => 'localhost',
'path' => 'foo/dbname.sqlite',
'driver' => 'sqlite3',
],
],
'sqlite absolute URL with host' => [
'sqlite://localhost//tmp/dbname.sqlite',
[
'host' => 'localhost',
'path' => '/tmp/dbname.sqlite',
'driver' => 'sqlite3',
],
],
'sqlite relative URL without host' => [
'sqlite:///foo/dbname.sqlite',
[
'host' => 'localhost',
'path' => 'foo/dbname.sqlite',
'driver' => 'sqlite3',
],
],
'pdo-sqlite relative URL without host' => [
'pdo-sqlite:///foo/dbname.sqlite',
[
'host' => 'localhost',
'path' => 'foo/dbname.sqlite',
'driver' => 'pdo_sqlite',
],
],
'sqlite absolute URL without host' => [
'sqlite:////tmp/dbname.sqlite',
[
'host' => 'localhost',
'path' => '/tmp/dbname.sqlite',
'driver' => 'sqlite3',
],
],
'sqlite memory' => [
'sqlite:///:memory:',
[
'host' => 'localhost',
'memory' => true,
'driver' => 'sqlite3',
],
],
'sqlite memory with host' => [
'sqlite://localhost/:memory:',
[
'host' => 'localhost',
'memory' => true,
'driver' => 'sqlite3',
],
],
'query params from URL are used as extra params' => [
'mysql://foo:bar@localhost/dbname?charset=UTF-8',
[
'user' => 'foo',
'password' => 'bar',
'host' => 'localhost',
'dbname' => 'dbname',
'charset' => 'UTF-8',
'driver' => 'mysqli',
],
],
'simple URL with fallthrough scheme not defined in map' => [
'sqlsrv://foo:bar@localhost/baz',
[
'user' => 'foo',
'password' => 'bar',
'host' => 'localhost',
'dbname' => 'baz',
'driver' => 'sqlsrv',
],
],
'simple URL with fallthrough scheme containing dashes works' => [
'pdo-mysql://foo:bar@localhost/baz',
[
'user' => 'foo',
'password' => 'bar',
'host' => 'localhost',
'dbname' => 'baz',
'driver' => 'pdo_mysql',
],
],
'simple URL with percent encoding' => [
'mysql://foo%3A:bar%2F@localhost/baz+baz%40',
[
'user' => 'foo:',
'password' => 'bar/',
'host' => 'localhost',
'dbname' => 'baz+baz@',
'driver' => 'mysqli',
],
],
'simple URL with percent sign in password' => [
'mysql://foo:bar%25bar@localhost/baz',
[
'user' => 'foo',
'password' => 'bar%bar',
'host' => 'localhost',
'dbname' => 'baz',
'driver' => 'mysqli',
],
],
'URL without scheme' => [
'//foo:bar@localhost/baz',
[
'user' => 'foo',
'password' => 'bar',
'host' => 'localhost',
'dbname' => 'baz',
],
],
'quoted URL' => [
'"sqlite:////tmp/dbname.sqlite"',
['dbname' => '"sqlite:////tmp/dbname.sqlite"'],
],
'absolute path' => [
'/tmp/dbname.sqlite',
['dbname' => '/tmp/dbname.sqlite'],
],
];
}
public function testDriverClassScheme(): void
{
$driverClass = get_class($this->createMock(Driver::class));
$parser = new DsnParser(['custom' => $driverClass]);
$actual = $parser->parse('custom://foo:bar@localhost/baz');
self::assertSame(
[
'host' => 'localhost',
'user' => 'foo',
'password' => 'bar',
'driverClass' => $driverClass,
'dbname' => 'baz',
],
$actual,
);
}
}
|