-
-
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.
Implement an EnumType for MySQL/MariaDB
- Loading branch information
Showing
10 changed files
with
235 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\DBAL\Types; | ||
|
||
use Doctrine\DBAL\Platforms\AbstractPlatform; | ||
|
||
final class EnumType extends Type | ||
{ | ||
/** | ||
* {@inheritDoc} | ||
*/ | ||
public function getSQLDeclaration(array $column, AbstractPlatform $platform): string | ||
{ | ||
return $platform->getEnumDeclarationSQL($column); | ||
} | ||
} |
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,117 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Doctrine\DBAL\Tests\Functional\Types; | ||
|
||
use Doctrine\DBAL\Platforms\AbstractMySQLPlatform; | ||
use Doctrine\DBAL\Schema\Schema; | ||
use Doctrine\DBAL\Tests\FunctionalTestCase; | ||
use Doctrine\DBAL\Types\EnumType; | ||
use Doctrine\DBAL\Types\Type; | ||
use Doctrine\DBAL\Types\Types; | ||
use PHPUnit\Framework\Attributes\DataProvider; | ||
|
||
final class EnumTypeTest extends FunctionalTestCase | ||
{ | ||
protected function setUp(): void | ||
{ | ||
$this->dropTableIfExists('my_enum_table'); | ||
} | ||
|
||
public function testIntrospectEnum(): void | ||
{ | ||
if (! $this->connection->getDatabasePlatform() instanceof AbstractMySQLPlatform) { | ||
self::markTestSkipped('This test requires MySQL or MariaDB.'); | ||
} | ||
|
||
$this->connection->executeStatement(<<< 'SQL' | ||
CREATE TABLE my_enum_table ( | ||
id BIGINT NOT NULL PRIMARY KEY, | ||
suit ENUM('hearts', 'diamonds', 'clubs', 'spades') NOT NULL DEFAULT 'hearts' | ||
); | ||
SQL); | ||
|
||
$schemaManager = $this->connection->createSchemaManager(); | ||
$table = $schemaManager->introspectTable('my_enum_table'); | ||
|
||
self::assertCount(2, $table->getColumns()); | ||
self::assertTrue($table->hasColumn('suit')); | ||
self::assertInstanceOf(EnumType::class, $table->getColumn('suit')->getType()); | ||
self::assertSame(['hearts', 'diamonds', 'clubs', 'spades'], $table->getColumn('suit')->getValues()); | ||
self::assertSame('hearts', $table->getColumn('suit')->getDefault()); | ||
} | ||
|
||
public function testDeployEnum(): void | ||
{ | ||
$schemaManager = $this->connection->createSchemaManager(); | ||
$schema = new Schema(schemaConfig: $schemaManager->createSchemaConfig()); | ||
$table = $schema->createTable('my_enum_table'); | ||
$table->addColumn('id', Types::BIGINT, ['notnull' => true]); | ||
$table->addColumn('suit', Types::ENUM, [ | ||
'values' => ['hearts', 'diamonds', 'clubs', 'spades'], | ||
'notnull' => true, | ||
'default' => 'hearts', | ||
]); | ||
$table->setPrimaryKey(['id']); | ||
|
||
$schemaManager->createSchemaObjects($schema); | ||
|
||
$introspectedTable = $schemaManager->introspectTable('my_enum_table'); | ||
|
||
self::assertTrue($schemaManager->createComparator()->compareTables($table, $introspectedTable)->isEmpty()); | ||
|
||
$this->connection->insert('my_enum_table', ['id' => 1, 'suit' => 'hearts'], ['suit' => Types::ENUM]); | ||
$this->connection->insert( | ||
'my_enum_table', | ||
['id' => 2, 'suit' => 'diamonds'], | ||
['suit' => Type::getType(Types::ENUM)], | ||
); | ||
|
||
self::assertEquals( | ||
[[1, 'hearts'], [2, 'diamonds']], | ||
$this->connection->fetchAllNumeric('SELECT id, suit FROM my_enum_table ORDER BY id ASC'), | ||
); | ||
} | ||
|
||
/** @param list<string> $expectedValues */ | ||
#[DataProvider('provideEnumDefinitions')] | ||
public function testIntrospectEnumValues(string $definition, array $expectedValues): void | ||
{ | ||
if (! $this->connection->getDatabasePlatform() instanceof AbstractMySQLPlatform) { | ||
self::markTestSkipped('This test requires MySQL or MariaDB.'); | ||
} | ||
|
||
$this->connection->executeStatement(<<< SQL | ||
CREATE TABLE my_enum_table ( | ||
id BIGINT NOT NULL PRIMARY KEY, | ||
my_enum $definition DEFAULT NULL | ||
); | ||
SQL); | ||
|
||
$schemaManager = $this->connection->createSchemaManager(); | ||
$table = $schemaManager->introspectTable('my_enum_table'); | ||
|
||
self::assertInstanceOf(EnumType::class, $table->getColumn('my_enum')->getType()); | ||
self::assertSame($expectedValues, $table->getColumn('my_enum')->getValues()); | ||
self::assertNull($table->getColumn('my_enum')->getDefault()); | ||
} | ||
|
||
/** @return iterable<string, array{string, list<string>}> */ | ||
public static function provideEnumDefinitions(): iterable | ||
{ | ||
yield 'simple' => ['ENUM("a", "b", "c")', ['a', 'b', 'c']]; | ||
yield 'empty first' => ['ENUM("", "a", "b", "c")', ['', 'a', 'b', 'c']]; | ||
yield 'empty in the middle' => ['ENUM("a", "", "b", "c")', ['a', '', 'b', 'c']]; | ||
yield 'empty last' => ['ENUM("a", "b", "c", "")', ['a', 'b', 'c', '']]; | ||
yield 'with spaces' => ['ENUM("a b", "c d", "e f")', ['a b', 'c d', 'e f']]; | ||
yield 'with quotes' => ['ENUM("a\'b", "c\'d", "e\'f")', ['a\'b', 'c\'d', 'e\'f']]; | ||
yield 'with commas' => ['ENUM("a,b", "c,d", "e,f")', ['a,b', 'c,d', 'e,f']]; | ||
yield 'with parentheses' => ['ENUM("(a)", "(b)", "(c)")', ['(a)', '(b)', '(c)']]; | ||
yield 'with quotes and commas' => ['ENUM("a\'b", "c\'d", "e\'f")', ['a\'b', 'c\'d', 'e\'f']]; | ||
yield 'with quotes and parentheses' => ['ENUM("(a)", "(b)", "(c)")', ['(a)', '(b)', '(c)']]; | ||
yield 'with commas and parentheses' => ['ENUM("(a,b)", "(c,d)", "(e,f)")', ['(a,b)', '(c,d)', '(e,f)']]; | ||
yield 'with quotes, commas and parentheses' | ||
=> ['ENUM("(a\'b)", "(c\'d)", "(e\'f)")', ['(a\'b)', '(c\'d)', '(e\'f)']]; | ||
} | ||
} |
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