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
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Functional;
use Doctrine\DBAL\ColumnCase;
use Doctrine\DBAL\DriverManager;
use Doctrine\DBAL\Portability\Connection;
use Doctrine\DBAL\Portability\Middleware;
use Doctrine\DBAL\Schema\Column;
use Doctrine\DBAL\Schema\PrimaryKeyConstraint;
use Doctrine\DBAL\Schema\Table;
use Doctrine\DBAL\Tests\FunctionalTestCase;
use Doctrine\DBAL\Types\Types;
use PHPUnit\Framework\Attributes\DataProvider;
use function array_keys;
use function array_merge;
use function strlen;
class PortabilityTest extends FunctionalTestCase
{
protected function tearDown(): void
{
// the connection that overrides the shared one has to be manually closed prior to 4.0.0 to prevent leak
// see https://github.com/doctrine/dbal/issues/4515
$this->connection->close();
}
public function testFullFetchMode(): void
{
$this->connectWithPortability(Connection::PORTABILITY_ALL, ColumnCase::LOWER);
$this->createTable();
$rows = $this->connection->fetchAllAssociative('SELECT * FROM portability_table');
$this->assertFetchResultRows($rows);
$result = $this->connection->executeQuery('SELECT * FROM portability_table');
while (($row = $result->fetchAssociative()) !== false) {
$this->assertFetchResultRow($row);
}
$result = $this->connection
->prepare('SELECT * FROM portability_table')
->executeQuery();
while (($row = $result->fetchAssociative()) !== false) {
$this->assertFetchResultRow($row);
}
}
/** @param list<string> $expected */
#[DataProvider('caseProvider')]
public function testCaseConversion(ColumnCase $case, array $expected): void
{
$this->connectWithPortability(Connection::PORTABILITY_FIX_CASE, $case);
$this->createTable();
$row = $this->connection->fetchAssociative('SELECT * FROM portability_table');
self::assertNotFalse($row);
self::assertSame($expected, array_keys($row));
}
/** @param list<string> $expected */
#[DataProvider('caseProvider')]
public function testCaseConversionColumnName(ColumnCase $case, array $expected): void
{
$this->connectWithPortability(Connection::PORTABILITY_FIX_CASE, $case);
$this->createTable();
$result = $this->connection->executeQuery('SELECT * FROM portability_table');
$actual = [];
foreach ($expected as $index => $name) {
$actual[$index] = $result->getColumnName($index);
}
self::assertSame($expected, $actual);
}
/** @return iterable<string, array{ColumnCase, list<string>}> */
public static function caseProvider(): iterable
{
yield 'lower' => [ColumnCase::LOWER, ['test_int', 'test_string', 'test_null']];
yield 'upper' => [ColumnCase::UPPER, ['TEST_INT', 'TEST_STRING', 'TEST_NULL']];
}
/** @param array<int, array<string, mixed>> $rows */
private function assertFetchResultRows(array $rows): void
{
self::assertCount(2, $rows);
foreach ($rows as $row) {
$this->assertFetchResultRow($row);
}
}
/** @param array<string, mixed> $row */
public function assertFetchResultRow(array $row): void
{
self::assertThat($row['test_int'], self::logicalOr(
self::equalTo(1),
self::equalTo(2),
));
self::assertArrayHasKey('test_string', $row, 'Case should be lowered.');
self::assertEquals(3, strlen($row['test_string']));
self::assertNull($row['test_null']);
self::assertArrayNotHasKey(0, $row, 'The row should not contain numerical keys.');
}
/** @param mixed[] $expected */
#[DataProvider('fetchColumnProvider')]
public function testFetchColumn(string $column, array $expected): void
{
$this->connectWithPortability(Connection::PORTABILITY_RTRIM, null);
$this->createTable();
$result = $this->connection->executeQuery('SELECT ' . $column . ' FROM portability_table');
self::assertEquals($expected, $result->fetchFirstColumn());
}
/** @return iterable<string, array<int, mixed>> */
public static function fetchColumnProvider(): iterable
{
return [
'int' => [
'Test_Int',
[1, 2],
],
'string' => [
'Test_String',
['foo', 'foo'],
],
];
}
public function testFetchAllNullColumn(): void
{
$this->connectWithPortability(Connection::PORTABILITY_EMPTY_TO_NULL, null);
$this->createTable();
$column = $this->connection->fetchFirstColumn('SELECT Test_Null FROM portability_table');
self::assertSame([null, null], $column);
}
public function testGetDatabaseName(): void
{
$this->connectWithPortability(Connection::PORTABILITY_EMPTY_TO_NULL, ColumnCase::LOWER);
self::assertNotNull($this->connection->getDatabase());
}
private function connectWithPortability(int $mode, ?ColumnCase $case): void
{
// closing the default connection prior to 4.0.0 to prevent connection leak
$this->connection->close();
$configuration = $this->connection->getConfiguration();
$configuration->setMiddlewares(
array_merge(
$configuration->getMiddlewares(),
[new Middleware($mode, $case)],
),
);
$this->connection = DriverManager::getConnection($this->connection->getParams(), $configuration);
}
private function createTable(): void
{
$table = Table::editor()
->setUnquotedName('portability_table')
->setColumns(
Column::editor()
->setUnquotedName('Test_Int')
->setTypeName(Types::INTEGER)
->create(),
Column::editor()
->setUnquotedName('Test_String')
->setTypeName(Types::STRING)
->setFixed(true)
->setLength(8)
->create(),
Column::editor()
->setUnquotedName('Test_Null')
->setTypeName(Types::STRING)
->setLength(1)
->setNotNull(false)
->create(),
)
->setPrimaryKeyConstraint(
PrimaryKeyConstraint::editor()
->setUnquotedColumnNames('Test_Int')
->create(),
)
->create();
$this->dropAndCreateTable($table);
$this->connection->insert('portability_table', [
'Test_Int' => 1,
'Test_String' => 'foo',
'Test_Null' => '',
]);
$this->connection->insert('portability_table', [
'Test_Int' => 2,
'Test_String' => 'foo ',
'Test_Null' => null,
]);
}
}
|