2011-01-10 00:22:25 +01:00
|
|
|
<?php
|
|
|
|
|
2011-02-19 20:36:08 +01:00
|
|
|
/**
|
|
|
|
* Very basic unit test engine which runs libphutil tests.
|
|
|
|
*/
|
2012-01-31 21:07:05 +01:00
|
|
|
final class PhutilUnitTestEngine extends ArcanistBaseUnitTestEngine {
|
2011-01-10 00:22:25 +01:00
|
|
|
|
2012-12-17 21:56:41 +01:00
|
|
|
protected function supportsRunAllTests() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-01-10 00:22:25 +01:00
|
|
|
public function run() {
|
2012-12-17 21:56:41 +01:00
|
|
|
if ($this->getRunAllTests()) {
|
|
|
|
$run_tests = $this->getAllTests();
|
|
|
|
} else {
|
|
|
|
$run_tests = $this->getTestsForPaths();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$run_tests) {
|
2014-05-23 22:53:05 +02:00
|
|
|
throw new ArcanistNoEffectException('No tests to run.');
|
2012-12-17 21:56:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$enable_coverage = $this->getEnableCoverage();
|
|
|
|
if ($enable_coverage !== false) {
|
|
|
|
if (!function_exists('xdebug_start_code_coverage')) {
|
|
|
|
if ($enable_coverage === true) {
|
|
|
|
throw new ArcanistUsageException(
|
2014-05-23 22:53:05 +02:00
|
|
|
'You specified --coverage but xdebug is not available, so '.
|
|
|
|
'coverage can not be enabled for PhutilUnitTestEngine.');
|
2012-12-17 21:56:41 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$enable_coverage = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$project_root = $this->getWorkingCopy()->getProjectRoot();
|
|
|
|
|
2013-03-06 22:40:07 +01:00
|
|
|
$test_cases = array();
|
2012-12-17 21:56:41 +01:00
|
|
|
foreach ($run_tests as $test_class) {
|
|
|
|
$test_case = newv($test_class, array());
|
|
|
|
$test_case->setEnableCoverage($enable_coverage);
|
|
|
|
$test_case->setProjectRoot($project_root);
|
|
|
|
if ($this->getPaths()) {
|
|
|
|
$test_case->setPaths($this->getPaths());
|
|
|
|
}
|
2013-02-27 22:59:12 +01:00
|
|
|
if ($this->renderer) {
|
|
|
|
$test_case->setRenderer($this->renderer);
|
|
|
|
}
|
2013-03-06 22:40:07 +01:00
|
|
|
$test_cases[] = $test_case;
|
2012-12-17 21:56:41 +01:00
|
|
|
}
|
|
|
|
|
2013-03-06 22:40:07 +01:00
|
|
|
foreach ($test_cases as $test_case) {
|
|
|
|
$test_case->willRunTestCases($test_cases);
|
|
|
|
}
|
|
|
|
|
|
|
|
$results = array();
|
|
|
|
foreach ($test_cases as $test_case) {
|
|
|
|
$results[] = $test_case->run();
|
|
|
|
}
|
2012-12-17 21:56:41 +01:00
|
|
|
$results = array_mergev($results);
|
2013-03-06 22:40:07 +01:00
|
|
|
|
|
|
|
foreach ($test_cases as $test_case) {
|
|
|
|
$test_case->didRunTestCases($test_cases);
|
|
|
|
}
|
|
|
|
|
2012-12-17 21:56:41 +01:00
|
|
|
return $results;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getAllTests() {
|
|
|
|
$project_root = $this->getWorkingCopy()->getProjectRoot();
|
|
|
|
|
|
|
|
$symbols = id(new PhutilSymbolLoader())
|
|
|
|
->setType('class')
|
|
|
|
->setAncestorClass('ArcanistPhutilTestCase')
|
|
|
|
->setConcreteOnly(true)
|
|
|
|
->selectSymbolsWithoutLoading();
|
|
|
|
|
|
|
|
$in_working_copy = array();
|
2011-01-10 00:22:25 +01:00
|
|
|
|
2012-12-17 21:56:41 +01:00
|
|
|
$run_tests = array();
|
|
|
|
foreach ($symbols as $symbol) {
|
2014-01-02 15:24:15 +01:00
|
|
|
if (!preg_match('@(?:^|/)__tests__/@', $symbol['where'])) {
|
2012-12-17 21:56:41 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$library = $symbol['library'];
|
|
|
|
|
|
|
|
if (!isset($in_working_copy[$library])) {
|
|
|
|
$library_root = phutil_get_library_root($library);
|
|
|
|
$in_working_copy[$library] = Filesystem::isDescendant(
|
|
|
|
$library_root,
|
|
|
|
$project_root);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($in_working_copy[$library]) {
|
|
|
|
$run_tests[] = $symbol['name'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $run_tests;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getTestsForPaths() {
|
2012-06-06 06:08:52 +02:00
|
|
|
$project_root = $this->getWorkingCopy()->getProjectRoot();
|
2011-01-13 00:45:17 +01:00
|
|
|
|
2012-05-31 19:40:35 +02:00
|
|
|
$look_here = array();
|
|
|
|
|
2011-01-10 00:22:25 +01:00
|
|
|
foreach ($this->getPaths() as $path) {
|
|
|
|
$library_root = phutil_get_library_root_for_path($path);
|
|
|
|
if (!$library_root) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$library_name = phutil_get_library_name_for_root($library_root);
|
|
|
|
|
2012-03-05 19:03:13 +01:00
|
|
|
if (!$library_name) {
|
|
|
|
throw new Exception(
|
|
|
|
"Attempting to run unit tests on a libphutil library which has not ".
|
|
|
|
"been loaded, at:\n\n".
|
|
|
|
" {$library_root}\n\n".
|
|
|
|
"This probably means one of two things:\n\n".
|
|
|
|
" - You may need to add this library to .arcconfig.\n".
|
|
|
|
" - You may be running tests on a copy of libphutil or arcanist\n".
|
|
|
|
" using a different copy of libphutil or arcanist. This\n".
|
|
|
|
" operation is not supported.");
|
|
|
|
}
|
|
|
|
|
2012-06-06 06:08:52 +02:00
|
|
|
$path = Filesystem::resolvePath($path, $project_root);
|
2011-01-10 00:22:25 +01:00
|
|
|
|
|
|
|
if (!is_dir($path)) {
|
|
|
|
$path = dirname($path);
|
|
|
|
}
|
|
|
|
|
2011-12-01 01:10:27 +01:00
|
|
|
if ($path == $library_root) {
|
2014-01-09 14:21:55 +01:00
|
|
|
$look_here[$library_name.':.'] = array(
|
|
|
|
'library' => $library_name,
|
|
|
|
'path' => '',
|
|
|
|
);
|
|
|
|
} else if (!Filesystem::isDescendant($path, $library_root)) {
|
2012-04-26 01:13:04 +02:00
|
|
|
// We have encountered some kind of symlink maze -- for instance, $path
|
|
|
|
// is some symlink living outside the library that links into some file
|
|
|
|
// inside the library. Just ignore these cases, since the affected file
|
|
|
|
// does not actually lie within the library.
|
|
|
|
continue;
|
2014-01-09 14:21:55 +01:00
|
|
|
} else {
|
|
|
|
$library_path = Filesystem::readablePath($path, $library_root);
|
|
|
|
do {
|
|
|
|
$look_here[$library_name.':'.$library_path] = array(
|
|
|
|
'library' => $library_name,
|
|
|
|
'path' => $library_path,
|
|
|
|
);
|
|
|
|
$library_path = dirname($library_path);
|
|
|
|
} while ($library_path != '.');
|
2012-04-26 01:13:04 +02:00
|
|
|
}
|
2011-11-18 20:27:55 +01:00
|
|
|
}
|
|
|
|
|
2012-05-31 19:40:35 +02:00
|
|
|
// Look for any class that extends ArcanistPhutilTestCase inside a
|
|
|
|
// __tests__ directory in any parent directory of every affected file.
|
|
|
|
//
|
|
|
|
// The idea is that "infrastructure/__tests__/" tests defines general tests
|
|
|
|
// for all of "infrastructure/", and those tests run for any change in
|
|
|
|
// "infrastructure/". However, "infrastructure/concrete/rebar/__tests__/"
|
|
|
|
// defines more specific tests that run only when rebar/ (or some
|
|
|
|
// subdirectory) changes.
|
2011-01-10 00:22:25 +01:00
|
|
|
|
|
|
|
$run_tests = array();
|
2012-05-31 19:40:35 +02:00
|
|
|
foreach ($look_here as $path_info) {
|
|
|
|
$library = $path_info['library'];
|
|
|
|
$path = $path_info['path'];
|
|
|
|
|
2011-01-13 00:45:17 +01:00
|
|
|
$symbols = id(new PhutilSymbolLoader())
|
|
|
|
->setType('class')
|
2012-05-31 19:40:35 +02:00
|
|
|
->setLibrary($library)
|
2014-01-09 14:21:55 +01:00
|
|
|
->setPathPrefix(($path ? $path.'/' : '').'__tests__/')
|
2011-01-13 00:45:17 +01:00
|
|
|
->setAncestorClass('ArcanistPhutilTestCase')
|
2012-04-22 22:06:32 +02:00
|
|
|
->setConcreteOnly(true)
|
2011-01-13 00:45:17 +01:00
|
|
|
->selectAndLoadSymbols();
|
2012-05-31 19:40:35 +02:00
|
|
|
|
2011-01-13 00:45:17 +01:00
|
|
|
foreach ($symbols as $symbol) {
|
|
|
|
$run_tests[$symbol['name']] = true;
|
|
|
|
}
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|
|
|
|
$run_tests = array_keys($run_tests);
|
|
|
|
|
2012-12-17 21:56:41 +01:00
|
|
|
return $run_tests;
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|
|
|
|
|
2013-02-27 22:59:12 +01:00
|
|
|
public function shouldEchoTestResults() {
|
|
|
|
return !$this->renderer;
|
|
|
|
}
|
|
|
|
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|