Query/tests/core/db_test.php

79 lines
1.8 KiB
PHP
Raw Normal View History

<?php
/**
* Query
*
* Free Query Builder / Database Abstraction Layer
*
2012-04-20 13:17:39 -04:00
* @package Query
* @author Timothy J. Warren
* @copyright Copyright (c) 2012 - 2014
* @link https://github.com/aviat4ion/Query
2012-04-20 13:17:39 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* Parent Database Test Class
*/
2014-02-14 22:08:19 -05:00
abstract class DBTest extends Query_TestCase {
2014-02-14 22:08:19 -05:00
abstract public function testConnection();
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function tearDown()
{
$this->db = NULL;
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2014-02-14 22:08:19 -05:00
public function testGetTables()
{
$tables = $this->db->get_tables();
$this->assertTrue(is_array($tables));
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2014-02-14 22:08:19 -05:00
public function testGetSystemTables()
{
$tables = $this->db->get_system_tables();
$this->assertTrue(is_array($tables));
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2014-02-14 22:08:19 -05:00
public function testCreateTransaction()
{
$res = $this->db->beginTransaction();
$this->assertTrue($res);
}
2012-04-18 16:28:12 -04:00
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2014-02-14 22:08:19 -05:00
public function testBackupData()
2012-04-18 16:28:12 -04:00
{
$this->assertTrue(is_string($this->db->util->backup_data(array('create_delete'))));
2012-04-18 16:28:12 -04:00
}
// --------------------------------------------------------------------------
2014-02-14 22:08:19 -05:00
public function testGetColumns()
{
2014-02-18 19:29:58 -05:00
$cols = $this->db->get_columns('test');
$this->assertTrue(is_array($cols));
}
// --------------------------------------------------------------------------
2014-02-14 22:08:19 -05:00
public function testGetTypes()
{
$types = $this->db->get_types();
$this->assertTrue(is_array($types));
}
}
// End of db_test.php