| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066 |
- <?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\Sqlserver;
- use Cake\Database\Schema\Collection as SchemaCollection;
- use Cake\Database\Schema\SqlserverSchema;
- use Cake\Database\Schema\TableSchema;
- use Cake\Datasource\ConnectionManager;
- use Cake\TestSuite\TestCase;
- use PDO;
- /**
- * SQL Server schema test case.
- */
- class SqlserverSchemaTest 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'], 'Sqlserver') === false, 'Not using Sqlserver for test config');
- }
- /**
- * Helper method for testing methods.
- *
- * @return void
- */
- protected function _createTables($connection)
- {
- $this->_needsConnection();
- $connection->execute("IF OBJECT_ID('schema_articles', 'U') IS NOT NULL DROP TABLE schema_articles");
- $connection->execute("IF OBJECT_ID('schema_authors', 'U') IS NOT NULL DROP TABLE schema_authors");
- $table = <<<SQL
- CREATE TABLE schema_authors (
- id int IDENTITY(1,1) PRIMARY KEY,
- name VARCHAR(50),
- bio DATE,
- created DATETIME
- )
- SQL;
- $connection->execute($table);
- $table = <<<SQL
- CREATE TABLE schema_articles (
- id BIGINT PRIMARY KEY,
- title NVARCHAR(20) COLLATE Japanese_Unicode_CI_AI DEFAULT N'無題' COLLATE Japanese_Unicode_CI_AI,
- body NVARCHAR(1000) DEFAULT N'本文なし',
- author_id INTEGER NOT NULL,
- published BIT DEFAULT 0,
- views SMALLINT DEFAULT 0,
- created DATETIME,
- field1 VARCHAR(10) DEFAULT NULL,
- field2 VARCHAR(10) DEFAULT 'NULL',
- field3 VARCHAR(10) DEFAULT 'O''hare',
- CONSTRAINT [content_idx] UNIQUE ([title], [body]),
- CONSTRAINT [author_idx] FOREIGN KEY ([author_id]) REFERENCES [schema_authors] ([id]) ON DELETE CASCADE ON UPDATE CASCADE
- )
- SQL;
- $connection->execute($table);
- $connection->execute('CREATE INDEX [author_idx] ON [schema_articles] ([author_id])');
- }
- /**
- * Data provider for convert column testing
- *
- * @return array
- */
- public static function convertColumnProvider()
- {
- return [
- [
- 'DATETIME',
- null,
- null,
- null,
- ['type' => 'timestamp', 'length' => null],
- ],
- [
- 'DATE',
- null,
- null,
- null,
- ['type' => 'date', 'length' => null],
- ],
- [
- 'TIME',
- null,
- null,
- null,
- ['type' => 'time', 'length' => null],
- ],
- [
- 'TINYINT',
- null,
- 2,
- null,
- ['type' => 'tinyinteger', 'length' => 2],
- ],
- [
- 'TINYINT',
- null,
- null,
- null,
- ['type' => 'tinyinteger', 'length' => 3],
- ],
- [
- 'SMALLINT',
- null,
- 3,
- null,
- ['type' => 'smallinteger', 'length' => 3],
- ],
- [
- 'SMALLINT',
- null,
- null,
- null,
- ['type' => 'smallinteger', 'length' => 5],
- ],
- [
- 'INTEGER',
- null,
- null,
- null,
- ['type' => 'integer', 'length' => 10],
- ],
- [
- 'INTEGER',
- null,
- 8,
- null,
- ['type' => 'integer', 'length' => 8],
- ],
- [
- 'BIGINT',
- null,
- null,
- null,
- ['type' => 'biginteger', 'length' => 20],
- ],
- [
- 'NUMERIC',
- null,
- 15,
- 5,
- ['type' => 'decimal', 'length' => 15, 'precision' => 5],
- ],
- [
- 'DECIMAL',
- null,
- 11,
- 3,
- ['type' => 'decimal', 'length' => 11, 'precision' => 3],
- ],
- [
- 'MONEY',
- null,
- null,
- null,
- ['type' => 'decimal', 'length' => null, 'precision' => null],
- ],
- [
- 'VARCHAR',
- null,
- null,
- null,
- ['type' => 'string', 'length' => 255, 'collate' => 'Japanese_Unicode_CI_AI'],
- ],
- [
- 'VARCHAR',
- 10,
- null,
- null,
- ['type' => 'string', 'length' => 10, 'collate' => 'Japanese_Unicode_CI_AI'],
- ],
- [
- 'NVARCHAR',
- 50,
- null,
- null,
- // Sqlserver returns double lengths for unicode columns
- ['type' => 'string', 'length' => 25, 'collate' => 'Japanese_Unicode_CI_AI'],
- ],
- [
- 'CHAR',
- 10,
- null,
- null,
- ['type' => 'string', 'fixed' => true, 'length' => 10, 'collate' => 'Japanese_Unicode_CI_AI'],
- ],
- [
- 'NCHAR',
- 10,
- null,
- null,
- // SQLServer returns double length for unicode columns.
- ['type' => 'string', 'fixed' => true, 'length' => 5, 'collate' => 'Japanese_Unicode_CI_AI'],
- ],
- [
- 'UNIQUEIDENTIFIER',
- null,
- null,
- null,
- ['type' => 'uuid'],
- ],
- [
- 'TEXT',
- null,
- null,
- null,
- ['type' => 'text', 'length' => null, 'collate' => 'Japanese_Unicode_CI_AI'],
- ],
- [
- 'REAL',
- null,
- null,
- null,
- ['type' => 'float', 'length' => null],
- ],
- [
- 'VARCHAR',
- -1,
- null,
- null,
- ['type' => 'text', 'length' => null, 'collate' => 'Japanese_Unicode_CI_AI'],
- ],
- [
- 'IMAGE',
- 10,
- null,
- null,
- ['type' => 'binary', 'length' => 10],
- ],
- [
- 'BINARY',
- 20,
- null,
- null,
- ['type' => 'binary', 'length' => 20],
- ],
- [
- 'VARBINARY',
- 30,
- null,
- null,
- ['type' => 'binary', 'length' => 30],
- ],
- [
- 'VARBINARY',
- -1,
- null,
- null,
- ['type' => 'binary', 'length' => TableSchema::LENGTH_LONG],
- ],
- ];
- }
- /**
- * Test parsing Sqlserver column types from field description.
- *
- * @dataProvider convertColumnProvider
- * @return void
- */
- public function testConvertColumn($type, $length, $precision, $scale, $expected)
- {
- $field = [
- 'name' => 'field',
- 'type' => $type,
- 'null' => '1',
- 'default' => 'Default value',
- 'char_length' => $length,
- 'precision' => $precision,
- 'scale' => $scale,
- 'collation_name' => 'Japanese_Unicode_CI_AI',
- ];
- $expected += [
- 'null' => true,
- 'default' => 'Default value',
- ];
- $driver = $this->getMockBuilder('Cake\Database\Driver\Sqlserver')->getMock();
- $dialect = new SqlserverSchema($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);
- }
- /**
- * Test listing tables with Sqlserver
- *
- * @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 Sqlserver
- *
- * @return void
- */
- public function testDescribeTable()
- {
- $connection = ConnectionManager::get('test');
- $this->_createTables($connection);
- $schema = new SchemaCollection($connection);
- $result = $schema->describe('schema_articles');
- $expected = [
- 'id' => [
- 'type' => 'biginteger',
- 'null' => false,
- 'default' => null,
- 'length' => 19,
- 'precision' => null,
- 'unsigned' => null,
- 'autoIncrement' => null,
- 'comment' => null,
- ],
- 'title' => [
- 'type' => 'string',
- 'null' => true,
- 'default' => '無題',
- 'length' => 20,
- 'precision' => null,
- 'comment' => null,
- 'fixed' => null,
- 'collate' => 'Japanese_Unicode_CI_AI',
- ],
- 'body' => [
- 'type' => 'string',
- 'null' => true,
- 'default' => '本文なし',
- 'length' => 1000,
- 'precision' => null,
- 'fixed' => null,
- 'comment' => null,
- 'collate' => 'SQL_Latin1_General_CP1_CI_AS',
- ],
- 'author_id' => [
- 'type' => 'integer',
- 'null' => false,
- 'default' => null,
- 'length' => 10,
- 'precision' => null,
- 'unsigned' => null,
- 'autoIncrement' => null,
- 'comment' => null,
- ],
- 'published' => [
- 'type' => 'boolean',
- 'null' => true,
- 'default' => 0,
- 'length' => null,
- 'precision' => null,
- 'comment' => null,
- ],
- 'views' => [
- 'type' => 'smallinteger',
- 'null' => true,
- 'default' => 0,
- 'length' => 5,
- 'precision' => null,
- 'unsigned' => null,
- 'comment' => null,
- ],
- 'created' => [
- 'type' => 'timestamp',
- 'null' => true,
- 'default' => null,
- 'length' => null,
- 'precision' => null,
- 'comment' => null,
- ],
- 'field1' => [
- 'type' => 'string',
- 'null' => true,
- 'default' => null,
- 'length' => 10,
- 'precision' => null,
- 'fixed' => null,
- 'comment' => null,
- 'collate' => 'SQL_Latin1_General_CP1_CI_AS',
- ],
- 'field2' => [
- 'type' => 'string',
- 'null' => true,
- 'default' => 'NULL',
- 'length' => 10,
- 'precision' => null,
- 'fixed' => null,
- 'comment' => null,
- 'collate' => 'SQL_Latin1_General_CP1_CI_AS',
- ],
- 'field3' => [
- 'type' => 'string',
- 'null' => true,
- 'default' => 'O\'hare',
- 'length' => 10,
- 'precision' => null,
- 'fixed' => null,
- 'comment' => null,
- 'collate' => 'SQL_Latin1_General_CP1_CI_AS',
- ],
- ];
- $this->assertEquals(['id'], $result->primaryKey());
- foreach ($expected as $field => $definition) {
- $column = $result->getColumn($field);
- $this->assertEquals($definition, $column, 'Failed to match field ' . $field);
- $this->assertSame($definition['length'], $column['length']);
- $this->assertSame($definition['precision'], $column['precision']);
- }
- }
- /**
- * Test describing a table with postgres and composite keys
- *
- * @return void
- */
- public function testDescribeTableCompositeKey()
- {
- $this->_needsConnection();
- $connection = ConnectionManager::get('test');
- $sql = <<<SQL
- CREATE TABLE schema_composite (
- [id] INTEGER IDENTITY(1, 1),
- [site_id] INTEGER NOT NULL,
- [name] VARCHAR(255),
- PRIMARY KEY([id], [site_id])
- );
- SQL;
- $connection->execute($sql);
- $schema = new SchemaCollection($connection);
- $result = $schema->describe('schema_composite');
- $connection->execute('DROP TABLE schema_composite');
- $this->assertEquals(['id', 'site_id'], $result->primaryKey());
- $this->assertNull($result->getColumn('site_id')['autoIncrement'], 'site_id should not be autoincrement');
- $this->assertTrue($result->getColumn('id')['autoIncrement'], 'id should be autoincrement');
- }
- /**
- * Test that describe accepts tablenames containing `schema.table`.
- *
- * @return void
- */
- public function testDescribeWithSchemaName()
- {
- $connection = ConnectionManager::get('test');
- $this->_createTables($connection);
- $schema = new SchemaCollection($connection);
- $result = $schema->describe('dbo.schema_articles');
- $this->assertEquals(['id'], $result->primaryKey());
- $this->assertEquals('schema_articles', $result->name());
- }
- /**
- * Test describing a table with indexes
- *
- * @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' => [],
- ],
- 'content_idx' => [
- 'type' => 'unique',
- 'columns' => ['title', 'body'],
- 'length' => [],
- ],
- 'author_idx' => [
- 'type' => 'foreign',
- 'columns' => ['author_id'],
- 'references' => ['schema_authors', 'id'],
- 'length' => [],
- 'update' => 'cascade',
- 'delete' => 'cascade',
- ],
- ];
- $this->assertEquals($expected['primary'], $result->getConstraint('primary'));
- $this->assertEquals($expected['content_idx'], $result->getConstraint('content_idx'));
- $this->assertEquals($expected['author_idx'], $result->getConstraint('author_idx'));
- $this->assertCount(1, $result->indexes());
- $expected = [
- 'type' => 'index',
- 'columns' => ['author_id'],
- 'length' => [],
- ];
- $this->assertEquals($expected, $result->getIndex('author_idx'));
- }
- /**
- * Column provider for creating column sql
- *
- * @return array
- */
- public static function columnSqlProvider()
- {
- return [
- // strings
- [
- 'title',
- ['type' => 'string', 'length' => 25, 'null' => false],
- '[title] NVARCHAR(25) NOT NULL',
- ],
- [
- 'title',
- ['type' => 'string', 'length' => 25, 'null' => true, 'default' => 'ignored'],
- "[title] NVARCHAR(25) DEFAULT 'ignored'",
- ],
- [
- 'id',
- ['type' => 'string', 'length' => 32, 'fixed' => true, 'null' => false],
- '[id] NCHAR(32) NOT NULL',
- ],
- [
- 'id',
- ['type' => 'uuid', 'null' => false],
- '[id] UNIQUEIDENTIFIER NOT NULL',
- ],
- [
- 'id',
- ['type' => 'binaryuuid', 'null' => false],
- '[id] UNIQUEIDENTIFIER NOT NULL',
- ],
- [
- 'role',
- ['type' => 'string', 'length' => 10, 'null' => false, 'default' => 'admin'],
- "[role] NVARCHAR(10) NOT NULL DEFAULT 'admin'",
- ],
- [
- 'title',
- ['type' => 'string'],
- '[title] NVARCHAR(255)',
- ],
- [
- 'title',
- ['type' => 'string', 'length' => 25, 'null' => false, 'collate' => 'Japanese_Unicode_CI_AI'],
- '[title] NVARCHAR(25) COLLATE Japanese_Unicode_CI_AI NOT NULL',
- ],
- // Text
- [
- 'body',
- ['type' => 'text', 'null' => false],
- '[body] NVARCHAR(MAX) NOT NULL',
- ],
- [
- 'body',
- ['type' => 'text', 'length' => TableSchema::LENGTH_TINY, 'null' => false],
- sprintf('[body] NVARCHAR(%s) NOT NULL', TableSchema::LENGTH_TINY),
- ],
- [
- 'body',
- ['type' => 'text', 'length' => TableSchema::LENGTH_MEDIUM, 'null' => false],
- '[body] NVARCHAR(MAX) NOT NULL',
- ],
- [
- 'body',
- ['type' => 'text', 'length' => TableSchema::LENGTH_LONG, 'null' => false],
- '[body] NVARCHAR(MAX) NOT NULL',
- ],
- [
- 'body',
- ['type' => 'text', 'null' => false, 'collate' => 'Japanese_Unicode_CI_AI'],
- '[body] NVARCHAR(MAX) COLLATE Japanese_Unicode_CI_AI NOT NULL',
- ],
- // Integers
- [
- 'post_id',
- ['type' => 'smallinteger', 'length' => 11],
- '[post_id] SMALLINT',
- ],
- [
- 'post_id',
- ['type' => 'tinyinteger', 'length' => 11],
- '[post_id] TINYINT',
- ],
- [
- 'post_id',
- ['type' => 'integer', 'length' => 11],
- '[post_id] INTEGER',
- ],
- [
- 'post_id',
- ['type' => 'biginteger', 'length' => 20],
- '[post_id] BIGINT',
- ],
- // Decimal
- [
- 'value',
- ['type' => 'decimal'],
- '[value] DECIMAL',
- ],
- [
- 'value',
- ['type' => 'decimal', 'length' => 11],
- '[value] DECIMAL(11,0)',
- ],
- [
- 'value',
- ['type' => 'decimal', 'length' => 12, 'precision' => 5],
- '[value] DECIMAL(12,5)',
- ],
- // Float
- [
- 'value',
- ['type' => 'float'],
- '[value] FLOAT',
- ],
- [
- 'value',
- ['type' => 'float', 'length' => 11, 'precision' => 3],
- '[value] FLOAT(3)',
- ],
- // Binary
- [
- 'img',
- ['type' => 'binary', 'length' => null],
- '[img] VARBINARY(MAX)',
- ],
- [
- 'img',
- ['type' => 'binary', 'length' => TableSchema::LENGTH_TINY],
- sprintf('[img] VARBINARY(%s)', TableSchema::LENGTH_TINY),
- ],
- [
- 'img',
- ['type' => 'binary', 'length' => TableSchema::LENGTH_MEDIUM],
- '[img] VARBINARY(MAX)',
- ],
- [
- 'img',
- ['type' => 'binary', 'length' => TableSchema::LENGTH_LONG],
- '[img] VARBINARY(MAX)',
- ],
- [
- 'bytes',
- ['type' => 'binary', 'length' => 5],
- '[bytes] VARBINARY(5)',
- ],
- [
- 'bytes',
- ['type' => 'binary', 'length' => 1],
- '[bytes] BINARY(1)',
- ],
- // Boolean
- [
- 'checked',
- ['type' => 'boolean', 'default' => false],
- '[checked] BIT DEFAULT 0',
- ],
- [
- 'checked',
- ['type' => 'boolean', 'default' => true, 'null' => false],
- '[checked] BIT NOT NULL DEFAULT 1',
- ],
- // Datetime
- [
- 'created',
- ['type' => 'datetime'],
- '[created] DATETIME',
- ],
- [
- '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\'',
- ],
- [
- 'open_date',
- ['type' => 'datetime', 'null' => false, 'default' => 'current_timestamp'],
- '[open_date] DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP',
- ],
- [
- 'null_date',
- ['type' => 'datetime', 'null' => true, 'default' => 'current_timestamp'],
- '[null_date] DATETIME DEFAULT CURRENT_TIMESTAMP',
- ],
- [
- 'null_date',
- ['type' => 'datetime', 'null' => true],
- '[null_date] DATETIME DEFAULT NULL',
- ],
- // Date & Time
- [
- 'start_date',
- ['type' => 'date'],
- '[start_date] DATE',
- ],
- [
- 'start_time',
- ['type' => 'time'],
- '[start_time] TIME',
- ],
- // Timestamp
- [
- 'created',
- ['type' => 'timestamp', 'null' => true],
- '[created] DATETIME DEFAULT NULL',
- ],
- ];
- }
- /**
- * Test generating column definitions
- *
- * @dataProvider columnSqlProvider
- * @return void
- */
- public function testColumnSql($name, $data, $expected)
- {
- $driver = $this->_getMockedDriver();
- $schema = new SqlserverSchema($driver);
- $table = (new TableSchema('schema_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']],
- 'CONSTRAINT [unique_idx] UNIQUE ([title], [author_id])',
- ],
- [
- 'author_id_idx',
- ['type' => 'foreign', 'columns' => ['author_id'], 'references' => ['authors', 'id']],
- 'CONSTRAINT [author_id_idx] FOREIGN KEY ([author_id]) ' .
- 'REFERENCES [authors] ([id]) ON UPDATE SET NULL ON DELETE SET NULL',
- ],
- [
- '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 SET NULL',
- ],
- [
- 'author_id_idx',
- ['type' => 'foreign', 'columns' => ['author_id'], 'references' => ['authors', 'id'], 'update' => 'setDefault'],
- 'CONSTRAINT [author_id_idx] FOREIGN KEY ([author_id]) ' .
- 'REFERENCES [authors] ([id]) ON UPDATE SET DEFAULT ON DELETE SET NULL',
- ],
- [
- '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 SET NULL',
- ],
- [
- '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 SET NULL',
- ],
- ];
- }
- /**
- * Test the constraintSql method.
- *
- * @dataProvider constraintSqlProvider
- */
- public function testConstraintSql($name, $data, $expected)
- {
- $driver = $this->_getMockedDriver();
- $schema = new SqlserverSchema($driver);
- $table = (new TableSchema('schema_articles'))->addColumn('title', [
- 'type' => 'string',
- 'length' => 255,
- ])->addColumn('author_id', [
- 'type' => 'integer',
- ])->addConstraint($name, $data);
- $this->assertEquals($expected, $schema->constraintSql($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 CONSTRAINT [author_fk];',
- 'ALTER TABLE [posts] DROP CONSTRAINT [category_fk];',
- ];
- $result = $table->dropConstraintSql($connection);
- $this->assertCount(2, $result);
- $this->assertEquals($expected, $result);
- }
- /**
- * 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));
- $table = (new TableSchema('schema_articles'))->addColumn('id', [
- 'type' => 'integer',
- 'null' => false,
- ])
- ->addColumn('title', [
- 'type' => 'string',
- 'null' => false,
- ])
- ->addColumn('body', ['type' => 'text'])
- ->addColumn('data', ['type' => 'json'])
- ->addColumn('hash', [
- 'type' => 'string',
- 'fixed' => true,
- 'length' => 40,
- 'collate' => 'Latin1_General_BIN',
- 'null' => false,
- ])
- ->addColumn('created', 'datetime')
- ->addConstraint('primary', [
- 'type' => 'primary',
- 'columns' => ['id'],
- ])
- ->addIndex('title_idx', [
- 'type' => 'index',
- 'columns' => ['title'],
- ]);
- $expected = <<<SQL
- CREATE TABLE [schema_articles] (
- [id] INTEGER IDENTITY(1, 1),
- [title] NVARCHAR(255) NOT NULL,
- [body] NVARCHAR(MAX),
- [data] NVARCHAR(MAX),
- [hash] NCHAR(40) COLLATE Latin1_General_BIN NOT NULL,
- [created] DATETIME,
- PRIMARY KEY ([id])
- )
- SQL;
- $result = $table->createSql($connection);
- $this->assertCount(2, $result);
- $this->assertEquals(str_replace("\r\n", "\n", $expected), str_replace("\r\n", "\n", $result[0]));
- $this->assertEquals(
- 'CREATE INDEX [title_idx] ON [schema_articles] ([title])',
- $result[1]
- );
- }
- /**
- * 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('schema_articles');
- $result = $table->dropSql($connection);
- $this->assertCount(1, $result);
- $this->assertEquals('DROP TABLE [schema_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('schema_articles');
- $table->addColumn('id', 'integer')
- ->addConstraint('primary', [
- 'type' => 'primary',
- 'columns' => ['id'],
- ]);
- $result = $table->truncateSql($connection);
- $this->assertCount(2, $result);
- $this->assertEquals('DELETE FROM [schema_articles]', $result[0]);
- $this->assertEquals("DBCC CHECKIDENT('schema_articles', RESEED, 0)", $result[1]);
- }
- /**
- * Get a schema instance with a mocked driver/pdo instances
- *
- * @return \Cake\Database\Driver
- */
- protected function _getMockedDriver()
- {
- $driver = new Sqlserver();
- $mock = $this->getMockBuilder(PDO::class)
- ->setMethods(['quote'])
- ->disableOriginalConstructor()
- ->getMock();
- $mock->expects($this->any())
- ->method('quote')
- ->will($this->returnCallback(function ($value) {
- return "'$value'";
- }));
- $driver->setConnection($mock);
- return $driver;
- }
- }
|