140 lines
3.1 KiB
PHP
140 lines
3.1 KiB
PHP
<?php
|
|
/**
|
|
* Query
|
|
*
|
|
* Free Query Builder / Database Abstraction Layer
|
|
*
|
|
* @package Query
|
|
* @author Timothy J. Warren
|
|
* @copyright Copyright (c) 2012 - 2014
|
|
* @link https://github.com/aviat4ion/Query
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
|
*/
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Firebird Query Builder Tests
|
|
* @requires extension interbase
|
|
*/
|
|
class FirebirdQBTest extends QBTest {
|
|
|
|
public function setUp()
|
|
{
|
|
$dbpath = QTEST_DIR.QDS.'db_files'.QDS.'FB_TEST_DB.FDB';
|
|
|
|
if ( ! function_exists('\\fbird_connect'))
|
|
{
|
|
$this->markTestSkipped('Firebird extension does not exist');
|
|
}
|
|
|
|
// test the query builder
|
|
$params = new Stdclass();
|
|
$params->alias = 'fire';
|
|
$params->type = 'firebird';
|
|
$params->file = $dbpath;
|
|
$params->host = '127.0.0.1';
|
|
$params->user = 'SYSDBA';
|
|
$params->pass = 'masterkey';
|
|
$params->prefix = 'create_';
|
|
$this->db = Query($params);
|
|
}
|
|
|
|
public function testGetNamedConnectionException()
|
|
{
|
|
try
|
|
{
|
|
$db = Query('fire');
|
|
}
|
|
catch(InvalidArgumentException $e)
|
|
{
|
|
$this->assertIsA($e, 'InvalidArgumentException');
|
|
}
|
|
}
|
|
|
|
public function testGetNamedConnection()
|
|
{
|
|
$dbpath = QTEST_DIR.QDS.'db_files'.QDS.'FB_TEST_DB.FDB';
|
|
|
|
// test the query builder
|
|
$params = new Stdclass();
|
|
$params->alias = 'fire';
|
|
$params->type = 'firebird';
|
|
$params->file = $dbpath;
|
|
$params->host = 'localhost';
|
|
$params->user = 'sysdba';
|
|
$params->pass = 'masterkey';
|
|
$params->prefix = '';
|
|
$f_conn = Query($params);
|
|
$q_conn = Query('fire');
|
|
|
|
$this->assertReference($f_conn, $q_conn);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testTypeList()
|
|
{
|
|
$sql = $this->db->sql->type_list();
|
|
$query = $this->db->query($sql);
|
|
|
|
$this->assertIsA($query, 'PDOStatement');
|
|
|
|
$res = $query->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
$this->assertTrue(is_array($res));
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testQueryExplain()
|
|
{
|
|
$res = $this->db->select('id, key as k, val')
|
|
->explain()
|
|
->where('id >', 1)
|
|
->where('id <', 900)
|
|
->limit(2, 1)
|
|
->get_compiled_select();
|
|
|
|
$res2 = $this->db->select('id, key as k, val')
|
|
->where('id >', 1)
|
|
->where('id <', 900)
|
|
->limit(2, 1)
|
|
->get_compiled_select();
|
|
|
|
// Queries are equal because explain is not a keyword in Firebird
|
|
$this->assertEqual($res, $res2);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testResultErrors()
|
|
{
|
|
$obj = $this->db->query('SELECT * FROM "create_test"');
|
|
|
|
// Test row count
|
|
$this->assertEqual(0, $obj->rowCount());
|
|
|
|
// Test error code
|
|
$this->assertFalse($obj->errorCode());
|
|
|
|
// Test error info
|
|
$error = $obj->errorInfo();
|
|
$expected = array (
|
|
0 => 0,
|
|
1 => false,
|
|
2 => false,
|
|
);
|
|
|
|
$this->assertEqual($expected, $error);
|
|
}
|
|
|
|
public function testBackupStructure()
|
|
{
|
|
|
|
$existing = QTEST_DIR.QDS.'db_files'.QDS.'FB_TEST_DB.FDB';
|
|
$backup = QTEST_DIR.QDS.'db_files'.QDS.'FB_TEST_BKP.FDB';
|
|
|
|
$this->assertTrue($this->db->util->backup_structure($existing, $backup));
|
|
}
|
|
} |