2012-02-02 17:43:09 -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
|
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unit test bootstrap - Using php simpletest
|
|
|
|
*/
|
|
|
|
|
2012-02-02 19:04:10 -05:00
|
|
|
define('BASE_DIR', '../src');
|
|
|
|
|
|
|
|
// Include simpletest
|
|
|
|
// it has to be set in your php path, or put in the tests folder
|
|
|
|
require_once('simpletest/autorun.php');
|
|
|
|
|
|
|
|
|
|
|
|
// Bulk loading wrapper workaround for PHP < 5.4
|
|
|
|
function do_include($path)
|
|
|
|
{
|
|
|
|
require_once($path);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Include core tests
|
|
|
|
require_once("core.php");
|
2012-02-06 22:05:53 -05:00
|
|
|
require_once("../src/common/db_pdo.php");
|
2012-02-02 19:04:10 -05:00
|
|
|
|
|
|
|
// Include db tests
|
2012-02-06 21:59:34 -05:00
|
|
|
// Load db classes based on capability
|
|
|
|
$src_path = "../src/databases/";
|
|
|
|
$test_path = "./databases/";
|
|
|
|
|
|
|
|
foreach(pdo_drivers() as $d)
|
|
|
|
{
|
|
|
|
|
|
|
|
$src_file = "{$src_path}{$d}.php";
|
|
|
|
$test_file = "{$test_path}{$d}.php";
|
|
|
|
|
2012-02-06 22:04:03 -05:00
|
|
|
if(is_file($src_file))
|
2012-02-06 21:59:34 -05:00
|
|
|
{
|
|
|
|
require_once($src_file);
|
|
|
|
require_once($test_file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Load Firebird if there is support
|
|
|
|
if(function_exists('ibase_connect'))
|
|
|
|
{
|
|
|
|
require_once("{$src_path}firebird.php");
|
|
|
|
require_once("{$test_path}firebird.php");
|
|
|
|
}
|