Query/tests/core/db_test.php

91 lines
2.0 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
2013-01-02 14:26:42 -05:00
* @copyright Copyright (c) 2012 - 2013
* @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
*/
abstract class DBTest extends UnitTestCase {
2012-04-24 14:00:44 -04:00
abstract public function TestConnection();
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function tearDown()
{
$this->db = NULL;
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestGetTables()
{
if (empty($this->db)) return;
$tables = $this->db->get_tables();
$this->assertTrue(is_array($tables));
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestGetSystemTables()
{
if (empty($this->db)) return;
$tables = $this->db->get_system_tables();
$this->assertTrue(is_array($tables));
}
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
2012-04-24 14:00:44 -04:00
public function TestCreateTransaction()
{
if (empty($this->db)) return;
$res = $this->db->beginTransaction();
$this->assertTrue($res);
}
2012-04-18 16:28:12 -04:00
2012-04-24 14:00:44 -04:00
// --------------------------------------------------------------------------
public function TestBackupData()
2012-04-18 16:28:12 -04:00
{
2014-02-07 16:53:01 -05:00
if (empty($this->db)) return;
2012-04-18 16:28:12 -04:00
$this->assertTrue(is_string($this->db->util->backup_data()));
}
// --------------------------------------------------------------------------
public function TestGetColumns()
{
2014-02-07 16:53:01 -05:00
if (empty($this->db)) return;
$cols = $this->db->get_columns('create_test');
$this->assertTrue(is_array($cols));
}
// --------------------------------------------------------------------------
public function TestGetTypes()
{
2014-02-07 16:53:01 -05:00
if (empty($this->db)) return;
$types = $this->db->get_types();
$this->assertTrue(is_array($types));
}
}
// End of db_test.php