2012-03-15 09:25:18 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Query
|
|
|
|
*
|
|
|
|
* Free Query Builder / Database Abstraction Layer
|
|
|
|
*
|
2012-04-20 13:17:39 -04:00
|
|
|
* @package Query
|
|
|
|
* @author Timothy J. Warren
|
2014-02-18 15:18:01 -05:00
|
|
|
* @copyright Copyright (c) 2012 - 2014
|
2012-03-15 09:25:18 -04:00
|
|
|
* @link https://github.com/aviat4ion/Query
|
2012-04-20 13:17:39 -04:00
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
/**
|
|
|
|
* @requires extension pdo_mysql
|
|
|
|
*/
|
2012-03-19 13:24:36 -04:00
|
|
|
class MySQLQBTest extends QBTest {
|
2012-03-15 09:25:18 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function setUp()
|
2012-03-15 15:46:04 -04:00
|
|
|
{
|
|
|
|
// Attempt to connect, if there is a test config file
|
2014-02-18 19:29:58 -05:00
|
|
|
if (is_file(QTEST_DIR . "/settings.json"))
|
2012-03-15 15:46:04 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$params = json_decode(file_get_contents(QTEST_DIR . "/settings.json"));
|
2012-03-15 15:46:04 -04:00
|
|
|
$params = $params->mysql;
|
2012-07-05 14:19:49 -04:00
|
|
|
$params->type = "MySQL";
|
2014-02-18 14:50:20 -05:00
|
|
|
$params->options = array();
|
|
|
|
$params->options[PDO::ATTR_PERSISTENT] = TRUE;
|
2012-03-15 15:46:04 -04:00
|
|
|
}
|
2014-02-07 16:53:01 -05:00
|
|
|
elseif (($var = getenv('CI'))) // Travis CI Connection Info
|
2012-03-22 16:10:12 -04:00
|
|
|
{
|
|
|
|
$params = array(
|
|
|
|
'host' => '127.0.0.1',
|
|
|
|
'port' => '3306',
|
2012-04-10 14:14:31 -04:00
|
|
|
'database' => 'test',
|
2014-04-09 10:30:01 -04:00
|
|
|
'prefix' => 'create_',
|
2012-03-22 16:10:12 -04:00
|
|
|
'user' => 'root',
|
2012-03-22 16:14:36 -04:00
|
|
|
'pass' => NULL,
|
2014-02-18 19:45:08 -05:00
|
|
|
'type' => 'mysql'
|
2012-03-22 16:10:12 -04:00
|
|
|
);
|
2012-07-03 13:00:17 -04:00
|
|
|
}
|
2012-11-08 14:28:49 -05:00
|
|
|
|
|
|
|
$this->db = Query($params);
|
2014-06-09 17:02:14 -04:00
|
|
|
|
|
|
|
//echo "Mysql Queries <br />";
|
2012-03-15 15:46:04 -04:00
|
|
|
}
|
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testExists()
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2012-07-03 13:00:17 -04:00
|
|
|
$this->assertTrue(in_array('mysql', PDO::getAvailableDrivers()));
|
2012-03-15 15:46:04 -04:00
|
|
|
}
|
2014-04-02 17:08:50 -04:00
|
|
|
|
2014-02-04 20:59:30 -05:00
|
|
|
// --------------------------------------------------------------------------
|
2014-04-02 17:08:50 -04:00
|
|
|
|
2014-02-04 20:59:30 -05:00
|
|
|
public function testQueryExplain()
|
|
|
|
{
|
|
|
|
$query = $this->db->select('id, key as k, val')
|
|
|
|
->explain()
|
|
|
|
->where('id >', 1)
|
|
|
|
->where('id <', 900)
|
2014-02-18 19:29:58 -05:00
|
|
|
->get('test', 2, 1);
|
2014-04-02 17:08:50 -04:00
|
|
|
|
2014-02-04 20:59:30 -05:00
|
|
|
$res = $query->fetchAll(PDO::FETCH_ASSOC);
|
2014-04-02 17:08:50 -04:00
|
|
|
|
2014-02-04 20:59:30 -05:00
|
|
|
$expected = array (
|
|
|
|
array (
|
|
|
|
'id' => '1',
|
|
|
|
'select_type' => 'SIMPLE',
|
2014-04-09 10:30:01 -04:00
|
|
|
'table' => 'create_test',
|
2014-02-04 20:59:30 -05:00
|
|
|
'type' => 'range',
|
|
|
|
'possible_keys' => 'PRIMARY',
|
|
|
|
'key' => 'PRIMARY',
|
|
|
|
'key_len' => '4',
|
|
|
|
'ref' => NULL,
|
|
|
|
'rows' => '1',
|
|
|
|
'filtered' => '100.00',
|
|
|
|
'Extra' => 'Using where',
|
|
|
|
)
|
|
|
|
);
|
2014-04-02 17:08:50 -04:00
|
|
|
|
2014-02-04 20:59:30 -05:00
|
|
|
$this->assertEqual($expected, $res);
|
|
|
|
}
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|