289 lines
6.9 KiB
PHP
289 lines
6.9 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
|
|
*/
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
@chmod(QTEST_DIR.QDS.'db_files'.QDS.'FB_TEST_DB.FDB', 0777);
|
|
|
|
/**
|
|
* Firebirdtest class.
|
|
*
|
|
* @extends DBtest
|
|
* @requires extension interbase
|
|
*/
|
|
class FirebirdTest extends DBtest {
|
|
|
|
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 db driver directly
|
|
$this->db = new \Query\Driver\Firebird('localhost:'.$dbpath);
|
|
$this->db->table_prefix = 'create_';
|
|
$this->tables = $this->db->get_tables();
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function tearDown()
|
|
{
|
|
unset($this->db);
|
|
unset($this->tables);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* coverage for methods in result class that aren't implemented
|
|
*/
|
|
public function testNullResultMethods()
|
|
{
|
|
$obj = $this->db->query('SELECT "id" FROM "create_test"');
|
|
|
|
$val = "bar";
|
|
|
|
$this->assertNull($obj->bindColumn('foo', $val));
|
|
$this->assertNull($obj->bindParam('foo', $val));
|
|
$this->assertNull($obj->bindValue('foo', $val));
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testExists()
|
|
{
|
|
$this->assertTrue(function_exists('ibase_connect'));
|
|
$this->assertTrue(function_exists('fbird_connect'));
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testConnection()
|
|
{
|
|
$this->assertIsA($this->db, '\\Query\\Driver\\Firebird');
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testGetSystemTables()
|
|
{
|
|
$only_system = TRUE;
|
|
|
|
$tables = $this->db->get_system_tables();
|
|
|
|
foreach($tables as $t)
|
|
{
|
|
if(stripos($t, 'rdb$') !== 0 && stripos($t, 'mon$') !== 0)
|
|
{
|
|
$only_system = FALSE;
|
|
break;
|
|
}
|
|
}
|
|
|
|
$this->assertTrue($only_system);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
// ! Create / Delete Tables
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testCreateTable()
|
|
{
|
|
//Attempt to create the table
|
|
$sql = $this->db->util->create_table('create_delete', array(
|
|
'id' => 'SMALLINT',
|
|
'key' => 'VARCHAR(64)',
|
|
'val' => 'BLOB SUB_TYPE TEXT'
|
|
));
|
|
$this->db->query($sql);
|
|
|
|
//Check
|
|
$this->assertTrue(in_array('create_delete', $this->db->get_tables()));
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testDeleteTable()
|
|
{
|
|
//Attempt to delete the table
|
|
$sql = $this->db->util->delete_table('create_delete');
|
|
$this->db->query($sql);
|
|
|
|
//Check
|
|
$table_exists = in_array('create_delete', $this->db->get_tables());
|
|
$this->assertFalse($table_exists);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testTruncate()
|
|
{
|
|
$this->db->truncate('create_test');
|
|
|
|
$this->assertTrue($this->db->affected_rows() > 0);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testCommitTransaction()
|
|
{
|
|
$res = $this->db->beginTransaction();
|
|
|
|
$sql = 'INSERT INTO "create_test" ("id", "key", "val") VALUES (10, 12, 14)';
|
|
$this->db->query($sql);
|
|
|
|
$res = $this->db->commit();
|
|
$this->assertTrue($res);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testRollbackTransaction()
|
|
{
|
|
$res = $this->db->beginTransaction();
|
|
|
|
$sql = 'INSERT INTO "create_test" ("id", "key", "val") VALUES (182, 96, 43)';
|
|
$this->db->query($sql);
|
|
|
|
$res = $this->db->rollback();
|
|
$this->assertTrue($res);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testPreparedStatements()
|
|
{
|
|
$sql = <<<SQL
|
|
INSERT INTO "create_test" ("id", "key", "val")
|
|
VALUES (?,?,?)
|
|
SQL;
|
|
$query = $this->db->prepare($sql);
|
|
$query->execute(array(1,"booger's", "Gross"));
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testPrepareExecute()
|
|
{
|
|
$sql = <<<SQL
|
|
INSERT INTO "create_test" ("id", "key", "val")
|
|
VALUES (?,?,?)
|
|
SQL;
|
|
$this->db->prepare_execute($sql, array(
|
|
2, "works", 'also?'
|
|
));
|
|
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testFetch()
|
|
{
|
|
$res = $this->db->query('SELECT "key","val" FROM "create_test"');
|
|
|
|
// Object
|
|
$fetchObj = $res->fetchObject();
|
|
$this->assertIsA($fetchObj, 'stdClass');
|
|
|
|
// Associative array
|
|
$fetchAssoc = $res->fetch(PDO::FETCH_ASSOC);
|
|
$this->assertTrue(array_key_exists('key', $fetchAssoc));
|
|
|
|
// Numeric array
|
|
$res2 = $this->db->query('SELECT "id","key","val" FROM "create_test"');
|
|
$fetch = $res2->fetch(PDO::FETCH_NUM);
|
|
$this->assertTrue(is_array($fetch));
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testPrepareQuery()
|
|
{
|
|
$this->assertNull($this->db->prepare_query('', array()));
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testErrorInfo()
|
|
{
|
|
$result = $this->db->errorInfo();
|
|
|
|
$expected = array (
|
|
0 => 0,
|
|
1 => false,
|
|
2 => false,
|
|
);
|
|
|
|
$this->assertEqual($expected, $result);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testErrorCode()
|
|
{
|
|
$result = $this->db->errorCode();
|
|
$this->assertFalse($result);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testDBList()
|
|
{
|
|
$res = $this->db->sql->db_list();
|
|
$this->assertNULL($res);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testExec()
|
|
{
|
|
$res = $this->db->exec('SELECT * FROM "create_test"');
|
|
$this->assertEquals(NULL, $res);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testInTransaction()
|
|
{
|
|
$this->db->beginTransaction();
|
|
$this->assertTrue($this->db->inTransaction());
|
|
$this->db->rollBack();
|
|
$this->assertFalse($this->db->inTransaction());
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testGetAttribute()
|
|
{
|
|
$res = $this->db->getAttribute("foo");
|
|
$this->assertEquals(NULL, $res);
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
public function testSetAttribute()
|
|
{
|
|
$this->assertFalse($this->db->setAttribute(47, 'foo'));
|
|
}
|
|
|
|
public function testLastInsertId()
|
|
{
|
|
$this->assertEqual(0, $this->db->lastInsertId('NEWTABLE_SEQ'));
|
|
}
|
|
} |