2016-10-12 22:12:25 -04:00
|
|
|
<?php declare(strict_types=1);
|
2012-03-15 09:25:18 -04:00
|
|
|
/**
|
|
|
|
* Query
|
|
|
|
*
|
2016-10-12 22:12:25 -04:00
|
|
|
* SQL Query Builder / Database Abstraction Layer
|
2012-03-15 09:25:18 -04:00
|
|
|
*
|
2018-01-19 16:50:34 -05:00
|
|
|
* PHP version 7.1
|
2016-10-12 22:12:25 -04:00
|
|
|
*
|
|
|
|
* @package Query
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2018-01-19 16:50:34 -05:00
|
|
|
* @copyright 2012 - 2018 Timothy J. Warren
|
2016-10-12 22:12:25 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
* @link https://git.timshomepage.net/aviat4ion/Query
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
2018-01-19 16:48:52 -05:00
|
|
|
namespace Query\Tests\Drivers\MySQL;
|
|
|
|
|
|
|
|
use PDO;
|
|
|
|
use Query\Tests\BaseQueryBuilderTest;
|
2016-10-12 22:12:25 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
/**
|
|
|
|
* @requires extension pdo_mysql
|
|
|
|
*/
|
2018-01-19 16:48:52 -05:00
|
|
|
class MySQLQueryBuilderTest extends BaseQueryBuilderTest {
|
2012-03-15 09:25:18 -04:00
|
|
|
|
2015-07-30 16:40:30 -04:00
|
|
|
public static function setUpBeforeClass()
|
|
|
|
{
|
2015-11-10 16:29:17 -05:00
|
|
|
$params = get_json_config();
|
2016-07-15 16:17:49 -04:00
|
|
|
if (($var = getenv('TRAVIS'))) // 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
|
|
|
}
|
2015-11-10 16:29:17 -05:00
|
|
|
// Attempt to connect, if there is a test config file
|
|
|
|
else if ($params !== FALSE)
|
|
|
|
{
|
|
|
|
$params = $params->mysql;
|
|
|
|
$params->type = "MySQL";
|
|
|
|
$params->options = array();
|
|
|
|
$params->options[PDO::ATTR_PERSISTENT] = TRUE;
|
|
|
|
}
|
2012-11-08 14:28:49 -05:00
|
|
|
|
2015-07-30 16:40:30 -04:00
|
|
|
self::$db = Query($params);
|
|
|
|
}
|
2012-03-15 15:46:04 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function testExists()
|
2012-03-15 09:25:18 -04:00
|
|
|
{
|
2018-01-19 16:48:52 -05:00
|
|
|
$this->assertTrue(\in_array('mysql', PDO::getAvailableDrivers(), TRUE));
|
2012-03-15 15:46:04 -04:00
|
|
|
}
|
2014-04-02 17:08:50 -04:00
|
|
|
|
2014-02-04 20:59:30 -05:00
|
|
|
public function testQueryExplain()
|
|
|
|
{
|
2015-07-30 16:40:30 -04:00
|
|
|
$query = self::$db->select('id, key as k, val')
|
2014-02-04 20:59:30 -05:00
|
|
|
->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
|
|
|
|
2016-07-19 14:18:48 -04:00
|
|
|
// The exact results are version dependent
|
|
|
|
// The important thing is that there is an array
|
|
|
|
// of results returned
|
|
|
|
$this->assertTrue(is_array($res));
|
2016-07-19 15:19:48 -04:00
|
|
|
$this->assertTrue(count(array_keys($res[0])) > 1);
|
|
|
|
$this->assertTrue(array_key_exists('table', $res[0]));
|
2014-02-04 20:59:30 -05:00
|
|
|
}
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|