Index: presubmit_canned_checks.py |
diff --git a/presubmit_canned_checks.py b/presubmit_canned_checks.py |
index af88a39b1e8b35099655b3ac1688edfb33c6171e..7d238971892a603e27a9e2c0264a7adc5976f8eb 100644 |
--- a/presubmit_canned_checks.py |
+++ b/presubmit_canned_checks.py |
@@ -742,7 +742,7 @@ def CheckBuildbotPendingBuilds(input_api, output_api, url, max_pendings, |
return [] |
-def CheckOwners(input_api, output_api, source_file_filter=None): |
+def CheckOwners(input_api, output_api, issue_props, source_file_filter=None): |
M-A Ruel
2012/11/21 20:48:38
https://code.google.com/p/chromium/source/search?q
Isaac (away)
2012/11/22 06:53:15
Changed to be an optional argument and moved to th
|
if input_api.is_committing: |
if input_api.tbr: |
return [output_api.PresubmitNotifyResult( |
@@ -761,7 +761,7 @@ def CheckOwners(input_api, output_api, source_file_filter=None): |
owners_db = input_api.owners_db |
owner_email, reviewers = _RietveldOwnerAndReviewers( |
- input_api, |
+ issue_props, |
owners_db.email_regexp, |
approval_needed=input_api.is_committing) |
@@ -791,17 +791,39 @@ def CheckOwners(input_api, output_api, source_file_filter=None): |
return [] |
-def _RietveldOwnerAndReviewers(input_api, email_regexp, approval_needed=False): |
+def _GetRietveldIssueProps(input_api, messages): |
+ """Gets the issue properties from rietveld.""" |
+ issue = input_api.change.issue |
+ if issue and input_api.rietveld: |
+ return input_api.rietveld.get_issue_properties( |
M-A Ruel
2012/11/21 20:48:38
BTW, this could be cached in the interface instead
Isaac (away)
2012/11/22 06:53:15
Good idea, but I'd like to punt on that. Also it
|
+ issue=issue, messages=messages) |
+ |
+ |
+def CheckIssueNotClosed(issue_props, output_api): |
+ """Verify issue is not closed. |
+ |
+ We should not be working with a closed review. CQ and dcommit set this bit, |
+ so it is a pretty good indicator of whether an issue has been committed. |
+ """ |
+ if issue_props['closed']: |
+ return [output_api.PresubmitError( |
+ 'Issue %s is closed. If this issue was already used for a commit,\n' |
+ 'please reset the issue number associated with this branch with:\n' |
+ 'git cl issue 0\n' % issue_props['issue'] |
+ )] |
+ return [] |
+ |
+ |
+def _RietveldOwnerAndReviewers(issue_props, email_regexp, |
+ approval_needed=False): |
"""Return the owner and reviewers of a change, if any. |
If approval_needed is True, only reviewers who have approved the change |
will be returned. |
""" |
- if not input_api.change.issue: |
+ if not issue_props: |
return None, None |
- issue_props = input_api.rietveld.get_issue_properties( |
- int(input_api.change.issue), True) |
if not approval_needed: |
return issue_props['owner_email'], set(issue_props['reviewers']) |
@@ -935,10 +957,16 @@ def PanProjectChecks(input_api, output_api, |
print " %s took a long time: %dms" % (snapshot_memory[1], delta_ms) |
snapshot_memory[:] = (dt2, msg) |
+ issue_props = _GetRietveldIssueProps(input_api, messages=True) |
if owners_check: |
snapshot("checking owners") |
results.extend(input_api.canned_checks.CheckOwners( |
- input_api, output_api, source_file_filter=None)) |
+ input_api, output_api, issue_props, source_file_filter=None)) |
+ |
+ if issue_props: |
+ snapshot("checking review not closed") |
+ results.extend(input_api.canned_checks.CheckIssueNotClosed( |
+ issue_props, output_api)) |
snapshot("checking long lines") |
results.extend(input_api.canned_checks.CheckLongLines( |