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
|
2014-02-18 15:18:01 -05:00
|
|
|
* @copyright Copyright (c) 2012 - 2014
|
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
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
/**
|
|
|
|
* @requires extension pdo_pgsql
|
|
|
|
*/
|
2012-03-19 13:24:36 -04:00
|
|
|
class PgSQLQBTest extends QBTest {
|
2012-03-15 09:25:18 -04:00
|
|
|
|
2014-02-14 22:08:19 -05:00
|
|
|
public function setUp()
|
2012-03-19 10:40:16 -04:00
|
|
|
{
|
2014-02-17 19:34:47 -05:00
|
|
|
// If the database isn't installed, skip the tests
|
|
|
|
if ( ! class_exists("PgSQL"))
|
|
|
|
{
|
2014-02-18 14:50:20 -05:00
|
|
|
$this->markTestSkipped("Postgres extension for PDO not loaded");
|
2014-02-17 19:34:47 -05:00
|
|
|
}
|
|
|
|
|
2012-03-19 10:40:16 -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-19 10:40:16 -04:00
|
|
|
{
|
2014-02-18 19:29:58 -05:00
|
|
|
$params = json_decode(file_get_contents(QTEST_DIR . "/settings.json"));
|
2012-03-19 10:40:16 -04:00
|
|
|
$params = $params->pgsql;
|
|
|
|
$params->type = "pgsql";
|
2012-11-07 08:42:34 -05:00
|
|
|
$params->prefix = 'create_';
|
2014-02-18 14:50:20 -05:00
|
|
|
$params->options = array();
|
|
|
|
$params->options[PDO::ATTR_PERSISTENT] = TRUE;
|
2012-03-19 10:40:16 -04:00
|
|
|
}
|
2014-02-07 16:53:01 -05:00
|
|
|
elseif (($var = getenv('CI'))) // Travis CI Connection Info
|
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-11-07 08:42:34 -05:00
|
|
|
'type' => 'pgsql',
|
2012-11-07 08:46:04 -05:00
|
|
|
'prefix' => 'create_'
|
2012-03-22 16:26:17 -04:00
|
|
|
);
|
|
|
|
}
|
2012-11-08 14:28:49 -05:00
|
|
|
|
|
|
|
$this->db = Query($params);
|
2012-03-19 10:40:16 -04:00
|
|
|
}
|
2012-11-07 08:46:04 -05: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-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
|
|
|
}
|
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)
|
|
|
|
->get('create_test', 2, 1);
|
|
|
|
|
|
|
|
$res = $query->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
|
|
|
|
$expected = array (
|
|
|
|
array (
|
|
|
|
'QUERY PLAN' => 'Limit (cost=6.41..10.64 rows=2 width=68)',
|
|
|
|
),
|
|
|
|
array (
|
|
|
|
'QUERY PLAN' => ' Output: id, key, val',
|
|
|
|
),
|
|
|
|
array (
|
|
|
|
'QUERY PLAN' => ' -> Bitmap Heap Scan on public.create_test (cost=4.29..12.76 rows=4 width=68)',
|
|
|
|
),
|
|
|
|
array (
|
|
|
|
'QUERY PLAN' => ' Output: id, key, val',
|
|
|
|
),
|
|
|
|
array (
|
|
|
|
'QUERY PLAN' => ' Recheck Cond: ((create_test.id > 1) AND (create_test.id < 900))',
|
|
|
|
),
|
|
|
|
array (
|
|
|
|
'QUERY PLAN' => ' -> Bitmap Index Scan on create_test_pkey (cost=0.00..4.29 rows=4 width=0)',
|
|
|
|
),
|
|
|
|
array (
|
|
|
|
'QUERY PLAN' => ' Index Cond: ((create_test.id > 1) AND (create_test.id < 900))',
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEqual($expected, $res);
|
|
|
|
}
|
2012-03-15 09:25:18 -04:00
|
|
|
}
|