Skip to content
This repository was archived by the owner on Mar 14, 2023. It is now read-only.

Commit 1d805b4

Browse files
Ignore new comments
This removes the handling of `r?`.
1 parent 4e166cf commit 1d805b4

File tree

5 files changed

+0
-421
lines changed

5 files changed

+0
-421
lines changed

highfive/newpr.py

-37
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,6 @@ def run(self, event):
6868
elif event == "pull_request" and self.payload["action"] == "opened":
6969
self.new_pr()
7070
return 'OK\n'
71-
elif event == "issue_comment" and self.payload["action"] == "created":
72-
self.new_comment()
73-
return 'OK\n'
7471
else:
7572
return 'Unsupported webhook event.\n'
7673

@@ -398,37 +395,3 @@ def new_pr(self):
398395

399396
if self.repo_config.get("new_pr_labels"):
400397
self.add_labels(owner, repo, issue)
401-
402-
def new_comment(self):
403-
# Check the issue is a PR and is open.
404-
if self.payload['issue', 'state'] != 'open' \
405-
or 'pull_request' not in self.payload['issue']:
406-
return
407-
408-
commenter = self.payload['comment', 'user', 'login']
409-
# Ignore our own comments.
410-
if commenter == self.integration_user:
411-
return
412-
413-
owner = self.payload['repository', 'owner', 'login']
414-
repo = self.payload['repository', 'name']
415-
416-
# Check the commenter is the submitter of the PR or the previous assignee.
417-
author = self.payload['issue', 'user', 'login']
418-
if not (author == commenter or (
419-
self.payload['issue', 'assignee'] \
420-
and commenter == self.payload['issue', 'assignee', 'login']
421-
)):
422-
# Check if commenter is a collaborator.
423-
if not self.is_collaborator(commenter, owner, repo):
424-
return
425-
426-
# Check for r? and set the assignee.
427-
msg = self.payload['comment', 'body']
428-
reviewer = self.find_reviewer(msg)
429-
if reviewer:
430-
issue = str(self.payload['issue', 'number'])
431-
self.set_assignee(
432-
reviewer, owner, repo, issue, self.integration_user,
433-
author, None
434-
)

highfive/tests/fakes.py

-6
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,6 @@ def get_global_configs():
6565

6666

6767
class Payload(object):
68-
@staticmethod
69-
def new_comment():
70-
with open(get_fake_filename('create-comment.payload'), 'r') as fin:
71-
p = json.load(fin)
72-
return payload.Payload(p)
73-
7468
@staticmethod
7569
def new_pr(
7670
number=7, pr_body='The PR comment.', pr_url='https://the.url/',

highfive/tests/fakes/create-comment.payload

-190
This file was deleted.

highfive/tests/test_integration_tests.py

-42
Original file line numberDiff line numberDiff line change
@@ -258,45 +258,3 @@ def make_mocks(cls, patcherize):
258258
config_mock = mock.Mock()
259259
config_mock.get.side_effect = ('integration-user', 'integration-token')
260260
cls.mocks['ConfigParser'].RawConfigParser.return_value = config_mock
261-
262-
def test_author_is_commenter(self):
263-
payload = fakes.Payload.new_comment()
264-
handler = newpr.HighfiveHandler(payload, dummy_config())
265-
api_req_mock = ApiReqMocker([
266-
(
267-
(
268-
'PATCH', newpr.issue_url % ('rust-lang', 'rust', '1'),
269-
{'assignee': 'davidalber'}
270-
),
271-
{'body': {}},
272-
),
273-
])
274-
handler.new_comment()
275-
api_req_mock.verify_calls()
276-
277-
def test_author_not_commenter_is_collaborator(self):
278-
payload = fakes.Payload.new_comment()
279-
payload._payload['issue']['user']['login'] = 'foouser'
280-
281-
handler = newpr.HighfiveHandler(payload, dummy_config())
282-
api_req_mock = ApiReqMocker([
283-
(
284-
(
285-
"GET",
286-
newpr.user_collabo_url % (
287-
'rust-lang', 'rust', 'davidalber'
288-
),
289-
None
290-
),
291-
{'body': {}},
292-
),
293-
(
294-
(
295-
'PATCH', newpr.issue_url % ('rust-lang', 'rust', '1'),
296-
{'assignee': 'davidalber'}
297-
),
298-
{'body': {}},
299-
),
300-
])
301-
handler.new_comment()
302-
api_req_mock.verify_calls()

0 commit comments

Comments
 (0)