mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
a79ab917c7
API CHANGE: Added SSCli class to help with outputting coloured text on the command line git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@63637 467b73ca-7a2a-4603-9d3b-597d59a354a9
61 lines
1.8 KiB
PHP
61 lines
1.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Test reporter optimised for CLI (ie, plain-text) output
|
|
*/
|
|
class CliTestReporter extends SapphireTestReporter {
|
|
|
|
/**
|
|
* Display error bar if it exists
|
|
*/
|
|
public function writeResults() {
|
|
$passCount = 0;
|
|
$failCount = 0;
|
|
$testCount = 0;
|
|
$errorCount = 0;
|
|
|
|
foreach($this->suiteResults['suites'] as $suite) {
|
|
foreach($suite['tests'] as $test) {
|
|
$testCount++;
|
|
($test['status'] == 1) ? $passCount++ : $failCount++;
|
|
}
|
|
}
|
|
|
|
echo "\n\n";
|
|
if ($failCount == 0) {
|
|
echo SSCli::text(" ALL TESTS PASS ", "white", "green");
|
|
} else {
|
|
echo SSCli::text(" AT LEAST ONE FAILURE ", "white", "red");
|
|
}
|
|
echo "\n\n$testCount tests run: " . SSCli::text("$passCount passes", $passCount > 0 ? "green" : null) . ", ". SSCli::text("$failCount fails", $failCount > 0 ? "red" : null) . ", and 0 exceptions\n\n";
|
|
}
|
|
|
|
public function endTest( PHPUnit_Framework_Test $test, $time) {
|
|
// Status indicator, a la PHPUnit
|
|
switch($this->currentTest['status']) {
|
|
case TEST_FAILURE: echo SSCli::text("F","red", null, true); break;
|
|
case TEST_ERROR: echo SSCli::text("E","red", null, true); break;
|
|
case TEST_INCOMPLETE: echo SSCli::text("I","yellow"); break;
|
|
case TEST_SUCCESS: echo SSCli::text(".","green"); break;
|
|
default: echo SSCli::text("?", "yellow"); break;
|
|
}
|
|
|
|
static $colCount = 0;
|
|
$colCount++;
|
|
if($colCount % 80 == 0) echo " - $colCount\n";
|
|
|
|
parent::endTest($test, $time);
|
|
$this->writeTest($this->currentTest);
|
|
}
|
|
|
|
|
|
protected function writeTest($test) {
|
|
if ($test['status'] != 1) {
|
|
echo "\n\n" . SSCli::text($this->testNameToPhrase($test['name']) . "\n". $test['message'] . "\n", 'red', null, true);
|
|
echo SSCli::text("In line {$test['exception']['line']} of {$test['exception']['file']}" . "\n\n", 'red ');
|
|
echo Debug::get_rendered_backtrace($test['trace'], true);
|
|
echo "\n--------------------\n";
|
|
}
|
|
}
|
|
|
|
} |