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

Unified Diff: tools/rebaseline.py

Issue 16093025: rebaseline.py: if --tests is not specified, get test list from actual-results.json (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: read_test_list_from_json_file Created 7 years, 6 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
« no previous file with comments | « gm/__init__.py ('k') | tools/tests/rebaseline/all/output-expected/stdout » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/rebaseline.py
===================================================================
--- tools/rebaseline.py (revision 9433)
+++ tools/rebaseline.py (working copy)
@@ -13,11 +13,24 @@
checkout, the files will be added to the staging area for commit.
'''
+# System-level imports
import argparse
import os
import subprocess
import sys
+import urllib2
+# Imports from within Skia
+#
+# Make sure that they are in the PYTHONPATH, but add them at the *end*
+# so any that are already in the PYTHONPATH will be preferred.
+GM_DIRECTORY = os.path.realpath(
+ os.path.join(os.path.dirname(os.path.dirname(__file__)), 'gm'))
+if GM_DIRECTORY not in sys.path:
+ sys.path.append(GM_DIRECTORY)
+import gm_json
+
+
# Mapping of gm-expectations subdir (under
# https://skia.googlecode.com/svn/gm-expected/ )
# to builder name (see list at http://108.170.217.252:10117/builders )
@@ -53,22 +66,27 @@
class Rebaseliner(object):
# params:
- # tests: list of tests to rebaseline
+ # tests: list of tests to rebaseline, or None if we should rebaseline
+ # whatever tests the actual-results.json file tells us to
+ # json_base_url: base URL from which to read json_filename
+ # json_filename: filename (under json_base_url) from which to read a
+ # summary of results
# configs: which configs to run for each test
# subdirs: which platform subdirectories to rebaseline; if an empty list,
# rebaseline all platform subdirectories
# dry_run: if True, instead of actually downloading files or adding
# files to checkout, display a list of operations that
# we would normally perform
- def __init__(self, tests, configs=[], subdirs=[], dry_run=False):
- if not tests:
- raise Exception('at least one test must be specified')
+ def __init__(self, tests, json_base_url, json_filename,
+ configs=[], subdirs=[], dry_run=False):
self._tests = tests
self._configs = configs
if not subdirs:
self._subdirs = sorted(SUBDIR_MAPPING.keys())
else:
self._subdirs = subdirs
+ self._json_base_url = json_base_url
+ self._json_filename = json_filename
self._dry_run = dry_run
self._is_svn_checkout = (
os.path.exists('.svn') or
@@ -101,6 +119,38 @@
'--output', temp_filename ])
self._Call([ 'mv', temp_filename, dest_filename ])
+ # Returns the full contents of a URL, as a single string.
+ #
+ # Unlike standard URL handling, we allow relative "file:" URLs;
+ # for example, "file:one/two" resolves to the file ./one/two
+ # (relative to current working dir)
+ def _GetContentsOfUrl(self, url):
+ file_prefix = 'file:'
+ if url.startswith(file_prefix):
+ filename = url[len(file_prefix):]
+ return open(filename, 'r').read()
+ else:
+ return urllib2.urlopen(url).read()
+
+ # Returns a list of tests that require rebaselining.
+ #
+ # params:
+ # json_url: URL pointing to a JSON actual result summary file
+ #
+ # TODO(epoger): add a parameter indicating whether "no-comparison"
+ # results (those for which we don't have any expectations yet)
+ # should be rebaselined. For now, we only return failed expectations.
+ def _GetTestsToRebaseline(self, json_url):
+ print ('# Getting tests to rebaseline from JSON summary file %s ...'
+ % json_url)
+ json_contents = self._GetContentsOfUrl(json_url)
+ json_dict = gm_json.LoadFromString(json_contents)
+ actual_results = json_dict[gm_json.JSONKEY_ACTUALRESULTS]
+ failed_results = actual_results[gm_json.JSONKEY_ACTUALRESULTS_FAILED]
+ tests_to_rebaseline = failed_results.keys()
+ print '# ... found tests_to_rebaseline %s' % tests_to_rebaseline
+ return tests_to_rebaseline
+
# Rebaseline a single file.
def _RebaselineOneFile(self, expectations_subdir, builder_name,
infilename, outfilename):
@@ -164,13 +214,20 @@
# Rebaseline all platforms/tests/types we specified in the constructor.
def RebaselineAll(self):
- for test in self._tests:
- for subdir in self._subdirs:
- if not subdir in SUBDIR_MAPPING.keys():
- raise Exception(('unrecognized platform subdir "%s"; ' +
- 'should be one of %s') % (
- subdir, SUBDIR_MAPPING.keys()))
- builder_name = SUBDIR_MAPPING[subdir]
+ for subdir in self._subdirs:
+ if not subdir in SUBDIR_MAPPING.keys():
+ raise Exception(('unrecognized platform subdir "%s"; ' +
+ 'should be one of %s') % (
+ subdir, SUBDIR_MAPPING.keys()))
+ builder_name = SUBDIR_MAPPING[subdir]
+ if self._tests:
epoger 2013/06/04 18:52:23 Patchset 3: If --tests has been specified, just us
+ tests = self._tests
+ else:
+ json_url = '/'.join([self._json_base_url,
+ subdir, builder_name, subdir,
+ self._json_filename])
+ tests = self._GetTestsToRebaseline(json_url=json_url)
+ for test in tests:
self._RebaselineOneTest(expectations_subdir=subdir,
builder_name=builder_name,
test=test)
@@ -187,14 +244,26 @@
help='instead of actually downloading files or adding ' +
'files to checkout, display a list of operations that ' +
'we would normally perform')
+parser.add_argument('--json_base_url',
+ help='base URL from which to read JSON_FILENAME ' +
+ 'files; defaults to %(default)s',
+ default='http://skia-autogen.googlecode.com/svn/gm-actual')
+parser.add_argument('--json_filename',
+ help='filename (under JSON_BASE_URL) to read a summary ' +
+ 'of results from; defaults to %(default)s',
+ default='actual-results.json')
parser.add_argument('--subdirs', metavar='SUBDIR', nargs='+',
help='which platform subdirectories to rebaseline; ' +
'if unspecified, rebaseline all subdirs, same as ' +
'"--subdirs %s"' % ' '.join(sorted(SUBDIR_MAPPING.keys())))
-parser.add_argument('--tests', metavar='TEST', nargs='+', required=True,
+parser.add_argument('--tests', metavar='TEST', nargs='+',
help='which tests to rebaseline, e.g. ' +
- '"--tests aaclip bigmatrix"')
+ '"--tests aaclip bigmatrix"; if unspecified, then all ' +
+ 'failing tests (according to the actual-results.json ' +
+ 'file) will be rebaselined.')
args = parser.parse_args()
rebaseliner = Rebaseliner(tests=args.tests, configs=args.configs,
- subdirs=args.subdirs, dry_run=args.dry_run)
+ subdirs=args.subdirs, dry_run=args.dry_run,
+ json_base_url=args.json_base_url,
+ json_filename=args.json_filename)
rebaseliner.RebaselineAll()
« no previous file with comments | « gm/__init__.py ('k') | tools/tests/rebaseline/all/output-expected/stdout » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698