2008-07-30 19:18:48 +00:00
|
|
|
<?php
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
2009-03-18 17:55:58 +00:00
|
|
|
* DboSqliteTest file
|
2008-07-30 19:18:48 +00:00
|
|
|
*
|
|
|
|
* PHP versions 4 and 5
|
|
|
|
*
|
2008-10-30 17:30:26 +00:00
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://www.cakephp.org)
|
2009-11-06 04:34:28 +00:00
|
|
|
* Copyright 2005-2009, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
2008-07-30 19:18:48 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2009-11-06 04:34:28 +00:00
|
|
|
* @copyright Copyright 2005-2009, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
2008-10-30 17:30:26 +00:00
|
|
|
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
|
|
|
* @package cake
|
|
|
|
* @subpackage cake.cake.libs
|
|
|
|
* @since CakePHP(tm) v 1.2.0
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
2008-07-30 19:18:48 +00:00
|
|
|
*/
|
2008-12-10 03:38:10 +00:00
|
|
|
App::import('Core', array('Model', 'DataSource', 'DboSource', 'DboSqlite'));
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
2009-03-18 17:55:58 +00:00
|
|
|
* DboSqliteTestDb class
|
2008-07-30 19:18:48 +00:00
|
|
|
*
|
2009-03-18 17:55:58 +00:00
|
|
|
* @package cake
|
2008-10-30 17:30:26 +00:00
|
|
|
* @subpackage cake.tests.cases.libs.model.datasources
|
2008-07-30 19:18:48 +00:00
|
|
|
*/
|
|
|
|
class DboSqliteTestDb extends DboSqlite {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
|
|
|
* simulated property
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
var $simulated = array();
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
|
|
|
* execute method
|
|
|
|
*
|
|
|
|
* @param mixed $sql
|
|
|
|
* @access protected
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function _execute($sql) {
|
|
|
|
$this->simulated[] = $sql;
|
|
|
|
return null;
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
|
|
|
* getLastQuery method
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function getLastQuery() {
|
|
|
|
return $this->simulated[count($this->simulated) - 1];
|
|
|
|
}
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
2009-03-18 17:55:58 +00:00
|
|
|
* DboSqliteTest class
|
2008-07-30 19:18:48 +00:00
|
|
|
*
|
2009-03-18 17:55:58 +00:00
|
|
|
* @package cake
|
2008-10-30 17:30:26 +00:00
|
|
|
* @subpackage cake.tests.cases.libs.model.datasources.dbo
|
2008-07-30 19:18:48 +00:00
|
|
|
*/
|
|
|
|
class DboSqliteTest extends CakeTestCase {
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
|
|
|
* Do not automatically load fixtures for each test, they will be loaded manually using CakeTestCase::loadFixtures
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
var $autoFixtures = false;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
|
|
|
* Fixtures
|
|
|
|
*
|
|
|
|
* @var object
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
var $fixtures = array('core.user');
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
|
|
|
* Actual DB connection used in testing
|
|
|
|
*
|
2009-03-17 21:10:28 +00:00
|
|
|
* @var DboSource
|
2008-07-30 19:18:48 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
var $db = null;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
|
|
|
* Simulated DB connection used in testing
|
|
|
|
*
|
2009-03-17 21:10:28 +00:00
|
|
|
* @var DboSource
|
2008-07-30 19:18:48 +00:00
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
var $db2 = null;
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
|
|
|
* Skip if cannot connect to SQLite
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function skip() {
|
|
|
|
$this->_initDb();
|
2009-03-21 23:55:39 +00:00
|
|
|
$this->skipUnless($this->db->config['driver'] == 'sqlite', '%s SQLite connection not available');
|
2008-07-30 19:18:48 +00:00
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
|
|
|
* Set up test suite database connection
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function startTest() {
|
|
|
|
$this->_initDb();
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
|
|
|
* Sets up a Dbo class instance for testing
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function setUp() {
|
|
|
|
Configure::write('Cache.disable', true);
|
|
|
|
$this->startTest();
|
|
|
|
$this->db =& ConnectionManager::getDataSource('test_suite');
|
|
|
|
$this->db2 = new DboSqliteTestDb($this->db->config, false);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
|
|
|
* Sets up a Dbo class instance for testing
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function tearDown() {
|
|
|
|
Configure::write('Cache.disable', false);
|
|
|
|
unset($this->db2);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-07-30 19:18:48 +00:00
|
|
|
/**
|
|
|
|
* Tests that SELECT queries from DboSqlite::listSources() are not cached
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function testTableListCacheDisabling() {
|
|
|
|
$this->assertFalse(in_array('foo_test', $this->db->listSources()));
|
|
|
|
|
|
|
|
$this->db->query('CREATE TABLE foo_test (test VARCHAR(255));');
|
|
|
|
$this->assertTrue(in_array('foo_test', $this->db->listSources()));
|
|
|
|
|
|
|
|
$this->db->query('DROP TABLE foo_test;');
|
|
|
|
$this->assertFalse(in_array('foo_test', $this->db->listSources()));
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-12-10 03:38:10 +00:00
|
|
|
/**
|
|
|
|
* test Index introspection.
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
* @return void
|
2009-03-17 21:10:28 +00:00
|
|
|
*/
|
2008-12-10 03:38:10 +00:00
|
|
|
function testIndex() {
|
|
|
|
$name = $this->db->fullTableName('with_a_key');
|
|
|
|
$this->db->query('CREATE TABLE ' . $name . ' ("id" int(11) PRIMARY KEY, "bool" int(1), "small_char" varchar(50), "description" varchar(40) );');
|
|
|
|
$this->db->query('CREATE INDEX pointless_bool ON ' . $name . '("bool")');
|
|
|
|
$this->db->query('CREATE UNIQUE INDEX char_index ON ' . $name . '("small_char")');
|
|
|
|
$expected = array(
|
|
|
|
'PRIMARY' => array('column' => 'id', 'unique' => 1),
|
|
|
|
'pointless_bool' => array('column' => 'bool', 'unique' => 0),
|
|
|
|
'char_index' => array('column' => 'small_char', 'unique' => 1),
|
2009-03-17 21:10:28 +00:00
|
|
|
|
2008-12-10 03:38:10 +00:00
|
|
|
);
|
|
|
|
$result = $this->db->index($name);
|
|
|
|
$this->assertEqual($expected, $result);
|
|
|
|
$this->db->query('DROP TABLE ' . $name);
|
2009-03-17 21:10:28 +00:00
|
|
|
|
2008-12-10 03:38:10 +00:00
|
|
|
$this->db->query('CREATE TABLE ' . $name . ' ("id" int(11) PRIMARY KEY, "bool" int(1), "small_char" varchar(50), "description" varchar(40) );');
|
|
|
|
$this->db->query('CREATE UNIQUE INDEX multi_col ON ' . $name . '("small_char", "bool")');
|
|
|
|
$expected = array(
|
|
|
|
'PRIMARY' => array('column' => 'id', 'unique' => 1),
|
|
|
|
'multi_col' => array('column' => array('small_char', 'bool'), 'unique' => 1),
|
|
|
|
);
|
|
|
|
$result = $this->db->index($name);
|
|
|
|
$this->assertEqual($expected, $result);
|
|
|
|
$this->db->query('DROP TABLE ' . $name);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2008-08-12 21:08:51 +00:00
|
|
|
/**
|
|
|
|
* Tests that cached table descriptions are saved under the sanitized key name
|
|
|
|
*
|
|
|
|
* @access public
|
|
|
|
*/
|
|
|
|
function testCacheKeyName() {
|
|
|
|
Configure::write('Cache.disable', false);
|
|
|
|
|
|
|
|
$dbName = 'db' . rand() . '$(*%&).db';
|
|
|
|
$this->assertFalse(file_exists(TMP . $dbName));
|
|
|
|
|
|
|
|
$config = $this->db->config;
|
|
|
|
$db = new DboSqlite(array_merge($this->db->config, array('database' => TMP . $dbName)));
|
|
|
|
$this->assertTrue(file_exists(TMP . $dbName));
|
|
|
|
|
|
|
|
$db->execute("CREATE TABLE test_list (id VARCHAR(255));");
|
|
|
|
|
|
|
|
$db->cacheSources = true;
|
|
|
|
$this->assertEqual($db->listSources(), array('test_list'));
|
|
|
|
$db->cacheSources = false;
|
|
|
|
|
|
|
|
$fileName = '_' . preg_replace('/[^A-Za-z0-9_\-+]/', '_', TMP . $dbName) . '_list';
|
2009-03-17 21:10:28 +00:00
|
|
|
|
2008-08-12 21:08:51 +00:00
|
|
|
$result = Cache::read($fileName, '_cake_model_');
|
|
|
|
$this->assertEqual($result, array('test_list'));
|
|
|
|
|
|
|
|
Cache::delete($fileName, '_cake_model_');
|
|
|
|
Configure::write('Cache.disable', true);
|
|
|
|
}
|
2009-07-24 19:18:37 +00:00
|
|
|
|
2009-10-29 05:36:15 +00:00
|
|
|
/**
|
|
|
|
* test building columns with SQLite
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
**/
|
|
|
|
function testBuildColumn() {
|
|
|
|
$data = array(
|
|
|
|
'name' => 'int_field',
|
|
|
|
'type' => 'integer',
|
|
|
|
'null' => false,
|
|
|
|
);
|
|
|
|
$result = $this->db->buildColumn($data);
|
|
|
|
$expected = '"int_field" integer(11) NOT NULL';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'name' => 'name',
|
|
|
|
'type' => 'string',
|
|
|
|
'length' => 20,
|
|
|
|
'null' => false,
|
|
|
|
);
|
|
|
|
$result = $this->db->buildColumn($data);
|
|
|
|
$expected = '"name" varchar(20) NOT NULL';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'name' => 'testName',
|
|
|
|
'type' => 'string',
|
|
|
|
'length' => 20,
|
|
|
|
'default' => null,
|
|
|
|
'null' => true,
|
|
|
|
'collate' => 'NOCASE'
|
|
|
|
);
|
|
|
|
$result = $this->db->buildColumn($data);
|
|
|
|
$expected = '"testName" varchar(20) DEFAULT NULL COLLATE NOCASE';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'name' => 'testName',
|
|
|
|
'type' => 'string',
|
|
|
|
'length' => 20,
|
|
|
|
'default' => 'test-value',
|
|
|
|
'null' => false,
|
|
|
|
);
|
|
|
|
$result = $this->db->buildColumn($data);
|
|
|
|
$expected = '"testName" varchar(20) DEFAULT \'test-value\' NOT NULL';
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'name' => 'testName',
|
|
|
|
'type' => 'integer',
|
|
|
|
'length' => 10,
|
|
|
|
'default' => 10,
|
|
|
|
'null' => false,
|
|
|
|
);
|
|
|
|
$result = $this->db->buildColumn($data);
|
|
|
|
$expected = '"testName" integer(10) DEFAULT \'10\' NOT NULL';
|
|
|
|
$this->assertEqual($result, $expected);
|
2009-10-29 06:03:50 +00:00
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'name' => 'testName',
|
|
|
|
'type' => 'integer',
|
|
|
|
'length' => 10,
|
|
|
|
'default' => 10,
|
|
|
|
'null' => false,
|
|
|
|
'collate' => 'BADVALUE'
|
|
|
|
);
|
|
|
|
$result = $this->db->buildColumn($data);
|
|
|
|
$expected = '"testName" integer(10) DEFAULT \'10\' NOT NULL';
|
|
|
|
$this->assertEqual($result, $expected);
|
2009-10-29 05:36:15 +00:00
|
|
|
}
|
|
|
|
|
2009-06-02 03:03:51 +00:00
|
|
|
/**
|
|
|
|
* test describe() and normal results.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
**/
|
|
|
|
function testDescribe() {
|
|
|
|
$Model =& new Model(array('name' => 'User', 'ds' => 'test_suite', 'table' => 'users'));
|
|
|
|
$result = $this->db->describe($Model);
|
|
|
|
$expected = array(
|
|
|
|
'id' => array(
|
|
|
|
'type' => 'integer',
|
|
|
|
'key' => 'primary',
|
|
|
|
'null' => false,
|
|
|
|
'default' => null,
|
|
|
|
'length' => 11
|
|
|
|
),
|
|
|
|
'user' => array(
|
|
|
|
'type' => 'string',
|
|
|
|
'length' => 255,
|
|
|
|
'null' => false,
|
|
|
|
'default' => null
|
|
|
|
),
|
|
|
|
'password' => array(
|
|
|
|
'type' => 'string',
|
|
|
|
'length' => 255,
|
|
|
|
'null' => false,
|
|
|
|
'default' => null
|
|
|
|
),
|
|
|
|
'created' => array(
|
|
|
|
'type' => 'datetime',
|
|
|
|
'null' => true,
|
|
|
|
'default' => null,
|
|
|
|
'length' => null,
|
|
|
|
),
|
|
|
|
'updated' => array(
|
|
|
|
'type' => 'datetime',
|
|
|
|
'null' => true,
|
|
|
|
'default' => null,
|
|
|
|
'length' => null,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$this->assertEqual($result, $expected);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* test that describe does not corrupt UUID primary keys
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
**/
|
|
|
|
function testDescribeWithUuidPrimaryKey() {
|
|
|
|
$tableName = 'uuid_tests';
|
|
|
|
$this->db->query("CREATE TABLE {$tableName} (id VARCHAR(36) PRIMARY KEY, name VARCHAR, created DATETIME, modified DATETIME)");
|
|
|
|
$Model =& new Model(array('name' => 'UuidTest', 'ds' => 'test_suite', 'table' => 'uuid_tests'));
|
|
|
|
$result = $this->db->describe($Model);
|
|
|
|
$expected = array(
|
|
|
|
'type' => 'string',
|
|
|
|
'length' => 36,
|
|
|
|
'null' => false,
|
|
|
|
'default' => null,
|
|
|
|
'key' => 'primary',
|
|
|
|
);
|
|
|
|
$this->assertEqual($result['id'], $expected);
|
|
|
|
$this->db->query('DROP TABLE ' . $tableName);
|
|
|
|
}
|
2008-07-30 19:18:48 +00:00
|
|
|
}
|
|
|
|
?>
|