2006-04-14 00:37:28 +04:00
|
|
|
<?php
|
2006-04-16 12:41:45 +04:00
|
|
|
ob_start();
|
2006-05-24 12:46:43 +04:00
|
|
|
|
2006-06-07 00:37:56 +04:00
|
|
|
require_once("ConfigurableTestCase.php");
|
|
|
|
require_once("ManagerTestCase.php");
|
2006-08-22 03:20:33 +04:00
|
|
|
require_once("ConnectionTestCase.php");
|
2006-06-07 00:37:56 +04:00
|
|
|
require_once("TableTestCase.php");
|
|
|
|
require_once("EventListenerTestCase.php");
|
|
|
|
require_once("BatchIteratorTestCase.php");
|
|
|
|
require_once("CacheFileTestCase.php");
|
|
|
|
require_once("RecordTestCase.php");
|
|
|
|
require_once("AccessTestCase.php");
|
|
|
|
require_once("ValidatorTestCase.php");
|
|
|
|
require_once("CollectionTestCase.php");
|
2006-06-07 16:16:00 +04:00
|
|
|
require_once("PessimisticLockingTestCase.php");
|
2006-06-07 00:37:56 +04:00
|
|
|
|
|
|
|
require_once("CacheSqliteTestCase.php");
|
|
|
|
require_once("CollectionOffsetTestCase.php");
|
|
|
|
require_once("QueryTestCase.php");
|
2006-06-13 22:04:04 +04:00
|
|
|
require_once("CacheQuerySqliteTestCase.php");
|
|
|
|
require_once("ViewTestCase.php");
|
2006-07-22 03:22:15 +04:00
|
|
|
require_once("RawSqlTestCase.php");
|
2006-07-26 21:09:00 +04:00
|
|
|
require_once("CustomPrimaryKeyTestCase.php");
|
2006-07-27 21:51:19 +04:00
|
|
|
require_once("FilterTestCase.php");
|
2006-08-07 13:55:46 +04:00
|
|
|
require_once("ValueHolderTestCase.php");
|
2006-08-16 01:33:41 +04:00
|
|
|
require_once("QueryLimitTestCase.php");
|
2006-04-15 02:25:02 +04:00
|
|
|
|
2006-04-14 00:37:28 +04:00
|
|
|
error_reporting(E_ALL);
|
|
|
|
|
|
|
|
$test = new GroupTest("Doctrine Framework Unit Tests");
|
2006-08-23 00:14:29 +04:00
|
|
|
|
2006-05-29 13:17:07 +04:00
|
|
|
$test->addTestCase(new Doctrine_RecordTestCase());
|
2006-05-31 12:46:44 +04:00
|
|
|
|
2006-08-22 03:20:33 +04:00
|
|
|
$test->addTestCase(new Doctrine_ConnectionTestCase());
|
2006-04-17 02:17:23 +04:00
|
|
|
|
2006-05-17 21:58:40 +04:00
|
|
|
$test->addTestCase(new Doctrine_TableTestCase());
|
2006-08-23 00:14:29 +04:00
|
|
|
|
2006-04-14 00:37:28 +04:00
|
|
|
$test->addTestCase(new Doctrine_ManagerTestCase());
|
2006-08-23 00:14:29 +04:00
|
|
|
|
2006-04-14 00:37:28 +04:00
|
|
|
$test->addTestCase(new Doctrine_AccessTestCase());
|
2006-04-17 00:38:17 +04:00
|
|
|
|
2006-04-14 00:37:28 +04:00
|
|
|
$test->addTestCase(new Doctrine_EventListenerTestCase());
|
2006-04-17 02:17:23 +04:00
|
|
|
|
2006-04-17 01:23:38 +04:00
|
|
|
$test->addTestCase(new Doctrine_BatchIteratorTestCase());
|
2006-04-16 00:52:23 +04:00
|
|
|
|
2006-04-17 00:38:17 +04:00
|
|
|
$test->addTestCase(new Doctrine_ConfigurableTestCase());
|
2006-04-17 02:46:05 +04:00
|
|
|
|
2006-04-19 20:01:36 +04:00
|
|
|
$test->addTestCase(new Doctrine_Collection_OffsetTestCase());
|
2006-05-10 01:38:34 +04:00
|
|
|
|
2006-06-08 17:17:15 +04:00
|
|
|
$test->addTestCase(new Doctrine_PessimisticLockingTestCase());
|
|
|
|
|
2006-06-14 23:17:38 +04:00
|
|
|
$test->addTestCase(new Doctrine_ViewTestCase());
|
|
|
|
|
2006-06-19 02:45:54 +04:00
|
|
|
$test->addTestCase(new Doctrine_Cache_Query_SqliteTestCase());
|
|
|
|
|
2006-07-26 21:09:00 +04:00
|
|
|
$test->addTestCase(new Doctrine_CustomPrimaryKeyTestCase());
|
|
|
|
|
2006-07-27 21:51:19 +04:00
|
|
|
$test->addTestCase(new Doctrine_Filter_TestCase());
|
|
|
|
|
2006-08-07 13:55:46 +04:00
|
|
|
$test->addTestCase(new Doctrine_ValueHolder_TestCase());
|
2006-08-16 01:32:59 +04:00
|
|
|
|
|
|
|
$test->addTestCase(new Doctrine_ValidatorTestCase());
|
2006-08-16 01:33:18 +04:00
|
|
|
|
|
|
|
$test->addTestCase(new Doctrine_CollectionTestCase());
|
|
|
|
|
2006-08-22 23:34:40 +04:00
|
|
|
$test->addTestCase(new Doctrine_QueryTestCase());
|
2006-08-22 02:04:13 +04:00
|
|
|
|
|
|
|
$test->addTestCase(new Doctrine_RawSql_TestCase());
|
2006-08-22 02:51:27 +04:00
|
|
|
|
2006-08-23 01:18:06 +04:00
|
|
|
$test->addTestCase(new Doctrine_Query_Limit_TestCase());
|
2006-08-23 00:14:29 +04:00
|
|
|
|
2006-04-15 14:15:16 +04:00
|
|
|
//$test->addTestCase(new Doctrine_Cache_FileTestCase());
|
|
|
|
//$test->addTestCase(new Doctrine_Cache_SqliteTestCase());
|
|
|
|
|
2006-04-14 00:37:28 +04:00
|
|
|
|
2006-05-24 12:46:43 +04:00
|
|
|
print "<pre>";
|
2006-04-14 00:37:28 +04:00
|
|
|
$test->run(new HtmlReporter());
|
2006-06-30 03:04:39 +04:00
|
|
|
/**
|
2006-08-22 03:20:33 +04:00
|
|
|
$cache = Doctrine_Manager::getInstance()->getCurrentConnection()->getCacheHandler();
|
2006-04-15 14:15:16 +04:00
|
|
|
if(isset($cache)) {
|
|
|
|
$a = $cache->getQueries();
|
|
|
|
print "Executed cache queries: ".count($a)."\n";
|
2006-06-30 03:04:39 +04:00
|
|
|
|
2006-04-15 14:15:16 +04:00
|
|
|
foreach($a as $query) {
|
|
|
|
print $query."\n";
|
|
|
|
}
|
2006-06-30 03:04:39 +04:00
|
|
|
|
2006-04-15 14:15:16 +04:00
|
|
|
}
|
2006-06-30 03:04:39 +04:00
|
|
|
*/
|
2006-04-15 02:25:02 +04:00
|
|
|
|
2006-08-22 03:20:33 +04:00
|
|
|
$dbh = Doctrine_Manager::getInstance()->getCurrentConnection()->getDBH();
|
2006-04-14 14:20:19 +04:00
|
|
|
$a = $dbh->getQueries();
|
2006-04-14 00:37:28 +04:00
|
|
|
|
|
|
|
print "Executed queries: ".count($a)."\n";
|
|
|
|
|
|
|
|
foreach($a as $query) {
|
|
|
|
print $query."\n";
|
|
|
|
}
|
2006-04-16 12:41:45 +04:00
|
|
|
ob_end_flush();
|
2006-04-14 00:37:28 +04:00
|
|
|
?>
|