mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-04 15:24:07 +01:00
138 lines
3.9 KiB
PHP
138 lines
3.9 KiB
PHP
<?php
|
|
|
|
Yii::import('system.db.CDbConnection');
|
|
Yii::import('system.db.schema.cubrid.CCubridSchema');
|
|
|
|
|
|
class CCubrid2Test extends CTestCase
|
|
{
|
|
private $db;
|
|
|
|
public function setUp()
|
|
{
|
|
if(!extension_loaded('pdo') || !extension_loaded('pdo_cubrid'))
|
|
$this->markTestSkipped('PDO and CUBRID extensions are required.');
|
|
|
|
$this->db=new CDbConnection('cubrid:dbname=demodb;host=localhost;port=33000','dba','');
|
|
try
|
|
{
|
|
$this->db->active=true;
|
|
}
|
|
catch(Exception $e)
|
|
{
|
|
$schemaFile=realpath(dirname(__FILE__).'/../data/cubrid.sql');
|
|
$this->markTestSkipped("Please read $schemaFile for details on setting up the test environment for CUBRID test case.");
|
|
}
|
|
|
|
$tables=array('comments','post_category','posts','categories','profiles','users','items','orders','types');
|
|
foreach($tables as $table)
|
|
$this->db->createCommand("DROP TABLE IF EXISTS $table")->execute();
|
|
|
|
$sqls=file_get_contents(dirname(__FILE__).'/../data/cubrid.sql');
|
|
foreach(explode(';',$sqls) as $sql)
|
|
{
|
|
if(trim($sql)!=='')
|
|
$this->db->createCommand($sql)->execute();
|
|
}
|
|
}
|
|
|
|
public function tearDown()
|
|
{
|
|
$this->db->active=false;
|
|
}
|
|
|
|
public function testCreateTable()
|
|
{
|
|
$sql=$this->db->schema->createTable('test',array(
|
|
'id'=>'pk',
|
|
'name'=>'string not null',
|
|
'desc'=>'text',
|
|
'primary key (id, name)',
|
|
));
|
|
$expect="CREATE TABLE `test` (\n"
|
|
. "\t`id` INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY,\n"
|
|
. "\t`name` VARCHAR(255) not null,\n"
|
|
. "\t`desc` VARCHAR(65535),\n"
|
|
. "\tprimary key (id, name)\n"
|
|
. ")";
|
|
$this->assertEquals($expect, $sql);
|
|
}
|
|
|
|
public function testRenameTable()
|
|
{
|
|
$sql=$this->db->schema->renameTable('test', 'test2');
|
|
$expect='RENAME TABLE `test` TO `test2`';
|
|
$this->assertEquals($expect, $sql);
|
|
}
|
|
|
|
public function testDropTable()
|
|
{
|
|
$sql=$this->db->schema->dropTable('test');
|
|
$expect='DROP TABLE `test`';
|
|
$this->assertEquals($expect, $sql);
|
|
}
|
|
|
|
public function testAddColumn()
|
|
{
|
|
$sql=$this->db->schema->addColumn('test', 'id', 'integer');
|
|
$expect='ALTER TABLE `test` ADD `id` INTEGER';
|
|
$this->assertEquals($expect, $sql);
|
|
}
|
|
|
|
public function testAlterColumn()
|
|
{
|
|
$sql=$this->db->schema->alterColumn('test', 'id', 'boolean');
|
|
$expect='ALTER TABLE `test` CHANGE `id` `id` SHORT';
|
|
$this->assertEquals($expect, $sql);
|
|
}
|
|
|
|
public function testRenameColumn()
|
|
{
|
|
$sql=$this->db->schema->renameColumn('users', 'username', 'name');
|
|
$expect="ALTER TABLE `users` RENAME COLUMN `username` TO `name`";
|
|
$this->assertEquals($expect, $sql);
|
|
}
|
|
|
|
public function testDropColumn()
|
|
{
|
|
$sql=$this->db->schema->dropColumn('test', 'id');
|
|
$expect='ALTER TABLE `test` DROP COLUMN `id`';
|
|
$this->assertEquals($expect, $sql);
|
|
}
|
|
|
|
public function testAddForeignKey()
|
|
{
|
|
$sql=$this->db->schema->addForeignKey('fk_test', 'profile', 'user_id', 'users', 'id');
|
|
$expect='ALTER TABLE `profile` ADD CONSTRAINT `fk_test` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`)';
|
|
$this->assertEquals($expect, $sql);
|
|
|
|
$sql=$this->db->schema->addForeignKey('fk_test', 'profile', 'user_id', 'users', 'id','CASCADE','RESTRICTED');
|
|
$expect='ALTER TABLE `profile` ADD CONSTRAINT `fk_test` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE RESTRICTED';
|
|
$this->assertEquals($expect, $sql);
|
|
}
|
|
|
|
public function testDropForeignKey()
|
|
{
|
|
$sql=$this->db->schema->dropForeignKey('fk_test', 'profile');
|
|
$expect='ALTER TABLE `profile` DROP CONSTRAINT `fk_test`';
|
|
$this->assertEquals($expect, $sql);
|
|
}
|
|
|
|
public function testCreateIndex()
|
|
{
|
|
$sql=$this->db->schema->createIndex('id_pk','test','id');
|
|
$expect='CREATE INDEX `id_pk` ON `test` (`id`)';
|
|
$this->assertEquals($expect, $sql);
|
|
|
|
$sql=$this->db->schema->createIndex('id_pk','test','id1,id2',true);
|
|
$expect='CREATE UNIQUE INDEX `id_pk` ON `test` (`id1`, `id2`)';
|
|
$this->assertEquals($expect, $sql);
|
|
}
|
|
|
|
public function testDropIndex()
|
|
{
|
|
$sql=$this->db->schema->dropIndex('id_pk','test');
|
|
$expect='DROP INDEX `id_pk` ON `test`';
|
|
$this->assertEquals($expect, $sql);
|
|
}
|
|
} |