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
|
<?php
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\Table;
use Doctrine\DBAL\Tests\FunctionalTestCase;
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())) {
$this->assertFetchResultRow($row);
}
$result = $this->connection
->prepare('SELECT * FROM portability_table')
->execute();
while (($row = $result->fetchAssociative())) {
$this->assertFetchResultRow($row);
}
}
/**
* @param list<string> $expected
*
* @dataProvider caseProvider
*/
public function testCaseConversion(int $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));
}
/** @return iterable<string, array{int, 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, 0);
$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, 0);
$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, 0);
self::assertNotNull($this->connection->getDatabase());
}
private function connectWithPortability(int $mode, int $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 = new Table('portability_table');
$table->addColumn('Test_Int', 'integer');
$table->addColumn('Test_String', 'string', ['fixed' => true, 'length' => 32]);
$table->addColumn('Test_Null', 'string', ['notnull' => false]);
$table->setPrimaryKey(['Test_Int']);
$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,
]);
}
}
|