Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2529)

Unified Diff: appengine/findit/waterfall/process_base_swarming_task_result_pipeline.py

Issue 2130543004: Waterfall components of regression range finder. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: added another init whoooo Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/findit/waterfall/process_base_swarming_task_result_pipeline.py
diff --git a/appengine/findit/waterfall/process_swarming_task_result_pipeline.py b/appengine/findit/waterfall/process_base_swarming_task_result_pipeline.py
similarity index 58%
copy from appengine/findit/waterfall/process_swarming_task_result_pipeline.py
copy to appengine/findit/waterfall/process_base_swarming_task_result_pipeline.py
index e7232251e48d49852d6a81c73b2500ef56aad683..9f07c8b0c623fecbb5e2f20f212d03692a6a9998 100644
--- a/appengine/findit/waterfall/process_swarming_task_result_pipeline.py
+++ b/appengine/findit/waterfall/process_base_swarming_task_result_pipeline.py
@@ -15,45 +15,7 @@ from waterfall import swarming_util
from waterfall import waterfall_config
-def _CheckTestsRunStatuses(output_json):
- """Checks result status for each test run and saves the numbers accordingly.
-
- Args:
- output_json (dict): A dict of all test results in the swarming task.
-
- Returns:
- tests_statuses (dict): A dict of different statuses for each test.
-
- Currently for each test, we are saving number of total runs,
- number of succeeded runs and number of failed runs.
- """
- tests_statuses = defaultdict(lambda: defaultdict(int))
- if output_json:
- for iteration in output_json.get('per_iteration_data'):
- for test_name, tests in iteration.iteritems():
- tests_statuses[test_name]['total_run'] += len(tests)
- for test in tests:
- tests_statuses[test_name][test['status']] += 1
-
- return tests_statuses
-
-
-def _ConvertDateTime(time_string):
- """Convert UTC time string to datetime.datetime."""
- # Match the time convertion with swarming.py.
- # According to swarming.py,
- # when microseconds are 0, the '.123456' suffix is elided.
- if not time_string:
- return None
- for fmt in ('%Y-%m-%dT%H:%M:%S.%f', '%Y-%m-%dT%H:%M:%S'):
- try:
- return datetime.datetime.strptime(time_string, fmt)
- except ValueError:
- pass
- raise ValueError('Failed to parse %s' % time_string) # pragma: no cover
-
-
-class ProcessSwarmingTaskResultPipeline(BasePipeline):
+class ProcessBaseSwarmingTaskResultPipeline(BasePipeline):
"""A pipeline for monitoring swarming task and processing task result.
This pipeline waits for result for a swarming task and processes the result to
@@ -61,33 +23,65 @@ class ProcessSwarmingTaskResultPipeline(BasePipeline):
"""
HTTP_CLIENT = HttpClient()
+
+ def _CheckTestsRunStatuses(self, output_json):
+ # Checks result status for each test run and saves the numbers accordingly.
+ # Should be overridden by subclass.
+ raise NotImplementedError(
+ '_CheckTestsRunStatuses should be implemented in the child class')
+
+ def _ConvertDateTime(self, time_string):
+ """Convert UTC time string to datetime.datetime."""
+ # Match the time conversion with swarming.py which elides the suffix
+ # when microseconds are 0.
+ if not time_string:
+ return None
+ for fmt in ('%Y-%m-%dT%H:%M:%S.%f', '%Y-%m-%dT%H:%M:%S'):
+ try:
+ return datetime.datetime.strptime(time_string, fmt)
+ except ValueError:
+ pass
+ raise ValueError('Failed to parse %s' % time_string) # pragma: no cover
+
+ def _GetSwarmingTask(self):
+ # Get the appropriate kind of Swarming Task (Wf or Flake).
+ # Should be overwritten by subclass.
+ raise NotImplementedError(
+ '_GetSwarmingTask should be implemented in the child class')
+
+ def _GetArgs(self):
+ # Return list of arguments to call _CheckTestsRunStatuses with - output_json
+ # Should be overwritten by subclass.
+ raise NotImplementedError(
+ '_GetArgs should be implemented in the child class')
+
# Arguments number differs from overridden method - pylint: disable=W0221
- def run(self, master_name, builder_name, build_number, step_name):
+ def run(self, master_name, builder_name, build_number,
+ step_name, task_id, *args): #pragma: no cover.
"""
Args:
master_name (str): The master name.
builder_name (str): The builder name.
build_number (str): The build number.
step_name (str): The failed test step name.
+ task_id (str): Id for the swarming task which is triggered by Findit.
Returns:
A dict of lists for reliable/flaky tests.
"""
-
+ call_args = self._GetArgs(master_name, builder_name, build_number,
+ step_name, *args)
+ assert task_id
timeout_hours = waterfall_config.GetSwarmingSettings().get(
'task_timeout_hours')
deadline = time.time() + timeout_hours * 60 * 60
server_query_interval_seconds = waterfall_config.GetSwarmingSettings().get(
'server_query_interval_seconds')
-
task_started = False
task_completed = False
tests_statuses = {}
step_name_no_platform = None
- task = WfSwarmingTask.Get(
- master_name, builder_name, build_number, step_name)
- task_id = task.task_id
while not task_completed:
# Keeps monitoring the swarming task, waits for it to complete.
data = swarming_util.GetSwarmingTaskResultById(
@@ -97,14 +91,13 @@ class ProcessSwarmingTaskResultPipeline(BasePipeline):
data.get('tags', {}), 'ref_name')
if task_state not in swarming_util.STATES_RUNNING:
task_completed = True
- task = WfSwarmingTask.Get(
- master_name, builder_name, build_number, step_name)
+ task = self._GetSwarmingTask(*call_args)
if task_state == swarming_util.STATE_COMPLETED:
outputs_ref = data.get('outputs_ref')
output_json = swarming_util.GetSwarmingTaskFailureLog(
outputs_ref, self.HTTP_CLIENT)
- tests_statuses = _CheckTestsRunStatuses(output_json)
-
+ tests_statuses = self._CheckTestsRunStatuses(
+ output_json, *call_args)
task.status = analysis_status.COMPLETED
task.tests_statuses = tests_statuses
else:
@@ -120,28 +113,22 @@ class ProcessSwarmingTaskResultPipeline(BasePipeline):
if task_state == 'RUNNING' and not task_started:
# swarming task just starts, update status.
task_started = True
- task = WfSwarmingTask.Get(
- master_name, builder_name, build_number, step_name)
+ task = self._GetSwarmingTask(*call_args)
task.status = analysis_status.RUNNING
task.put()
-
time.sleep(server_query_interval_seconds)
-
if time.time() > deadline:
# Updates status as ERROR.
- task = WfSwarmingTask.Get(
- master_name, builder_name, build_number, step_name)
+ task = self._GetSwarmingTask(*call_args)
task.status = analysis_status.ERROR
task.put()
logging.error('Swarming task timed out after %d hours.' % timeout_hours)
break # Stops the loop and return.
-
# Update swarming task metadate.
- task = WfSwarmingTask.Get(
- master_name, builder_name, build_number, step_name)
- task.created_time = _ConvertDateTime(data.get('created_ts'))
- task.started_time = _ConvertDateTime(data.get('started_ts'))
- task.completed_time = _ConvertDateTime(data.get('completed_ts'))
+ task = self._GetSwarmingTask(*call_args)
+ task.created_time = self._ConvertDateTime(data.get('created_ts'))
+ task.started_time = self._ConvertDateTime(data.get('started_ts'))
+ task.completed_time = self._ConvertDateTime(data.get('completed_ts'))
task.put()
- return step_name, (step_name_no_platform, task.classified_tests)
+ return step_name, step_name_no_platform

Powered by Google App Engine
This is Rietveld 408576698