2008-05-30 11:40:08 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2011-04-26 13:17:51 +00:00
|
|
|
* MssqlTest file
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-10-03 16:31:21 +00:00
|
|
|
* PHP 5
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2009-11-06 06:46:59 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2010-01-26 19:18:20 +00:00
|
|
|
* Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2010-01-26 19:18:20 +00:00
|
|
|
* @copyright Copyright 2005-2010, Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2009-11-06 06:00:11 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.libs
|
2008-10-30 17:30:26 +00:00
|
|
|
* @since CakePHP(tm) v 1.2.0
|
2009-11-06 06:51:51 +00:00
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2010-11-21 20:13:33 +00:00
|
|
|
|
2011-04-26 13:17:51 +00:00
|
|
|
App::uses('Model', 'Model');
|
|
|
|
App::uses('Mssql', 'Model/Datasource/Database');
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
2011-04-26 13:17:51 +00:00
|
|
|
* MssqlTestDb class
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.tests.cases.libs.model.datasources.dbo
|
2008-06-02 19:22:55 +00:00
|
|
|
*/
|
2011-04-26 13:17:51 +00:00
|
|
|
class MssqlTestDb extends Mssql {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* simulated property
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $simulated = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-08-02 06:47:28 +00:00
|
|
|
/**
|
2011-05-18 18:12:36 +00:00
|
|
|
* simulate property
|
2009-08-02 06:47:28 +00:00
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
2011-05-18 18:12:36 +00:00
|
|
|
public $simulate = false;
|
|
|
|
|
2008-11-14 02:00:02 +00:00
|
|
|
/**
|
2011-05-18 18:12:36 +00:00
|
|
|
* execute results stack
|
2009-03-17 21:10:28 +00:00
|
|
|
*
|
2008-11-14 02:00:02 +00:00
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
2011-05-18 18:12:36 +00:00
|
|
|
public $executeResultsStack = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* execute method
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
|
|
|
* @param mixed $sql
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access protected
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-09-01 19:00:00 +00:00
|
|
|
function _execute($sql) {
|
2009-08-02 06:47:28 +00:00
|
|
|
if ($this->simulate) {
|
|
|
|
$this->simulated[] = $sql;
|
2011-05-18 18:12:36 +00:00
|
|
|
return empty($this->executeResultsStack) ? null : array_pop($this->executeResultsStack);
|
2009-08-02 06:47:28 +00:00
|
|
|
} else {
|
|
|
|
return parent::_execute($sql);
|
|
|
|
}
|
2008-09-01 19:00:00 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-01-16 19:08:44 +00:00
|
|
|
/**
|
|
|
|
* fetchAll method
|
2009-03-17 21:10:28 +00:00
|
|
|
*
|
|
|
|
* @param mixed $sql
|
2009-01-16 19:08:44 +00:00
|
|
|
* @access protected
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-03-26 04:04:25 +00:00
|
|
|
function _matchRecords($model, $conditions = null) {
|
2009-01-16 19:08:44 +00:00
|
|
|
return $this->conditions(array('id' => array(1, 2)));
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* getLastQuery method
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-09-01 19:00:00 +00:00
|
|
|
function getLastQuery() {
|
|
|
|
return $this->simulated[count($this->simulated) - 1];
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-04-29 16:26:03 +00:00
|
|
|
/**
|
|
|
|
* getPrimaryKey method
|
|
|
|
*
|
2011-05-18 18:12:36 +00:00
|
|
|
* @param array $schema
|
2009-04-29 16:26:03 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2011-05-18 18:12:36 +00:00
|
|
|
function getPrimaryKey($schema) {
|
|
|
|
return parent::_getPrimaryKey($schema);
|
2009-04-29 16:26:03 +00:00
|
|
|
}
|
2009-08-02 06:47:28 +00:00
|
|
|
/**
|
|
|
|
* clearFieldMappings method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function clearFieldMappings() {
|
2011-04-29 02:20:11 +00:00
|
|
|
$this->_fieldMappings = array();
|
2009-08-02 06:47:28 +00:00
|
|
|
}
|
2008-09-01 19:00:00 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-09-01 19:00:00 +00:00
|
|
|
/**
|
2009-03-18 17:55:58 +00:00
|
|
|
* MssqlTestModel class
|
2008-09-01 19:00:00 +00:00
|
|
|
*
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.tests.cases.libs.model.datasources
|
2008-09-01 19:00:00 +00:00
|
|
|
*/
|
|
|
|
class MssqlTestModel extends Model {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* name property
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @var string 'MssqlTestModel'
|
|
|
|
* @access public
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $name = 'MssqlTestModel';
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* useTable property
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @var bool false
|
|
|
|
* @access public
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $useTable = false;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-04-29 16:26:03 +00:00
|
|
|
/**
|
|
|
|
* _schema property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access protected
|
|
|
|
*/
|
2010-04-04 06:36:12 +00:00
|
|
|
protected $_schema = array(
|
2009-04-29 16:26:03 +00:00
|
|
|
'id' => array('type' => 'integer', 'null' => '', 'default' => '', 'length' => '8', 'key' => 'primary'),
|
|
|
|
'client_id' => array('type' => 'integer', 'null' => '', 'default' => '0', 'length' => '11'),
|
|
|
|
'name' => array('type' => 'string', 'null' => '', 'default' => '', 'length' => '255'),
|
|
|
|
'login' => array('type' => 'string', 'null' => '', 'default' => '', 'length' => '255'),
|
|
|
|
'passwd' => array('type' => 'string', 'null' => '1', 'default' => '', 'length' => '255'),
|
|
|
|
'addr_1' => array('type' => 'string', 'null' => '1', 'default' => '', 'length' => '255'),
|
|
|
|
'addr_2' => array('type' => 'string', 'null' => '1', 'default' => '', 'length' => '25'),
|
|
|
|
'zip_code' => array('type' => 'string', 'null' => '1', 'default' => '', 'length' => '155'),
|
|
|
|
'city' => array('type' => 'string', 'null' => '1', 'default' => '', 'length' => '155'),
|
|
|
|
'country' => array('type' => 'string', 'null' => '1', 'default' => '', 'length' => '155'),
|
|
|
|
'phone' => array('type' => 'string', 'null' => '1', 'default' => '', 'length' => '155'),
|
|
|
|
'fax' => array('type' => 'string', 'null' => '1', 'default' => '', 'length' => '155'),
|
|
|
|
'url' => array('type' => 'string', 'null' => '1', 'default' => '', 'length' => '255'),
|
|
|
|
'email' => array('type' => 'string', 'null' => '1', 'default' => '', 'length' => '155'),
|
|
|
|
'comments' => array('type' => 'text', 'null' => '1', 'default' => '', 'length' => ''),
|
|
|
|
'last_login'=> array('type' => 'datetime', 'null' => '1', 'default' => '', 'length' => ''),
|
|
|
|
'created' => array('type' => 'date', 'null' => '1', 'default' => '', 'length' => ''),
|
|
|
|
'updated' => array('type' => 'datetime', 'null' => '1', 'default' => '', 'length' => null)
|
|
|
|
);
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-08-02 06:47:28 +00:00
|
|
|
/**
|
|
|
|
* belongsTo property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $belongsTo = array(
|
2009-08-02 06:47:28 +00:00
|
|
|
'MssqlClientTestModel' => array(
|
|
|
|
'foreignKey' => 'client_id'
|
|
|
|
)
|
|
|
|
);
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* find method
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
|
|
|
* @param mixed $conditions
|
|
|
|
* @param mixed $fields
|
|
|
|
* @param mixed $order
|
|
|
|
* @param mixed $recursive
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-09-01 19:00:00 +00:00
|
|
|
function find($conditions = null, $fields = null, $order = null, $recursive = null) {
|
|
|
|
return $conditions;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* findAll method
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
|
|
|
* @param mixed $conditions
|
|
|
|
* @param mixed $fields
|
|
|
|
* @param mixed $order
|
|
|
|
* @param mixed $recursive
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-09-01 19:00:00 +00:00
|
|
|
function findAll($conditions = null, $fields = null, $order = null, $recursive = null) {
|
|
|
|
return $conditions;
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-08-02 06:47:28 +00:00
|
|
|
/**
|
|
|
|
* MssqlClientTestModel class
|
|
|
|
*
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.tests.cases.libs.model.datasources
|
2009-08-02 06:47:28 +00:00
|
|
|
*/
|
|
|
|
class MssqlClientTestModel extends Model {
|
|
|
|
/**
|
|
|
|
* name property
|
|
|
|
*
|
|
|
|
* @var string 'MssqlAssociatedTestModel'
|
|
|
|
* @access public
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $name = 'MssqlClientTestModel';
|
2009-08-02 06:47:28 +00:00
|
|
|
/**
|
|
|
|
* useTable property
|
|
|
|
*
|
|
|
|
* @var bool false
|
|
|
|
* @access public
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $useTable = false;
|
2009-08-02 06:47:28 +00:00
|
|
|
/**
|
|
|
|
* _schema property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access protected
|
|
|
|
*/
|
2010-04-04 06:36:12 +00:00
|
|
|
protected $_schema = array(
|
2009-08-02 06:47:28 +00:00
|
|
|
'id' => array('type' => 'integer', 'null' => '', 'default' => '', 'length' => '8', 'key' => 'primary'),
|
|
|
|
'name' => array('type' => 'string', 'null' => '', 'default' => '', 'length' => '255'),
|
|
|
|
'email' => array('type' => 'string', 'null' => '1', 'default' => '', 'length' => '155'),
|
|
|
|
'created' => array('type' => 'datetime', 'null' => '1', 'default' => '', 'length' => ''),
|
|
|
|
'updated' => array('type' => 'datetime', 'null' => '1', 'default' => '', 'length' => null)
|
|
|
|
);
|
|
|
|
}
|
2011-05-18 18:12:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MssqlTestResultIterator class
|
|
|
|
*
|
|
|
|
* @package cake.tests.cases.libs.model.datasources
|
|
|
|
*/
|
|
|
|
class MssqlTestResultIterator extends ArrayIterator {
|
|
|
|
/**
|
|
|
|
* closeCursor method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
public function closeCursor() {}
|
|
|
|
}
|
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
2011-04-26 13:17:51 +00:00
|
|
|
* MssqlTest class
|
2008-05-30 11:40:08 +00:00
|
|
|
*
|
2010-12-24 18:57:20 +00:00
|
|
|
* @package cake.tests.cases.libs.model.datasources.dbo
|
2008-05-30 11:40:08 +00:00
|
|
|
*/
|
2011-04-26 13:17:51 +00:00
|
|
|
class MssqlTest extends CakeTestCase {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* The Dbo instance to be tested
|
|
|
|
*
|
2009-03-17 21:10:28 +00:00
|
|
|
* @var DboSource
|
2008-05-30 11:40:08 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $db = null;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-08-02 06:47:28 +00:00
|
|
|
/**
|
|
|
|
* autoFixtures property
|
|
|
|
*
|
|
|
|
* @var bool false
|
|
|
|
* @access public
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $autoFixtures = false;
|
2009-08-02 06:47:28 +00:00
|
|
|
/**
|
|
|
|
* fixtures property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
2010-04-04 07:14:00 +00:00
|
|
|
public $fixtures = array('core.category');
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-08-02 06:47:28 +00:00
|
|
|
/**
|
|
|
|
* Make sure all fixtures tables are being created
|
|
|
|
*
|
|
|
|
*/
|
2011-05-18 18:12:36 +00:00
|
|
|
public function startTest($method) {
|
2009-08-02 06:47:28 +00:00
|
|
|
$this->db->simulate = true;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Make sure all fixtures tables are being dropped
|
|
|
|
*
|
|
|
|
*/
|
2011-05-18 18:12:36 +00:00
|
|
|
public function endTest($method) {
|
2009-08-02 06:47:28 +00:00
|
|
|
$this->db->simulate = false;
|
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
/**
|
|
|
|
* Sets up a Dbo class instance for testing
|
|
|
|
*
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function setUp() {
|
2011-04-29 13:14:09 +00:00
|
|
|
$this->Dbo = ConnectionManager::getDataSource('test');
|
|
|
|
if (!($this->Dbo instanceof Mssql)) {
|
|
|
|
$this->markTestSkipped('Please configure the test datasource to use SQL Server.');
|
|
|
|
}
|
|
|
|
$this->db = new MssqlTestDb($this->Dbo->config);
|
2008-05-30 11:40:08 +00:00
|
|
|
$this->model = new MssqlTestModel();
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-03-18 17:55:58 +00:00
|
|
|
/**
|
|
|
|
* tearDown method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function tearDown() {
|
|
|
|
unset($this->model);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-02 19:22:55 +00:00
|
|
|
/**
|
|
|
|
* testQuoting method
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-06-02 19:22:55 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testQuoting() {
|
2009-08-02 06:47:28 +00:00
|
|
|
$expected = "1.2";
|
|
|
|
$result = $this->db->value(1.2, 'float');
|
|
|
|
$this->assertIdentical($expected, $result);
|
|
|
|
|
|
|
|
$expected = "'1,2'";
|
|
|
|
$result = $this->db->value('1,2', 'float');
|
|
|
|
$this->assertIdentical($expected, $result);
|
2009-09-06 17:57:24 +00:00
|
|
|
|
|
|
|
$expected = 'NULL';
|
|
|
|
$result = $this->db->value('', 'integer');
|
|
|
|
$this->assertIdentical($expected, $result);
|
|
|
|
|
|
|
|
$expected = 'NULL';
|
|
|
|
$result = $this->db->value('', 'float');
|
|
|
|
$this->assertIdentical($expected, $result);
|
|
|
|
|
|
|
|
$expected = 'NULL';
|
|
|
|
$result = $this->db->value('', 'binary');
|
|
|
|
$this->assertIdentical($expected, $result);
|
2009-08-02 06:47:28 +00:00
|
|
|
}
|
|
|
|
/**
|
|
|
|
* testFields method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testFields() {
|
|
|
|
$fields = array(
|
2008-05-30 11:40:08 +00:00
|
|
|
'[MssqlTestModel].[id] AS [MssqlTestModel__0]',
|
|
|
|
'[MssqlTestModel].[client_id] AS [MssqlTestModel__1]',
|
|
|
|
'[MssqlTestModel].[name] AS [MssqlTestModel__2]',
|
|
|
|
'[MssqlTestModel].[login] AS [MssqlTestModel__3]',
|
|
|
|
'[MssqlTestModel].[passwd] AS [MssqlTestModel__4]',
|
|
|
|
'[MssqlTestModel].[addr_1] AS [MssqlTestModel__5]',
|
|
|
|
'[MssqlTestModel].[addr_2] AS [MssqlTestModel__6]',
|
|
|
|
'[MssqlTestModel].[zip_code] AS [MssqlTestModel__7]',
|
|
|
|
'[MssqlTestModel].[city] AS [MssqlTestModel__8]',
|
|
|
|
'[MssqlTestModel].[country] AS [MssqlTestModel__9]',
|
|
|
|
'[MssqlTestModel].[phone] AS [MssqlTestModel__10]',
|
|
|
|
'[MssqlTestModel].[fax] AS [MssqlTestModel__11]',
|
|
|
|
'[MssqlTestModel].[url] AS [MssqlTestModel__12]',
|
|
|
|
'[MssqlTestModel].[email] AS [MssqlTestModel__13]',
|
|
|
|
'[MssqlTestModel].[comments] AS [MssqlTestModel__14]',
|
|
|
|
'CONVERT(VARCHAR(20), [MssqlTestModel].[last_login], 20) AS [MssqlTestModel__15]',
|
|
|
|
'[MssqlTestModel].[created] AS [MssqlTestModel__16]',
|
|
|
|
'CONVERT(VARCHAR(20), [MssqlTestModel].[updated], 20) AS [MssqlTestModel__17]'
|
|
|
|
);
|
2009-08-02 06:47:28 +00:00
|
|
|
|
|
|
|
$result = $this->db->fields($this->model);
|
|
|
|
$expected = $fields;
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2009-08-02 06:47:28 +00:00
|
|
|
$this->db->clearFieldMappings();
|
|
|
|
$result = $this->db->fields($this->model, null, 'MssqlTestModel.*');
|
|
|
|
$expected = $fields;
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
2009-08-02 06:47:28 +00:00
|
|
|
$this->db->clearFieldMappings();
|
|
|
|
$result = $this->db->fields($this->model, null, array('*', 'AnotherModel.id', 'AnotherModel.name'));
|
|
|
|
$expected = array_merge($fields, array(
|
|
|
|
'[AnotherModel].[id] AS [AnotherModel__18]',
|
|
|
|
'[AnotherModel].[name] AS [AnotherModel__19]'));
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-08-02 06:47:28 +00:00
|
|
|
|
|
|
|
$this->db->clearFieldMappings();
|
|
|
|
$result = $this->db->fields($this->model, null, array('*', 'MssqlClientTestModel.*'));
|
|
|
|
$expected = array_merge($fields, array(
|
|
|
|
'[MssqlClientTestModel].[id] AS [MssqlClientTestModel__18]',
|
|
|
|
'[MssqlClientTestModel].[name] AS [MssqlClientTestModel__19]',
|
|
|
|
'[MssqlClientTestModel].[email] AS [MssqlClientTestModel__20]',
|
|
|
|
'CONVERT(VARCHAR(20), [MssqlClientTestModel].[created], 20) AS [MssqlClientTestModel__21]',
|
|
|
|
'CONVERT(VARCHAR(20), [MssqlClientTestModel].[updated], 20) AS [MssqlClientTestModel__22]'));
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testDistinctFields method
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-06-05 15:20:45 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testDistinctFields() {
|
|
|
|
$result = $this->db->fields($this->model, null, array('DISTINCT Car.country_code'));
|
|
|
|
$expected = array('DISTINCT [Car].[country_code] AS [Car__0]');
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2008-05-30 11:40:08 +00:00
|
|
|
|
|
|
|
$result = $this->db->fields($this->model, null, 'DISTINCT Car.country_code');
|
|
|
|
$expected = array('DISTINCT [Car].[country_code] AS [Car__1]');
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-06-05 15:20:45 +00:00
|
|
|
/**
|
|
|
|
* testDistinctWithLimit method
|
2008-11-08 02:58:37 +00:00
|
|
|
*
|
2008-06-05 15:20:45 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
2008-05-30 11:40:08 +00:00
|
|
|
function testDistinctWithLimit() {
|
|
|
|
$this->db->read($this->model, array(
|
|
|
|
'fields' => array('DISTINCT MssqlTestModel.city', 'MssqlTestModel.country'),
|
|
|
|
'limit' => 5
|
|
|
|
));
|
|
|
|
$result = $this->db->getLastQuery();
|
|
|
|
$this->assertPattern('/^SELECT DISTINCT TOP 5/', $result);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-11-14 02:00:02 +00:00
|
|
|
/**
|
|
|
|
* testDescribe method
|
2009-03-17 21:10:28 +00:00
|
|
|
*
|
2008-11-14 02:00:02 +00:00
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function testDescribe() {
|
2011-05-18 18:12:36 +00:00
|
|
|
$MssqlTableDescription = new MssqlTestResultIterator(array(
|
|
|
|
(object) array(
|
|
|
|
'Default' => '((0))',
|
|
|
|
'Field' => 'count',
|
|
|
|
'Key' => 0,
|
|
|
|
'Length' => '4',
|
|
|
|
'Null' => 'NO',
|
|
|
|
'Type' => 'integer'
|
2008-11-14 02:00:02 +00:00
|
|
|
)
|
2011-05-18 18:12:36 +00:00
|
|
|
));
|
|
|
|
$this->db->executeResultsStack = array($MssqlTableDescription);
|
2008-11-14 02:00:02 +00:00
|
|
|
$dummyModel = $this->model;
|
|
|
|
$result = $this->db->describe($dummyModel);
|
|
|
|
$expected = array(
|
|
|
|
'count' => array(
|
|
|
|
'type' => 'integer',
|
|
|
|
'null' => false,
|
|
|
|
'default' => '0',
|
|
|
|
'length' => 4
|
|
|
|
)
|
|
|
|
);
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2008-11-14 02:00:02 +00:00
|
|
|
}
|
2009-07-29 22:30:20 +00:00
|
|
|
/**
|
|
|
|
* testBuildColumn
|
|
|
|
*
|
|
|
|
* @return unknown_type
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function testBuildColumn() {
|
2011-05-18 18:12:36 +00:00
|
|
|
$column = array('name' => 'id', 'type' => 'integer', 'null' => false, 'default' => '', 'length' => '8', 'key' => 'primary');
|
2009-07-29 22:30:20 +00:00
|
|
|
$result = $this->db->buildColumn($column);
|
|
|
|
$expected = '[id] int IDENTITY (1, 1) NOT NULL';
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-07-29 22:30:20 +00:00
|
|
|
|
2011-05-18 18:12:36 +00:00
|
|
|
$column = array('name' => 'client_id', 'type' => 'integer', 'null' => false, 'default' => '0', 'length' => '11');
|
2009-07-29 22:30:20 +00:00
|
|
|
$result = $this->db->buildColumn($column);
|
|
|
|
$expected = '[client_id] int DEFAULT 0 NOT NULL';
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-07-29 22:30:20 +00:00
|
|
|
|
2009-07-31 02:08:20 +00:00
|
|
|
$column = array('name' => 'client_id', 'type' => 'integer', 'null' => true);
|
2009-07-29 22:30:20 +00:00
|
|
|
$result = $this->db->buildColumn($column);
|
2009-07-31 02:08:20 +00:00
|
|
|
$expected = '[client_id] int NULL';
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-08-02 06:47:28 +00:00
|
|
|
|
|
|
|
// 'name' => 'type' format for columns
|
|
|
|
$column = array('type' => 'integer', 'name' => 'client_id');
|
|
|
|
$result = $this->db->buildColumn($column);
|
|
|
|
$expected = '[client_id] int NULL';
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-08-02 06:47:28 +00:00
|
|
|
|
|
|
|
$column = array('type' => 'string', 'name' => 'name');
|
|
|
|
$result = $this->db->buildColumn($column);
|
|
|
|
$expected = '[name] varchar(255) NULL';
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-08-02 06:47:28 +00:00
|
|
|
|
2011-05-18 18:12:36 +00:00
|
|
|
$column = array('name' => 'name', 'type' => 'string', 'null' => false, 'default' => '', 'length' => '255');
|
2009-08-02 06:47:28 +00:00
|
|
|
$result = $this->db->buildColumn($column);
|
|
|
|
$expected = '[name] varchar(255) DEFAULT \'\' NOT NULL';
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-08-02 06:47:28 +00:00
|
|
|
|
|
|
|
$column = array('name' => 'name', 'type' => 'string', 'null' => false, 'length' => '255');
|
|
|
|
$result = $this->db->buildColumn($column);
|
|
|
|
$expected = '[name] varchar(255) NOT NULL';
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-08-02 06:47:28 +00:00
|
|
|
|
|
|
|
$column = array('name' => 'name', 'type' => 'string', 'null' => false, 'default' => null, 'length' => '255');
|
|
|
|
$result = $this->db->buildColumn($column);
|
|
|
|
$expected = '[name] varchar(255) NOT NULL';
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-08-02 06:47:28 +00:00
|
|
|
|
|
|
|
$column = array('name' => 'name', 'type' => 'string', 'null' => true, 'default' => null, 'length' => '255');
|
|
|
|
$result = $this->db->buildColumn($column);
|
|
|
|
$expected = '[name] varchar(255) NULL';
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-08-02 06:47:28 +00:00
|
|
|
|
|
|
|
$column = array('name' => 'name', 'type' => 'string', 'null' => true, 'default' => '', 'length' => '255');
|
|
|
|
$result = $this->db->buildColumn($column);
|
|
|
|
$expected = '[name] varchar(255) DEFAULT \'\'';
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-08-02 06:47:28 +00:00
|
|
|
}
|
2009-09-03 01:07:58 +00:00
|
|
|
/**
|
|
|
|
* testBuildIndex method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function testBuildIndex() {
|
2009-09-03 01:07:58 +00:00
|
|
|
$indexes = array(
|
|
|
|
'PRIMARY' => array('column' => 'id', 'unique' => 1),
|
|
|
|
'client_id' => array('column' => 'client_id', 'unique' => 1)
|
|
|
|
);
|
|
|
|
$result = $this->db->buildIndex($indexes, 'items');
|
|
|
|
$expected = array(
|
|
|
|
'PRIMARY KEY ([id])',
|
|
|
|
'ALTER TABLE items ADD CONSTRAINT client_id UNIQUE([client_id]);'
|
|
|
|
);
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-09-03 01:07:58 +00:00
|
|
|
|
|
|
|
$indexes = array('client_id' => array('column' => 'client_id'));
|
|
|
|
$result = $this->db->buildIndex($indexes, 'items');
|
|
|
|
$this->assertEqual($result, array());
|
|
|
|
|
|
|
|
$indexes = array('client_id' => array('column' => array('client_id', 'period_id'), 'unique' => 1));
|
|
|
|
$result = $this->db->buildIndex($indexes, 'items');
|
|
|
|
$expected = array('ALTER TABLE items ADD CONSTRAINT client_id UNIQUE([client_id], [period_id]);');
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-09-03 01:07:58 +00:00
|
|
|
}
|
2009-03-18 17:55:58 +00:00
|
|
|
/**
|
|
|
|
* testUpdateAllSyntax method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function testUpdateAllSyntax() {
|
2009-01-16 19:08:44 +00:00
|
|
|
$fields = array('MssqlTestModel.client_id' => '[MssqlTestModel].[client_id] + 1');
|
|
|
|
$conditions = array('MssqlTestModel.updated <' => date('2009-01-01 00:00:00'));
|
2009-04-28 22:20:04 +00:00
|
|
|
$this->db->update($this->model, $fields, null, $conditions);
|
2009-01-16 19:08:44 +00:00
|
|
|
|
|
|
|
$result = $this->db->getLastQuery();
|
|
|
|
$this->assertNoPattern('/MssqlTestModel/', $result);
|
|
|
|
$this->assertPattern('/^UPDATE \[mssql_test_models\]/', $result);
|
|
|
|
$this->assertPattern('/SET \[client_id\] = \[client_id\] \+ 1/', $result);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-04-29 16:26:03 +00:00
|
|
|
/**
|
|
|
|
* testGetPrimaryKey method
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function testGetPrimaryKey() {
|
2009-04-29 16:26:03 +00:00
|
|
|
$schema = $this->model->schema();
|
2011-05-18 18:12:36 +00:00
|
|
|
$result = $this->db->getPrimaryKey($schema);
|
|
|
|
$this->assertEqual($result, 'id');
|
|
|
|
|
2009-04-29 16:26:03 +00:00
|
|
|
unset($schema['id']['key']);
|
2011-05-18 18:12:36 +00:00
|
|
|
$result = $this->db->getPrimaryKey($schema);
|
2009-04-29 16:26:03 +00:00
|
|
|
$this->assertNull($result);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-04-29 16:39:42 +00:00
|
|
|
/**
|
|
|
|
* testInsertMulti
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2010-04-05 03:19:38 +00:00
|
|
|
public function testInsertMulti() {
|
2009-04-29 16:39:42 +00:00
|
|
|
$fields = array('id', 'name', 'login');
|
2011-05-18 18:12:36 +00:00
|
|
|
$values = array(
|
|
|
|
array(1, 'Larry', 'PhpNut'),
|
|
|
|
array(2, 'Renan', 'renan.saddam'));
|
2009-04-29 16:39:42 +00:00
|
|
|
$this->db->simulated = array();
|
2011-05-18 18:12:36 +00:00
|
|
|
$this->db->insertMulti($this->model, $fields, $values, $this->model->schema());
|
2009-04-29 16:39:42 +00:00
|
|
|
$result = $this->db->simulated;
|
|
|
|
$expected = array(
|
|
|
|
'SET IDENTITY_INSERT [mssql_test_models] ON',
|
|
|
|
'SET IDENTITY_INSERT [mssql_test_models] OFF'
|
|
|
|
);
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-04-29 16:39:42 +00:00
|
|
|
|
|
|
|
$fields = array('name', 'login');
|
2011-05-18 18:12:36 +00:00
|
|
|
$values = array(
|
|
|
|
array('Larry', 'PhpNut'),
|
|
|
|
array('Renan', 'renan.saddam'));
|
2009-04-29 16:39:42 +00:00
|
|
|
$this->db->simulated = array();
|
2011-05-18 18:12:36 +00:00
|
|
|
$this->db->insertMulti($this->model, $fields, $values, $this->model->schema());
|
2009-04-29 16:39:42 +00:00
|
|
|
$result = $this->db->simulated;
|
2011-05-18 18:12:36 +00:00
|
|
|
$expected = array();
|
2011-05-16 22:49:00 +00:00
|
|
|
$this->assertEqual($expected, $result);
|
2009-04-29 16:39:42 +00:00
|
|
|
}
|
2008-05-30 11:40:08 +00:00
|
|
|
}
|