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
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Functional\Schema;
use Doctrine\DBAL\Exception;
use Doctrine\DBAL\Schema\AbstractSchemaManager;
use Doctrine\DBAL\Schema\Table;
use Doctrine\DBAL\Tests\FunctionalTestCase;
use Doctrine\DBAL\Types\Types;
use PHPUnit\Framework\Attributes\DataProvider;
use PHPUnit\Framework\Attributes\RequiresPhpunit;
#[RequiresPhpunit('< 11.5.18')]
final class SchemaManagerTest extends FunctionalTestCase
{
private AbstractSchemaManager $schemaManager;
/** @throws Exception */
protected function setUp(): void
{
$this->schemaManager = $this->connection->createSchemaManager();
}
#[DataProvider('dataEmptyDiffRegardlessOfForeignTableQuotes')]
public function testEmptyDiffRegardlessOfForeignTableQuotes(string $foreignTableName): void
{
if (! $this->connection->getDatabasePlatform()->supportsSchemas()) {
self::markTestSkipped('Platform does not support schemas.');
}
$this->dropAndCreateSchema('other_schema');
$tableForeign = new Table($foreignTableName);
$tableForeign->addColumn('id', 'integer');
$tableForeign->setPrimaryKey(['id']);
$this->dropAndCreateTable($tableForeign);
$tableTo = new Table('other_schema.other_table');
$tableTo->addColumn('id', 'integer');
$tableTo->addColumn('user_id', 'integer');
$tableTo->setPrimaryKey(['id']);
$tableTo->addForeignKeyConstraint($foreignTableName, ['user_id'], ['id']);
$this->dropAndCreateTable($tableTo);
$schemaFrom = $this->schemaManager->introspectSchema();
$tableFrom = $schemaFrom->getTable('other_schema.other_table');
$diff = $this->schemaManager->createComparator()->compareTables($tableFrom, $tableTo);
self::assertTrue($diff->isEmpty());
}
/** @return iterable<string,array{string}> */
public static function dataEmptyDiffRegardlessOfForeignTableQuotes(): iterable
{
return [
'unquoted' => ['other_schema.user'],
'partially quoted' => ['other_schema."user"'],
'fully quoted' => ['"other_schema"."user"'],
];
}
#[DataProvider('dataDropIndexInAnotherSchema')]
public function testDropIndexInAnotherSchema(string $tableName): void
{
if (! $this->connection->getDatabasePlatform()->supportsSchemas()) {
self::markTestSkipped('Platform does not support schemas.');
}
$this->dropAndCreateSchema('other_schema');
$this->dropAndCreateSchema('case');
$tableFrom = new Table($tableName);
$tableFrom->addColumn('id', Types::INTEGER);
$tableFrom->addColumn('name', Types::STRING, ['length' => 32]);
$tableFrom->addUniqueIndex(['name'], 'some_table_name_unique_index');
$this->dropAndCreateTable($tableFrom);
$tableTo = clone $tableFrom;
$tableTo->dropIndex('some_table_name_unique_index');
$diff = $this->schemaManager->createComparator()->compareTables($tableFrom, $tableTo);
self::assertFalse($diff->isEmpty());
$this->schemaManager->alterTable($diff);
$tableFinal = $this->schemaManager->introspectTable($tableName);
self::assertEmpty($tableFinal->getIndexes());
}
/** @return iterable<string,array{string}> */
public static function dataDropIndexInAnotherSchema(): iterable
{
return [
'default schema' => ['some_table'],
'unquoted schema' => ['other_schema.some_table'],
'quoted schema' => ['"other_schema".some_table'],
'reserved schema' => ['case.some_table'],
];
}
}
|