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

Unified Diff: presubmit_support.py

Issue 6646009: update git-cl for OWNERS file support via .git/hooks/pre-cl-* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: fix method parameter name Created 9 years, 9 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: presubmit_support.py
diff --git a/presubmit_support.py b/presubmit_support.py
index 0868a5d7bbd6f442d68204e5f7895f825bcad400..9d5d2947b3a1a4bbde1d4032cd939de411c334ba 100755
--- a/presubmit_support.py
+++ b/presubmit_support.py
@@ -227,23 +227,23 @@ class InputApi(object):
r"(|.*[\\\/])\.svn[\\\/].*",
)
- # TODO(dpranke): Update callers to pass in is_tbr, host_url, remove
- # default arguments.
- def __init__(self, change, presubmit_path, is_committing, is_tbr=False,
- host_url='http://codereview.chromium.org'):
+ def __init__(self, change, presubmit_path, is_committing, tbr, host_url=None):
"""Builds an InputApi object.
Args:
change: A presubmit.Change object.
presubmit_path: The path to the presubmit script being processed.
is_committing: True if the change is about to be committed.
+ tbr: True if '--tbr' was passed to skip any reviewer/owner checks
+ host_url: scheme, host, and path of rietveld instance
"""
# Version number of the presubmit_support script.
self.version = [int(x) for x in __version__.split('.')]
self.change = change
self.host_url = host_url
self.is_committing = is_committing
- self.is_tbr = is_tbr
+ self.tbr = tbr
+ self.host_url = host_url or 'http://codereview.chromium.org'
M-A Ruel 2011/03/11 00:48:41 Bad idea. You don't want reviews on the private in
# We expose various modules and functions as attributes of the input_api
# so that presubmit scripts don't have to import them.
@@ -935,14 +935,19 @@ def DoGetTrySlaves(changed_files,
class PresubmitExecuter(object):
- def __init__(self, change, committing):
+ def __init__(self, change, committing, tbr, host_url):
"""
Args:
change: The Change object.
committing: True if 'gcl commit' is running, False if 'gcl upload' is.
+ tbr: True if '--tbr' was passed to skip any reviewer/owner checks
+ host_url: scheme, host, and path of rietveld instance
+ (or None for default)
"""
self.change = change
self.committing = committing
+ self.tbr = tbr
+ self.host_url = host_url
def ExecPresubmitScript(self, script_text, presubmit_path):
"""Executes a single presubmit script.
@@ -961,7 +966,8 @@ class PresubmitExecuter(object):
os.chdir(os.path.dirname(presubmit_path))
# Load the presubmit script into context.
- input_api = InputApi(self.change, presubmit_path, self.committing)
+ input_api = InputApi(self.change, presubmit_path, self.committing,
+ self.tbr, self.host_url)
context = {}
exec script_text in context
@@ -992,14 +998,16 @@ class PresubmitExecuter(object):
os.chdir(main_path)
return result
-
+# TODO(dpranke): make all callers pass in tbr, host_url?
def DoPresubmitChecks(change,
committing,
verbose,
output_stream,
input_stream,
default_presubmit,
- may_prompt):
+ may_prompt,
+ tbr=False,
+ host_url=None):
"""Runs all presubmit checks that apply to the files in the change.
This finds all PRESUBMIT.py files in directories enclosing the files in the
@@ -1017,6 +1025,9 @@ def DoPresubmitChecks(change,
input_stream: A stream to read input from the user.
default_presubmit: A default presubmit script to execute in any case.
may_prompt: Enable (y/n) questions on warning or error.
+ tbr: was --tbr specified to skip any reviewer/owner checks?
+ host_url: scheme, host, and port of host to use for rietveld-related
+ checks
Warning:
If may_prompt is true, output_stream SHOULD be sys.stdout and input_stream
@@ -1032,7 +1043,7 @@ def DoPresubmitChecks(change,
if not presubmit_files and verbose:
output_stream.write("Warning, no presubmit.py found.\n")
results = []
- executer = PresubmitExecuter(change, committing)
+ executer = PresubmitExecuter(change, committing, tbr, host_url)
if default_presubmit:
if verbose:
output_stream.write("Running default presubmit script.\n")
« git_cl_hooks.py ('K') | « git_cl_hooks.py ('k') | tests/presubmit_unittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698