mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
b0c384d6c1
svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/roa ........ r53150 | ischommer | 2008-04-22 11:12:43 +1200 (Tue, 22 Apr 2008) | 1 line FEATURE Added a "test mode" for /db/build which allows mock-DataObject-subclasses which are just built in a test run ........ r53681 | mrickerby | 2008-04-29 15:26:52 +1200 (Tue, 29 Apr 2008) | 1 line adding default wrapping header and footer methods, and configurable reporting to the TestRunner ........ r53700 | mrickerby | 2008-04-29 16:41:57 +1200 (Tue, 29 Apr 2008) | 1 line FEATURE: adding support for /dev/tests --> DevelopmentAdmin-->tests() --> TestRunner, /dev/tasks --> DevelopmentAdmin-->tasks() --> TaskRunner ........ r53820 | mrickerby | 2008-04-30 19:27:52 +1200 (Wed, 30 Apr 2008) | 1 line BUGFIX fixing up BuildTask interface and task runner action ........ r54200 | sminnee | 2008-05-09 00:28:44 +1200 (Fri, 09 May 2008) | 1 line Added TestSession object to help with the testing of forms ........ r54459 | sminnee | 2008-05-13 17:28:25 +1200 (Tue, 13 May 2008) | 1 line Added a basic menu of options to /dev ........ git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@54456 467b73ca-7a2a-4603-9d3b-597d59a354a9
111 lines
2.5 KiB
PHP
111 lines
2.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @package sapphire
|
|
* @subpackage testing
|
|
*/
|
|
|
|
// Check that PHPUnit is installed
|
|
function hasPhpUnit() {
|
|
$paths = explode(PATH_SEPARATOR, ini_get('include_path'));
|
|
foreach($paths as $path) {
|
|
if(@file_exists("$path/PHPUnit/Framework.php")) return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
*/
|
|
if(hasPhpUnit()) {
|
|
require_once 'PHPUnit/Framework.php';
|
|
require_once 'PHPUnit/TextUI/TestRunner.php';
|
|
}
|
|
|
|
/**
|
|
* Controller that executes PHPUnit tests.
|
|
*
|
|
* @package sapphire
|
|
* @subpackage testing
|
|
*/
|
|
class TestRunner extends Controller {
|
|
/** @ignore */
|
|
private static $default_reporter;
|
|
|
|
/**
|
|
* Override the default reporter with a custom configured subclass.
|
|
*
|
|
* @param string $reporter
|
|
*/
|
|
static function set_reporter($reporter) {
|
|
if (is_string($reporter)) $reporter = new $reporter;
|
|
self::$default_reporter = $reporter;
|
|
}
|
|
|
|
function init() {
|
|
parent::init();
|
|
if (!self::$default_reporter) self::set_reporter('DebugReporter');
|
|
}
|
|
|
|
/**
|
|
* Run all test classes
|
|
*/
|
|
function index() {
|
|
if(hasPhpUnit()) {
|
|
$tests = ClassInfo::subclassesFor('SapphireTest');
|
|
array_shift($tests);
|
|
|
|
$this->runTests($tests);
|
|
} else {
|
|
echo "Please install PHPUnit using pear";
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Run only a single test class
|
|
*/
|
|
function only() {
|
|
$className = $this->urlParams['ID'];
|
|
if(class_exists($className)) {
|
|
$this->runTests(array($className));
|
|
} else {
|
|
echo "Class '$className' not found";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
function runTests($classList) {
|
|
self::$default_reporter->writeHeader();
|
|
echo '<div class="info">';
|
|
echo "<h1>Sapphire PHPUnit Test Runner</h1>";
|
|
echo "<p>Using the following subclasses of SapphireTest for testing: " . implode(", ", $classList) . "</p>";
|
|
echo "</div>";
|
|
echo '<div class="trace">';
|
|
echo "<pre>";
|
|
$suite = new PHPUnit_Framework_TestSuite();
|
|
foreach($classList as $className) {
|
|
// Ensure that the autoloader pulls in the test class, as PHPUnit won't know how to do this.
|
|
class_exists($className);
|
|
$suite->addTest(new PHPUnit_Framework_TestSuite($className));
|
|
}
|
|
|
|
/*, array("reportDirectory" => "/Users/sminnee/phpunit-report")*/
|
|
PHPUnit_TextUI_TestRunner::run($suite);
|
|
echo '</div>';
|
|
self::$default_reporter->writeFooter();
|
|
}
|
|
}
|
|
|
|
// This class is here to help with documentation.
|
|
if(!hasPhpUnit()) {
|
|
/**
|
|
* PHPUnit is a testing framework that can be installed using PEAR.
|
|
* It's not bundled with Sapphire, you will need to install it yourself.
|
|
*
|
|
* @package sapphire
|
|
* @subpackage testing
|
|
*/
|
|
class PHPUnit_Framework_TestCase {
|
|
|
|
}
|
|
} |