forked from indentno/phpunit-pretty-print
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrettyPrinter.php
111 lines (90 loc) · 3.55 KB
/
PrettyPrinter.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php
namespace Sempro\PHPUnitPrettyPrinter;
use PHPUnit\Framework\Test;
use PHPUnit\Framework\TestFailure;
use PHPUnit\Framework\TestListener;
use PHPUnit\Framework\TestSuite;
use PHPUnit\TextUI\ResultPrinter;
use PHPUnit\Util\Filter;
class PrettyPrinter extends ResultPrinter implements TestListener
{
protected $className;
protected $previousClassName;
public function startTestSuite(TestSuite $suite): void
{
parent::startTestSuite($suite);
}
public function startTest(Test $test): void
{
$this->className = get_class($test);
}
public function endTest(Test $test, float $time): void
{
parent::endTest($test, $time);
$testMethodName = \PHPUnit\Util\Test::describe($test);
// convert snakeCase method name to camelCase
$testMethodName[1] = str_replace('_', '', ucwords($testMethodName[1], '_'));
preg_match_all('/((?:^|[A-Z])[a-z]+|[A-Z])/', $testMethodName[1], $matches);
$testNameArray = array_map('strtolower', $matches[0]);
// check if prefix is test remove it
if ($testNameArray[0] === 'test') {
array_shift($testNameArray);
}
$name = implode(' ', $testNameArray);
$color = 'fg-green';
if ($test->getStatus() !== 0) {
$color = 'fg-red';
}
$this->write(' ');
$this->writeWithColor($color, $name, false);
$this->write(' ');
$timeColor = $time > 0.5 ? 'fg-yellow' : 'fg-white';
$this->writeWithColor($timeColor, '[' . number_format($time, 3) . 's]', true);
}
protected function writeProgress(string $progress): void
{
if ($this->previousClassName !== $this->className) {
$this->write("\n");
$this->writeWithColor('bold', $this->className, false);
$this->writeNewLine();
}
$this->previousClassName = $this->className;
if ($progress == '.') {
$this->writeWithColor('fg-green', ' ✓', false);
} else {
$this->writeWithColor('fg-red', ' x', false);
}
}
protected function printDefectTrace(TestFailure $defect): void
{
$this->write($this->formatExceptionMsg($defect->getExceptionAsString()));
$trace = Filter::getFilteredStacktrace(
$defect->thrownException()
);
if (!empty($trace)) {
$this->write("\n" . $trace);
}
$exception = $defect->thrownException()->getPrevious();
while ($exception) {
$this->write(
"\nCaused by\n" .
TestFailure::exceptionToString($exception) . "\n" .
Filter::getFilteredStacktrace($exception)
);
$exception = $exception->getPrevious();
}
}
protected function formatExceptionMsg($exceptionMessage): string
{
$exceptionMessage = str_replace("+++ Actual\n", '', $exceptionMessage);
$exceptionMessage = str_replace("--- Expected\n", '', $exceptionMessage);
$exceptionMessage = str_replace('@@ @@', '', $exceptionMessage);
if ($this->colors) {
$exceptionMessage = preg_replace('/^(Exception.*)$/m', "\033[01;31m$1\033[0m", $exceptionMessage);
$exceptionMessage = preg_replace('/(Failed.*)$/m', "\033[01;31m$1\033[0m", $exceptionMessage);
$exceptionMessage = preg_replace("/(\-+.*)$/m", "\033[01;32m$1\033[0m", $exceptionMessage);
$exceptionMessage = preg_replace("/(\++.*)$/m", "\033[01;31m$1\033[0m", $exceptionMessage);
}
return $exceptionMessage;
}
}