2019-02-02 23:53:55 +01:00
|
|
|
from typing import Dict, Union
|
2017-11-16 00:43:10 +01:00
|
|
|
|
|
|
|
from mock import MagicMock, patch
|
2017-04-05 02:52:31 +02:00
|
|
|
|
2016-11-23 20:15:23 +01:00
|
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
2020-01-14 22:06:24 +01:00
|
|
|
|
2016-11-23 20:15:23 +01:00
|
|
|
class BitbucketHookTests(WebhookTestCase):
|
|
|
|
STREAM_NAME = 'bitbucket'
|
2017-04-21 23:35:40 +02:00
|
|
|
URL_TEMPLATE = "/api/v1/external/bitbucket?stream={stream}"
|
2016-11-23 20:15:23 +01:00
|
|
|
FIXTURE_DIR_NAME = 'bitbucket'
|
2020-04-09 21:51:58 +02:00
|
|
|
EXPECTED_TOPIC = "Repository name"
|
|
|
|
EXPECTED_TOPIC_BRANCH_EVENTS = "Repository name / master"
|
2016-11-23 20:15:23 +01:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_bitbucket_on_push_event(self) -> None:
|
2016-11-23 20:15:23 +01:00
|
|
|
fixture_name = 'push'
|
2017-04-21 23:35:40 +02:00
|
|
|
self.url = self.build_webhook_url(payload=self.get_body(fixture_name))
|
2020-04-09 21:51:58 +02:00
|
|
|
commit_info = '* c ([25f93d2](https://bitbucket.org/kolaszek/repository-name/commits/25f93d22b719e2d678a7ad5ee0ef0d1fcdf39c12))'
|
|
|
|
expected_message = "kolaszek pushed 1 commit to branch master.\n\n{}".format(commit_info)
|
2020-03-10 11:48:26 +01:00
|
|
|
self.api_stream_message(self.test_user, fixture_name, self.EXPECTED_TOPIC_BRANCH_EVENTS,
|
2017-12-14 19:02:45 +01:00
|
|
|
expected_message)
|
2016-11-23 20:15:23 +01:00
|
|
|
|
2019-03-16 18:39:03 +01:00
|
|
|
def test_bitbucket_on_push_event_without_user_info(self) -> None:
|
|
|
|
fixture_name = 'push_without_user_info'
|
|
|
|
self.url = self.build_webhook_url(payload=self.get_body(fixture_name))
|
2020-04-09 21:51:58 +02:00
|
|
|
commit_info = '* c ([25f93d2](https://bitbucket.org/kolaszek/repository-name/commits/25f93d22b719e2d678a7ad5ee0ef0d1fcdf39c12))'
|
|
|
|
expected_message = "Someone pushed 1 commit to branch master. Commits by eeshangarg (1).\n\n{}".format(commit_info)
|
2020-03-10 11:48:26 +01:00
|
|
|
self.api_stream_message(self.test_user, fixture_name, self.EXPECTED_TOPIC_BRANCH_EVENTS,
|
2019-03-16 18:39:03 +01:00
|
|
|
expected_message)
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_bitbucket_on_push_event_filtered_by_branches(self) -> None:
|
2017-04-05 02:52:31 +02:00
|
|
|
fixture_name = 'push'
|
|
|
|
self.url = self.build_webhook_url(payload=self.get_body(fixture_name),
|
|
|
|
branches='master,development')
|
2020-04-09 21:51:58 +02:00
|
|
|
commit_info = '* c ([25f93d2](https://bitbucket.org/kolaszek/repository-name/commits/25f93d22b719e2d678a7ad5ee0ef0d1fcdf39c12))'
|
|
|
|
expected_message = "kolaszek pushed 1 commit to branch master.\n\n{}".format(commit_info)
|
2020-03-10 11:48:26 +01:00
|
|
|
self.api_stream_message(self.test_user, fixture_name, self.EXPECTED_TOPIC_BRANCH_EVENTS,
|
2017-12-14 19:02:45 +01:00
|
|
|
expected_message)
|
2017-04-05 02:52:31 +02:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_bitbucket_on_push_commits_above_limit_event(self) -> None:
|
2016-11-23 20:15:23 +01:00
|
|
|
fixture_name = 'push_commits_above_limit'
|
2017-04-21 23:35:40 +02:00
|
|
|
self.url = self.build_webhook_url(payload=self.get_body(fixture_name))
|
2020-04-09 21:51:58 +02:00
|
|
|
commit_info = '* c ([25f93d2](https://bitbucket.org/kolaszek/repository-name/commits/25f93d22b719e2d678a7ad5ee0ef0d1fcdf39c12))\n'
|
|
|
|
expected_message = "kolaszek pushed 50 commits to branch master.\n\n{}[and 30 more commit(s)]".format(commit_info * 20)
|
2020-03-10 11:48:26 +01:00
|
|
|
self.api_stream_message(self.test_user, fixture_name, self.EXPECTED_TOPIC_BRANCH_EVENTS,
|
2017-12-14 19:02:45 +01:00
|
|
|
expected_message)
|
2016-11-23 20:15:23 +01:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_bitbucket_on_push_commits_above_limit_event_filtered_by_branches(self) -> None:
|
2017-04-05 02:52:31 +02:00
|
|
|
fixture_name = 'push_commits_above_limit'
|
|
|
|
self.url = self.build_webhook_url(payload=self.get_body(fixture_name),
|
|
|
|
branches='master,development')
|
2020-04-09 21:51:58 +02:00
|
|
|
commit_info = '* c ([25f93d2](https://bitbucket.org/kolaszek/repository-name/commits/25f93d22b719e2d678a7ad5ee0ef0d1fcdf39c12))\n'
|
|
|
|
expected_message = "kolaszek pushed 50 commits to branch master.\n\n{}[and 30 more commit(s)]".format(commit_info * 20)
|
2020-03-10 11:48:26 +01:00
|
|
|
self.api_stream_message(self.test_user, fixture_name, self.EXPECTED_TOPIC_BRANCH_EVENTS,
|
2017-12-14 19:02:45 +01:00
|
|
|
expected_message)
|
2017-04-05 02:52:31 +02:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_bitbucket_on_force_push_event(self) -> None:
|
2016-11-23 20:15:23 +01:00
|
|
|
fixture_name = 'force_push'
|
2017-04-21 23:35:40 +02:00
|
|
|
self.url = self.build_webhook_url(payload=self.get_body(fixture_name))
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_message = "kolaszek [force pushed](https://bitbucket.org/kolaszek/repository-name)."
|
2020-03-10 11:48:26 +01:00
|
|
|
self.api_stream_message(self.test_user, fixture_name, self.EXPECTED_TOPIC,
|
2017-12-14 19:02:45 +01:00
|
|
|
expected_message)
|
2016-11-23 20:15:23 +01:00
|
|
|
|
2019-03-21 20:39:47 +01:00
|
|
|
def test_bitbucket_on_force_push_event_without_user_info(self) -> None:
|
|
|
|
fixture_name = 'force_push_without_user_info'
|
|
|
|
self.url = self.build_webhook_url(payload=self.get_body(fixture_name))
|
2020-04-09 21:51:58 +02:00
|
|
|
expected_message = "Someone [force pushed](https://bitbucket.org/kolaszek/repository-name/)."
|
2020-03-10 11:48:26 +01:00
|
|
|
self.api_stream_message(self.test_user, fixture_name, self.EXPECTED_TOPIC,
|
2019-03-21 20:39:47 +01:00
|
|
|
expected_message)
|
|
|
|
|
2018-03-13 23:43:02 +01:00
|
|
|
@patch('zerver.webhooks.bitbucket.view.check_send_webhook_message')
|
|
|
|
def test_bitbucket_on_push_event_filtered_by_branches_ignore(self, check_send_webhook_message_mock: MagicMock) -> None:
|
2017-04-05 02:52:31 +02:00
|
|
|
fixture_name = 'push'
|
|
|
|
payload = self.get_body(fixture_name)
|
|
|
|
self.url = self.build_webhook_url(payload=payload,
|
|
|
|
branches='changes,development')
|
2020-03-10 11:48:26 +01:00
|
|
|
result = self.api_post(self.test_user, self.url, payload, content_type="application/json,")
|
2018-03-13 23:43:02 +01:00
|
|
|
self.assertFalse(check_send_webhook_message_mock.called)
|
2017-04-05 02:52:31 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
2018-03-13 23:43:02 +01:00
|
|
|
@patch('zerver.webhooks.bitbucket.view.check_send_webhook_message')
|
2017-04-05 02:52:31 +02:00
|
|
|
def test_bitbucket_push_commits_above_limit_filtered_by_branches_ignore(
|
2018-03-13 23:43:02 +01:00
|
|
|
self, check_send_webhook_message_mock: MagicMock) -> None:
|
2017-04-05 02:52:31 +02:00
|
|
|
fixture_name = 'push_commits_above_limit'
|
|
|
|
payload = self.get_body(fixture_name)
|
|
|
|
self.url = self.build_webhook_url(payload=payload,
|
|
|
|
branches='changes,development')
|
2020-03-10 11:48:26 +01:00
|
|
|
result = self.api_post(self.test_user, self.url, payload, content_type="application/json,")
|
2018-03-13 23:43:02 +01:00
|
|
|
self.assertFalse(check_send_webhook_message_mock.called)
|
2017-04-05 02:52:31 +02:00
|
|
|
self.assert_json_success(result)
|
|
|
|
|
2018-05-10 19:34:01 +02:00
|
|
|
def get_body(self, fixture_name: str) -> Union[str, Dict[str, str]]:
|
2018-04-20 03:57:21 +02:00
|
|
|
return self.webhook_fixture_data(self.FIXTURE_DIR_NAME, fixture_name)
|