resulttool: Improvements to allow integration to the autobuilder

This is a combined patch of the various tweaks and improvements I
made to resulttool:

* Avoid subprocess.run() as its a python 3.6 feature and we
  have autobuilder workers with 3.5.

* Avoid python keywords as variable names

* Simplify dict accesses using .get()

* Rename resultsutils -> resultutils to match the resultstool ->
  resulttool rename

* Formalised the handling of "file_name" to "TESTSERIES" which the code
  will now add into the json configuration data if its not present, based
  on the directory name.

* When we don't have failed test cases, print something saying so
  instead of an empty table

* Tweak the table headers in the report to be more readable (reference
  "Test Series" instead if file_id and ID instead of results_id)

* Improve/simplify the max string length handling

* Merge the counts and percentage data into one table in the report
  since printing two reports of the same data confuses the user

* Removed the confusing header in the regression report

* Show matches, then regressions, then unmatched runs in the regression
  report, also remove chatting unneeded output

* Try harder to "pair" up matching configurations to reduce noise in
  the regressions report

* Abstracted the "mapping" table concept used to pairing in the
  regression code to general code in resultutils

* Created multiple mappings for results analysis, results storage and
  'flattening' results data in a merge

* Simplify the merge command to take a source and a destination,
  letting the destination be a directory or a file, removing the need for
  an output directory parameter

* Add the 'IMAGE_PKGTYPE' and 'DISTRO' config options to the regression
  mappings

* Have the store command place the testresults files in a layout from
  the mapping, making commits into the git repo for results storage more
  useful for simple comparison purposes

* Set the oe-git-archive tag format appropriately for oeqa results
  storage (and simplify the commit messages closer to their defaults)

* Fix oe-git-archive to use the commit/branch data from the results file

* Cleaned up the command option help to match other changes

* Follow the model of git branch/tag processing used by oe-build-perf-report
  and use that to read the data using git show to avoid branch change

* Add ptest summary to the report command

* Update the tests to match the above changes

(From OE-Core rev: ff2c029b568f70aa9960dde04ddd207829812ea0)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie
2019-02-16 18:13:00 +00:00
parent beed7523b6
commit 47eb3d00e9
10 changed files with 535 additions and 513 deletions

View File

@@ -1,6 +1,7 @@
# test result tool - merge multiple testresults.json files
# resulttool - merge multiple testresults.json files into a file or directory
#
# Copyright (c) 2019, Intel Corporation.
# Copyright (c) 2019, Linux Foundation
#
# This program is free software; you can redistribute it and/or modify it
# under the terms and conditions of the GNU General Public License,
@@ -11,61 +12,31 @@
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
# more details.
#
from resulttool.resultsutils import load_json_file, get_dict_value, dump_json_data
import os
import json
class ResultsMerge(object):
def get_test_results(self, logger, file, result_id):
results = load_json_file(file)
if result_id:
result = get_dict_value(logger, results, result_id)
if result:
return {result_id: result}
return result
return results
def merge_results(self, base_results, target_results):
for k in target_results:
base_results[k] = target_results[k]
return base_results
def _get_write_dir(self):
basepath = os.environ['BUILDDIR']
return basepath + '/tmp/'
def dump_merged_results(self, results, output_dir):
file_output_dir = output_dir if output_dir else self._get_write_dir()
dump_json_data(file_output_dir, 'testresults.json', results)
print('Successfully merged results to: %s' % os.path.join(file_output_dir, 'testresults.json'))
def run(self, logger, base_result_file, target_result_file, target_result_id, output_dir):
base_results = self.get_test_results(logger, base_result_file, '')
target_results = self.get_test_results(logger, target_result_file, target_result_id)
if base_results and target_results:
merged_results = self.merge_results(base_results, target_results)
self.dump_merged_results(merged_results, output_dir)
import resulttool.resultutils as resultutils
def merge(args, logger):
merge = ResultsMerge()
merge.run(logger, args.base_result_file, args.target_result_file, args.target_result_id, args.output_dir)
if os.path.isdir(args.target_results):
results = resultutils.load_resultsdata(args.target_results, configmap=resultutils.store_map)
resultutils.append_resultsdata(results, args.base_results, configmap=resultutils.store_map)
resultutils.save_resultsdata(results, args.target_results)
else:
results = resultutils.load_resultsdata(args.base_results, configmap=resultutils.flatten_map)
if os.path.exists(args.target_results):
resultutils.append_resultsdata(results, args.target_results, configmap=resultutils.flatten_map)
resultutils.save_resultsdata(results, os.path.dirname(args.target_results), fn=os.path.basename(args.target_results))
return 0
def register_commands(subparsers):
"""Register subcommands from this plugin"""
parser_build = subparsers.add_parser('merge', help='merge test results',
description='merge results from multiple files',
parser_build = subparsers.add_parser('merge', help='merge test result files/directories',
description='merge the results from multiple files/directories into the target file or directory',
group='setup')
parser_build.set_defaults(func=merge)
parser_build.add_argument('base_result_file',
help='base result file provide the base result set')
parser_build.add_argument('target_result_file',
help='target result file provide the target result set for merging into the '
'base result set')
parser_build.add_argument('-t', '--target-result-id', default='',
help='(optional) default merge all result sets available from target to base '
'unless specific target result id was provided')
parser_build.add_argument('-o', '--output-dir', default='',
help='(optional) default write merged results to <poky>/build/tmp/ unless specific '
'output directory was provided')
parser_build.add_argument('base_results',
help='the results file/directory to import')
parser_build.add_argument('target_results',
help='the target file or directory to merge the base_results with')