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
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<?
function green_start() {
return "\x1B[32m";
}
function color_end() {
return "\x1B[0m";
}
function red_start() {
return "\x1B[31m";
}
function magenta_start() {
return "\x1B[35m";
}
foreach ($results as $class => $methods) {
echo "+", str_repeat("-", 98), "+\n";
printf("| %-96.96s |\n", $class);
echo "+", str_repeat("-", 87), "+", str_repeat("-", 10), "+\n";
foreach (array("score", "total", "passed", "failed", "errors") as $key) {
@$totals[$key] += $stats[$class][$key];
}
if (empty($methods)) {
printf("| %s%-96.96s%s |\n", magenta_start(), "NO TESTS FOUND", color_end());
} else {
foreach ($methods as $method => $result) {
// Hide passed tests from report
if ($result === true AND $hide_passed === true) {
continue;
}
if ($result === true) {
printf("| %s%-85.85s%s | %sPASS%s |\n",
green_start(), $method, color_end(),
green_start(), color_end());
} else if ($result instanceof Kohana_Unit_Test_Exception) {
printf("| %s%-85.85s%s | %sFAIL%s |\n",
red_start(), $method, color_end(),
red_start(), color_end());
echo " ", $result->getMessage(), "\n";
echo " ", $result->getFile();
echo " ", "(line " . $result->getLine(), ")\n";
if ($result->getDebug() !== null) {
echo " ", "(", gettype($result->getDebug()), ") ",
var_export($result->getDebug(), true), "\n";
}
echo "\n";
} else if ($result instanceof Exception) {
printf("| %s%-85.85s%s | %sERROR%s |\n",
magenta_start(), $method, color_end(),
magenta_start(), color_end());
if ($result->getMessage()) {
echo " ", $result->getMessage(), "\n";
}
if ($result instanceof ORM_Validation_Exception) {
echo " Validation errors:\n";
foreach ($result->validation->errors() as $key => $value) {
echo " $key: $value\n";
}
}
echo " ", $result->getFile(), " (Line ", $result->getLine(), ")\n";
echo "\n";
echo $result->getTraceAsString(), "\n";
}
}
}
echo "+", str_repeat("=", 87), "+", str_repeat("=", 10), "+\n";
printf("| %-40.40s %-10.10s %-10.10s %-10.10s %-10.10s %-10.10s |\n",
$class,
"Score: {$stats[$class]['score']}",
"Total: {$stats[$class]['total']}",
"PASS: {$stats[$class]['passed']}",
"FAIL: {$stats[$class]['failed']}",
"ERROR: {$stats[$class]['errors']}");
echo "+", str_repeat("=", 98), "+\n\n\n";
}
printf(" %-40.40s %-10.10s %-10.10s %-10.10s %-10.10s %-10.10s\n",
"TOTAL",
"Score: " . ($totals["total"] ? 100 * ($totals["passed"] / $totals["total"]) : 0),
"Total: {$totals['total']}",
"PASS: {$totals['passed']}",
"FAIL: {$totals['failed']}",
"ERROR: {$totals['errors']}");
|