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
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Functional\Platform;
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
use Doctrine\DBAL\Schema\Column;
use Doctrine\DBAL\Schema\ColumnEditor;
use Doctrine\DBAL\Schema\Table;
use Doctrine\DBAL\Tests\FunctionalTestCase;
use Doctrine\DBAL\Types\Types;
class AlterColumnTest extends FunctionalTestCase
{
public function testColumnPositionRetainedAfterAltering(): void
{
$table = Table::editor()
->setUnquotedName('test_alter')
->setColumns(
Column::editor()
->setUnquotedName('c1')
->setTypeName(Types::INTEGER)
->create(),
Column::editor()
->setUnquotedName('c2')
->setTypeName(Types::INTEGER)
->create(),
)
->create();
$this->dropAndCreateTable($table);
$table = $table->edit()
->modifyColumnByUnquotedName('c1', static function (ColumnEditor $editor): void {
$editor
->setTypeName(Types::STRING)
->setLength(16);
})
->create();
$sm = $this->connection->createSchemaManager();
$diff = $sm->createComparator()
->compareTables($sm->introspectTable('test_alter'), $table);
$sm->alterTable($diff);
$table = $sm->introspectTable('test_alter');
$columns = $table->getColumns();
self::assertCount(2, $columns);
self::assertEqualsIgnoringCase('c1', $columns[0]->getName());
self::assertEqualsIgnoringCase('c2', $columns[1]->getName());
}
public function testSupportsCollations(): void
{
if (! $this->connection->getDatabasePlatform() instanceof PostgreSQLPlatform) {
self::markTestSkipped('This test covers PostgreSQL-specific schema comparison scenarios.');
}
$table = Table::editor()
->setUnquotedName('test_alter')
->setColumns(
Column::editor()
->setUnquotedName('c1')
->setTypeName(Types::STRING)
->setCollation('en_US.utf8')
->create(),
Column::editor()
->setUnquotedName('c2')
->setTypeName(Types::STRING)
->create(),
)
->create();
$this->dropAndCreateTable($table);
$sm = $this->connection->createSchemaManager();
$diff = $sm->createComparator()
->compareTables($sm->introspectTable('test_alter'), $table);
self::assertTrue($diff->isEmpty());
}
public function testSupportsIcuCollationProviders(): void
{
if (! $this->connection->getDatabasePlatform() instanceof PostgreSQLPlatform) {
self::markTestSkipped('This test covers PostgreSQL-specific schema comparison scenarios.');
}
$hasIcuCollations = $this->connection->fetchOne(
"SELECT 1 FROM pg_collation WHERE collprovider = 'icu'",
) !== false;
if (! $hasIcuCollations) {
self::markTestSkipped('This test requires ICU collations to be available.');
}
$table = Table::editor()
->setUnquotedName('test_alter')
->setColumns(
Column::editor()
->setUnquotedName('c1')
->setTypeName(Types::STRING)
->setCollation('en-US-x-icu')
->create(),
)
->create();
$this->dropAndCreateTable($table);
$sm = $this->connection->createSchemaManager();
$diff = $sm->createComparator()
->compareTables($sm->introspectTable('test_alter'), $table);
self::assertTrue($diff->isEmpty());
}
}
|