made console listener wrap long lines
This commit is contained in:
parent
c5bd2c372a
commit
0382d51e08
@ -3,6 +3,9 @@
|
|||||||
class ConsoleListener {
|
class ConsoleListener {
|
||||||
|
|
||||||
private $verbosity;
|
private $verbosity;
|
||||||
|
private $currentLineLength;
|
||||||
|
|
||||||
|
const LINE_LENGTH = 64;
|
||||||
|
|
||||||
const VERBOSITY_LOW = 0;
|
const VERBOSITY_LOW = 0;
|
||||||
const VERBOSITY_MEDIUM = 1;
|
const VERBOSITY_MEDIUM = 1;
|
||||||
@ -10,6 +13,7 @@
|
|||||||
|
|
||||||
public function __construct($verbosity = self::VERBOSITY_MEDIUM) {
|
public function __construct($verbosity = self::VERBOSITY_MEDIUM) {
|
||||||
$this->verbosity = intval($verbosity);
|
$this->verbosity = intval($verbosity);
|
||||||
|
$this->currentLineLength = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
private function out($text) {
|
private function out($text) {
|
||||||
@ -20,6 +24,15 @@
|
|||||||
fwrite(STDERR, $text);
|
fwrite(STDERR, $text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private function writeTestMethodResult($text) {
|
||||||
|
if ($this->currentLineLength >= self::LINE_LENGTH) {
|
||||||
|
$this->out("\n ");
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->out($text);
|
||||||
|
$This->currentLineLength = 4 + strlen($text);
|
||||||
|
}
|
||||||
|
|
||||||
public function beforeTestSuite(TestSuite $suite) {
|
public function beforeTestSuite(TestSuite $suite) {
|
||||||
switch ($this->verbosity) {
|
switch ($this->verbosity) {
|
||||||
case self::VERBOSITY_HIGH:
|
case self::VERBOSITY_HIGH:
|
||||||
@ -95,7 +108,7 @@
|
|||||||
public function beforeTestMethod(TestMethod $method) {
|
public function beforeTestMethod(TestMethod $method) {
|
||||||
switch ($this->verbosity) {
|
switch ($this->verbosity) {
|
||||||
case self::VERBOSITY_HIGH:
|
case self::VERBOSITY_HIGH:
|
||||||
$this->out(' ' . $method->getName() . "\n");
|
$this->out(' ' . $method->getName() . ': ');
|
||||||
break;
|
break;
|
||||||
case self::VERBOSITY_LOW:
|
case self::VERBOSITY_LOW:
|
||||||
case self::VERBOSITY_MEDIUM:
|
case self::VERBOSITY_MEDIUM:
|
||||||
@ -121,9 +134,11 @@
|
|||||||
case self::VERBOSITY_LOW:
|
case self::VERBOSITY_LOW:
|
||||||
break;
|
break;
|
||||||
case self::VERBOSITY_HIGH:
|
case self::VERBOSITY_HIGH:
|
||||||
|
$this->out('FAIL');
|
||||||
|
break;
|
||||||
case self::VERBOSITY_MEDIUM:
|
case self::VERBOSITY_MEDIUM:
|
||||||
default:
|
default:
|
||||||
$this->out('F');
|
$this->writeTestMethodResult('F');
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -133,9 +148,11 @@
|
|||||||
case self::VERBOSITY_LOW:
|
case self::VERBOSITY_LOW:
|
||||||
break;
|
break;
|
||||||
case self::VERBOSITY_HIGH:
|
case self::VERBOSITY_HIGH:
|
||||||
|
$this->out('pass');
|
||||||
|
break;
|
||||||
case self::VERBOSITY_MEDIUM:
|
case self::VERBOSITY_MEDIUM:
|
||||||
default:
|
default:
|
||||||
$this->out('.');
|
$this->writeTestMethodResult('.');
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -145,9 +162,11 @@
|
|||||||
case self::VERBOSITY_LOW:
|
case self::VERBOSITY_LOW:
|
||||||
break;
|
break;
|
||||||
case self::VERBOSITY_HIGH:
|
case self::VERBOSITY_HIGH:
|
||||||
|
$this->out('ERROR');
|
||||||
|
break;
|
||||||
case self::VERBOSITY_MEDIUM:
|
case self::VERBOSITY_MEDIUM:
|
||||||
default:
|
default:
|
||||||
$this->out('E');
|
$this->writeTestMethodResult('E');
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -157,9 +176,11 @@
|
|||||||
case self::VERBOSITY_LOW:
|
case self::VERBOSITY_LOW:
|
||||||
break;
|
break;
|
||||||
case self::VERBOSITY_HIGH:
|
case self::VERBOSITY_HIGH:
|
||||||
|
$this->out('ignored');
|
||||||
|
break;
|
||||||
case self::VERBOSITY_MEDIUM:
|
case self::VERBOSITY_MEDIUM:
|
||||||
default:
|
default:
|
||||||
$this->out('I');
|
$this->writeTestMethodResult('I');
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user