Query/tests/Drivers/PgSQL/PgSQLQueryBuilderTest.php

122 lines
3.1 KiB
PHP
Raw Normal View History

2016-10-12 22:12:25 -04:00
<?php declare(strict_types=1);
2012-03-15 09:25:18 -04:00
/**
2016-10-12 22:12:25 -04:00
* Query
2012-03-15 09:25:18 -04:00
*
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
*/
namespace Query\Tests\Drivers\PgSQL;
use PDO;
use Query\Tests\BaseQueryBuilderTest;
2016-10-12 22:12:25 -04:00
2012-03-15 09:25:18 -04:00
// --------------------------------------------------------------------------
2014-02-14 22:08:19 -05:00
/**
* @requires extension pdo_pgsql
*/
class PgSQLQueryBuilderTest extends BaseQueryBuilderTest {
2012-03-15 09:25:18 -04:00
public static function setUpBeforeClass()
{
$params = get_json_config();
if (getenv('TRAVIS')) // 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
);
}
// Attempt to connect, if there is a test config file
else if ($params !== FALSE)
{
$params = $params->pgsql;
2018-01-22 15:43:56 -05:00
$params->type = 'pgsql';
//$params->port = 5432;
//$params->prefix = 'create_';
$params->options = array();
2018-01-22 15:43:56 -05:00
$params->options[PDO::ATTR_PERSISTENT] = TRUE;
}
self::$db = Query($params);
}
public function setUp()
{
// If the database isn't installed, skip the tests
2018-01-22 15:43:56 -05:00
if ( ! \in_array('pgsql', PDO::getAvailableDrivers(), TRUE))
{
$this->markTestSkipped("Postgres extension for PDO not loaded");
}
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
{
2018-01-22 15:43:56 -05:00
$this->assertTrue(\in_array('pgsql', PDO::getAvailableDrivers(), TRUE));
2012-03-19 10:40:16 -04:00
}
2014-02-04 20:59:30 -05:00
// --------------------------------------------------------------------------
2014-02-04 20:59:30 -05:00
public function testQueryExplain()
{
$query = self::$db->select('id, key as k, val')
2014-02-04 20:59:30 -05:00
->explain()
->where('id >', 1)
->where('id <', 900)
->get('create_test', 2, 1);
2014-02-04 20:59:30 -05:00
$res = $query->fetchAll(PDO::FETCH_ASSOC);
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
2018-01-22 15:43:56 -05:00
$this->assertTrue(\is_array($res));
2016-07-19 14:18:48 -04:00
$this->assertTrue(count($res) > 1);
$this->assertTrue(array_key_exists('QUERY PLAN', $res[0]));
/*$expected = array (
2014-02-04 20:59:30 -05:00
array (
'QUERY PLAN' => 'Limit (cost=6.31..10.54 rows=2 width=68)',
2014-02-04 20:59:30 -05:00
),
array (
'QUERY PLAN' => ' Output: id, key, val',
),
array (
'QUERY PLAN' => ' -> Bitmap Heap Scan on public.create_test (cost=4.19..12.66 rows=4 width=68)',
2014-02-04 20:59:30 -05:00
),
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.19 rows=4 width=0)',
2014-02-04 20:59:30 -05:00
),
array (
'QUERY PLAN' => ' Index Cond: ((create_test.id > 1) AND (create_test.id < 900))',
),
);
2016-07-19 14:18:48 -04:00
$this->assertEqual($expected, $res);*/
2014-02-04 20:59:30 -05:00
}
public function testBackupStructure()
{
2018-01-22 15:43:56 -05:00
$this->assertEquals('', self::$db->getUtil()->backupStructure());
}
2012-03-15 09:25:18 -04:00
}