mirror of
				https://github.com/yiisoft/yii2.git
				synced 2025-11-04 22:57:40 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			129 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			129 lines
		
	
	
		
			4.9 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * @link http://www.yiiframework.com/
 | 
						|
 * @copyright Copyright (c) 2008 Yii Software LLC
 | 
						|
 * @license http://www.yiiframework.com/license/
 | 
						|
 */
 | 
						|
 | 
						|
namespace yiiunit\framework\db\mssql;
 | 
						|
 | 
						|
/**
 | 
						|
 * @group db
 | 
						|
 * @group mssql
 | 
						|
 */
 | 
						|
class CommandTest extends \yiiunit\framework\db\CommandTest
 | 
						|
{
 | 
						|
    protected $driverName = 'sqlsrv';
 | 
						|
 | 
						|
    public function testAutoQuoting()
 | 
						|
    {
 | 
						|
        $db = $this->getConnection(false);
 | 
						|
 | 
						|
        $sql = 'SELECT [[id]], [[t.name]] FROM {{customer}} t';
 | 
						|
        $command = $db->createCommand($sql);
 | 
						|
        $this->assertEquals('SELECT [id], [t].[name] FROM [customer] t', $command->sql);
 | 
						|
    }
 | 
						|
 | 
						|
    public function testPrepareCancel()
 | 
						|
    {
 | 
						|
        $this->markTestSkipped('MSSQL driver does not support this feature.');
 | 
						|
    }
 | 
						|
 | 
						|
    public function testBindParamValue()
 | 
						|
    {
 | 
						|
        $db = $this->getConnection();
 | 
						|
 | 
						|
        // bindParam
 | 
						|
        $sql = 'INSERT INTO customer(email, name, address) VALUES (:email, :name, :address)';
 | 
						|
        $command = $db->createCommand($sql);
 | 
						|
        $email = 'user4@example.com';
 | 
						|
        $name = 'user4';
 | 
						|
        $address = 'address4';
 | 
						|
        $command->bindParam(':email', $email);
 | 
						|
        $command->bindParam(':name', $name);
 | 
						|
        $command->bindParam(':address', $address);
 | 
						|
        $command->execute();
 | 
						|
 | 
						|
        $sql = 'SELECT name FROM customer WHERE email=:email';
 | 
						|
        $command = $db->createCommand($sql);
 | 
						|
        $command->bindParam(':email', $email);
 | 
						|
        $this->assertEquals($name, $command->queryScalar());
 | 
						|
 | 
						|
        $sql = 'INSERT INTO type (int_col, char_col, float_col, blob_col, numeric_col, bool_col) VALUES (:int_col, :char_col, :float_col, CONVERT([varbinary], :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 int_col, char_col, float_col, CONVERT([nvarchar], blob_col) AS blob_col, numeric_col FROM type';
 | 
						|
        $row = $db->createCommand($sql)->queryOne();
 | 
						|
        $this->assertEquals($intCol, $row['int_col']);
 | 
						|
        $this->assertEquals($charCol, trim($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 customer(email, name, address) VALUES (:email, \'user5\', \'address5\')';
 | 
						|
        $command = $db->createCommand($sql);
 | 
						|
        $command->bindValue(':email', 'user5@example.com');
 | 
						|
        $command->execute();
 | 
						|
 | 
						|
        $sql = 'SELECT email FROM customer WHERE name=:name';
 | 
						|
        $command = $db->createCommand($sql);
 | 
						|
        $command->bindValue(':name', 'user5');
 | 
						|
        $this->assertEquals('user5@example.com', $command->queryScalar());
 | 
						|
    }
 | 
						|
 | 
						|
    public function paramsNonWhereProvider()
 | 
						|
    {
 | 
						|
        return[
 | 
						|
            ['SELECT SUBSTRING(name, :len, 6) AS name FROM {{customer}} WHERE [[email]] = :email GROUP BY name'],
 | 
						|
            ['SELECT SUBSTRING(name, :len, 6) as name FROM {{customer}} WHERE [[email]] = :email ORDER BY name'],
 | 
						|
            ['SELECT SUBSTRING(name, :len, 6) FROM {{customer}} WHERE [[email]] = :email'],
 | 
						|
        ];
 | 
						|
    }
 | 
						|
 | 
						|
    public function testAddDropDefaultValue()
 | 
						|
    {
 | 
						|
        $db = $this->getConnection(false);
 | 
						|
        $tableName = 'test_def';
 | 
						|
        $name = 'test_def_constraint';
 | 
						|
        /** @var \yii\db\pgsql\Schema $schema */
 | 
						|
        $schema = $db->getSchema();
 | 
						|
 | 
						|
        if ($schema->getTableSchema($tableName) !== null) {
 | 
						|
            $db->createCommand()->dropTable($tableName)->execute();
 | 
						|
        }
 | 
						|
        $db->createCommand()->createTable($tableName, [
 | 
						|
            'int1' => 'integer',
 | 
						|
        ])->execute();
 | 
						|
 | 
						|
        $this->assertEmpty($schema->getTableDefaultValues($tableName, true));
 | 
						|
        $db->createCommand()->addDefaultValue($name, $tableName, 'int1', 41)->execute();
 | 
						|
        $this->assertRegExp('/^.*41.*$/', $schema->getTableDefaultValues($tableName, true)[0]->value);
 | 
						|
 | 
						|
        $db->createCommand()->dropDefaultValue($name, $tableName)->execute();
 | 
						|
        $this->assertEmpty($schema->getTableDefaultValues($tableName, true));
 | 
						|
    }
 | 
						|
 | 
						|
    public function batchInsertSqlProvider()
 | 
						|
    {
 | 
						|
        $data = parent::batchInsertSqlProvider();
 | 
						|
        $data['issue11242']['expected'] = 'INSERT INTO [type] ([int_col], [float_col], [char_col]) VALUES (NULL, NULL, \'Kyiv {{city}}, Ukraine\')';
 | 
						|
        $data['wrongBehavior']['expected'] = 'INSERT INTO [type] ([int_col], [float_col], [char_col]) VALUES (\'\', \'\', \'Kyiv {{city}}, Ukraine\')';
 | 
						|
 | 
						|
        return $data;
 | 
						|
    }
 | 
						|
}
 |