160 lines
3.3 KiB
PHP
160 lines
3.3 KiB
PHP
<?php
|
|
/**
|
|
* Query
|
|
*
|
|
* Free Query Builder / Database Abstraction Layer
|
|
*
|
|
* @package Query
|
|
* @author Timothy J. Warren
|
|
* @copyright Copyright (c) 2012 - 2013
|
|
* @link https://github.com/aviat4ion/Query
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
|
*/
|
|
|
|
/**
|
|
* Quercus detection for workarounds
|
|
*/
|
|
if ( ! defined('IS_QUERCUS'))
|
|
{
|
|
if ( ! isset($_SERVER_SOFTWARE))
|
|
{
|
|
define('IS_QUERCUS', FALSE);
|
|
}
|
|
else
|
|
{
|
|
$test = strpos($_SERVER["SERVER_SOFTWARE"],'Quercus') !== FALSE;
|
|
define('IS_QUERCUS', $test);
|
|
unset($test);
|
|
}
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
// Include simpletest
|
|
// it has to be in the tests folder
|
|
require_once('simpletest/autorun.php');
|
|
|
|
/**
|
|
* Base class for TestCases
|
|
*/
|
|
abstract class Query_TestCase extends UnitTestCase {
|
|
|
|
public function __construct()
|
|
{
|
|
$class = get_class($this);
|
|
|
|
if (method_exists($class, 'setupBeforeClass'))
|
|
{
|
|
$class::setupBeforeClass();
|
|
}
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
public function __destruct()
|
|
{
|
|
$class = get_class($this);
|
|
|
|
if (method_exists($class, 'tearDownAfterClass'))
|
|
{
|
|
$class::tearDownAfterClass();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Define assertInstanceOf for simpletest
|
|
*
|
|
* @param $expected
|
|
* @param $actual
|
|
* @param string $message
|
|
*/
|
|
public function assertInstanceOf($expected, $actual, $message = '')
|
|
{
|
|
$this->assertIsA($actual, $expected, $message);
|
|
}
|
|
|
|
/**
|
|
* Alias to assertEqual
|
|
*
|
|
* @param mixed $expected
|
|
* @param mixed $actual
|
|
* @param string $message
|
|
*/
|
|
public function assertEquals($expected, $actual, $message = '')
|
|
{
|
|
$this->assertEqual($expected, $actual, $message);
|
|
}
|
|
|
|
/**
|
|
* Alias to skipIf in SimpleTest
|
|
*
|
|
* @param string $message
|
|
*/
|
|
public function markTestSkipped($message = '')
|
|
{
|
|
$this->skipUnless(FALSE, $message);
|
|
}
|
|
|
|
/**
|
|
* Alias for phpunit method
|
|
*
|
|
* @param string $name
|
|
* @param string $message
|
|
* @param int $code
|
|
*/
|
|
public function setExpectedException($name, $message='', $code=NULL)
|
|
{
|
|
$this->expectException($name);
|
|
}
|
|
}
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
/**
|
|
* Unit test bootstrap - Using php simpletest
|
|
*/
|
|
define('QTEST_DIR', __DIR__);
|
|
define('QBASE_DIR', realpath(__DIR__ . '/../') . '/');
|
|
define('QDS', DIRECTORY_SEPARATOR);
|
|
|
|
// Include db classes
|
|
require_once(QBASE_DIR . 'autoload.php');
|
|
|
|
// Include db tests
|
|
// Load db classes based on capability
|
|
$test_path = QTEST_DIR.'/databases/';
|
|
|
|
// Require base testing classes
|
|
require_once(QTEST_DIR . '/core/core_test.php');
|
|
require_once(QTEST_DIR . '/core/connection_manager_test.php');
|
|
require_once(QTEST_DIR . '/core/base_db_test.php');
|
|
require_once(QTEST_DIR . '/core/query_parser_test.php');
|
|
require_once(QTEST_DIR . '/core/base_query_builder_test.php');
|
|
|
|
$drivers = PDO::getAvailableDrivers();
|
|
|
|
if (function_exists('fbird_connect'))
|
|
{
|
|
$drivers[] = 'interbase';
|
|
}
|
|
|
|
$driver_test_map = array(
|
|
'MySQL' => in_array('mysql', $drivers),
|
|
'SQLite' => in_array('sqlite', $drivers),
|
|
'PgSQL' => in_array('pgsql', $drivers),
|
|
//'Firebird' => in_array('interbase', $drivers),
|
|
//'PDOFirebird' => in_array('firebird', $drivers)
|
|
);
|
|
|
|
// Determine which testcases to load
|
|
foreach($driver_test_map as $name => $do_load)
|
|
{
|
|
$path = $test_path . strtolower($name) . '/';
|
|
|
|
if ($do_load && (! IS_QUERCUS))
|
|
{
|
|
require_once("{$path}{$name}Test.php");
|
|
require_once("{$path}{$name}QBTest.php");
|
|
}
|
|
}
|
|
// End of index.php
|