2008-08-13 03:47:05 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Test reporter optimised for CLI (ie, plain-text) output
|
2014-08-15 08:53:05 +02:00
|
|
|
*
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2010-04-23 03:04:16 +02:00
|
|
|
* @subpackage testing
|
2008-08-13 03:47:05 +02:00
|
|
|
*/
|
|
|
|
class CliTestReporter extends SapphireTestReporter {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display error bar if it exists
|
|
|
|
*/
|
|
|
|
public function writeResults() {
|
|
|
|
$passCount = 0;
|
|
|
|
$failCount = 0;
|
|
|
|
$testCount = 0;
|
2012-04-14 13:11:54 +02:00
|
|
|
$incompleteCount = 0;
|
2008-08-13 03:47:05 +02:00
|
|
|
$errorCount = 0;
|
2012-04-14 13:11:54 +02:00
|
|
|
|
2008-08-13 03:47:05 +02:00
|
|
|
foreach($this->suiteResults['suites'] as $suite) {
|
|
|
|
foreach($suite['tests'] as $test) {
|
|
|
|
$testCount++;
|
2012-04-14 13:11:54 +02:00
|
|
|
if($test['status'] == 2) {
|
|
|
|
$incompleteCount++;
|
|
|
|
} elseif($test['status'] === 1) {
|
|
|
|
$passCount++;
|
|
|
|
} else {
|
|
|
|
$failCount++;
|
|
|
|
}
|
2008-08-13 03:47:05 +02:00
|
|
|
}
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-10-04 07:41:15 +02:00
|
|
|
echo "\n\n";
|
2012-04-14 14:07:15 +02:00
|
|
|
if ($failCount == 0 && $incompleteCount > 0) {
|
|
|
|
echo SS_Cli::text(" OK, BUT INCOMPLETE TESTS! ", "black", "yellow");
|
|
|
|
} elseif ($failCount == 0) {
|
|
|
|
echo SS_Cli::text(" ALL TESTS PASS ", "black", "green");
|
2008-10-04 07:41:15 +02:00
|
|
|
} else {
|
2012-04-14 14:07:15 +02:00
|
|
|
echo SS_Cli::text(" AT LEAST ONE FAILURE ", "black", "red");
|
2008-10-04 07:41:15 +02:00
|
|
|
}
|
2012-04-14 13:11:54 +02:00
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
echo sprintf("\n\n%d tests run: %s, %s, and %s\n", $testCount, SS_Cli::text("$passCount passes"),
|
|
|
|
SS_Cli::text("$failCount failures"), SS_Cli::text("$incompleteCount incomplete"));
|
2012-04-14 13:11:54 +02:00
|
|
|
|
2012-04-16 03:11:21 +02:00
|
|
|
echo "Maximum memory usage: " . number_format(memory_get_peak_usage()/(1024*1024), 1) . "M\n\n";
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-10-17 04:28:55 +02:00
|
|
|
// Use sake dev/tests/all --showslow to show slow tests
|
2012-09-26 23:34:00 +02:00
|
|
|
if((isset($_GET['args']) && is_array($_GET['args']) && in_array('--showslow', $_GET['args']))
|
|
|
|
|| isset($_GET['showslow'])) {
|
|
|
|
|
2008-10-17 04:28:55 +02:00
|
|
|
$avgSpeed = round(array_sum($this->testSpeeds) / count($this->testSpeeds), 3);
|
2010-04-12 04:03:16 +02:00
|
|
|
echo "Slow tests (more than the average $avgSpeed seconds):\n";
|
2008-10-17 04:28:55 +02:00
|
|
|
|
|
|
|
arsort($this->testSpeeds);
|
|
|
|
foreach($this->testSpeeds as $k => $v) {
|
|
|
|
// Ignore below-average speeds
|
2010-04-12 04:03:16 +02:00
|
|
|
if($v < $avgSpeed) break;
|
2008-10-17 04:28:55 +02:00
|
|
|
|
|
|
|
echo " - $k: " . round($v,3) . "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
echo "\n";
|
2008-08-13 03:47:05 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-08-13 03:47:05 +02:00
|
|
|
public function endTest( PHPUnit_Framework_Test $test, $time) {
|
2008-09-23 05:22:13 +02:00
|
|
|
// Status indicator, a la PHPUnit
|
|
|
|
switch($this->currentTest['status']) {
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
case TEST_FAILURE: echo SS_Cli::text("F","red", null, true); break;
|
|
|
|
case TEST_ERROR: echo SS_Cli::text("E","red", null, true); break;
|
|
|
|
case TEST_INCOMPLETE: echo SS_Cli::text("I","yellow"); break;
|
|
|
|
case TEST_SUCCESS: echo SS_Cli::text(".","green"); break;
|
|
|
|
default: echo SS_Cli::text("?", "yellow"); break;
|
2008-09-23 05:22:13 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-10-03 04:23:35 +02:00
|
|
|
static $colCount = 0;
|
|
|
|
$colCount++;
|
2010-10-19 02:56:25 +02:00
|
|
|
if($colCount % 80 == 0) echo " - $colCount\n";
|
2008-10-03 04:23:35 +02:00
|
|
|
|
2008-08-13 03:47:05 +02:00
|
|
|
$this->writeTest($this->currentTest);
|
2012-09-19 11:41:34 +02:00
|
|
|
parent::endTest($test, $time);
|
2008-08-13 03:47:05 +02:00
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
|
|
|
|
2008-08-13 03:47:05 +02:00
|
|
|
protected function writeTest($test) {
|
2012-09-19 11:41:34 +02:00
|
|
|
if ($test['status'] != TEST_SUCCESS) {
|
2008-10-09 03:45:36 +02:00
|
|
|
$filteredTrace = array();
|
|
|
|
$ignoredClasses = array('TestRunner');
|
|
|
|
foreach($test['trace'] as $item) {
|
2012-09-26 23:34:00 +02:00
|
|
|
if(isset($item['file'])
|
2014-08-15 08:53:05 +02:00
|
|
|
&& strpos($item['file'], 'PHPUnit/Framework') === false
|
2012-09-26 23:34:00 +02:00
|
|
|
&& (!isset($item['class']) || !in_array($item['class'], $ignoredClasses))) {
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-10-09 03:45:36 +02:00
|
|
|
$filteredTrace[] = $item;
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
if(isset($item['class']) && isset($item['function']) && $item['class'] == 'PHPUnit_Framework_TestSuite'
|
|
|
|
&& $item['function'] == 'run') {
|
|
|
|
break;
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2008-10-09 03:45:36 +02:00
|
|
|
}
|
2012-04-14 13:11:54 +02:00
|
|
|
|
2012-04-14 14:26:17 +02:00
|
|
|
$color = ($test['status'] == 2) ? 'yellow' : 'red';
|
|
|
|
echo "\n" . SS_Cli::text($test['name'] . "\n". $test['message'] . "\n", $color, null);
|
|
|
|
echo SS_Backtrace::get_rendered_backtrace($filteredTrace, true);
|
2012-04-14 14:07:15 +02:00
|
|
|
echo "--------------------\n";
|
2008-08-13 03:47:05 +02:00
|
|
|
}
|
|
|
|
}
|
2014-08-15 08:53:05 +02:00
|
|
|
|
2012-04-14 13:11:54 +02:00
|
|
|
}
|