Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F18187767
D8667.id20554.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Referenced Files
None
Subscribers
None
D8667.id20554.diff
View Options
diff --git a/src/unit/engine/PytestTestEngine.php b/src/unit/engine/PytestTestEngine.php
--- a/src/unit/engine/PytestTestEngine.php
+++ b/src/unit/engine/PytestTestEngine.php
@@ -8,16 +8,133 @@
final class PytestTestEngine extends ArcanistBaseUnitTestEngine {
public function run() {
+ $working_copy = $this->getWorkingCopy();
+ $project_root = $working_copy->getProjectRoot();
+
$junit_tmp = new TempFile();
+ $cover_tmp = $project_root.'/coverage.xml';
- $cmd_line = csprintf('py.test --junitxml=%s',
- $junit_tmp);
- $future = new ExecFuture('%C', $cmd_line);
+ $this->unlink($junit_tmp);
+ $this->unlink($cover_tmp);
+
+ $future = $this->buildTestFuture($project_root, $junit_tmp);
list($stdout, $stderr) = $future->resolvex();
+ return $this->parseTestResults($junit_tmp, $cover_tmp);
+ }
+
+ private function unlink($filepath) {
+ if (file_exists($filepath)) {
+ unlink($filepath);
+ }
+ }
+
+ public function buildTestFuture($project_root, $junit_tmp) {
+ $paths = $this->getPaths();
+
+ $cmd_line = csprintf('py.test --junitxml %s',
+ $junit_tmp);
+
+ if ($this->getEnableCoverage() !== false) {
+ $cmd_line .= csprintf(" --cov %s --cov-report xml",
+ $project_root);
+ }
+
+ return new ExecFuture('%C', $cmd_line);
+ }
+
+ public function parseTestResults($junit_tmp, $cover_tmp) {
$parser = new ArcanistXUnitTestResultParser();
+ $results = $parser->parseTestResults(
+ Filesystem::readFile($junit_tmp));
+
+ if ($this->getEnableCoverage() !== false) {
+ $coverage_report = $this->readCoverage($cover_tmp);
+ foreach ($results as $result) {
+ $result->setCoverage($coverage_report);
+ }
+ }
- return $parser->parseTestResults(Filesystem::readFile($junit_tmp));
+ return $results;
}
+ public function readCoverage($path) {
+ $coverage_data = Filesystem::readFile($path);
+ if (empty($coverage_data)) {
+ return array();
+ }
+
+ $coverage_dom = new DOMDocument();
+ $coverage_dom->loadXML($coverage_data);
+
+ $paths = $this->getPaths();
+ $reports = array();
+ $classes = $coverage_dom->getElementsByTagName("class");
+
+ foreach ($classes as $class) {
+ // filename is actually python module path with ".py" at the end,
+ // e.g.: tornado.web.py
+ $relative_path = explode(".", $class->getAttribute("filename"));
+ array_pop($relative_path);
+ $relative_path = implode("/", $relative_path);
+
+ // first we check if the path is a directory (a Python package), if it is
+ // set relative and absolute paths to have __init__.py at the end.
+ $absolute_path = Filesystem::resolvePath($relative_path);
+ if (is_dir($absolute_path)) {
+ $relative_path .= "/__init__.py";
+ $absolute_path .= "/__init__.py";
+ }
+
+ // then we check if the path with ".py" at the end is file (a Python
+ // submodule), if it is - set relative and absolute paths to have
+ // ".py" at the end.
+ if (is_file($absolute_path.".py")) {
+ $relative_path .= ".py";
+ $absolute_path .= ".py";
+ }
+
+ if (!file_exists($absolute_path)) {
+ continue;
+ }
+
+ if (!in_array($relative_path, $paths)) {
+ continue;
+ }
+
+ // get total line count in file
+ $line_count = count(file($absolute_path));
+
+ $coverage = "";
+ $start_line = 1;
+ $lines = $class->getElementsByTagName("line");
+ for ($ii = 0; $ii < $lines->length; $ii++) {
+ $line = $lines->item($ii);
+
+ $next_line = intval($line->getAttribute("number"));
+ for ($start_line; $start_line < $next_line; $start_line++) {
+ $coverage .= "N";
+ }
+
+ if (intval($line->getAttribute("hits")) == 0) {
+ $coverage .= "U";
+ }
+ else if (intval($line->getAttribute("hits")) > 0) {
+ $coverage .= "C";
+ }
+
+ $start_line++;
+ }
+
+ if ($start_line < $line_count) {
+ foreach (range($start_line, $line_count) as $line_num) {
+ $coverage .= "N";
+ }
+ }
+
+ $reports[$relative_path] = $coverage;
+ }
+
+ return $reports;
+ }
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Aug 17, 8:12 PM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
9524620
Default Alt Text
D8667.id20554.diff (4 KB)
Attached To
Mode
D8667: Add coverage reports to py.test runner
Attached
Detach File
Event Timeline
Log In to Comment