| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.0.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Test\TestCase\Database\Schema;
- use Cake\Database\Driver\Mysql;
- use Cake\Database\Schema\Collection as SchemaCollection;
- use Cake\Database\Schema\MysqlSchema;
- use Cake\Database\Schema\TableSchema;
- use Cake\Datasource\ConnectionManager;
- use Cake\TestSuite\TestCase;
- use PDO;
- /**
- * Test case for Mysql Schema Dialect.
- */
- class MysqlSchemaTest extends TestCase
- {
- /**
- * Helper method for skipping tests that need a real connection.
- *
- * @return void
- */
- protected function _needsConnection()
- {
- $config = ConnectionManager::getConfig('test');
- $this->skipIf(strpos($config['driver'], 'Mysql') === false, 'Not using Mysql for test config');
- }
- /**
- * Data provider for convert column testing
- *
- * @return array
- */
- public static function convertColumnProvider()
- {
- return [
- [
- 'DATETIME',
- ['type' => 'datetime', 'length' => null],
- ],
- [
- 'DATE',
- ['type' => 'date', 'length' => null],
- ],
- [
- 'TIME',
- ['type' => 'time', 'length' => null],
- ],
- [
- 'TIMESTAMP',
- ['type' => 'timestamp', 'length' => null],
- ],
- [
- 'TINYINT(1)',
- ['type' => 'boolean', 'length' => null],
- ],
- [
- 'TINYINT(2)',
- ['type' => 'tinyinteger', 'length' => 2, 'unsigned' => false],
- ],
- [
- 'TINYINT(3)',
- ['type' => 'tinyinteger', 'length' => 3, 'unsigned' => false],
- ],
- [
- 'TINYINT(3) UNSIGNED',
- ['type' => 'tinyinteger', 'length' => 3, 'unsigned' => true],
- ],
- [
- 'SMALLINT(4)',
- ['type' => 'smallinteger', 'length' => 4, 'unsigned' => false],
- ],
- [
- 'SMALLINT(4) UNSIGNED',
- ['type' => 'smallinteger', 'length' => 4, 'unsigned' => true],
- ],
- [
- 'INTEGER(11)',
- ['type' => 'integer', 'length' => 11, 'unsigned' => false],
- ],
- [
- 'MEDIUMINT(11)',
- ['type' => 'integer', 'length' => 11, 'unsigned' => false],
- ],
- [
- 'INTEGER(11) UNSIGNED',
- ['type' => 'integer', 'length' => 11, 'unsigned' => true],
- ],
- [
- 'BIGINT',
- ['type' => 'biginteger', 'length' => null, 'unsigned' => false],
- ],
- [
- 'BIGINT UNSIGNED',
- ['type' => 'biginteger', 'length' => null, 'unsigned' => true],
- ],
- [
- 'VARCHAR(255)',
- ['type' => 'string', 'length' => 255, 'collate' => 'utf8_general_ci'],
- ],
- [
- 'CHAR(25)',
- ['type' => 'string', 'length' => 25, 'fixed' => true, 'collate' => 'utf8_general_ci'],
- ],
- [
- 'CHAR(36)',
- ['type' => 'uuid', 'length' => null],
- ],
- [
- 'BINARY(16)',
- ['type' => 'binaryuuid', 'length' => null],
- ],
- [
- 'BINARY(1)',
- ['type' => 'binary', 'length' => 1],
- ],
- [
- 'TEXT',
- ['type' => 'text', 'length' => null, 'collate' => 'utf8_general_ci'],
- ],
- [
- 'TINYTEXT',
- ['type' => 'text', 'length' => TableSchema::LENGTH_TINY, 'collate' => 'utf8_general_ci'],
- ],
- [
- 'MEDIUMTEXT',
- ['type' => 'text', 'length' => TableSchema::LENGTH_MEDIUM, 'collate' => 'utf8_general_ci'],
- ],
- [
- 'LONGTEXT',
- ['type' => 'text', 'length' => TableSchema::LENGTH_LONG, 'collate' => 'utf8_general_ci'],
- ],
- [
- 'TINYBLOB',
- ['type' => 'binary', 'length' => TableSchema::LENGTH_TINY],
- ],
- [
- 'BLOB',
- ['type' => 'binary', 'length' => null],
- ],
- [
- 'MEDIUMBLOB',
- ['type' => 'binary', 'length' => TableSchema::LENGTH_MEDIUM],
- ],
- [
- 'LONGBLOB',
- ['type' => 'binary', 'length' => TableSchema::LENGTH_LONG],
- ],
- [
- 'FLOAT',
- ['type' => 'float', 'length' => null, 'precision' => null, 'unsigned' => false],
- ],
- [
- 'DOUBLE',
- ['type' => 'float', 'length' => null, 'precision' => null, 'unsigned' => false],
- ],
- [
- 'DOUBLE UNSIGNED',
- ['type' => 'float', 'length' => null, 'precision' => null, 'unsigned' => true],
- ],
- [
- 'DECIMAL(11,2) UNSIGNED',
- ['type' => 'decimal', 'length' => 11, 'precision' => 2, 'unsigned' => true],
- ],
- [
- 'DECIMAL(11,2)',
- ['type' => 'decimal', 'length' => 11, 'precision' => 2, 'unsigned' => false],
- ],
- [
- 'FLOAT(11,2)',
- ['type' => 'float', 'length' => 11, 'precision' => 2, 'unsigned' => false],
- ],
- [
- 'FLOAT(11,2) UNSIGNED',
- ['type' => 'float', 'length' => 11, 'precision' => 2, 'unsigned' => true],
- ],
- [
- 'DOUBLE(10,4)',
- ['type' => 'float', 'length' => 10, 'precision' => 4, 'unsigned' => false],
- ],
- [
- 'DOUBLE(10,4) UNSIGNED',
- ['type' => 'float', 'length' => 10, 'precision' => 4, 'unsigned' => true],
- ],
- [
- 'JSON',
- ['type' => 'json', 'length' => null],
- ],
- ];
- }
- /**
- * Test parsing MySQL column types from field description.
- *
- * @dataProvider convertColumnProvider
- * @return void
- */
- public function testConvertColumn($type, $expected)
- {
- $field = [
- 'Field' => 'field',
- 'Type' => $type,
- 'Null' => 'YES',
- 'Default' => 'Default value',
- 'Collation' => 'utf8_general_ci',
- 'Comment' => 'Comment section',
- ];
- $expected += [
- 'null' => true,
- 'default' => 'Default value',
- 'comment' => 'Comment section',
- ];
- $driver = $this->getMockBuilder('Cake\Database\Driver\Mysql')->getMock();
- $dialect = new MysqlSchema($driver);
- $table = new TableSchema('table');
- $dialect->convertColumnDescription($table, $field);
- $actual = array_intersect_key($table->getColumn('field'), $expected);
- ksort($expected);
- ksort($actual);
- $this->assertSame($expected, $actual);
- }
- /**
- * Helper method for testing methods.
- *
- * @param \Cake\Datasource\ConnectionInterface $connection
- * @return void
- */
- protected function _createTables($connection)
- {
- $this->_needsConnection();
- $connection->execute('DROP TABLE IF EXISTS schema_articles');
- $connection->execute('DROP TABLE IF EXISTS schema_authors');
- $connection->execute('DROP TABLE IF EXISTS schema_json');
- $table = <<<SQL
- CREATE TABLE schema_authors (
- id INT(11) PRIMARY KEY AUTO_INCREMENT,
- name VARCHAR(50),
- bio TEXT,
- created DATETIME
- )ENGINE=InnoDB
- SQL;
- $connection->execute($table);
- $table = <<<SQL
- CREATE TABLE schema_articles (
- id BIGINT PRIMARY KEY AUTO_INCREMENT,
- title VARCHAR(20) COMMENT 'A title',
- body TEXT,
- author_id INT(11) NOT NULL,
- published BOOLEAN DEFAULT 0,
- allow_comments TINYINT(1) DEFAULT 0,
- created DATETIME,
- KEY `author_idx` (`author_id`),
- UNIQUE KEY `length_idx` (`title`(4)),
- FOREIGN KEY `author_idx` (`author_id`) REFERENCES `schema_authors`(`id`) ON UPDATE CASCADE ON DELETE RESTRICT
- ) ENGINE=InnoDB COLLATE=utf8_general_ci
- SQL;
- $connection->execute($table);
- if ($connection->getDriver()->supportsNativeJson()) {
- $table = <<<SQL
- CREATE TABLE schema_json (
- id INT(11) PRIMARY KEY AUTO_INCREMENT,
- data JSON NOT NULL
- )
- SQL;
- $connection->execute($table);
- }
- }
- /**
- * Integration test for SchemaCollection & MysqlDialect.
- *
- * @return void
- */
- public function testListTables()
- {
- $connection = ConnectionManager::get('test');
- $this->_createTables($connection);
- $schema = new SchemaCollection($connection);
- $result = $schema->listTables();
- $this->assertInternalType('array', $result);
- $this->assertContains('schema_articles', $result);
- $this->assertContains('schema_authors', $result);
- }
- /**
- * Test describing a table with Mysql
- *
- * @return void
- */
- public function testDescribeTable()
- {
- $connection = ConnectionManager::get('test');
- $this->_createTables($connection);
- $schema = new SchemaCollection($connection);
- $result = $schema->describe('schema_articles');
- $this->assertInstanceOf('Cake\Database\Schema\TableSchema', $result);
- $expected = [
- 'id' => [
- 'type' => 'biginteger',
- 'null' => false,
- 'unsigned' => false,
- 'default' => null,
- 'length' => 20,
- 'precision' => null,
- 'comment' => null,
- 'autoIncrement' => true,
- ],
- 'title' => [
- 'type' => 'string',
- 'null' => true,
- 'default' => null,
- 'length' => 20,
- 'precision' => null,
- 'comment' => 'A title',
- 'fixed' => null,
- 'collate' => 'utf8_general_ci',
- ],
- 'body' => [
- 'type' => 'text',
- 'null' => true,
- 'default' => null,
- 'length' => null,
- 'precision' => null,
- 'comment' => null,
- 'collate' => 'utf8_general_ci',
- ],
- 'author_id' => [
- 'type' => 'integer',
- 'null' => false,
- 'unsigned' => false,
- 'default' => null,
- 'length' => 11,
- 'precision' => null,
- 'comment' => null,
- 'autoIncrement' => null,
- ],
- 'published' => [
- 'type' => 'boolean',
- 'null' => true,
- 'default' => 0,
- 'length' => null,
- 'precision' => null,
- 'comment' => null,
- ],
- 'allow_comments' => [
- 'type' => 'boolean',
- 'null' => true,
- 'default' => 0,
- 'length' => null,
- 'precision' => null,
- 'comment' => null,
- ],
- 'created' => [
- 'type' => 'datetime',
- 'null' => true,
- 'default' => null,
- 'length' => null,
- 'precision' => null,
- 'comment' => null,
- ],
- ];
- $this->assertEquals(['id'], $result->primaryKey());
- foreach ($expected as $field => $definition) {
- $this->assertEquals(
- $definition,
- $result->getColumn($field),
- 'Field definition does not match for ' . $field
- );
- }
- }
- /**
- * Test describing a table with indexes in Mysql
- *
- * @return void
- */
- public function testDescribeTableIndexes()
- {
- $connection = ConnectionManager::get('test');
- $this->_createTables($connection);
- $schema = new SchemaCollection($connection);
- $result = $schema->describe('schema_articles');
- $this->assertInstanceOf('Cake\Database\Schema\TableSchema', $result);
- $this->assertCount(3, $result->constraints());
- $expected = [
- 'primary' => [
- 'type' => 'primary',
- 'columns' => ['id'],
- 'length' => [],
- ],
- 'length_idx' => [
- 'type' => 'unique',
- 'columns' => ['title'],
- 'length' => [
- 'title' => 4,
- ],
- ],
- 'schema_articles_ibfk_1' => [
- 'type' => 'foreign',
- 'columns' => ['author_id'],
- 'references' => ['schema_authors', 'id'],
- 'length' => [],
- 'update' => 'cascade',
- 'delete' => 'restrict',
- ],
- ];
- $this->assertEquals($expected['primary'], $result->getConstraint('primary'));
- $this->assertEquals($expected['length_idx'], $result->getConstraint('length_idx'));
- $this->assertEquals($expected['schema_articles_ibfk_1'], $result->getConstraint('schema_articles_ibfk_1'));
- $this->assertCount(1, $result->indexes());
- $expected = [
- 'type' => 'index',
- 'columns' => ['author_id'],
- 'length' => [],
- ];
- $this->assertEquals($expected, $result->getIndex('author_idx'));
- }
- /**
- * Test describing a table creates options
- *
- * @return void
- */
- public function testDescribeTableOptions()
- {
- $connection = ConnectionManager::get('test');
- $this->_createTables($connection);
- $schema = new SchemaCollection($connection);
- $result = $schema->describe('schema_articles');
- $this->assertArrayHasKey('engine', $result->getOptions());
- $this->assertArrayHasKey('collation', $result->getOptions());
- }
- public function testDescribeNonPrimaryAutoIncrement()
- {
- $this->_needsConnection();
- $connection = ConnectionManager::get('test');
- $sql = <<<SQL
- CREATE TABLE `odd_primary_key` (
- `id` BIGINT UNSIGNED NOT NULL,
- `other_field` INTEGER(11) NOT NULL AUTO_INCREMENT,
- PRIMARY KEY (`id`),
- UNIQUE KEY `other_field` (`other_field`)
- )
- SQL;
- $connection->execute($sql);
- $schema = new SchemaCollection($connection);
- $table = $schema->describe('odd_primary_key');
- $connection->execute('DROP TABLE odd_primary_key');
- $column = $table->getColumn('id');
- $this->assertNull($column['autoIncrement'], 'should not autoincrement');
- $this->assertTrue($column['unsigned'], 'should be unsigned');
- $column = $table->getColumn('other_field');
- $this->assertTrue($column['autoIncrement'], 'should not autoincrement');
- $this->assertFalse($column['unsigned'], 'should not be unsigned');
- $output = $table->createSql($connection);
- $this->assertContains('`id` BIGINT UNSIGNED NOT NULL,', $output[0]);
- $this->assertContains('`other_field` INTEGER(11) NOT NULL AUTO_INCREMENT,', $output[0]);
- }
- /**
- * Column provider for creating column sql
- *
- * @return array
- */
- public static function columnSqlProvider()
- {
- return [
- // strings
- [
- 'title',
- ['type' => 'string', 'length' => 25, 'null' => true, 'default' => null],
- '`title` VARCHAR(25)',
- ],
- [
- 'title',
- ['type' => 'string', 'length' => 25, 'null' => false],
- '`title` VARCHAR(25) NOT NULL',
- ],
- [
- 'title',
- ['type' => 'string', 'length' => 25, 'null' => true, 'default' => 'ignored'],
- '`title` VARCHAR(25) DEFAULT \'ignored\'',
- ],
- [
- 'title',
- ['type' => 'string', 'length' => 25, 'null' => true, 'default' => ''],
- '`title` VARCHAR(25) DEFAULT \'\'',
- ],
- [
- 'role',
- ['type' => 'string', 'length' => 10, 'null' => false, 'default' => 'admin'],
- '`role` VARCHAR(10) NOT NULL DEFAULT \'admin\'',
- ],
- [
- 'id',
- ['type' => 'string', 'length' => 32, 'fixed' => true, 'null' => false],
- '`id` CHAR(32) NOT NULL',
- ],
- [
- 'title',
- ['type' => 'string'],
- '`title` VARCHAR(255)',
- ],
- [
- 'id',
- ['type' => 'uuid'],
- '`id` CHAR(36)',
- ],
- [
- 'id',
- ['type' => 'binaryuuid'],
- '`id` BINARY(16)',
- ],
- [
- 'title',
- ['type' => 'string', 'length' => 255, 'null' => false, 'collate' => 'utf8_unicode_ci'],
- '`title` VARCHAR(255) COLLATE utf8_unicode_ci NOT NULL',
- ],
- // Text
- [
- 'body',
- ['type' => 'text', 'null' => false],
- '`body` TEXT NOT NULL',
- ],
- [
- 'body',
- ['type' => 'text', 'length' => TableSchema::LENGTH_TINY, 'null' => false],
- '`body` TINYTEXT NOT NULL',
- ],
- [
- 'body',
- ['type' => 'text', 'length' => TableSchema::LENGTH_MEDIUM, 'null' => false],
- '`body` MEDIUMTEXT NOT NULL',
- ],
- [
- 'body',
- ['type' => 'text', 'length' => TableSchema::LENGTH_LONG, 'null' => false],
- '`body` LONGTEXT NOT NULL',
- ],
- [
- 'body',
- ['type' => 'text', 'null' => false, 'collate' => 'utf8_unicode_ci'],
- '`body` TEXT COLLATE utf8_unicode_ci NOT NULL',
- ],
- // Blob / binary
- [
- 'body',
- ['type' => 'binary', 'null' => false],
- '`body` BLOB NOT NULL',
- ],
- [
- 'body',
- ['type' => 'binary', 'length' => TableSchema::LENGTH_TINY, 'null' => false],
- '`body` TINYBLOB NOT NULL',
- ],
- [
- 'body',
- ['type' => 'binary', 'length' => TableSchema::LENGTH_MEDIUM, 'null' => false],
- '`body` MEDIUMBLOB NOT NULL',
- ],
- [
- 'body',
- ['type' => 'binary', 'length' => TableSchema::LENGTH_LONG, 'null' => false],
- '`body` LONGBLOB NOT NULL',
- ],
- [
- 'bytes',
- ['type' => 'binary', 'length' => 5],
- '`bytes` VARBINARY(5)',
- ],
- [
- 'bit',
- ['type' => 'binary', 'length' => 1],
- '`bit` BINARY(1)',
- ],
- // Integers
- [
- 'post_id',
- ['type' => 'tinyinteger', 'length' => 2],
- '`post_id` TINYINT(2)',
- ],
- [
- 'post_id',
- ['type' => 'tinyinteger', 'length' => 2, 'unsigned' => true],
- '`post_id` TINYINT(2) UNSIGNED',
- ],
- [
- 'post_id',
- ['type' => 'smallinteger', 'length' => 4],
- '`post_id` SMALLINT(4)',
- ],
- [
- 'post_id',
- ['type' => 'smallinteger', 'length' => 4, 'unsigned' => true],
- '`post_id` SMALLINT(4) UNSIGNED',
- ],
- [
- 'post_id',
- ['type' => 'integer', 'length' => 11],
- '`post_id` INTEGER(11)',
- ],
- [
- 'post_id',
- ['type' => 'integer', 'length' => 11, 'unsigned' => true],
- '`post_id` INTEGER(11) UNSIGNED',
- ],
- [
- 'post_id',
- ['type' => 'biginteger', 'length' => 20],
- '`post_id` BIGINT',
- ],
- [
- 'post_id',
- ['type' => 'biginteger', 'length' => 20, 'unsigned' => true],
- '`post_id` BIGINT UNSIGNED',
- ],
- [
- 'post_id',
- ['type' => 'integer', 'length' => 20, 'autoIncrement' => true],
- '`post_id` INTEGER(20) AUTO_INCREMENT',
- ],
- [
- 'post_id',
- ['type' => 'integer', 'length' => 20, 'null' => false, 'autoIncrement' => false],
- '`post_id` INTEGER(20) NOT NULL',
- ],
- [
- 'post_id',
- ['type' => 'biginteger', 'length' => 20, 'autoIncrement' => true],
- '`post_id` BIGINT AUTO_INCREMENT',
- ],
- // Decimal
- [
- 'value',
- ['type' => 'decimal'],
- '`value` DECIMAL',
- ],
- [
- 'value',
- ['type' => 'decimal', 'length' => 11, 'unsigned' => true],
- '`value` DECIMAL(11) UNSIGNED',
- ],
- [
- 'value',
- ['type' => 'decimal', 'length' => 12, 'precision' => 5],
- '`value` DECIMAL(12,5)',
- ],
- // Float
- [
- 'value',
- ['type' => 'float', 'unsigned'],
- '`value` FLOAT',
- ],
- [
- 'value',
- ['type' => 'float', 'unsigned' => true],
- '`value` FLOAT UNSIGNED',
- ],
- [
- 'latitude',
- ['type' => 'float', 'length' => 53, 'null' => true, 'default' => null, 'unsigned' => true],
- '`latitude` FLOAT(53) UNSIGNED',
- ],
- [
- 'value',
- ['type' => 'float', 'length' => 11, 'precision' => 3],
- '`value` FLOAT(11,3)',
- ],
- // Boolean
- [
- 'checked',
- ['type' => 'boolean', 'default' => false],
- '`checked` BOOLEAN DEFAULT FALSE',
- ],
- [
- 'checked',
- ['type' => 'boolean', 'default' => false, 'null' => false],
- '`checked` BOOLEAN NOT NULL DEFAULT FALSE',
- ],
- [
- 'checked',
- ['type' => 'boolean', 'default' => true, 'null' => false],
- '`checked` BOOLEAN NOT NULL DEFAULT TRUE',
- ],
- [
- 'checked',
- ['type' => 'boolean', 'default' => false, 'null' => true],
- '`checked` BOOLEAN DEFAULT FALSE',
- ],
- // datetimes
- [
- 'created',
- ['type' => 'datetime', 'comment' => 'Created timestamp'],
- '`created` DATETIME COMMENT \'Created timestamp\'',
- ],
- [
- 'created',
- ['type' => 'datetime', 'null' => false, 'default' => 'current_timestamp'],
- '`created` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP',
- ],
- [
- 'open_date',
- ['type' => 'datetime', 'null' => false, 'default' => '2016-12-07 23:04:00'],
- '`open_date` DATETIME NOT NULL DEFAULT \'2016-12-07 23:04:00\'',
- ],
- // Date & Time
- [
- 'start_date',
- ['type' => 'date'],
- '`start_date` DATE',
- ],
- [
- 'start_time',
- ['type' => 'time'],
- '`start_time` TIME',
- ],
- // timestamps
- [
- 'created',
- ['type' => 'timestamp', 'null' => true],
- '`created` TIMESTAMP NULL',
- ],
- [
- 'created',
- ['type' => 'timestamp', 'null' => false, 'default' => 'current_timestamp'],
- '`created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP',
- ],
- [
- 'created',
- ['type' => 'timestamp', 'null' => false, 'default' => 'current_timestamp()'],
- '`created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP',
- ],
- [
- 'open_date',
- ['type' => 'timestamp', 'null' => false, 'default' => '2016-12-07 23:04:00'],
- '`open_date` TIMESTAMP NOT NULL DEFAULT \'2016-12-07 23:04:00\'',
- ],
- ];
- }
- /**
- * Test generating column definitions
- *
- * @dataProvider columnSqlProvider
- * @return void
- */
- public function testColumnSql($name, $data, $expected)
- {
- $driver = $this->_getMockedDriver();
- $schema = new MysqlSchema($driver);
- $table = (new TableSchema('articles'))->addColumn($name, $data);
- $this->assertEquals($expected, $schema->columnSql($table, $name));
- }
- /**
- * Provide data for testing constraintSql
- *
- * @return array
- */
- public static function constraintSqlProvider()
- {
- return [
- [
- 'primary',
- ['type' => 'primary', 'columns' => ['title']],
- 'PRIMARY KEY (`title`)',
- ],
- [
- 'unique_idx',
- ['type' => 'unique', 'columns' => ['title', 'author_id']],
- 'UNIQUE KEY `unique_idx` (`title`, `author_id`)',
- ],
- [
- 'length_idx',
- [
- 'type' => 'unique',
- 'columns' => ['author_id', 'title'],
- 'length' => ['author_id' => 5, 'title' => 4],
- ],
- 'UNIQUE KEY `length_idx` (`author_id`(5), `title`(4))',
- ],
- [
- 'author_id_idx',
- ['type' => 'foreign', 'columns' => ['author_id'], 'references' => ['authors', 'id']],
- 'CONSTRAINT `author_id_idx` FOREIGN KEY (`author_id`) ' .
- 'REFERENCES `authors` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT',
- ],
- [
- 'author_id_idx',
- ['type' => 'foreign', 'columns' => ['author_id'], 'references' => ['authors', 'id'], 'update' => 'cascade'],
- 'CONSTRAINT `author_id_idx` FOREIGN KEY (`author_id`) ' .
- 'REFERENCES `authors` (`id`) ON UPDATE CASCADE ON DELETE RESTRICT',
- ],
- [
- 'author_id_idx',
- ['type' => 'foreign', 'columns' => ['author_id'], 'references' => ['authors', 'id'], 'update' => 'restrict'],
- 'CONSTRAINT `author_id_idx` FOREIGN KEY (`author_id`) ' .
- 'REFERENCES `authors` (`id`) ON UPDATE RESTRICT ON DELETE RESTRICT',
- ],
- [
- 'author_id_idx',
- ['type' => 'foreign', 'columns' => ['author_id'], 'references' => ['authors', 'id'], 'update' => 'setNull'],
- 'CONSTRAINT `author_id_idx` FOREIGN KEY (`author_id`) ' .
- 'REFERENCES `authors` (`id`) ON UPDATE SET NULL ON DELETE RESTRICT',
- ],
- [
- 'author_id_idx',
- ['type' => 'foreign', 'columns' => ['author_id'], 'references' => ['authors', 'id'], 'update' => 'noAction'],
- 'CONSTRAINT `author_id_idx` FOREIGN KEY (`author_id`) ' .
- 'REFERENCES `authors` (`id`) ON UPDATE NO ACTION ON DELETE RESTRICT',
- ],
- ];
- }
- /**
- * Test the constraintSql method.
- *
- * @dataProvider constraintSqlProvider
- */
- public function testConstraintSql($name, $data, $expected)
- {
- $driver = $this->_getMockedDriver();
- $schema = new MysqlSchema($driver);
- $table = (new TableSchema('articles'))->addColumn('title', [
- 'type' => 'string',
- 'length' => 255,
- ])->addColumn('author_id', [
- 'type' => 'integer',
- ])->addConstraint($name, $data);
- $this->assertEquals($expected, $schema->constraintSql($table, $name));
- }
- /**
- * Test provider for indexSql()
- *
- * @return array
- */
- public static function indexSqlProvider()
- {
- return [
- [
- 'key_key',
- ['type' => 'index', 'columns' => ['author_id']],
- 'KEY `key_key` (`author_id`)',
- ],
- [
- 'full_text',
- ['type' => 'fulltext', 'columns' => ['title']],
- 'FULLTEXT KEY `full_text` (`title`)',
- ],
- ];
- }
- /**
- * Test the indexSql method.
- *
- * @dataProvider indexSqlProvider
- */
- public function testIndexSql($name, $data, $expected)
- {
- $driver = $this->_getMockedDriver();
- $schema = new MysqlSchema($driver);
- $table = (new TableSchema('articles'))->addColumn('title', [
- 'type' => 'string',
- 'length' => 255,
- ])->addColumn('author_id', [
- 'type' => 'integer',
- ])->addIndex($name, $data);
- $this->assertEquals($expected, $schema->indexSql($table, $name));
- }
- /**
- * Test the addConstraintSql method.
- *
- * @return void
- */
- public function testAddConstraintSql()
- {
- $driver = $this->_getMockedDriver();
- $connection = $this->getMockBuilder('Cake\Database\Connection')
- ->disableOriginalConstructor()
- ->getMock();
- $connection->expects($this->any())->method('getDriver')
- ->will($this->returnValue($driver));
- $table = (new TableSchema('posts'))
- ->addColumn('author_id', [
- 'type' => 'integer',
- 'null' => false,
- ])
- ->addColumn('category_id', [
- 'type' => 'integer',
- 'null' => false,
- ])
- ->addColumn('category_name', [
- 'type' => 'integer',
- 'null' => false,
- ])
- ->addConstraint('author_fk', [
- 'type' => 'foreign',
- 'columns' => ['author_id'],
- 'references' => ['authors', 'id'],
- 'update' => 'cascade',
- 'delete' => 'cascade',
- ])
- ->addConstraint('category_fk', [
- 'type' => 'foreign',
- 'columns' => ['category_id', 'category_name'],
- 'references' => ['categories', ['id', 'name']],
- 'update' => 'cascade',
- 'delete' => 'cascade',
- ]);
- $expected = [
- 'ALTER TABLE `posts` ADD CONSTRAINT `author_fk` FOREIGN KEY (`author_id`) REFERENCES `authors` (`id`) ON UPDATE CASCADE ON DELETE CASCADE;',
- 'ALTER TABLE `posts` ADD CONSTRAINT `category_fk` FOREIGN KEY (`category_id`, `category_name`) REFERENCES `categories` (`id`, `name`) ON UPDATE CASCADE ON DELETE CASCADE;',
- ];
- $result = $table->addConstraintSql($connection);
- $this->assertCount(2, $result);
- $this->assertEquals($expected, $result);
- }
- /**
- * Test the dropConstraintSql method.
- *
- * @return void
- */
- public function testDropConstraintSql()
- {
- $driver = $this->_getMockedDriver();
- $connection = $this->getMockBuilder('Cake\Database\Connection')
- ->disableOriginalConstructor()
- ->getMock();
- $connection->expects($this->any())->method('getDriver')
- ->will($this->returnValue($driver));
- $table = (new TableSchema('posts'))
- ->addColumn('author_id', [
- 'type' => 'integer',
- 'null' => false,
- ])
- ->addColumn('category_id', [
- 'type' => 'integer',
- 'null' => false,
- ])
- ->addColumn('category_name', [
- 'type' => 'integer',
- 'null' => false,
- ])
- ->addConstraint('author_fk', [
- 'type' => 'foreign',
- 'columns' => ['author_id'],
- 'references' => ['authors', 'id'],
- 'update' => 'cascade',
- 'delete' => 'cascade',
- ])
- ->addConstraint('category_fk', [
- 'type' => 'foreign',
- 'columns' => ['category_id', 'category_name'],
- 'references' => ['categories', ['id', 'name']],
- 'update' => 'cascade',
- 'delete' => 'cascade',
- ]);
- $expected = [
- 'ALTER TABLE `posts` DROP FOREIGN KEY `author_fk`;',
- 'ALTER TABLE `posts` DROP FOREIGN KEY `category_fk`;',
- ];
- $result = $table->dropConstraintSql($connection);
- $this->assertCount(2, $result);
- $this->assertEquals($expected, $result);
- }
- /**
- * Test generating a column that is a primary key.
- *
- * @return void
- */
- public function testColumnSqlPrimaryKey()
- {
- $driver = $this->_getMockedDriver();
- $schema = new MysqlSchema($driver);
- $table = new TableSchema('articles');
- $table->addColumn('id', [
- 'type' => 'integer',
- 'null' => false,
- ])
- ->addConstraint('primary', [
- 'type' => 'primary',
- 'columns' => ['id'],
- ]);
- $result = $schema->columnSql($table, 'id');
- $this->assertEquals($result, '`id` INTEGER NOT NULL AUTO_INCREMENT');
- $table = new TableSchema('articles');
- $table->addColumn('id', [
- 'type' => 'biginteger',
- 'null' => false,
- ])
- ->addConstraint('primary', [
- 'type' => 'primary',
- 'columns' => ['id'],
- ]);
- $result = $schema->columnSql($table, 'id');
- $this->assertEquals($result, '`id` BIGINT NOT NULL AUTO_INCREMENT');
- }
- /**
- * Integration test for converting a Schema\Table into MySQL table creates.
- *
- * @return void
- */
- public function testCreateSql()
- {
- $driver = $this->_getMockedDriver();
- $connection = $this->getMockBuilder('Cake\Database\Connection')
- ->disableOriginalConstructor()
- ->getMock();
- $connection->expects($this->any())->method('getDriver')
- ->will($this->returnValue($driver));
- $driver->getConnection()
- ->expects($this->any())
- ->method('getAttribute')
- ->will($this->returnValue('5.6.0'));
- $table = (new TableSchema('posts'))->addColumn('id', [
- 'type' => 'integer',
- 'null' => false,
- ])
- ->addColumn('title', [
- 'type' => 'string',
- 'null' => false,
- 'comment' => 'The title',
- ])
- ->addColumn('body', [
- 'type' => 'text',
- 'comment' => '',
- ])
- ->addColumn('data', [
- 'type' => 'json',
- ])
- ->addColumn('hash', [
- 'type' => 'string',
- 'fixed' => true,
- 'length' => 40,
- 'collate' => 'latin1_bin',
- 'null' => false,
- ])
- ->addColumn('created', 'datetime')
- ->addConstraint('primary', [
- 'type' => 'primary',
- 'columns' => ['id'],
- ])
- ->setOptions([
- 'engine' => 'InnoDB',
- 'charset' => 'utf8',
- 'collate' => 'utf8_general_ci',
- ]);
- $expected = <<<SQL
- CREATE TABLE `posts` (
- `id` INTEGER NOT NULL AUTO_INCREMENT,
- `title` VARCHAR(255) NOT NULL COMMENT 'The title',
- `body` TEXT,
- `data` LONGTEXT,
- `hash` CHAR(40) COLLATE latin1_bin NOT NULL,
- `created` DATETIME,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci
- SQL;
- $result = $table->createSql($connection);
- $this->assertCount(1, $result);
- $this->assertTextEquals($expected, $result[0]);
- }
- /**
- * Integration test for converting a Schema\Table with native JSON
- *
- * @return void
- */
- public function testCreateSqlJson()
- {
- $driver = $this->_getMockedDriver();
- $connection = $this->getMockBuilder('Cake\Database\Connection')
- ->disableOriginalConstructor()
- ->getMock();
- $connection->expects($this->any())
- ->method('getDriver')
- ->will($this->returnValue($driver));
- $driver->getConnection()
- ->expects($this->any())
- ->method('getAttribute')
- ->will($this->returnValue('5.7.0'));
- $table = (new TableSchema('posts'))->addColumn('id', [
- 'type' => 'integer',
- 'null' => false,
- ])
- ->addColumn('data', [
- 'type' => 'json',
- ])
- ->addConstraint('primary', [
- 'type' => 'primary',
- 'columns' => ['id'],
- ])
- ->setOptions([
- 'engine' => 'InnoDB',
- 'charset' => 'utf8',
- 'collate' => 'utf8_general_ci',
- ]);
- $expected = <<<SQL
- CREATE TABLE `posts` (
- `id` INTEGER NOT NULL AUTO_INCREMENT,
- `data` JSON,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci
- SQL;
- $result = $table->createSql($connection);
- $this->assertCount(1, $result);
- $this->assertTextEquals($expected, $result[0]);
- }
- /**
- * Tests creating temporary tables
- *
- * @return void
- */
- public function testCreateTemporary()
- {
- $driver = $this->_getMockedDriver();
- $connection = $this->getMockBuilder('Cake\Database\Connection')
- ->disableOriginalConstructor()
- ->getMock();
- $connection->expects($this->any())->method('getDriver')
- ->will($this->returnValue($driver));
- $table = (new TableSchema('schema_articles'))->addColumn('id', [
- 'type' => 'integer',
- 'null' => false,
- ]);
- $table->setTemporary(true);
- $sql = $table->createSql($connection);
- $this->assertContains('CREATE TEMPORARY TABLE', $sql[0]);
- }
- /**
- * Test primary key generation & auto-increment.
- *
- * @return void
- */
- public function testCreateSqlCompositeIntegerKey()
- {
- $driver = $this->_getMockedDriver();
- $connection = $this->getMockBuilder('Cake\Database\Connection')
- ->disableOriginalConstructor()
- ->getMock();
- $connection->expects($this->any())->method('getDriver')
- ->will($this->returnValue($driver));
- $table = (new TableSchema('articles_tags'))
- ->addColumn('article_id', [
- 'type' => 'integer',
- 'null' => false,
- ])
- ->addColumn('tag_id', [
- 'type' => 'integer',
- 'null' => false,
- ])
- ->addConstraint('primary', [
- 'type' => 'primary',
- 'columns' => ['article_id', 'tag_id'],
- ]);
- $expected = <<<SQL
- CREATE TABLE `articles_tags` (
- `article_id` INTEGER NOT NULL,
- `tag_id` INTEGER NOT NULL,
- PRIMARY KEY (`article_id`, `tag_id`)
- )
- SQL;
- $result = $table->createSql($connection);
- $this->assertCount(1, $result);
- $this->assertTextEquals($expected, $result[0]);
- $table = (new TableSchema('composite_key'))
- ->addColumn('id', [
- 'type' => 'integer',
- 'null' => false,
- 'autoIncrement' => true,
- ])
- ->addColumn('account_id', [
- 'type' => 'integer',
- 'null' => false,
- ])
- ->addConstraint('primary', [
- 'type' => 'primary',
- 'columns' => ['id', 'account_id'],
- ]);
- $expected = <<<SQL
- CREATE TABLE `composite_key` (
- `id` INTEGER NOT NULL AUTO_INCREMENT,
- `account_id` INTEGER NOT NULL,
- PRIMARY KEY (`id`, `account_id`)
- )
- SQL;
- $result = $table->createSql($connection);
- $this->assertCount(1, $result);
- $this->assertTextEquals($expected, $result[0]);
- }
- /**
- * test dropSql
- *
- * @return void
- */
- public function testDropSql()
- {
- $driver = $this->_getMockedDriver();
- $connection = $this->getMockBuilder('Cake\Database\Connection')
- ->disableOriginalConstructor()
- ->getMock();
- $connection->expects($this->any())->method('getDriver')
- ->will($this->returnValue($driver));
- $table = new TableSchema('articles');
- $result = $table->dropSql($connection);
- $this->assertCount(1, $result);
- $this->assertEquals('DROP TABLE `articles`', $result[0]);
- }
- /**
- * Test truncateSql()
- *
- * @return void
- */
- public function testTruncateSql()
- {
- $driver = $this->_getMockedDriver();
- $connection = $this->getMockBuilder('Cake\Database\Connection')
- ->disableOriginalConstructor()
- ->getMock();
- $connection->expects($this->any())->method('getDriver')
- ->will($this->returnValue($driver));
- $table = new TableSchema('articles');
- $result = $table->truncateSql($connection);
- $this->assertCount(1, $result);
- $this->assertEquals('TRUNCATE TABLE `articles`', $result[0]);
- }
- /**
- * Test that constructing a schema dialect connects the driver.
- *
- * @return void
- */
- public function testConstructConnectsDriver()
- {
- $driver = $this->getMockBuilder('Cake\Database\Driver')->getMock();
- $driver->expects($this->once())
- ->method('connect');
- $schema = new MysqlSchema($driver);
- }
- /**
- * Tests json column parsing on Mysql 5.7+
- *
- * @return void
- */
- public function testDescribeJson()
- {
- $connection = ConnectionManager::get('test');
- $this->_createTables($connection);
- $this->skipIf(!$connection->getDriver()->supportsNativeJson(), 'Does not support native json');
- $schema = new SchemaCollection($connection);
- $result = $schema->describe('schema_json');
- $this->assertInstanceOf('Cake\Database\Schema\TableSchema', $result);
- $expected = [
- 'type' => 'json',
- 'null' => false,
- 'default' => null,
- 'length' => null,
- 'precision' => null,
- 'comment' => null,
- ];
- $this->assertEquals(
- $expected,
- $result->getColumn('data'),
- 'Field definition does not match for data'
- );
- }
- /**
- * Get a schema instance with a mocked driver/pdo instances
- *
- * @return MysqlSchema
- */
- protected function _getMockedDriver()
- {
- $driver = new Mysql();
- $mock = $this->getMockBuilder(PDO::class)
- ->setMethods(['quote', 'quoteIdentifier', 'getAttribute'])
- ->disableOriginalConstructor()
- ->getMock();
- $mock->expects($this->any())
- ->method('quote')
- ->will($this->returnCallback(function ($value) {
- return "'$value'";
- }));
- $driver->setConnection($mock);
- return $driver;
- }
- }
|