OpenSQLManager/tests/databases/firebird/firebird.php

191 lines
3.6 KiB
PHP
Raw Normal View History

2012-02-02 19:04:10 -05:00
<?php
/**
* OpenSQLManager
*
* Free Database manager for Open Source Databases
*
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/OpenSQLManager
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* FirebirdTest class.
*
* @extends UnitTestCase
*/
2012-03-19 14:30:52 -04:00
class FirebirdTest extends DBTest {
2012-02-10 17:57:10 -05:00
function setUp()
{
2012-04-10 22:19:01 -04:00
$dbpath = TEST_DIR.DS.'db_files'.DS.'FB_TEST_DB.FDB';
2012-03-08 09:15:42 -05:00
// Test the db driver directly
$this->db = new Firebird('localhost:'.$dbpath);
2012-02-10 17:57:10 -05:00
$this->tables = $this->db->get_tables();
}
function tearDown()
{
unset($this->db);
2012-02-10 17:57:10 -05:00
unset($this->tables);
2012-02-02 19:04:10 -05:00
}
2012-02-07 08:18:38 -05:00
function TestConnection()
{
2012-02-07 08:45:56 -05:00
$this->assertIsA($this->db, 'Firebird');
2012-02-07 08:18:38 -05:00
}
2012-02-08 15:05:28 -05:00
2012-02-09 12:00:39 -05:00
function TestGetTables()
2012-02-08 15:05:28 -05:00
{
2012-02-10 17:57:10 -05:00
$tables = $this->tables;
$this->assertTrue(is_array($tables));
}
function TestGetSystemTables()
{
$only_system = TRUE;
$tables = $this->db->get_system_tables();
foreach($tables as $t)
2012-02-10 17:57:10 -05:00
{
if(stripos($t, 'rdb$') !== 0 && stripos($t, 'mon$') !== 0)
{
$only_system = FALSE;
break;
}
}
$this->assertTrue($only_system);
2012-02-08 15:05:28 -05:00
}
2012-03-06 16:53:40 -05:00
function TestCreateTransaction()
{
$res = $this->db->beginTransaction();
$this->assertTrue($res);
}
/*function TestCreateTable()
{
2012-02-08 15:05:28 -05:00
//Attempt to create the table
2012-03-14 15:46:54 -04:00
$sql = $this->db->sql->create_table('create_join', array(
2012-02-28 22:07:13 -05:00
'id' => 'SMALLINT',
'key' => 'VARCHAR(64)',
'val' => 'BLOB SUB_TYPE TEXT'
));
2012-02-08 15:05:28 -05:00
$this->db->query($sql);
2012-02-09 12:00:39 -05:00
2012-02-22 09:37:14 -05:00
//This test fails for an unknown reason, when clearly the table exists
2012-02-10 17:57:10 -05:00
//Reset
2012-03-08 12:37:33 -05:00
$this->tearDown();
2012-02-10 17:57:10 -05:00
$this->setUp();
2012-02-09 12:00:39 -05:00
//Check
$table_exists = (bool)in_array('create_test', $this->tables);
2012-02-10 17:57:10 -05:00
echo "create_test exists :".(int)$table_exists.'<br />';
$this->assertTrue($table_exists);
}*/
2012-03-14 15:46:54 -04:00
function TestTruncate()
{
$this->db->truncate('create_test');
$this->assertTrue($this->db->affected_rows() > 0);
}
2012-03-06 16:53:40 -05:00
function TestCommitTransaction()
{
$res = $this->db->beginTransaction();
2012-03-06 16:53:40 -05:00
$sql = 'INSERT INTO "create_test" ("id", "key", "val") VALUES (10, 12, 14)';
$this->db->query($sql);
$res = $this->db->commit();
$this->assertTrue($res);
}
function TestRollbackTransaction()
{
$res = $this->db->beginTransaction();
2012-03-06 16:53:40 -05:00
$sql = 'INSERT INTO "create_test" ("id", "key", "val") VALUES (182, 96, 43)';
$this->db->query($sql);
$res = $this->db->rollback();
$this->assertTrue($res);
}
2012-03-09 12:52:35 -05:00
2012-03-09 08:26:16 -05:00
function TestPreparedStatements()
{
$sql = <<<SQL
INSERT INTO "create_test" ("id", "key", "val")
VALUES (?,?,?)
SQL;
2012-03-15 14:04:45 -04:00
$query = $this->db->prepare($sql);
$query->execute(array(1,"booger's", "Gross"));
}
function TestPrepareExecute()
{
$sql = <<<SQL
INSERT INTO "create_test" ("id", "key", "val")
VALUES (?,?,?)
SQL;
$this->db->prepare_execute($sql, array(
2, "works", 'also?'
));
}
function TestPrepareQuery()
{
$this->assertFalse($this->db->prepare_query('', array()));
}
/*function TestDeleteTable()
{
2012-02-09 12:00:39 -05:00
//Attempt to delete the table
$sql = $this->db->sql->delete_table('create_test');
2012-02-08 15:05:28 -05:00
$this->db->query($sql);
2012-02-09 12:00:39 -05:00
2012-02-10 17:57:10 -05:00
//Reset
$this->tearDown();
$this->setUp();
2012-02-09 12:00:39 -05:00
//Check
2012-02-10 17:57:10 -05:00
$table_exists = in_array('create_test', $this->tables);
2012-02-09 12:00:39 -05:00
$this->assertFalse($table_exists);
}*/
2012-04-09 10:15:27 -04:00
function TestGetSequences()
{
$this->assertTrue(is_array($this->db->get_sequences()));
}
function TestGetProcedures()
{
$this->assertTrue(is_array($this->db->get_procedures()));
}
function TestGetFunctions()
{
$this->assertTrue(is_array($this->db->get_functions()));
}
function TestGetTriggers()
{
$this->assertTrue(is_array($this->db->get_triggers()));
}
2012-02-02 19:04:10 -05:00
}