NewPrimaryKeyWithNewAutoIncrementColumnTest.php 2.38 KB
Newer Older
1 2 3 4
<?php

namespace Doctrine\Tests\DBAL\Functional\Platform;

5
use Doctrine\DBAL\Platforms\AbstractPlatform;
6 7 8 9 10 11 12 13 14
use Doctrine\DBAL\Schema\Comparator;
use Doctrine\Tests\DbalFunctionalTestCase;
use function in_array;

final class NewPrimaryKeyWithNewAutoIncrementColumnTest extends DbalFunctionalTestCase
{
    /**
     * {@inheritDoc}
     */
15
    protected function setUp() : void
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
    {
        parent::setUp();

        if (in_array($this->getPlatform()->getName(), ['mysql'])) {
            return;
        }

        $this->markTestSkipped('Restricted to MySQL.');
    }

    /**
     * Ensures that the primary key is created within the same "alter table" statement that an auto-increment column
     * is added to the table as part of the new primary key.
     *
     * Before the fix for this problem this resulted in a database error: (at least on mysql)
     * SQLSTATE[42000]: Syntax error or access violation: 1075 Incorrect table definition; there can be only one auto
     * column and it must be defined as a key
     */
34
    public function testAlterPrimaryKeyToAutoIncrementColumn() : void
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
    {
        $schemaManager = $this->connection->getSchemaManager();
        $schema        = $schemaManager->createSchema();

        $table = $schema->createTable('dbal2807');
        $table->addColumn('initial_id', 'integer');
        $table->setPrimaryKey(['initial_id']);

        $schemaManager->dropAndCreateTable($table);

        $newSchema = clone $schema;
        $newTable  = $newSchema->getTable($table->getName());
        $newTable->addColumn('new_id', 'integer', ['autoincrement' => true]);
        $newTable->dropPrimaryKey();
        $newTable->setPrimaryKey(['new_id']);

        $diff = (new Comparator())->compare($schema, $newSchema);

        foreach ($diff->toSql($this->getPlatform()) as $sql) {
            $this->connection->exec($sql);
        }

        $validationSchema = $schemaManager->createSchema();
        $validationTable  = $validationSchema->getTable($table->getName());

        $this->assertTrue($validationTable->hasColumn('new_id'));
        $this->assertTrue($validationTable->getColumn('new_id')->getAutoincrement());
        $this->assertTrue($validationTable->hasPrimaryKey());
        $this->assertSame(['new_id'], $validationTable->getPrimaryKeyColumns());
    }

66
    private function getPlatform() : AbstractPlatform
67 68 69 70
    {
        return $this->connection->getDatabasePlatform();
    }
}