You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

234 lines
7.2 KiB

13 years ago
<?php
namespace yiiunit\framework\db\dao;
13 years ago
use yii\db\dao\Connection;
use yii\db\dao\Command;
use yii\db\dao\Query;
13 years ago
use yii\db\dao\DataReader;
13 years ago
13 years ago
class CommandTest extends \yiiunit\MysqlTestCase
13 years ago
{
function testConstruct()
{
13 years ago
$db = $this->getConnection(false);
$command = $db->createCommand();
13 years ago
$this->assertEquals("SELECT *\nFROM ", $command->sql);
13 years ago
$sql = 'SELECT * FROM yii_post';
13 years ago
$command = $db->createCommand($sql);
13 years ago
$this->assertEquals($sql, $command->sql);
$query = new Query;
13 years ago
$command = $db->createCommand($query);
13 years ago
$this->assertEquals($query, $command->query);
13 years ago
$query = array('select' => 'id', 'from' => 'yii_post');
13 years ago
$command = $db->createCommand($query);
13 years ago
$this->assertEquals($query, $command->query->toArray());
}
function testReset()
{
13 years ago
$db = $this->getConnection();
$command = $db->createCommand('SELECT * FROM yii_user');
$command->queryRow();
$this->assertNotEquals(null, $command->pdoStatement);
$this->assertEquals('SELECT * FROM yii_user', $command->sql);
13 years ago
13 years ago
$command->reset();
$this->assertEquals(null, $command->pdoStatement);
$this->assertNotEquals('SELECT * FROM yii_user', $command->sql);
13 years ago
}
function testGetSetSql()
{
13 years ago
$db = $this->getConnection(false);
13 years ago
13 years ago
$sql = 'SELECT * FROM yii_user';
$command = $db->createCommand($sql);
$this->assertEquals($sql, $command->sql);
13 years ago
13 years ago
$sql2 = 'SELECT * FROM yii_yii_post';
$command->sql = $sql2;
$this->assertEquals($sql2, $command->sql);
13 years ago
}
13 years ago
function testPrepareCancel()
13 years ago
{
13 years ago
$db = $this->getConnection(false);
13 years ago
13 years ago
$command = $db->createCommand('SELECT * FROM yii_user');
$this->assertEquals(null, $command->pdoStatement);
$command->prepare();
$this->assertNotEquals(null, $command->pdoStatement);
$command->cancel();
$this->assertEquals(null, $command->pdoStatement);
13 years ago
}
function testExecute()
{
13 years ago
$db = $this->getConnection();
13 years ago
13 years ago
$sql = 'INSERT INTO yii_comment(content,post_id,author_id) VALUES (\'test comment\', 1, 1)';
$command = $db->createCommand($sql);
$this->assertEquals(1, $command->execute());
13 years ago
13 years ago
$sql = 'SELECT COUNT(*) FROM yii_comment WHERE content=\'test comment\'';
$command = $db->createCommand($sql);
$this->assertEquals(1, $command->queryScalar());
13 years ago
13 years ago
$command = $db->createCommand('bad SQL');
$this->setExpectedException('\yii\db\Exception');
$command->execute();
13 years ago
}
13 years ago
function testQuery()
13 years ago
{
13 years ago
$db = $this->getConnection();
13 years ago
13 years ago
// query
$sql = 'SELECT * FROM yii_post';
$reader = $db->createCommand($sql)->query();
$this->assertTrue($reader instanceof DataReader);
13 years ago
13 years ago
// queryAll
$rows = $db->createCommand('SELECT * FROM yii_post')->queryAll();
$this->assertEquals(5, count($rows));
$row = $rows[2];
$this->assertEquals(3, $row['id']);
$this->assertEquals($row['title'], 'post 3');
13 years ago
13 years ago
$rows = $db->createCommand('SELECT * FROM yii_post WHERE id=10')->queryAll();
$this->assertEquals(array(), $rows);
13 years ago
13 years ago
// queryRow
$sql = 'SELECT * FROM yii_post';
$row = $db->createCommand($sql)->queryRow();
$this->assertEquals(1, $row['id']);
$this->assertEquals('post 1', $row['title'], 'post 1');
13 years ago
13 years ago
$sql = 'SELECT * FROM yii_post';
$command = $db->createCommand($sql);
13 years ago
$command->prepare();
13 years ago
$row = $command->queryRow();
$this->assertEquals(1, $row['id']);
$this->assertEquals('post 1', $row['title']);
13 years ago
13 years ago
$sql = 'SELECT * FROM yii_post WHERE id=10';
$command = $db->createCommand($sql);
$this->assertFalse($command->queryRow());
13 years ago
13 years ago
// queryColumn
$sql = 'SELECT * FROM yii_post';
$column = $db->createCommand($sql)->queryColumn();
$this->assertEquals(range(1, 5), $column);
13 years ago
13 years ago
$command = $db->createCommand('SELECT id FROM yii_post WHERE id=10');
$this->assertEquals(array(), $command->queryColumn());
13 years ago
13 years ago
// queryScalar
$sql = 'SELECT * FROM yii_post';
$this->assertEquals($db->createCommand($sql)->queryScalar(), 1);
13 years ago
13 years ago
$sql = 'SELECT id FROM yii_post';
$command = $db->createCommand($sql);
13 years ago
$command->prepare();
13 years ago
$this->assertEquals(1, $command->queryScalar());
$command = $db->createCommand('SELECT id FROM yii_post WHERE id=10');
$this->assertFalse($command->queryScalar());
13 years ago
13 years ago
$command = $db->createCommand('bad SQL');
$this->setExpectedException('\yii\db\Exception');
13 years ago
$command->query();
}
13 years ago
function testBindParamValue()
13 years ago
{
13 years ago
$db = $this->getConnection();
13 years ago
13 years ago
// bindParam
$sql = 'INSERT INTO yii_post(title,create_time,author_id) VALUES (:title, :create_time, 1)';
$command = $db->createCommand($sql);
$title = 'test title';
$createTime = time();
$command->bindParam(':title', $title);
$command->bindParam(':create_time', $createTime);
13 years ago
$command->execute();
13 years ago
$sql = 'SELECT create_time FROM yii_post WHERE title=:title';
$command = $db->createCommand($sql);
$command->bindParam(':title', $title);
$this->assertEquals($createTime, $command->queryScalar());
13 years ago
13 years ago
$sql = 'INSERT INTO yii_type (int_col, char_col, float_col, blob_col, numeric_col, bool_col) VALUES (:int_col, :char_col, :float_col, :blob_col, :numeric_col, :bool_col)';
$command = $db->createCommand($sql);
$intCol = 123;
$charCol = 'abc';
$floatCol = 1.23;
$blobCol = "\x10\x11\x12";
$numericCol = '1.23';
$boolCol = false;
$command->bindParam(':int_col', $intCol);
$command->bindParam(':char_col', $charCol);
$command->bindParam(':float_col', $floatCol);
$command->bindParam(':blob_col', $blobCol);
$command->bindParam(':numeric_col', $numericCol);
$command->bindParam(':bool_col', $boolCol);
$this->assertEquals(1, $command->execute());
$sql = 'SELECT * FROM yii_type';
$row = $db->createCommand($sql)->queryRow();
$this->assertEquals($intCol, $row['int_col']);
$this->assertEquals($charCol, $row['char_col']);
$this->assertEquals($floatCol, $row['float_col']);
$this->assertEquals($blobCol, $row['blob_col']);
$this->assertEquals($numericCol, $row['numeric_col']);
// bindValue
$sql = 'INSERT INTO yii_comment(content,post_id,author_id) VALUES (:content, 1, 1)';
$command = $db->createCommand($sql);
$command->bindValue(':content', 'test comment');
$command->execute();
13 years ago
13 years ago
$sql = 'SELECT post_id FROM yii_comment WHERE content=:content';
$command = $db->createCommand($sql);
$command->bindValue(':content', 'test comment');
$this->assertEquals(1, $command->queryScalar());
13 years ago
13 years ago
// bind value via query or execute method
$sql = 'INSERT INTO yii_comment(content,post_id,author_id) VALUES (:content, 1, 1)';
$command = $db->createCommand($sql);
$command->execute(array(':content' => 'test comment2'));
$sql = 'SELECT post_id FROM yii_comment WHERE content=:content';
$command = $db->createCommand($sql);
$this->assertEquals(1, $command->queryScalar(array(':content' => 'test comment2')));
13 years ago
}
13 years ago
function testFetchMode()
13 years ago
{
13 years ago
$db = $this->getConnection();
13 years ago
13 years ago
// default: FETCH_ASSOC
$sql = 'SELECT * FROM yii_post';
$command = $db->createCommand($sql);
13 years ago
$result = $command->queryRow();
13 years ago
$this->assertTrue(is_array($result) && isset($result['id']));
13 years ago
13 years ago
// FETCH_OBJ, customized via fetchMode property
$sql = 'SELECT * FROM yii_post';
$command = $db->createCommand($sql);
$command->fetchMode = \PDO::FETCH_OBJ;
13 years ago
$result = $command->queryRow();
$this->assertTrue(is_object($result));
13 years ago
// FETCH_NUM, customized in query method
$sql = 'SELECT * FROM yii_post';
$command = $db->createCommand($sql);
$result = $command->queryRow(array(), \PDO::FETCH_NUM);
$this->assertTrue(is_array($result) && isset($result[0]));
13 years ago
}
}