-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathcoverage-test.php
56 lines (54 loc) · 2.27 KB
/
coverage-test.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
<?php
$minCoverage = getenv('CI_MIN_COVERAGE');
if (empty($minCoverage)) {
$minCoverage = 0.5;
}
define('CI_MIN_COVERAGE', $minCoverage);
$exit = 0;
$dir = dirname(__FILE__);
$filePath = $dir . '/../test-coverage.xml';
if (file_exists($filePath)) {
$xml = simplexml_load_file($filePath);
$projects = [];
$packages = [];
$files = [];
$microPath = realpath($dir . '/../');
echo PHP_EOL;
foreach ($xml->project as $project) {
/** @var $projects SimpleXMLElement */
$projects[] = (string)$project->attributes()->timestamp;
foreach ($project->package as $package) {
$packages[] = (string)$package->attributes()->name;
foreach ($package->file as $file) {
$total = (float)$file->metrics->attributes()->statements;
if ($total > 0) {
$covered = (float)$file->metrics->attributes()->coveredstatements;
$coveredCoeff = $covered / $total;
if ($coveredCoeff < CI_MIN_COVERAGE) {
echo PHP_EOL;
$fileName = (string)$file->attributes()->name;
$skip = false;
if (strpos(pathinfo($fileName, PATHINFO_BASENAME), '_') === 0) {
echo '[SKIP]';
$skip = true;
}
echo 'File: (' . str_replace($microPath, '', $fileName) . ') (' . (round(
$coveredCoeff * 100,
3
)) . '%) covered, at least required ' . (CI_MIN_COVERAGE * 100) . '%' . PHP_EOL;
$exit = $skip ? 0 : 1;
}
}
$files[] = (string)$file->attributes()->name;
}
}
$projectCovered = (float)$project->metrics->attributes()->coveredstatements;
$projectElements = (float)$project->metrics->attributes()->statements;
$totalCoverage = $projectCovered / $projectElements;
echo '(' . round($totalCoverage * 100, 3) . '%) total covered' . "\n";
}
} else {
echo 'File: ' . $filePath . ' doesn\'t exists!';
$exit = 2;
}
exit(0); // exit($exit); temporary disable while correct coverage tests not ready