2016-11-23 20:15:23 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-05-10 19:34:01 +02:00
|
|
|
from typing import Dict, Optional, 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
|
|
|
|
|
|
|
|
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'
|
|
|
|
EXPECTED_SUBJECT = u"Repository name"
|
|
|
|
EXPECTED_SUBJECT_BRANCH_EVENTS = u"Repository name / master"
|
|
|
|
|
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))
|
2017-03-15 10:15:03 +01:00
|
|
|
commit_info = u'* c ([25f93d2](https://bitbucket.org/kolaszek/repository-name/commits/25f93d22b719e2d678a7ad5ee0ef0d1fcdf39c12))'
|
2017-04-26 02:57:47 +02:00
|
|
|
expected_message = u"kolaszek pushed 1 commit to branch master.\n\n{}".format(commit_info)
|
2017-12-14 19:02:45 +01:00
|
|
|
self.api_stream_message(self.TEST_USER_EMAIL, fixture_name, self.EXPECTED_SUBJECT_BRANCH_EVENTS,
|
|
|
|
expected_message)
|
2016-11-23 20:15:23 +01:00
|
|
|
|
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')
|
|
|
|
commit_info = u'* c ([25f93d2](https://bitbucket.org/kolaszek/repository-name/commits/25f93d22b719e2d678a7ad5ee0ef0d1fcdf39c12))'
|
2017-04-26 02:57:47 +02:00
|
|
|
expected_message = u"kolaszek pushed 1 commit to branch master.\n\n{}".format(commit_info)
|
2017-12-14 19:02:45 +01:00
|
|
|
self.api_stream_message(self.TEST_USER_EMAIL, fixture_name, self.EXPECTED_SUBJECT_BRANCH_EVENTS,
|
|
|
|
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))
|
2017-03-15 10:15:03 +01:00
|
|
|
commit_info = u'* c ([25f93d2](https://bitbucket.org/kolaszek/repository-name/commits/25f93d22b719e2d678a7ad5ee0ef0d1fcdf39c12))\n'
|
2017-04-26 02:57:47 +02:00
|
|
|
expected_message = u"kolaszek pushed 50 commits to branch master.\n\n{}[and 30 more commit(s)]".format(commit_info * 20)
|
2017-12-14 19:02:45 +01:00
|
|
|
self.api_stream_message(self.TEST_USER_EMAIL, fixture_name, self.EXPECTED_SUBJECT_BRANCH_EVENTS,
|
|
|
|
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')
|
|
|
|
commit_info = u'* c ([25f93d2](https://bitbucket.org/kolaszek/repository-name/commits/25f93d22b719e2d678a7ad5ee0ef0d1fcdf39c12))\n'
|
2017-04-26 02:57:47 +02:00
|
|
|
expected_message = u"kolaszek pushed 50 commits to branch master.\n\n{}[and 30 more commit(s)]".format(commit_info * 20)
|
2017-12-14 19:02:45 +01:00
|
|
|
self.api_stream_message(self.TEST_USER_EMAIL, fixture_name, self.EXPECTED_SUBJECT_BRANCH_EVENTS,
|
|
|
|
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))
|
2016-11-23 20:15:23 +01:00
|
|
|
expected_message = u"kolaszek [force pushed](https://bitbucket.org/kolaszek/repository-name)"
|
2017-12-14 19:02:45 +01:00
|
|
|
self.api_stream_message(self.TEST_USER_EMAIL, fixture_name, self.EXPECTED_SUBJECT,
|
|
|
|
expected_message)
|
2016-11-23 20:15:23 +01:00
|
|
|
|
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')
|
2017-12-14 19:02:45 +01:00
|
|
|
result = self.api_post(self.TEST_USER_EMAIL, 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')
|
2017-12-14 19:02:45 +01:00
|
|
|
result = self.api_post(self.TEST_USER_EMAIL, 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)
|