Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """Generic presubmit checks that can be reused by other presubmit checks.""" | 5 """Generic presubmit checks that can be reused by other presubmit checks.""" |
| 6 | 6 |
| 7 ### Description checks | 7 ### Description checks |
| 8 | 8 |
| 9 def CheckChangeHasTestField(input_api, output_api): | 9 def CheckChangeHasTestField(input_api, output_api): |
| 10 """Requires that the changelist have a TEST= field.""" | 10 """Requires that the changelist have a TEST= field.""" |
| (...skipping 608 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 619 out.append('%s has %d build(s) pending' % | 619 out.append('%s has %d build(s) pending' % |
| 620 (builder_name, pending_builds_len)) | 620 (builder_name, pending_builds_len)) |
| 621 if out: | 621 if out: |
| 622 return [output_api.PresubmitPromptWarning( | 622 return [output_api.PresubmitPromptWarning( |
| 623 'Build(s) pending. It is suggested to wait that no more than %d ' | 623 'Build(s) pending. It is suggested to wait that no more than %d ' |
| 624 'builds are pending.' % max_pendings, | 624 'builds are pending.' % max_pendings, |
| 625 long_text='\n'.join(out))] | 625 long_text='\n'.join(out))] |
| 626 return [] | 626 return [] |
| 627 | 627 |
| 628 | 628 |
| 629 def CheckOwners(input_api, output_api, email_regexp=None, | 629 def CheckOwners(input_api, output_api, source_file_filter=None): |
| 630 source_file_filter=None): | 630 if not input_api.is_committing: |
| 631 return [] | |
| 632 if input_api.tbr: | |
| 633 return [output_api.PresubmitNotifyResult('--tbr was specified, ' | |
| 634 'skipping OWNERS check')] | |
| 635 if not input_api.change.issue: | |
| 636 return [output_api.PresubmitError('Change not uploaded for review')] | |
| 637 | |
| 631 affected_files = set([f.LocalPath() for f in | 638 affected_files = set([f.LocalPath() for f in |
| 632 input_api.change.AffectedFiles(source_file_filter)]) | 639 input_api.change.AffectedFiles(source_file_filter)]) |
| 640 | |
| 633 owners_db = input_api.owners_db | 641 owners_db = input_api.owners_db |
| 634 if email_regexp: | 642 owner, approvers = _RietveldOwnerAndApprovers(input_api, |
| 635 owners_db.email_regexp = input_api.re.compile(email_regexp) | 643 owners_db.email_regexp) |
| 644 approvers_plus_owner = approvers.union(set([owner])) | |
| 636 | 645 |
| 637 if input_api.is_committing and input_api.tbr: | 646 missing_files = owners_db.files_not_covered_by(affected_files, |
| 638 return [output_api.PresubmitNotifyResult( | 647 approvers_plus_owner) |
| 639 '--tbr was specified, skipping OWNERS check')] | 648 if missing_files: |
| 640 elif input_api.is_committing: | 649 return [output_api.PresubmitError('Missing LGTM from an OWNER for: %s' % |
| 641 approvers = _Approvers(input_api, owners_db.email_regexp) | 650 ','.join(missing_files))] |
| 642 missing_files = owners_db.files_not_covered_by(affected_files, approvers) | |
| 643 if missing_files: | |
| 644 return [output_api.PresubmitError('Missing LGTM from an OWNER for: %s' % | |
| 645 ','.join(missing_files))] | |
| 646 return [] | |
| 647 elif input_api.change.tags.get('R'): | |
| 648 return [] | |
| 649 | 651 |
| 650 suggested_reviewers = owners_db.reviewers_for(affected_files) | 652 if not approvers: |
| 651 return [output_api.PresubmitAddReviewers(suggested_reviewers)] | 653 return [output_api.PresubmitError('Missing LGTM from someone other than ' |
|
M-A Ruel
2011/03/24 15:09:23
nit: I prefer this style
return [output_api.Presub
| |
| 654 + owner)] | |
| 655 return [] | |
| 652 | 656 |
| 653 | 657 |
| 654 def _Approvers(input_api, email_regexp): | 658 def _RietveldOwnerAndApprovers(input_api, email_regexp): |
| 655 if not input_api.change.issue: | 659 """Return the owner and approvers of a change, if any.""" |
| 656 return [] | |
| 657 | |
| 658 # TODO(dpranke): Should figure out if input_api.host_url is supposed to | 660 # TODO(dpranke): Should figure out if input_api.host_url is supposed to |
| 659 # be a host or a scheme+host and normalize it there. | 661 # be a host or a scheme+host and normalize it there. |
| 660 host = input_api.host_url | 662 host = input_api.host_url |
| 661 if not host.startswith('http://') and not host.startswith('https://'): | 663 if not host.startswith('http://') and not host.startswith('https://'): |
| 662 host = 'http://' + host | 664 host = 'http://' + host |
| 663 url = '%s/api/%s?messages=true' % (host, input_api.change.issue) | 665 url = '%s/api/%s?messages=true' % (host, input_api.change.issue) |
| 664 | 666 |
| 665 f = input_api.urllib2.urlopen(url) | 667 f = input_api.urllib2.urlopen(url) |
| 666 issue_props = input_api.json.load(f) | 668 issue_props = input_api.json.load(f) |
| 667 owner = input_api.re.escape(issue_props['owner']) | 669 messages = issue_props.get('messages', []) |
| 670 owner = issue_props['owner'] | |
| 671 owner_regexp = input_api.re.compile(input_api.re.escape(owner)) | |
| 672 approvers = _GetApprovers(messages, email_regexp, owner_regexp) | |
| 673 | |
| 674 return (owner, set(approvers)) | |
| 675 | |
| 676 | |
| 677 def _IsApprovingComment(text): | |
| 678 """Implements the logic for parsing a change comment for approval.""" | |
| 679 | |
| 680 # Any comment that contains a line where the first non-quoted text matches | |
| 681 # one of the four strings below is an approval. | |
| 682 # | |
| 683 # TODO(dpranke): implement support for "LGTM++" and rescinding approval. | |
| 684 # Also, this check is simpler than the check used inside Google, which | |
| 685 # requires the first non-quoted line to match one of the phrases exactly. | |
| 686 for l in text.splitlines(): | |
| 687 l = l.strip().lower() | |
| 688 if (l.startswith('lgtm') or l.startswith('lg') or | |
|
M-A Ruel
2011/03/24 15:09:23
I disagree in two ways:
I prefer to accept lgtm a
| |
| 689 l.startswith('looks good') or l.startswith('looks good to me')): | |
| 690 return True | |
| 691 return False | |
| 692 | |
| 693 | |
| 694 def _GetApprovers(messages, email_regexp, owner_regexp): | |
| 695 """Returns the set of approvers for a change given the owner and messages. | |
| 696 | |
| 697 Messages should be a list of dicts containing 'sender' and 'text' keys.""" | |
| 668 | 698 |
| 669 # TODO(dpranke): This mimics the logic in | 699 # TODO(dpranke): This mimics the logic in |
| 670 # /tools/commit-queue/verifiers/reviewer_lgtm.py | 700 # /tools/commit-queue/verifiers/reviewer_lgtm.py |
| 671 # We should share the code and/or remove the check there where it is | 701 # We should share the code and/or remove the check there where it is |
| 672 # redundant (since the commit queue also enforces the presubmit checks). | 702 # redundant (since the commit queue also enforces the presubmit checks). |
| 673 def match_reviewer(r): | 703 def match_reviewer(r): |
| 674 return email_regexp.match(r) and not input_api.re.match(owner, r) | 704 return email_regexp.match(r) and not owner_regexp.match(r) |
| 675 | 705 |
| 676 approvers = [] | 706 approvers = [] |
| 677 for m in issue_props.get('messages', []): | 707 for m in messages: |
| 678 if 'lgtm' in m['text'].lower() and match_reviewer(m['sender']): | 708 sender = m['sender'] |
| 679 approvers.append(m['sender']) | 709 if _IsApprovingComment(m['text']) and match_reviewer(sender): |
| 710 approvers.append(sender) | |
| 680 return set(approvers) | 711 return set(approvers) |
| 681 | |
| OLD | NEW |