Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F14004309
D8433.id20033.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D8433.id20033.diff
View Options
Index: src/unit/engine/NoseTestEngine.php
===================================================================
--- src/unit/engine/NoseTestEngine.php
+++ src/unit/engine/NoseTestEngine.php
@@ -122,35 +122,15 @@
$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 = $source_path .'/'. implode("/", $relative_path);
- $relative_path = Filesystem::readablePath($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";
- }
+ $path = $class->getAttribute("filename");
+ $root = $this->getWorkingCopy()->getProjectRoot();
- if (!file_exists($absolute_path)) {
+ if (!Filesystem::isDescendant($path, $root)) {
continue;
}
// get total line count in file
- $line_count = count(file($absolute_path));
+ $line_count = count(phutil_split_lines(Filesystem::readFile($path)));
$coverage = "";
$start_line = 1;
@@ -178,7 +158,7 @@
}
}
- $reports[$relative_path] = $coverage;
+ $reports[$path] = $coverage;
}
return $reports;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Oct 27, 6:18 PM (2 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6746002
Default Alt Text
D8433.id20033.diff (1 KB)
Attached To
Mode
D8433: Fix unit test coverage for `NoseTestEngine`.
Attached
Detach File
Event Timeline
Log In to Comment