fixed very basic code coveage report that prints percentage and total percentage
This commit is contained in:
parent
9fcf6cc1b0
commit
b5f81c5153
1 changed files with 40 additions and 27 deletions
|
@ -414,52 +414,65 @@ if(PHP_SAPI === "cli"){
|
||||||
}else{
|
}else{
|
||||||
$reporter = new MyReporter();
|
$reporter = new MyReporter();
|
||||||
}
|
}
|
||||||
|
//uncomment this to run codecoverage
|
||||||
|
//xdebug_start_code_coverage();
|
||||||
$test->run($reporter);
|
$test->run($reporter);
|
||||||
|
/* remote to enable coverage
|
||||||
$path = Doctrine::getPath() . DIRECTORY_SEPARATOR;
|
$path = Doctrine::getPath() . DIRECTORY_SEPARATOR;
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<?php
|
|
||||||
/**
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td>class</td>
|
<td>class</td>
|
||||||
<td>coverage</td>
|
<td>coverage</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
<?php
|
||||||
$coverage = xdebug_get_code_coverage();
|
$coverage = xdebug_get_code_coverage();
|
||||||
ksort($coverage);
|
$totallines = 0;
|
||||||
|
$totalcovered = 0;
|
||||||
|
|
||||||
foreach ($coverage as $file => $lines) {
|
foreach ($coverage as $file => $lines) {
|
||||||
|
|
||||||
$pos = strpos($file, $path);
|
$pos = strpos($file, $path);
|
||||||
|
if($pos === false && $pos !== 0){
|
||||||
$values = array_values($lines);
|
continue;
|
||||||
$i = count($values);
|
|
||||||
$covered = 0;
|
|
||||||
while ($i--) {
|
|
||||||
if ($values[$i] > 0) {
|
|
||||||
$covered++;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($pos !== false) {
|
$covered = 0;
|
||||||
$class = str_replace(DIRECTORY_SEPARATOR, '_', substr($file, strlen($path), -4));
|
$coveredLines = array_values($lines);
|
||||||
|
array_walk($coveredLines, "countCovered");
|
||||||
|
$class = str_replace(DIRECTORY_SEPARATOR, '_', substr($file, strlen($path), -4));
|
||||||
|
if (strpos($class, '_Interface')) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
if (strpos($class, '_Interface')) {
|
if(!class_exists($class)){
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
$refl = new ReflectionClass($class);
|
||||||
|
$total = 0;
|
||||||
|
foreach ($refl->getMethods() as $method) {
|
||||||
|
$total += ($method->getEndLine() - $method->getStartLine());
|
||||||
|
}
|
||||||
|
$totallines += $total;
|
||||||
|
$totalcovered += $covered;
|
||||||
|
|
||||||
$refl = new ReflectionClass($class);
|
if ($total === 0) {
|
||||||
$total = 0;
|
$total = 1;
|
||||||
foreach ($refl->getMethods() as $method) {
|
}
|
||||||
$total += ($method->getEndLine() - $method->getStartLine());
|
print "<tr><td>" . $class . "</td><td>" . round(($covered / $total) * 100, 2) . " % </td></tr>";
|
||||||
}
|
}
|
||||||
if ($total === 0) {
|
if ($totallines === 0) {
|
||||||
$total = 1;
|
$totallines = 1;
|
||||||
}
|
}
|
||||||
print "<tr><td>" . $class . "</td><td>" . round(($covered / $total) * 100, 2) . " % </td></tr>";
|
print "<tr><td>TOTAL</td><td>" . round(($totalcovered / $totallines) * 100, 2) . " % </td></tr>";
|
||||||
|
|
||||||
|
function countCovered($value, $key){
|
||||||
|
global $covered;
|
||||||
|
if($value >= 1){
|
||||||
|
$covered++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
?>
|
?>
|
||||||
</table>
|
</table>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Add table
Reference in a new issue