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

52 lines
1.1 KiB
PHP
Raw Normal View History

2012-03-09 16:30:33 -05:00
<?php
/**
* OpenSQLManager
*
* Free Database manager for Open Source Databases
*
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/OpenSQLManager
2012-04-02 10:52:46 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
2012-03-09 16:30:33 -05:00
*/
// --------------------------------------------------------------------------
2012-03-19 14:30:52 -04:00
class MySQLQBTest extends QBTest {
2012-03-09 16:30:33 -05:00
function __construct()
2012-03-15 16:39:01 -04:00
{
parent::__construct();
2012-04-02 10:52:46 -04:00
2012-03-15 16:39:01 -04:00
// Attempt to connect, if there is a test config file
if (is_file("../test_config.json"))
{
$params = json_decode(file_get_contents("../test_config.json"));
$params = $params->mysql;
$params->type = "mysql";
2012-04-02 10:52:46 -04:00
2012-03-15 16:39:01 -04:00
$this->db = new Query_Builder($params);
2012-04-02 10:52:46 -04:00
// echo '<hr /> MySQL Queries <hr />';
2012-03-15 16:39:01 -04:00
}
2012-03-23 15:29:34 -04:00
elseif (($var = getenv('CI')))
{
$params = array(
'host' => '127.0.0.1',
'port' => '3306',
2012-04-02 10:52:46 -04:00
'conn_db' => 'test',
2012-03-23 15:29:34 -04:00
'user' => 'root',
'pass' => NULL,
'type' => 'mysql'
);
2012-04-02 10:52:46 -04:00
2012-03-23 15:29:34 -04:00
$this->db = new Query_Builder($params);
}
2012-03-15 16:39:01 -04:00
}
2012-04-02 10:52:46 -04:00
2012-03-15 16:39:01 -04:00
function TestExists()
2012-03-09 16:30:33 -05:00
{
2012-03-15 16:39:01 -04:00
$this->assertTrue(in_array('mysql', pdo_drivers()));
}
2012-03-09 16:30:33 -05:00
}