1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 14:52:40 +01:00

Try to ship lint and unit results to Harbormaster autotargets

Summary:
Ref T8095. Before uploading lint/unit results in the old way, try to ship them to autotargets.

If we can query and upload data to autotargets, do so, and then skip the older style uploads.

Test Plan: Used `arc diff` to ship data up via Harbormaster.

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T8095

Differential Revision: https://secure.phabricator.com/D13381
This commit is contained in:
epriestley 2015-06-23 10:22:57 -07:00
parent f06eea0d84
commit b697a3b80b

View file

@ -21,6 +21,7 @@ final class ArcanistDiffWorkflow extends ArcanistWorkflow {
private $haveUncommittedChanges = false; private $haveUncommittedChanges = false;
private $diffPropertyFutures = array(); private $diffPropertyFutures = array();
private $commitMessageFromRevision; private $commitMessageFromRevision;
private $hitAutotargets;
public function getWorkflowName() { public function getWorkflowName() {
return 'diff'; return 'diff';
@ -522,6 +523,13 @@ EOTEXT
$this->pushChangesToStagingArea($this->diffID); $this->pushChangesToStagingArea($this->diffID);
$phid = idx($diff_info, 'phid');
if ($phid) {
$this->hitAutotargets = $this->updateAutotargets(
$phid,
$unit_result);
}
$this->updateLintDiffProperty(); $this->updateLintDiffProperty();
$this->updateUnitDiffProperty(); $this->updateUnitDiffProperty();
$this->updateLocalDiffProperty(); $this->updateLocalDiffProperty();
@ -2358,19 +2366,18 @@ EOTEXT
*/ */
private function updateLintDiffProperty() { private function updateLintDiffProperty() {
if (strlen($this->excuses['lint'])) { if (strlen($this->excuses['lint'])) {
$this->updateDiffProperty('arc:lint-excuse', $this->updateDiffProperty(
'arc:lint-excuse',
json_encode($this->excuses['lint'])); json_encode($this->excuses['lint']));
} }
if (!$this->hitAutotargets) {
if ($this->unresolvedLint) { if ($this->unresolvedLint) {
$this->updateDiffProperty('arc:lint', json_encode($this->unresolvedLint)); $this->updateDiffProperty(
'arc:lint',
json_encode($this->unresolvedLint));
} }
$postponed = $this->postponedLinters;
if ($postponed) {
$this->updateDiffProperty('arc:lint-postponed', json_encode($postponed));
} }
} }
@ -2387,10 +2394,12 @@ EOTEXT
json_encode($this->excuses['unit'])); json_encode($this->excuses['unit']));
} }
if (!$this->hitAutotargets) {
if ($this->testResults) { if ($this->testResults) {
$this->updateDiffProperty('arc:unit', json_encode($this->testResults)); $this->updateDiffProperty('arc:unit', json_encode($this->testResults));
} }
} }
}
/** /**
@ -2690,4 +2699,103 @@ EOTEXT
} }
} }
/**
* Try to upload lint and unit test results into modern Harbormaster build
* targets.
*
* @return bool True if everything was uploaded to build targets.
*/
private function updateAutotargets($diff_phid, $unit_result) {
$lint_key = 'arcanist.lint';
$unit_key = 'arcanist.unit';
try {
$result = $this->getConduit()->callMethodSynchronous(
'harbormaster.queryautotargets',
array(
'objectPHID' => $diff_phid,
'targetKeys' => array(
$lint_key,
$unit_key,
),
));
$targets = idx($result, 'targetMap', array());
} catch (Exception $ex) {
return false;
}
$futures = array();
$lint_target = idx($targets, $lint_key);
if ($lint_target) {
$lint = nonempty($this->unresolvedLint, array());
foreach ($lint as $key => $message) {
$lint[$key] = $this->getModernLintDictionary($message);
}
$futures[] = $this->getConduit()->callMethod(
'harbormaster.sendmessage',
array(
'buildTargetPHID' => $lint_target,
'lint' => array_values($lint),
'type' => $lint ? 'fail' : 'pass',
));
}
$unit_target = idx($targets, $unit_key);
if ($unit_target) {
$unit = nonempty($this->testResults, array());
foreach ($unit as $key => $message) {
$unit[$key] = $this->getModernUnitDictionary($message);
}
switch ($unit_result) {
case ArcanistUnitWorkflow::RESULT_OKAY:
case ArcanistUnitWorkflow::RESULT_SKIP:
$type = 'pass';
break;
default:
$type = 'fail';
break;
}
$futures[] = $this->getConduit()->callMethod(
'harbormaster.sendmessage',
array(
'buildTargetPHID' => $unit_target,
'unit' => array_values($unit),
'type' => $type,
));
}
try {
foreach (new FutureIterator($futures) as $future) {
$future->resolve();
}
return true;
} catch (Exception $ex) {
return false;
}
}
private function getModernLintDictionary(array $map) {
$map = $this->getModernCommonDictionary($map);
return $map;
}
private function getModernUnitDictionary(array $map) {
$map = $this->getModernCommonDictionary($map);
return $map;
}
private function getModernCommonDictionary(array $map) {
foreach ($map as $key => $value) {
if ($value === null) {
unset($map[$key]);
}
}
return $map;
}
} }