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 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Tests\Platforms;
use Doctrine\DBAL\Exception\InvalidColumnDeclaration;
use Doctrine\DBAL\Platforms\AbstractMySQLPlatform;
use Doctrine\DBAL\Platforms\MySQL;
use Doctrine\DBAL\Platforms\MySQL\CharsetMetadataProvider;
use Doctrine\DBAL\Platforms\MySQL\CollationMetadataProvider;
use Doctrine\DBAL\Platforms\MySQL\DefaultTableOptions;
use Doctrine\DBAL\Schema\Column;
use Doctrine\DBAL\Schema\ColumnEditor;
use Doctrine\DBAL\Schema\Comparator;
use Doctrine\DBAL\Schema\ComparatorConfig;
use Doctrine\DBAL\Schema\Index;
use Doctrine\DBAL\Schema\Index\IndexType;
use Doctrine\DBAL\Schema\PrimaryKeyConstraint;
use Doctrine\DBAL\Schema\Table;
use Doctrine\DBAL\TransactionIsolationLevel;
use Doctrine\DBAL\Types\Types;
use function array_shift;
/** @extends AbstractPlatformTestCase<AbstractMySQLPlatform> */
abstract class AbstractMySQLPlatformTestCase extends AbstractPlatformTestCase
{
public function testModifyLimitQueryWithoutLimit(): void
{
$sql = $this->platform->modifyLimitQuery('SELECT n FROM Foo', null, 10);
self::assertEquals('SELECT n FROM Foo LIMIT 18446744073709551615 OFFSET 10', $sql);
}
public function testGenerateMixedCaseTableCreate(): void
{
$table = Table::editor()
->setUnquotedName('Foo')
->setColumns(
Column::editor()
->setUnquotedName('Bar')
->setTypeName(Types::INTEGER)
->create(),
)
->create();
$sql = $this->platform->getCreateTableSQL($table);
self::assertEquals(
'CREATE TABLE Foo (Bar INT NOT NULL)',
array_shift($sql),
);
}
public function getGenerateTableSql(): string
{
return 'CREATE TABLE test (id INT AUTO_INCREMENT NOT NULL, test VARCHAR(255) DEFAULT NULL, '
. 'PRIMARY KEY (id))';
}
/** @return string[] */
public function getGenerateTableWithMultiColumnUniqueIndexSql(): array
{
return [
'CREATE TABLE test (foo VARCHAR(255) DEFAULT NULL, bar VARCHAR(255) DEFAULT NULL, '
. 'UNIQUE INDEX UNIQ_D87F7E0C8C73652176FF8CAA (foo, bar))',
];
}
public function testGeneratesSqlSnippets(): void
{
self::assertEquals('RLIKE', $this->platform->getRegexpExpression());
self::assertEquals(
'CONCAT(column1, column2, column3)',
$this->platform->getConcatExpression('column1', 'column2', 'column3'),
);
}
public function testGeneratesTransactionsCommands(): void
{
self::assertEquals(
'SET SESSION TRANSACTION ISOLATION LEVEL READ UNCOMMITTED',
$this->platform->getSetTransactionIsolationSQL(TransactionIsolationLevel::READ_UNCOMMITTED),
'',
);
self::assertEquals(
'SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED',
$this->platform->getSetTransactionIsolationSQL(TransactionIsolationLevel::READ_COMMITTED),
);
self::assertEquals(
'SET SESSION TRANSACTION ISOLATION LEVEL REPEATABLE READ',
$this->platform->getSetTransactionIsolationSQL(TransactionIsolationLevel::REPEATABLE_READ),
);
self::assertEquals(
'SET SESSION TRANSACTION ISOLATION LEVEL SERIALIZABLE',
$this->platform->getSetTransactionIsolationSQL(TransactionIsolationLevel::SERIALIZABLE),
);
}
public function testGeneratesDDLSnippets(): void
{
self::assertEquals('SHOW DATABASES', $this->platform->getListDatabasesSQL());
self::assertEquals('CREATE DATABASE foobar', $this->platform->getCreateDatabaseSQL('foobar'));
self::assertEquals('DROP DATABASE foobar', $this->platform->getDropDatabaseSQL('foobar'));
self::assertEquals('DROP TABLE foobar', $this->platform->getDropTableSQL('foobar'));
}
public function testGeneratesTypeDeclarationForIntegers(): void
{
self::assertEquals(
'INT',
$this->platform->getIntegerTypeDeclarationSQL([]),
);
self::assertEquals(
'INT AUTO_INCREMENT',
$this->platform->getIntegerTypeDeclarationSQL(['autoincrement' => true]),
);
self::assertEquals(
'INT AUTO_INCREMENT',
$this->platform->getIntegerTypeDeclarationSQL(
['autoincrement' => true, 'primary' => true],
),
);
}
public function testSupportsIdentityColumns(): void
{
self::assertTrue($this->platform->supportsIdentityColumns());
}
public function testDoesSupportSavePoints(): void
{
self::assertTrue($this->platform->supportsSavepoints());
}
public function getGenerateIndexSql(): string
{
return 'CREATE INDEX my_idx ON mytable (user_name, last_login)';
}
public function getGenerateUniqueIndexSql(): string
{
return 'CREATE UNIQUE INDEX index_name ON test (test, test2)';
}
protected function getGenerateForeignKeySql(): string
{
return 'ALTER TABLE test ADD FOREIGN KEY (fk_name_id) REFERENCES other_table (id)';
}
public function testUniquePrimaryKey(): void
{
$oldTable = Table::editor()
->setUnquotedName('foo')
->setColumns(
Column::editor()
->setUnquotedName('bar')
->setTypeName(Types::INTEGER)
->create(),
Column::editor()
->setUnquotedName('baz')
->setTypeName(Types::STRING)
->setLength(32)
->create(),
)
->create();
$keyTable = $oldTable->edit()
->addPrimaryKeyConstraint(
PrimaryKeyConstraint::editor()
->setUnquotedColumnNames('bar')
->create(),
)
->create();
$keyTable->addUniqueIndex(['baz']);
$diff = $this->createComparator()
->compareTables($oldTable, $keyTable);
$sql = $this->platform->getAlterTableSQL($diff);
self::assertEquals([
'ALTER TABLE foo ADD PRIMARY KEY (bar)',
'CREATE UNIQUE INDEX UNIQ_8C73652178240498 ON foo (baz)',
], $sql);
}
public function testModifyLimitQuery(): void
{
$sql = $this->platform->modifyLimitQuery('SELECT * FROM user', 10, 0);
self::assertEquals('SELECT * FROM user LIMIT 10', $sql);
}
public function testModifyLimitQueryWithEmptyOffset(): void
{
$sql = $this->platform->modifyLimitQuery('SELECT * FROM user', 10);
self::assertEquals('SELECT * FROM user LIMIT 10', $sql);
}
public function testGetDateTimeTypeDeclarationSql(): void
{
self::assertEquals('DATETIME', $this->platform->getDateTimeTypeDeclarationSQL(['version' => false]));
self::assertEquals('TIMESTAMP', $this->platform->getDateTimeTypeDeclarationSQL(['version' => true]));
self::assertEquals('DATETIME', $this->platform->getDateTimeTypeDeclarationSQL([]));
}
/** @return string[] */
protected function getQuotedColumnInPrimaryKeySQL(): array
{
return ['CREATE TABLE `quoted` (`create` VARCHAR(255) NOT NULL, '
. 'PRIMARY KEY (`create`))',
];
}
/** @return string[] */
protected function getQuotedColumnInIndexSQL(): array
{
return [
'CREATE TABLE `quoted` (`create` VARCHAR(255) NOT NULL, '
. 'INDEX IDX_22660D028FD6E0FB (`create`))',
];
}
/** @return string[] */
protected function getQuotedNameInIndexSQL(): array
{
return [
'CREATE TABLE test (column1 VARCHAR(255) NOT NULL, '
. 'INDEX `key` (column1))',
];
}
/** @return string[] */
protected function getQuotedColumnInForeignKeySQL(): array
{
return [
'CREATE TABLE `quoted` (`create` VARCHAR(255) NOT NULL, foo VARCHAR(255) NOT NULL, '
. '`bar` VARCHAR(255) NOT NULL, INDEX IDX_22660D028FD6E0FB8C7365216D704F76 (`create`, foo, `bar`))',
'ALTER TABLE `quoted` ADD CONSTRAINT FK_WITH_RESERVED_KEYWORD FOREIGN KEY (`create`, foo, `bar`)'
. ' REFERENCES `foreign` (`create`, bar, `foo-bar`)',
'ALTER TABLE `quoted` ADD CONSTRAINT FK_WITH_NON_RESERVED_KEYWORD FOREIGN KEY (`create`, foo, `bar`)'
. ' REFERENCES foo (`create`, bar, `foo-bar`)',
'ALTER TABLE `quoted` ADD CONSTRAINT FK_WITH_INTENDED_QUOTATION FOREIGN KEY (`create`, foo, `bar`)'
. ' REFERENCES `foo-bar` (`create`, bar, `foo-bar`)',
];
}
public function testCreateTableWithFulltextIndex(): void
{
$table = Table::editor()
->setUnquotedName('fulltext_table')
->setColumns(
Column::editor()
->setUnquotedName('text')
->setTypeName(Types::TEXT)
->create(),
)
->setIndexes(
Index::editor()
->setUnquotedName('fulltext_text')
->setType(IndexType::FULLTEXT)
->setUnquotedColumnNames('text')
->create(),
)
->setOptions(['engine' => 'MyISAM'])
->create();
$sql = $this->platform->getCreateTableSQL($table);
self::assertEquals(
[
'CREATE TABLE fulltext_table (text LONGTEXT NOT NULL, '
. 'FULLTEXT INDEX fulltext_text (text)) '
. 'ENGINE = MyISAM',
],
$sql,
);
}
public function testCreateTableWithSpatialIndex(): void
{
$table = Table::editor()
->setUnquotedName('spatial_table')
->setColumns(
Column::editor()
->setUnquotedName('point')
// This should be a point type
->setTypeName(Types::TEXT)
->create(),
)
->setIndexes(
Index::editor()
->setUnquotedName('spatial_text')
->setType(IndexType::SPATIAL)
->setUnquotedColumnNames('point')
->create(),
)
->setOptions(['engine' => 'MyISAM'])
->create();
$sql = $this->platform->getCreateTableSQL($table);
self::assertEquals(
[
'CREATE TABLE spatial_table (point LONGTEXT NOT NULL, SPATIAL INDEX spatial_text (point)) '
. 'ENGINE = MyISAM',
],
$sql,
);
}
public function testClobTypeDeclarationSQL(): void
{
self::assertEquals('TINYTEXT', $this->platform->getClobTypeDeclarationSQL(['length' => 1]));
self::assertEquals('TINYTEXT', $this->platform->getClobTypeDeclarationSQL(['length' => 255]));
self::assertEquals('TEXT', $this->platform->getClobTypeDeclarationSQL(['length' => 256]));
self::assertEquals('TEXT', $this->platform->getClobTypeDeclarationSQL(['length' => 65535]));
self::assertEquals('MEDIUMTEXT', $this->platform->getClobTypeDeclarationSQL(['length' => 65536]));
self::assertEquals('MEDIUMTEXT', $this->platform->getClobTypeDeclarationSQL(['length' => 16777215]));
self::assertEquals('LONGTEXT', $this->platform->getClobTypeDeclarationSQL(['length' => 16777216]));
self::assertEquals('LONGTEXT', $this->platform->getClobTypeDeclarationSQL([]));
}
public function testBlobTypeDeclarationSQL(): void
{
self::assertEquals('TINYBLOB', $this->platform->getBlobTypeDeclarationSQL(['length' => 1]));
self::assertEquals('TINYBLOB', $this->platform->getBlobTypeDeclarationSQL(['length' => 255]));
self::assertEquals('BLOB', $this->platform->getBlobTypeDeclarationSQL(['length' => 256]));
self::assertEquals('BLOB', $this->platform->getBlobTypeDeclarationSQL(['length' => 65535]));
self::assertEquals('MEDIUMBLOB', $this->platform->getBlobTypeDeclarationSQL(['length' => 65536]));
self::assertEquals('MEDIUMBLOB', $this->platform->getBlobTypeDeclarationSQL(['length' => 16777215]));
self::assertEquals('LONGBLOB', $this->platform->getBlobTypeDeclarationSQL(['length' => 16777216]));
self::assertEquals('LONGBLOB', $this->platform->getBlobTypeDeclarationSQL([]));
}
public function testInitializesDoctrineTypeMappings(): void
{
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('binary'));
self::assertSame(Types::BINARY, $this->platform->getDoctrineTypeMapping('binary'));
self::assertTrue($this->platform->hasDoctrineTypeMappingFor('varbinary'));
self::assertSame(Types::BINARY, $this->platform->getDoctrineTypeMapping('varbinary'));
}
public function testGetVariableLengthStringTypeDeclarationSQLNoLength(): void
{
$this->expectException(InvalidColumnDeclaration::class);
parent::testGetVariableLengthStringTypeDeclarationSQLNoLength();
}
public function testGetVariableLengthBinaryTypeDeclarationSQLNoLength(): void
{
$this->expectException(InvalidColumnDeclaration::class);
parent::testGetVariableLengthBinaryTypeDeclarationSQLNoLength();
}
/** @return string[] */
protected function getAlterTableRenameIndexSQL(): array
{
return [
'DROP INDEX idx_foo ON mytable',
'CREATE INDEX idx_bar ON mytable (id)',
];
}
/** @return string[] */
protected function getQuotedAlterTableRenameIndexSQL(): array
{
return [
'DROP INDEX `create` ON `table`',
'CREATE INDEX `select` ON `table` (id)',
'DROP INDEX `foo` ON `table`',
'CREATE INDEX `bar` ON `table` (id)',
];
}
/** @return string[] */
protected function getAlterTableRenameIndexInSchemaSQL(): array
{
return [
'DROP INDEX idx_foo ON myschema.mytable',
'CREATE INDEX idx_bar ON myschema.mytable (id)',
];
}
/** @return string[] */
protected function getQuotedAlterTableRenameIndexInSchemaSQL(): array
{
return [
'DROP INDEX `create` ON `schema`.`table`',
'CREATE INDEX `select` ON `schema`.`table` (id)',
'DROP INDEX `foo` ON `schema`.`table`',
'CREATE INDEX `bar` ON `schema`.`table` (id)',
];
}
public function testIgnoresDifferenceInDefaultValuesForUnsupportedColumnTypes(): void
{
$table = Table::editor()
->setUnquotedName('text_blob_default_value')
->setColumns(
Column::editor()
->setUnquotedName('def_text')
->setTypeName(Types::TEXT)
->setDefaultValue('def')
->create(),
Column::editor()
->setUnquotedName('def_text_null')
->setTypeName(Types::TEXT)
->setNotNull(false)
->setDefaultValue('def')
->create(),
Column::editor()
->setUnquotedName('def_blob')
->setTypeName(Types::BLOB)
->setDefaultValue('def')
->create(),
Column::editor()
->setUnquotedName('def_blob_null')
->setTypeName(Types::BLOB)
->setNotNull(false)
->setDefaultValue('def')
->create(),
)
->create();
self::assertSame(
[
'CREATE TABLE text_blob_default_value (def_text LONGTEXT NOT NULL, '
. 'def_text_null LONGTEXT DEFAULT NULL, '
. 'def_blob LONGBLOB NOT NULL, '
. 'def_blob_null LONGBLOB DEFAULT NULL'
. ')',
],
$this->platform->getCreateTableSQL($table),
);
$diffTable = $table->edit()
->modifyColumnByUnquotedName('def_text', static function (ColumnEditor $editor): void {
$editor->setDefaultValue(null);
})
->modifyColumnByUnquotedName('def_text_null', static function (ColumnEditor $editor): void {
$editor->setDefaultValue(null);
})
->modifyColumnByUnquotedName('def_blob', static function (ColumnEditor $editor): void {
$editor->setDefaultValue(null);
})
->modifyColumnByUnquotedName('def_blob_null', static function (ColumnEditor $editor): void {
$editor->setDefaultValue(null);
})
->create();
$comparator = $this->createComparator();
self::assertTrue($comparator->compareTables($table, $diffTable)->isEmpty());
self::assertTrue($comparator->compareTables($table, $diffTable)->isEmpty());
}
public function testReturnsGuidTypeDeclarationSQL(): void
{
self::assertSame('CHAR(36)', $this->platform->getGuidTypeDeclarationSQL([]));
}
/**
* {@inheritDoc}
*/
protected function getCommentOnColumnSQL(): array
{
return [
"COMMENT ON COLUMN foo.bar IS 'comment'",
"COMMENT ON COLUMN `Foo`.`BAR` IS 'comment'",
"COMMENT ON COLUMN `select`.`from` IS 'comment'",
];
}
protected function getQuotesReservedKeywordInUniqueConstraintDeclarationSQL(): string
{
return 'CONSTRAINT `select` UNIQUE (foo)';
}
protected function getQuotesReservedKeywordInIndexDeclarationSQL(): string
{
return 'INDEX `select` (foo)';
}
protected function getQuotesReservedKeywordInTruncateTableSQL(): string
{
return 'TRUNCATE `select`';
}
/**
* {@inheritDoc}
*/
protected function getAlterStringToFixedStringSQL(): array
{
return ['ALTER TABLE mytable CHANGE name name CHAR(2) NOT NULL'];
}
/**
* {@inheritDoc}
*/
protected function getGeneratesAlterTableRenameIndexUsedByForeignKeySQL(): array
{
return [
'ALTER TABLE mytable DROP FOREIGN KEY fk_foo',
'DROP INDEX idx_foo ON mytable',
'CREATE INDEX idx_foo_renamed ON mytable (foo)',
'ALTER TABLE mytable ADD CONSTRAINT fk_foo FOREIGN KEY (foo) REFERENCES foreign_table (id)',
];
}
/**
* {@inheritDoc}
*/
public static function getGeneratesDecimalTypeDeclarationSQL(): iterable
{
yield [['precision' => 10, 'scale' => 8, 'unsigned' => true], 'NUMERIC(10, 8) UNSIGNED'];
yield from parent::getGeneratesDecimalTypeDeclarationSQL();
}
/**
* {@inheritDoc}
*/
public static function getGeneratesFloatDeclarationSQL(): iterable
{
return [
[[], 'DOUBLE PRECISION'],
[['unsigned' => true], 'DOUBLE PRECISION UNSIGNED'],
[['unsigned' => false], 'DOUBLE PRECISION'],
[['precision' => 5], 'DOUBLE PRECISION'],
[['scale' => 5], 'DOUBLE PRECISION'],
[['precision' => 8, 'scale' => 2], 'DOUBLE PRECISION'],
];
}
/**
* {@inheritDoc}
*/
public static function getGeneratesSmallFloatDeclarationSQL(): iterable
{
return [
[[], 'FLOAT'],
[['unsigned' => true], 'FLOAT UNSIGNED'],
[['unsigned' => false], 'FLOAT'],
[['precision' => 5], 'FLOAT'],
[['scale' => 5], 'FLOAT'],
[['precision' => 4, 'scale' => 2], 'FLOAT'],
];
}
public function testQuotesDatabaseNameInListViewsSQL(): void
{
self::assertStringContainsStringIgnoringCase(
"'Foo''Bar\\\\'",
$this->platform->getListViewsSQL("Foo'Bar\\"),
);
}
public function testColumnCharsetDeclarationSQL(): void
{
self::assertSame(
'CHARACTER SET ascii',
$this->platform->getColumnCharsetDeclarationSQL('ascii'),
);
}
public function testSupportsColumnCollation(): void
{
self::assertTrue($this->platform->supportsColumnCollation());
}
public function testColumnCollationDeclarationSQL(): void
{
self::assertSame(
'COLLATE `ascii_general_ci`',
$this->platform->getColumnCollationDeclarationSQL('ascii_general_ci'),
);
}
public function testGetCreateTableSQLWithColumnCollation(): void
{
$table = Table::editor()
->setUnquotedName('foo')
->setColumns(
Column::editor()
->setUnquotedName('no_collation')
->setTypeName(Types::STRING)
->setLength(255)
->create(),
Column::editor()
->setUnquotedName('column_collation')
->setTypeName(Types::STRING)
->setLength(255)
->setCollation('ascii_general_ci')
->create(),
)
->create();
self::assertSame(
[
'CREATE TABLE foo (no_collation VARCHAR(255) NOT NULL, '
. 'column_collation VARCHAR(255) NOT NULL COLLATE `ascii_general_ci`)',
],
$this->platform->getCreateTableSQL($table),
);
}
public function testQuoteIdentifier(): void
{
self::assertEquals('`test`.`test`', $this->platform->quoteIdentifier('test.test'));
}
protected function createComparator(): Comparator
{
return new MySQL\Comparator(
$this->platform,
self::createStub(CharsetMetadataProvider::class),
self::createStub(CollationMetadataProvider::class),
new DefaultTableOptions('utf8mb4', 'utf8mb4_general_ci'),
new ComparatorConfig(),
);
}
/** @return array<string, array{array<string>, string}> */
public static function getEnumDeclarationSQLProvider(): array
{
return [
'single value' => [['foo'], "ENUM('foo')"],
'multiple values' => [['foo', 'bar1'], "ENUM('foo', 'bar1')"],
];
}
}
|