OpenSQLManager/tests/index.php

79 lines
1.9 KiB
PHP
Raw Normal View History

<?php
/**
* OpenSQLManager
*
* Free Database manager for Open Source Databases
*
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/OpenSQLManager
2012-03-28 12:20:18 -04:00
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* Unit test bootstrap - Using php simpletest
*/
define('TEST_DIR', dirname(__FILE__));
2012-03-23 15:29:34 -04:00
define('BASE_DIR', str_replace(basename(TEST_DIR), '', TEST_DIR).'/sys/');
define('DS', DIRECTORY_SEPARATOR);
2012-02-02 19:04:10 -05:00
2012-03-23 15:29:34 -04:00
2012-02-02 19:04:10 -05:00
// Include simpletest
// it has to be set in your php path, or put in the tests folder
require_once('simpletest/autorun.php');
2012-03-19 14:30:52 -04:00
// Require base testing classes
require_once(TEST_DIR.'/parent.php');
2012-03-28 12:20:18 -04:00
require_once(TEST_DIR.'/settings.php');
2012-02-02 19:04:10 -05:00
// Bulk loading wrapper workaround for PHP < 5.4
function do_include($path)
{
require_once($path);
}
// Include core tests
require_once("core.php");
2012-04-04 10:52:45 -04:00
// Include required methods
require_once(BASE_DIR.'common/functions.php');
2012-03-28 12:20:18 -04:00
require_once(BASE_DIR.'common/settings.php');
2012-03-23 15:29:34 -04:00
require_once(BASE_DIR.'db/db_pdo.php');
require_once(BASE_DIR.'db/query_builder.php');
2012-03-01 12:05:32 -05:00
2012-02-02 19:04:10 -05:00
// Include db tests
// Load db classes based on capability
2012-03-23 15:29:34 -04:00
$src_path = BASE_DIR.'db/drivers/';
$test_path = TEST_DIR.'/databases/';
foreach(pdo_drivers() as $d)
{
2012-03-28 12:20:18 -04:00
// PDO firebird isn't stable enough to
2012-03-06 21:07:34 -05:00
// bother, so skip it.
if ($d === 'firebird')
{
continue;
}
$src_file = "{$src_path}{$d}.php";
2012-03-28 12:20:18 -04:00
2012-02-06 22:04:03 -05:00
if(is_file($src_file))
{
require_once("{$src_path}{$d}.php");
require_once("{$src_path}{$d}_sql.php");
require_once("{$test_path}{$d}.php");
2012-03-09 16:30:33 -05:00
require_once("{$test_path}{$d}-qb.php");
}
}
// Load Firebird if there is support
2012-03-19 12:20:51 -04:00
if(function_exists('fbird_connect'))
{
2012-03-19 12:20:51 -04:00
require_once("{$src_path}firebird.php");
require_once("{$src_path}firebird_sql.php");
require_once("{$test_path}firebird.php");
2012-03-09 16:30:33 -05:00
require_once("{$test_path}firebird-qb.php");
}