Query/tests/databases/mysql/mysql-qb.php

52 lines
1.2 KiB
PHP
Raw Normal View History

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
2013-01-02 14:26:42 -05:00
* @copyright Copyright (c) 2012 - 2013
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
*/
// --------------------------------------------------------------------------
class MySQLQBTest extends QBTest {
2012-03-15 09:25:18 -04:00
2012-04-24 14:00:44 -04:00
public function __construct()
2012-03-15 15:46:04 -04:00
{
parent::__construct();
2012-04-10 14:06:34 -04:00
2012-03-15 15:46:04 -04:00
// Attempt to connect, if there is a test config file
2012-04-30 16:06:06 -04:00
if (is_file(QBASE_DIR . "test_config.json"))
2012-03-15 15:46:04 -04:00
{
2012-04-30 16:06:06 -04:00
$params = json_decode(file_get_contents(QBASE_DIR . "test_config.json"));
2012-03-15 15:46:04 -04:00
$params = $params->mysql;
$params->type = "MySQL";
$params->prefix = "create_";;
2012-03-15 15:46:04 -04:00
}
2012-03-22 16:33:28 -04:00
elseif (($var = getenv('CI')))
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',
2012-03-22 16:10:12 -04:00
'user' => 'root',
2012-03-22 16:14:36 -04:00
'pass' => NULL,
2012-11-07 08:42:34 -05:00
'type' => 'mysql',
'prefix' => 'create_'
2012-03-22 16:10:12 -04:00
);
}
$this->db = Query($params);
2012-03-15 15:46:04 -04:00
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-10 14:06:34 -04:00
2012-04-24 14:00:44 -04:00
public function TestExists()
2012-03-15 09:25:18 -04:00
{
$this->assertTrue(in_array('mysql', PDO::getAvailableDrivers()));
2012-03-15 15:46:04 -04:00
}
2012-03-15 09:25:18 -04:00
}