mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-26 14:26:54 +08:00
101 lines
3.2 KiB
PHP
101 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace yiiunit\framework\db\sqlite;
|
|
|
|
use yii\db\Query;
|
|
use yii\db\Schema;
|
|
use yiiunit\framework\db\QueryBuilderTest;
|
|
|
|
/**
|
|
* @group db
|
|
* @group sqlite
|
|
*/
|
|
class SqliteQueryBuilderTest extends QueryBuilderTest
|
|
{
|
|
protected $driverName = 'sqlite';
|
|
|
|
public function columnTypes()
|
|
{
|
|
return array_merge(parent::columnTypes(), [
|
|
[
|
|
Schema::TYPE_PK,
|
|
$this->primaryKey()->first()->after('col_before'),
|
|
'integer PRIMARY KEY AUTOINCREMENT NOT NULL'
|
|
],
|
|
]);
|
|
}
|
|
|
|
public function testAddDropPrimaryKey()
|
|
{
|
|
$this->setExpectedException('yii\base\NotSupportedException');
|
|
parent::testAddDropPrimaryKey();
|
|
}
|
|
|
|
public function testCommentOnColumnSchemaBuilder()
|
|
{
|
|
$this->setExpectedException('yii\base\NotSupportedException');
|
|
$this->string()->comment('comment');
|
|
}
|
|
|
|
public function testCommentColumn()
|
|
{
|
|
$qb = $this->getQueryBuilder();
|
|
|
|
$this->setExpectedException('yii\base\NotSupportedException');
|
|
$qb->addCommentOnColumn('comment', 'text', 'This is my column.');
|
|
$qb->dropCommentFromColumn('comment', 'text');
|
|
}
|
|
|
|
public function testCommentTable()
|
|
{
|
|
$qb = $this->getQueryBuilder();
|
|
|
|
$this->setExpectedException('yii\base\NotSupportedException');
|
|
$qb->addCommentOnTable('comment', 'This is my table.');
|
|
$qb->dropCommentFromTable('comment');
|
|
}
|
|
|
|
public function testBatchInsert()
|
|
{
|
|
$db = $this->getConnection();
|
|
if (version_compare($db->pdo->getAttribute(\PDO::ATTR_SERVER_VERSION), '3.7.11', '>=')) {
|
|
$this->markTestSkipped('This test is only relevant for SQLite < 3.7.11');
|
|
}
|
|
$sql = $this->getQueryBuilder()->batchInsert('{{customer}} t', ['t.id', 't.name'], [[1, 'a'], [2, 'b']]);
|
|
$this->assertEquals("INSERT INTO {{customer}} t (`t`.`id`, `t`.`name`) SELECT 1, 'a' UNION SELECT 2, 'b'", $sql);
|
|
}
|
|
|
|
public function testRenameTable()
|
|
{
|
|
$sql = $this->getQueryBuilder()->renameTable('table_from', 'table_to');
|
|
$this->assertEquals("ALTER TABLE `table_from` RENAME TO `table_to`", $sql);
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function testBuildUnion()
|
|
{
|
|
$expectedQuerySql = $this->replaceQuotes(
|
|
"SELECT `id` FROM `TotalExample` `t1` WHERE (w > 0) AND (x < 2) UNION SELECT `id` FROM `TotalTotalExample` `t2` WHERE w > 5 UNION ALL SELECT `id` FROM `TotalTotalExample` `t3` WHERE w = 3"
|
|
);
|
|
$query = new Query();
|
|
$secondQuery = new Query();
|
|
$secondQuery->select('id')
|
|
->from('TotalTotalExample t2')
|
|
->where('w > 5');
|
|
$thirdQuery = new Query();
|
|
$thirdQuery->select('id')
|
|
->from('TotalTotalExample t3')
|
|
->where('w = 3');
|
|
$query->select('id')
|
|
->from('TotalExample t1')
|
|
->where(['and', 'w > 0', 'x < 2'])
|
|
->union($secondQuery)
|
|
->union($thirdQuery, TRUE);
|
|
list($actualQuerySql, $queryParams) = $this->getQueryBuilder()->build($query);
|
|
$this->assertEquals($expectedQuerySql, $actualQuerySql);
|
|
$this->assertEquals([], $queryParams);
|
|
}
|
|
}
|