2011-01-10 00:22:25 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Facebook, Inc.
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class ArcanistUnitWorkflow extends ArcanistBaseWorkflow {
|
|
|
|
|
|
|
|
const RESULT_OKAY = 0;
|
|
|
|
const RESULT_UNSOUND = 1;
|
|
|
|
const RESULT_FAIL = 2;
|
|
|
|
const RESULT_SKIP = 3;
|
|
|
|
|
2011-01-12 07:13:31 +01:00
|
|
|
private $unresolvedTests;
|
|
|
|
|
2011-01-10 00:22:25 +01:00
|
|
|
public function getCommandHelp() {
|
|
|
|
return phutil_console_format(<<<EOTEXT
|
|
|
|
**unit**
|
|
|
|
Supports: git, svn
|
|
|
|
Run unit tests that cover local changes.
|
|
|
|
EOTEXT
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getArguments() {
|
|
|
|
return array(
|
|
|
|
'*' => 'paths',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function requiresWorkingCopy() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function requiresRepositoryAPI() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function run() {
|
|
|
|
|
|
|
|
$working_copy = $this->getWorkingCopy();
|
|
|
|
|
|
|
|
$engine_class = $this->getArgument(
|
|
|
|
'engine',
|
|
|
|
$working_copy->getConfig('unit_engine'));
|
|
|
|
|
|
|
|
if (!$engine_class) {
|
|
|
|
throw new ArcanistNoEngineException(
|
|
|
|
"No unit test engine is configured for this project. Edit .arcconfig ".
|
|
|
|
"to specify a unit test engine.");
|
|
|
|
}
|
|
|
|
|
|
|
|
$ok = phutil_autoload_class($engine_class);
|
|
|
|
if (!$ok) {
|
|
|
|
throw new ArcanistUsageException(
|
|
|
|
"Configured unit test engine '{$engine_class}' could not be loaded.");
|
|
|
|
}
|
|
|
|
|
|
|
|
$repository_api = $this->getRepositoryAPI();
|
|
|
|
|
|
|
|
if ($this->getArgument('paths')) {
|
|
|
|
// TODO: deal with git stuff
|
|
|
|
|
|
|
|
$paths = $this->getArgument('paths');
|
|
|
|
} else {
|
|
|
|
$paths = $repository_api->getWorkingCopyStatus();
|
|
|
|
$paths = array_keys($paths);
|
|
|
|
}
|
|
|
|
|
|
|
|
$engine = newv($engine_class, array());
|
|
|
|
$engine->setWorkingCopy($working_copy);
|
|
|
|
$engine->setPaths($paths);
|
|
|
|
|
|
|
|
$results = $engine->run();
|
|
|
|
|
|
|
|
$status_codes = array(
|
|
|
|
ArcanistUnitTestResult::RESULT_PASS => phutil_console_format(
|
|
|
|
' <bg:green>** PASS **</bg>'),
|
|
|
|
ArcanistUnitTestResult::RESULT_FAIL => phutil_console_format(
|
|
|
|
' <bg:red>** FAIL **</bg>'),
|
|
|
|
ArcanistUnitTestResult::RESULT_SKIP => phutil_console_format(
|
|
|
|
' <bg:yellow>** SKIP **</bg>'),
|
|
|
|
ArcanistUnitTestResult::RESULT_BROKEN => phutil_console_format(
|
|
|
|
' <bg:red>** BROKEN **</bg>'),
|
|
|
|
ArcanistUnitTestResult::RESULT_UNSOUND => phutil_console_format(
|
|
|
|
' <bg:yellow>** UNSOUND **</bg>'),
|
|
|
|
);
|
|
|
|
|
2011-01-12 07:13:31 +01:00
|
|
|
$unresolved = array();
|
2011-01-10 00:22:25 +01:00
|
|
|
foreach ($results as $result) {
|
|
|
|
$result_code = $result->getResult();
|
|
|
|
echo $status_codes[$result_code].' '.$result->getName()."\n";
|
|
|
|
if ($result_code != ArcanistUnitTestResult::RESULT_PASS) {
|
|
|
|
echo $result->getUserData()."\n";
|
2011-01-12 07:13:31 +01:00
|
|
|
$unresolved[] = $result;
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|
|
|
|
}
|
2011-01-12 07:13:31 +01:00
|
|
|
$this->unresolvedTests = $unresolved;
|
2011-01-10 00:22:25 +01:00
|
|
|
|
|
|
|
$overall_result = self::RESULT_OKAY;
|
|
|
|
foreach ($results as $result) {
|
|
|
|
$result_code = $result->getResult();
|
|
|
|
if ($result_code == ArcanistUnitTestResult::RESULT_FAIL ||
|
|
|
|
$result_code == ArcanistUnitTestResult::RESULT_BROKEN) {
|
|
|
|
$overall_result = self::RESULT_FAIL;
|
|
|
|
break;
|
2011-01-12 07:13:31 +01:00
|
|
|
} else if ($result_code == ArcanistUnitTestResult::RESULT_UNSOUND) {
|
2011-01-10 00:22:25 +01:00
|
|
|
$overall_result = self::RESULT_UNSOUND;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $overall_result;
|
|
|
|
}
|
2011-01-12 07:13:31 +01:00
|
|
|
|
|
|
|
public function getUnresolvedTests() {
|
|
|
|
return $this->unresolvedTests;
|
|
|
|
}
|
|
|
|
|
2011-01-10 00:22:25 +01:00
|
|
|
}
|