PlatformRestrictionsTest.php 1.29 KB
Newer Older
1 2 3 4 5 6
<?php

namespace Doctrine\Tests\DBAL\Functional\Platform;

use Doctrine\DBAL\Schema\Table;
use Doctrine\Tests\DbalFunctionalTestCase;
7

8 9 10 11 12 13 14 15 16 17 18 19
use function str_repeat;

/**
 * This class holds tests that make sure generated SQL statements respect to platform restrictions
 * like maximum element name length
 */
class PlatformRestrictionsTest extends DbalFunctionalTestCase
{
    /**
     * Tests element names that are at the boundary of the identifier length limit.
     * Ensures generated auto-increment identifier name respects to platform restrictions.
     */
20
    public function testMaxIdentifierLengthLimitWithAutoIncrement(): void
21 22 23 24 25 26 27 28 29 30 31 32 33 34
    {
        $platform   = $this->connection->getDatabasePlatform();
        $tableName  = str_repeat('x', $platform->getMaxIdentifierLength());
        $columnName = str_repeat('y', $platform->getMaxIdentifierLength());
        $table      = new Table($tableName);
        $table->addColumn($columnName, 'integer', ['autoincrement' => true]);
        $table->setPrimaryKey([$columnName]);
        $this->connection->getSchemaManager()->dropAndCreateTable($table);
        $createdTable = $this->connection->getSchemaManager()->listTableDetails($tableName);

        $this->assertTrue($createdTable->hasColumn($columnName));
        $this->assertTrue($createdTable->hasPrimaryKey());
    }
}