-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: #6146 - utf8/utf8mb3 alias causes redundant ALTER TABLE changes
- Loading branch information
1 parent
cbd0e9a
commit fb2b723
Showing
14 changed files
with
314 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\DBAL\Tests\Functional\Driver; | ||
|
||
use Doctrine\DBAL\Schema\Column; | ||
use Doctrine\DBAL\Schema\Schema; | ||
use Doctrine\DBAL\Schema\Table; | ||
use Doctrine\DBAL\Tests\FunctionalTestCase; | ||
use Doctrine\DBAL\Tests\TestUtil; | ||
use Doctrine\DBAL\Types\StringType; | ||
use PHPUnit\Framework\Attributes\DataProvider; | ||
|
||
class DBAL6146Test extends FunctionalTestCase | ||
{ | ||
protected function setUp(): void | ||
{ | ||
parent::setUp(); | ||
|
||
if (TestUtil::isDriverOneOf('pdo_mysql', 'mysqli')) { | ||
return; | ||
} | ||
|
||
self::markTestSkipped('This test requires the pdo_mysql or the mysqli driver.'); | ||
} | ||
|
||
/** @return iterable<array{array<string,string>,array<string,string>}> */ | ||
public static function equivalentCharsetAndCollationProvider(): iterable | ||
{ | ||
yield [[], []]; | ||
yield [['charset' => 'utf8'], ['charset' => 'utf8']]; | ||
yield [['charset' => 'utf8'], ['charset' => 'utf8mb3']]; | ||
yield [['charset' => 'utf8mb3'], ['charset' => 'utf8']]; | ||
yield [['charset' => 'utf8mb3'], ['charset' => 'utf8mb3']]; | ||
yield [['collation' => 'utf8_unicode_ci'], ['collation' => 'utf8_unicode_ci']]; | ||
yield [['collation' => 'utf8_unicode_ci'], ['collation' => 'utf8mb3_unicode_ci']]; | ||
yield [['collation' => 'utf8mb3_unicode_ci'], ['collation' => 'utf8mb3_unicode_ci']]; | ||
yield [['collation' => 'utf8mb3_unicode_ci'], ['collation' => 'utf8_unicode_ci']]; | ||
yield [ | ||
['charset' => 'utf8', 'collation' => 'utf8_unicode_ci'], | ||
['charset' => 'utf8', 'collation' => 'utf8_unicode_ci'], | ||
]; | ||
|
||
yield [ | ||
['charset' => 'utf8', 'collation' => 'utf8_unicode_ci'], | ||
['charset' => 'utf8mb3', 'collation' => 'utf8mb3_unicode_ci'], | ||
]; | ||
|
||
yield [ | ||
['charset' => 'utf8mb3', 'collation' => 'utf8mb3_unicode_ci'], | ||
['charset' => 'utf8', 'collation' => 'utf8_unicode_ci'], | ||
]; | ||
|
||
yield [ | ||
['charset' => 'utf8mb3', 'collation' => 'utf8mb3_unicode_ci'], | ||
['charset' => 'utf8mb3', 'collation' => 'utf8mb3_unicode_ci'], | ||
]; | ||
} | ||
|
||
/** | ||
* @param array<string,string> $options1 | ||
* @param array<string,string> $options2 | ||
*/ | ||
#[DataProvider('equivalentCharsetAndCollationProvider')] | ||
public function testThereAreNoRedundantAlterTableStatements(array $options1, array $options2): void | ||
{ | ||
$column1 = new Column('bar', new StringType(), ['length' => 32, 'platformOptions' => $options1]); | ||
$table1 = new Table(name: 'foo6146', columns: [$column1]); | ||
|
||
$column2 = new Column('bar', new StringType(), ['length' => 32, 'platformOptions' => $options2]); | ||
$table2 = new Table(name: 'foo6146', columns: [$column2]); | ||
|
||
$this->dropAndCreateTable($table1); | ||
|
||
$schemaManager = $this->connection->createSchemaManager(); | ||
$oldSchema = $schemaManager->introspectSchema(); | ||
$newSchema = new Schema([$table2]); | ||
$comparator = $schemaManager->createComparator(); | ||
$schemaDiff = $comparator->compareSchemas($oldSchema, $newSchema); | ||
$alteredTables = $schemaDiff->getAlteredTables(); | ||
|
||
self::assertEmpty($alteredTables); | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
tests/Platforms/MySQL/CollationMetadataProvider/ConnectionCharsetMetadataProviderTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\DBAL\Tests\Platforms\MySQL\CollationMetadataProvider; | ||
|
||
use Doctrine\DBAL\Connection; | ||
use Doctrine\DBAL\Platforms\MySQL\CharsetMetadataProvider\ConnectionCharsetMetadataProvider; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class ConnectionCharsetMetadataProviderTest extends TestCase | ||
{ | ||
public function testNormalizeCharset(): void | ||
{ | ||
$connection = $this->createMock(Connection::class); | ||
|
||
$utf8Provider = new ConnectionCharsetMetadataProvider($connection, false); | ||
|
||
self::assertSame('utf8', $utf8Provider->normalizeCharset('utf8')); | ||
self::assertSame('utf8', $utf8Provider->normalizeCharset('utf8mb3')); | ||
self::assertSame('foobar', $utf8Provider->normalizeCharset('foobar')); | ||
|
||
$utf8mb3Provider = new ConnectionCharsetMetadataProvider($connection, true); | ||
|
||
self::assertSame('utf8mb3', $utf8mb3Provider->normalizeCharset('utf8')); | ||
self::assertSame('utf8mb3', $utf8mb3Provider->normalizeCharset('utf8mb3')); | ||
self::assertSame('foobar', $utf8mb3Provider->normalizeCharset('foobar')); | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
tests/Platforms/MySQL/CollationMetadataProvider/ConnectionCollationMetadataProviderTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\DBAL\Tests\Platforms\MySQL\CollationMetadataProvider; | ||
|
||
use Doctrine\DBAL\Connection; | ||
use Doctrine\DBAL\Platforms\MySQL\CollationMetadataProvider\ConnectionCollationMetadataProvider; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
class ConnectionCollationMetadataProviderTest extends TestCase | ||
{ | ||
public function testNormalizeCcollation(): void | ||
{ | ||
$connection = $this->createMock(Connection::class); | ||
|
||
$utf8Provider = new ConnectionCollationMetadataProvider($connection, false); | ||
|
||
self::assertSame('utf8_unicode_ci', $utf8Provider->normalizeCollation('utf8_unicode_ci')); | ||
self::assertSame('utf8_unicode_ci', $utf8Provider->normalizeCollation('utf8mb3_unicode_ci')); | ||
self::assertSame('foobar_unicode_ci', $utf8Provider->normalizeCollation('foobar_unicode_ci')); | ||
|
||
$utf8mb3Provider = new ConnectionCollationMetadataProvider($connection, true); | ||
|
||
self::assertSame('utf8mb3_unicode_ci', $utf8mb3Provider->normalizeCollation('utf8_unicode_ci')); | ||
self::assertSame('utf8mb3_unicode_ci', $utf8mb3Provider->normalizeCollation('utf8mb3_unicode_ci')); | ||
self::assertSame('foobar_unicode_ci', $utf8mb3Provider->normalizeCollation('foobar_unicode_ci')); | ||
} | ||
} |
Oops, something went wrong.