78 lines
1.9 KiB
PHP
Executable File
78 lines
1.9 KiB
PHP
Executable File
#!/usr/bin/php
|
|
<?php
|
|
class SimpleTest {
|
|
public function assert($boolean) {
|
|
if (! $boolean) $this->fail();
|
|
}
|
|
|
|
protected function fail($msg = '') {
|
|
echo "FAILURE! $msg\n";
|
|
debug_print_backtrace();
|
|
die;
|
|
}
|
|
}
|
|
|
|
function microtime_float()
|
|
{
|
|
list($usec, $sec) = explode(" ", microtime());
|
|
return ((float)$usec + (float)$sec);
|
|
}
|
|
|
|
ini_set('date.timezone', 'America/Los_Angeles');
|
|
|
|
error_reporting(E_ALL | E_STRICT);
|
|
require_once __DIR__ . '/../db.class.php';
|
|
require_once __DIR__ . '/test_setup.php'; //test config values go here
|
|
// WARNING: ALL tables in the database will be dropped before the tests, including non-test related tables.
|
|
DB::$user = $set_db_user;
|
|
DB::$password = $set_password;
|
|
DB::$dbName = $set_db;
|
|
DB::$host = $set_host;
|
|
DB::get(); //connect to mysql
|
|
|
|
require_once __DIR__ . '/BasicTest.php';
|
|
require_once __DIR__ . '/CallTest.php';
|
|
require_once __DIR__ . '/ObjectTest.php';
|
|
require_once __DIR__ . '/WhereClauseTest.php';
|
|
require_once __DIR__ . '/ErrorTest.php';
|
|
require_once __DIR__ . '/ErrorTest_53.php';
|
|
require_once __DIR__ . '/TransactionTest.php';
|
|
require_once __DIR__ . '/HelperTest.php';
|
|
|
|
$classes_to_test = array(
|
|
'BasicTest',
|
|
'CallTest',
|
|
'WhereClauseTest',
|
|
'ObjectTest',
|
|
'ErrorTest',
|
|
'ErrorTest_53',
|
|
'TransactionTest',
|
|
'HelperTest',
|
|
);
|
|
|
|
$mysql_version = DB::serverVersion();
|
|
if ($mysql_version >= '5.5') {
|
|
require_once __DIR__ . '/TransactionTest_55.php';
|
|
$classes_to_test[] = 'TransactionTest_55';
|
|
} else {
|
|
echo "MySQL 5.5 not available (version is $mysql_version) -- skipping MySQL 5.5 tests\n";
|
|
}
|
|
|
|
$time_start = microtime_float();
|
|
foreach ($classes_to_test as $class) {
|
|
$object = new $class();
|
|
|
|
foreach (get_class_methods($object) as $method) {
|
|
if (substr($method, 0, 4) != 'test') continue;
|
|
echo "Running $class::$method..\n";
|
|
$object->$method();
|
|
}
|
|
}
|
|
$time_end = microtime_float();
|
|
$time = round($time_end - $time_start, 2);
|
|
|
|
echo "Completed in $time seconds\n";
|
|
|
|
|
|
?>
|