2012-03-15 09:25:18 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2012-04-10 14:06:34 -04:00
|
|
|
* OpenSQLManager
|
2012-03-15 09:25:18 -04:00
|
|
|
*
|
2012-04-10 14:06:34 -04:00
|
|
|
* Free Database manager for Open Source Databases
|
2012-03-15 09:25:18 -04:00
|
|
|
*
|
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2012
|
2012-04-10 14:06:34 -04:00
|
|
|
* @link https://github.com/aviat4ion/OpenSQLManager
|
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
2012-03-15 09:25:18 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2012-03-19 13:24:36 -04:00
|
|
|
class PgSQLQBTest extends QBTest {
|
2012-03-15 09:25:18 -04:00
|
|
|
|
2012-04-24 14:00:44 -04:00
|
|
|
public function __construct()
|
2012-03-19 10:40:16 -04:00
|
|
|
{
|
|
|
|
parent::__construct();
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 10:40:16 -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-19 10:40:16 -04:00
|
|
|
{
|
2012-04-30 16:06:06 -04:00
|
|
|
$params = json_decode(file_get_contents(QBASE_DIR . "test_config.json"));
|
2012-03-19 10:40:16 -04:00
|
|
|
$params = $params->pgsql;
|
|
|
|
$params->type = "pgsql";
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-19 10:40:16 -04:00
|
|
|
$this->db = new Query_Builder($params);
|
2012-04-10 14:06:34 -04:00
|
|
|
|
|
|
|
// echo '<hr /> Postgres Queries <hr />';
|
|
|
|
|
2012-03-19 10:40:16 -04:00
|
|
|
}
|
2012-03-22 16:33:28 -04:00
|
|
|
elseif (($var = getenv('CI')))
|
2012-03-22 16:26:17 -04:00
|
|
|
{
|
|
|
|
$params = array(
|
|
|
|
'host' => '127.0.0.1',
|
|
|
|
'port' => '5432',
|
2012-04-10 14:13:08 -04:00
|
|
|
'database' => 'test',
|
2012-03-22 16:26:17 -04:00
|
|
|
'user' => 'postgres',
|
2012-03-22 16:38:07 -04:00
|
|
|
'pass' => '',
|
2012-03-22 16:26:17 -04:00
|
|
|
'type' => 'pgsql'
|
|
|
|
);
|
2012-04-10 14:06:34 -04:00
|
|
|
|
2012-03-22 16:26:17 -04:00
|
|
|
$this->db = new Query_Builder($params);
|
|
|
|
}
|
2012-03-19 10:40:16 -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-19 10:40:16 -04:00
|
|
|
{
|
2012-07-05 14:19:49 -04:00
|
|
|
$this->assertTrue(in_array('pgsql', PDO::getAvailableDrivers()));
|
2012-03-19 10:40:16 -04:00
|
|
|
}
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|