2017-11-16 00:43:10 +01:00
from mock import MagicMock , patch
2016-10-25 14:50:42 +02:00
from zerver . lib . test_classes import WebhookTestCase
2017-11-16 00:43:10 +01:00
from zerver . lib . webhooks . git import COMMITS_LIMIT
2016-10-25 14:50:42 +02:00
class GithubWebhookTest ( WebhookTestCase ) :
STREAM_NAME = ' github '
2016-11-14 21:06:39 +01:00
URL_TEMPLATE = " /api/v1/external/github?stream= {stream} &api_key= {api_key} "
2018-04-18 21:34:30 +02:00
FIXTURE_DIR_NAME = ' github '
2018-11-09 20:33:58 +01:00
EXPECTED_TOPIC_REPO_EVENTS = u " public-repo "
EXPECTED_TOPIC_ISSUE_EVENTS = u " public-repo / Issue #2 Spelling error in the README file "
EXPECTED_TOPIC_PR_EVENTS = u " public-repo / PR #1 Update the README with new information "
EXPECTED_TOPIC_DEPLOYMENT_EVENTS = u " public-repo / Deployment on production "
EXPECTED_TOPIC_ORGANIZATION_EVENTS = u " baxterandthehackers organization "
EXPECTED_TOPIC_BRANCH_EVENTS = u " public-repo / changes "
EXPECTED_TOPIC_WIKI_EVENTS = u " public-repo / Wiki Pages "
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_ping_event ( self ) - > None :
2017-03-17 00:18:25 +01:00
expected_message = u " GitHub webhook has been successfully configured by TomaszKolek "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' ping ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' ping ' )
2017-02-01 00:37:13 +01:00
2017-11-04 07:47:46 +01:00
def test_ping_organization_event ( self ) - > None :
2017-07-17 04:03:54 +02:00
expected_message = u " GitHub webhook has been successfully configured by eeshangarg "
self . send_and_test_stream_message ( ' ping_organization ' , ' zulip-test-org ' , expected_message , HTTP_X_GITHUB_EVENT = ' ping ' )
2017-11-04 07:47:46 +01:00
def test_push_delete_branch ( self ) - > None :
2017-05-16 04:38:25 +02:00
expected_message = u " eeshangarg [deleted](https://github.com/eeshangarg/public-repo/compare/2e8cf535fb38...000000000000) the branch feature. "
self . send_and_test_stream_message ( ' push_delete_branch ' , u " public-repo / feature " , expected_message , HTTP_X_GITHUB_EVENT = ' push ' )
2017-11-04 07:47:46 +01:00
def test_push_local_branch_without_commits ( self ) - > None :
2017-05-17 02:19:33 +02:00
expected_message = u " eeshangarg [pushed](https://github.com/eeshangarg/public-repo/compare/feature) the branch feature. "
self . send_and_test_stream_message ( ' push_local_branch_without_commits ' , u " public-repo / feature " , expected_message , HTTP_X_GITHUB_EVENT = ' push ' )
2017-11-04 07:47:46 +01:00
def test_push_1_commit ( self ) - > None :
2017-04-26 02:57:47 +02:00
expected_message = u " baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 1 commit to branch changes. \n \n * Update README.md ([0d1a26e](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c)) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' push_1_commit ' , self . EXPECTED_TOPIC_BRANCH_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' push ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_push_1_commit_without_username ( self ) - > None :
2017-04-29 08:16:07 +02:00
expected_message = u " eeshangarg [pushed](https://github.com/eeshangarg/public-repo/compare/0383613da871...2e8cf535fb38) 1 commit to branch changes. Commits by John Snow (1). \n \n * Update the README ([2e8cf53](https://github.com/eeshangarg/public-repo/commit/2e8cf535fb38a3dab2476cdf856efda904ad4c94)) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' push_1_commit_without_username ' , self . EXPECTED_TOPIC_BRANCH_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' push ' )
2017-04-29 08:16:07 +02:00
2017-11-04 07:47:46 +01:00
def test_push_1_commit_filtered_by_branches ( self ) - > None :
2017-03-25 03:23:15 +01:00
self . url = self . build_webhook_url ( ' master,changes ' )
2017-04-26 02:57:47 +02:00
expected_message = u " baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 1 commit to branch changes. \n \n * Update README.md ([0d1a26e](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c)) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' push_1_commit ' , self . EXPECTED_TOPIC_BRANCH_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' push ' )
2017-03-25 03:23:15 +01:00
2017-11-04 07:47:46 +01:00
def test_push_multiple_comitters ( self ) - > None :
2017-04-05 09:12:19 +02:00
commits_info = u ' * Update README.md ([0d1a26e](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c)) \n '
2017-04-26 00:19:47 +02:00
expected_message = u """ baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 6 commits to branch changes. Commits by Tomasz (3), Ben (2) and baxterthehacker (1). \n \n {} * Update README.md ([0d1a26e](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c)) """ . format ( commits_info * 5 )
2017-04-05 09:12:19 +02:00
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' push_multiple_committers ' , self . EXPECTED_TOPIC_BRANCH_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' push ' )
2017-04-05 09:12:19 +02:00
2017-11-04 07:47:46 +01:00
def test_push_multiple_comitters_with_others ( self ) - > None :
2017-04-05 09:12:19 +02:00
commits_info = u ' * Update README.md ([0d1a26e](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c)) \n '
2017-04-26 00:19:47 +02:00
expected_message = u """ baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 10 commits to branch changes. Commits by Tomasz (4), Ben (3), James (2) and others (1). \n \n {} * Update README.md ([0d1a26e](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c)) """ . format ( commits_info * 9 )
2017-04-05 09:12:19 +02:00
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' push_multiple_committers_with_others ' , self . EXPECTED_TOPIC_BRANCH_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' push ' )
2017-04-05 09:12:19 +02:00
2017-11-04 07:47:46 +01:00
def test_push_multiple_comitters_filtered_by_branches ( self ) - > None :
2017-04-21 23:35:40 +02:00
self . url = self . build_webhook_url ( ' master,changes ' )
commits_info = u ' * Update README.md ([0d1a26e](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c)) \n '
2017-04-26 00:19:47 +02:00
expected_message = u """ baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 6 commits to branch changes. Commits by Tomasz (3), Ben (2) and baxterthehacker (1). \n \n {} * Update README.md ([0d1a26e](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c)) """ . format ( commits_info * 5 )
2017-04-21 23:35:40 +02:00
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' push_multiple_committers ' , self . EXPECTED_TOPIC_BRANCH_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' push ' )
2017-04-21 23:35:40 +02:00
2017-11-04 07:47:46 +01:00
def test_push_multiple_comitters_with_others_filtered_by_branches ( self ) - > None :
2017-04-21 23:35:40 +02:00
self . url = self . build_webhook_url ( ' master,changes ' )
commits_info = u ' * Update README.md ([0d1a26e](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c)) \n '
2017-04-26 00:19:47 +02:00
expected_message = u """ baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 10 commits to branch changes. Commits by Tomasz (4), Ben (3), James (2) and others (1). \n \n {} * Update README.md ([0d1a26e](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c)) """ . format ( commits_info * 9 )
2017-04-21 23:35:40 +02:00
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' push_multiple_committers_with_others ' , self . EXPECTED_TOPIC_BRANCH_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' push ' )
2017-04-21 23:35:40 +02:00
2017-11-04 07:47:46 +01:00
def test_push_50_commits ( self ) - > None :
2017-03-15 10:15:03 +01:00
commit_info = " * Update README.md ([0d1a26e](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c)) \n "
2017-04-26 02:57:47 +02:00
expected_message = u " baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 50 commits to branch changes. \n \n {} [and 30 more commit(s)] " . format (
2016-10-25 14:50:42 +02:00
commit_info * COMMITS_LIMIT
)
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' push_50_commits ' , self . EXPECTED_TOPIC_BRANCH_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' push ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_push_50_commits_filtered_by_branches ( self ) - > None :
2017-04-21 23:35:40 +02:00
self . url = self . build_webhook_url ( branches = ' master,changes ' )
2017-03-25 03:23:15 +01:00
commit_info = " * Update README.md ([0d1a26e](https://github.com/baxterthehacker/public-repo/commit/0d1a26e67d8f5eaf1f6ba5c57fc3c7d91ac0fd1c)) \n "
2017-04-26 02:57:47 +02:00
expected_message = u " baxterthehacker [pushed](https://github.com/baxterthehacker/public-repo/compare/9049f1265b7d...0d1a26e67d8f) 50 commits to branch changes. \n \n {} [and 30 more commit(s)] " . format (
2017-03-25 03:23:15 +01:00
commit_info * COMMITS_LIMIT
)
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' push_50_commits ' , self . EXPECTED_TOPIC_BRANCH_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' push ' )
2017-03-25 03:23:15 +01:00
2017-11-04 07:47:46 +01:00
def test_commit_comment_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker [commented](https://github.com/baxterthehacker/public-repo/commit/9049f1265b7d61be4a8904a9a27120d2064dab3b#commitcomment-11056394) on [9049f12](https://github.com/baxterthehacker/public-repo/commit/9049f1265b7d61be4a8904a9a27120d2064dab3b) \n ~~~ quote \n This is a really good change! :+1: \n ~~~ "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' commit_comment ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' commit_comment ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_create_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker created tag 0.0.1 "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' create ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' create ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_delete_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker deleted tag simple-tag "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' delete ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' delete ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_deployment_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker created new deployment "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' deployment ' , self . EXPECTED_TOPIC_DEPLOYMENT_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' deployment ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_deployment_status_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " Deployment changed status to success "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' deployment_status ' , self . EXPECTED_TOPIC_DEPLOYMENT_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' deployment_status ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_fork_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterandthehackers forked [public-repo](https://github.com/baxterandthehackers/public-repo) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' fork ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' fork ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_issue_comment_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker [commented](https://github.com/baxterthehacker/public-repo/issues/2#issuecomment-99262140) on [Issue #2](https://github.com/baxterthehacker/public-repo/issues/2) \n \n ~~~ quote \n You are totally right! I ' ll get this fixed right away. \n ~~~ "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' issue_comment ' , self . EXPECTED_TOPIC_ISSUE_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' issue_comment ' )
2016-10-25 14:50:42 +02:00
2018-09-27 18:57:09 +02:00
def test_issue_comment_deleted_msg ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = u " Scheduler / Issue #5 This is a new issue "
2018-09-27 18:57:09 +02:00
expected_message = u " eeshangarg deleted a [comment](https://github.com/eeshangarg/Scheduler/issues/5#issuecomment-425164194) on [Issue #5](https://github.com/eeshangarg/Scheduler/issues/5) \n \n ~~~ quote \n This is a comment on this new issue. \n ~~~ "
self . send_and_test_stream_message (
' issue_comment_deleted ' ,
2018-11-09 20:33:58 +01:00
expected_topic ,
2018-09-27 18:57:09 +02:00
expected_message ,
HTTP_X_GITHUB_EVENT = ' issue_comment '
)
2018-07-20 21:36:18 +02:00
def test_issue_comment_msg_with_custom_topic_in_url ( self ) - > None :
self . url = self . build_webhook_url ( topic = ' notifications ' )
2018-11-09 20:33:58 +01:00
expected_topic = u " notifications "
2018-07-20 21:36:18 +02:00
expected_message = u " baxterthehacker [commented](https://github.com/baxterthehacker/public-repo/issues/2#issuecomment-99262140) on [Issue #2 Spelling error in the README file](https://github.com/baxterthehacker/public-repo/issues/2) \n \n ~~~ quote \n You are totally right! I ' ll get this fixed right away. \n ~~~ "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' issue_comment ' , expected_topic , expected_message , HTTP_X_GITHUB_EVENT = ' issue_comment ' )
2018-07-20 21:36:18 +02:00
2017-11-04 07:47:46 +01:00
def test_issue_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker opened [Issue #2](https://github.com/baxterthehacker/public-repo/issues/2) \n \n ~~~ quote \n It looks like you accidently spelled ' commit ' with two ' t ' s. \n ~~~ "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' issue ' , self . EXPECTED_TOPIC_ISSUE_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' issues ' )
2016-10-25 14:50:42 +02:00
2018-07-20 21:36:18 +02:00
def test_issue_msg_with_custom_topic_in_url ( self ) - > None :
self . url = self . build_webhook_url ( topic = ' notifications ' )
2018-11-09 20:33:58 +01:00
expected_topic = u " notifications "
2018-07-20 21:36:18 +02:00
expected_message = u " baxterthehacker opened [Issue #2 Spelling error in the README file](https://github.com/baxterthehacker/public-repo/issues/2) \n \n ~~~ quote \n It looks like you accidently spelled ' commit ' with two ' t ' s. \n ~~~ "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' issue ' , expected_topic , expected_message , HTTP_X_GITHUB_EVENT = ' issues ' )
2018-07-20 21:36:18 +02:00
2017-11-04 07:47:46 +01:00
def test_membership_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker added [kdaigle](https://github.com/kdaigle) to Contractors team "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' membership ' , self . EXPECTED_TOPIC_ORGANIZATION_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' membership ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_member_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker added [octocat](https://github.com/octocat) to [public-repo](https://github.com/baxterthehacker/public-repo) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' member ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' member ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_pull_request_opened_msg ( self ) - > None :
2018-07-20 21:36:18 +02:00
expected_message = u " baxterthehacker opened [PR #1](https://github.com/baxterthehacker/public-repo/pull/1) \n from `changes` to `master` \n \n ~~~ quote \n This is a pretty simple change that we need to pull into master. \n ~~~ "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' opened_pull_request ' , self . EXPECTED_TOPIC_PR_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' pull_request ' )
2016-10-25 14:50:42 +02:00
2018-09-26 02:45:29 +02:00
def test_pull_request_opened_with_preassigned_assignee_msg ( self ) - > None :
2018-11-09 20:33:58 +01:00
expected_topic = u " Scheduler / PR #4 Improve README "
2018-09-26 02:45:29 +02:00
expected_message = u " eeshangarg opened [PR #4](https://github.com/eeshangarg/Scheduler/pull/4)(assigned to eeshangarg) \n from `improve-readme-2` to `master` "
self . send_and_test_stream_message ( ' opened_pull_request_with_preassigned_assignee ' ,
2018-11-09 20:33:58 +01:00
expected_topic , expected_message ,
2018-09-26 02:45:29 +02:00
HTTP_X_GITHUB_EVENT = ' pull_request ' )
2018-07-20 21:36:18 +02:00
def test_pull_request_opened_msg_with_custom_topic_in_url ( self ) - > None :
self . url = self . build_webhook_url ( topic = ' notifications ' )
2018-11-09 20:33:58 +01:00
expected_topic = u " notifications "
2018-07-20 21:36:18 +02:00
expected_message = u " baxterthehacker opened [PR #1 Update the README with new information](https://github.com/baxterthehacker/public-repo/pull/1) \n from `changes` to `master` \n \n ~~~ quote \n This is a pretty simple change that we need to pull into master. \n ~~~ "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' opened_pull_request ' , expected_topic , expected_message , HTTP_X_GITHUB_EVENT = ' pull_request ' )
2018-07-20 21:36:18 +02:00
2017-11-04 07:47:46 +01:00
def test_pull_request_synchronized_msg ( self ) - > None :
2018-07-20 21:36:18 +02:00
expected_message = u " baxterthehacker updated [PR #1](https://github.com/baxterthehacker/public-repo/pull/1) \n from `changes` to `master` "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' synchronized_pull_request ' , self . EXPECTED_TOPIC_PR_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' pull_request ' )
2017-02-02 20:09:57 +01:00
2017-11-04 07:47:46 +01:00
def test_pull_request_closed_msg ( self ) - > None :
2018-07-20 21:36:18 +02:00
expected_message = u " baxterthehacker closed without merge [PR #1](https://github.com/baxterthehacker/public-repo/pull/1) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' closed_pull_request ' , self . EXPECTED_TOPIC_PR_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' pull_request ' )
2016-10-25 14:50:42 +02:00
2018-07-20 21:36:18 +02:00
def test_pull_request_closed_msg_with_custom_topic_in_url ( self ) - > None :
self . url = self . build_webhook_url ( topic = ' notifications ' )
2018-11-09 20:33:58 +01:00
expected_topic = u " notifications "
2018-07-20 21:36:18 +02:00
expected_message = u " baxterthehacker closed without merge [PR #1 Update the README with new information](https://github.com/baxterthehacker/public-repo/pull/1) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' closed_pull_request ' , expected_topic , expected_message , HTTP_X_GITHUB_EVENT = ' pull_request ' )
2018-07-20 21:36:18 +02:00
2017-11-04 07:47:46 +01:00
def test_pull_request_merged_msg ( self ) - > None :
2018-07-20 21:36:18 +02:00
expected_message = u " baxterthehacker merged [PR #1](https://github.com/baxterthehacker/public-repo/pull/1) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' merged_pull_request ' , self . EXPECTED_TOPIC_PR_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' pull_request ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_public_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker made [the repository](https://github.com/baxterthehacker/public-repo) public "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' public ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' public ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_wiki_pages_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " jasonrudolph: \n * created [Home](https://github.com/baxterthehacker/public-repo/wiki/Home) \n * created [Home](https://github.com/baxterthehacker/public-repo/wiki/Home) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' wiki_pages ' , self . EXPECTED_TOPIC_WIKI_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' gollum ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_watch_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker starred [the repository](https://github.com/baxterthehacker/public-repo) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' watch_repository ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' watch ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_repository_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker created [the repository](https://github.com/baxterandthehackers/public-repo) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' repository ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' repository ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_team_add_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " [The repository](https://github.com/baxterandthehackers/public-repo) was added to team github "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' team_add ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' team_add ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_release_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker published [the release](https://github.com/baxterthehacker/public-repo/releases/tag/0.0.1) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' release ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' release ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_page_build_msg ( self ) - > None :
2018-09-27 21:55:45 +02:00
expected_message = u " Github Pages build, trigerred by baxterthehacker, has finished building "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' page_build ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' page_build ' )
2016-10-25 14:50:42 +02:00
2017-11-04 07:47:46 +01:00
def test_status_msg ( self ) - > None :
2017-06-30 02:09:18 +02:00
expected_message = u " [9049f12](https://github.com/baxterthehacker/public-repo/commit/9049f1265b7d61be4a8904a9a27120d2064dab3b) changed its status to success "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' status ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' status ' )
2016-10-25 14:50:42 +02:00
2018-09-27 22:41:43 +02:00
def test_status_with_target_url_msg ( self ) - > None :
expected_message = u " [9049f12](https://github.com/baxterthehacker/public-repo/commit/9049f1265b7d61be4a8904a9a27120d2064dab3b) changed its status to [success](https://example.com/build/status) "
self . send_and_test_stream_message (
' status_with_target_url ' ,
2018-11-09 20:33:58 +01:00
self . EXPECTED_TOPIC_REPO_EVENTS ,
2018-09-27 22:41:43 +02:00
expected_message ,
HTTP_X_GITHUB_EVENT = ' status '
)
2017-11-04 07:47:46 +01:00
def test_pull_request_review_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker submitted [PR Review](https://github.com/baxterthehacker/public-repo/pull/1#pullrequestreview-2626884) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' pull_request_review ' , self . EXPECTED_TOPIC_PR_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' pull_request_review ' )
2016-10-25 14:50:42 +02:00
2018-07-20 21:36:18 +02:00
def test_pull_request_review_msg_with_custom_topic_in_url ( self ) - > None :
self . url = self . build_webhook_url ( topic = ' notifications ' )
2018-11-09 20:33:58 +01:00
expected_topic = u " notifications "
2018-07-20 21:36:18 +02:00
expected_message = u " baxterthehacker submitted [PR Review for #1 Update the README with new information](https://github.com/baxterthehacker/public-repo/pull/1#pullrequestreview-2626884) "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' pull_request_review ' , expected_topic , expected_message , HTTP_X_GITHUB_EVENT = ' pull_request_review ' )
2018-07-20 21:36:18 +02:00
2017-11-04 07:47:46 +01:00
def test_pull_request_review_comment_msg ( self ) - > None :
2016-10-25 14:50:42 +02:00
expected_message = u " baxterthehacker created [PR Review Comment](https://github.com/baxterthehacker/public-repo/pull/1#discussion_r29724692) \n \n ~~~ quote \n Maybe you should use more emojji on this line. \n ~~~ "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' pull_request_review_comment ' , self . EXPECTED_TOPIC_PR_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' pull_request_review_comment ' )
2016-10-25 14:50:42 +02:00
2018-07-20 21:36:18 +02:00
def test_pull_request_review_comment_with_custom_topic_in_url ( self ) - > None :
self . url = self . build_webhook_url ( topic = ' notifications ' )
2018-11-09 20:33:58 +01:00
expected_topic = u " notifications "
2018-07-20 21:36:18 +02:00
expected_message = u " baxterthehacker created [PR Review Comment on #1 Update the README with new information](https://github.com/baxterthehacker/public-repo/pull/1#discussion_r29724692) \n \n ~~~ quote \n Maybe you should use more emojji on this line. \n ~~~ "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' pull_request_review_comment ' , expected_topic , expected_message , HTTP_X_GITHUB_EVENT = ' pull_request_review_comment ' )
2018-07-20 21:36:18 +02:00
2017-11-04 07:47:46 +01:00
def test_push_tag_msg ( self ) - > None :
2016-11-14 20:32:37 +01:00
expected_message = u " baxterthehacker pushed tag abc "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' push_tag ' , self . EXPECTED_TOPIC_REPO_EVENTS , expected_message , HTTP_X_GITHUB_EVENT = ' push ' )
2017-02-08 20:41:43 +01:00
2017-11-04 07:47:46 +01:00
def test_pull_request_edited_msg ( self ) - > None :
2018-07-20 21:36:18 +02:00
expected_message = u " baxterthehacker edited [PR #1](https://github.com/baxterthehacker/public-repo/pull/1) \n from `changes` to `master` "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' edited_pull_request ' , self . EXPECTED_TOPIC_PR_EVENTS , expected_message ,
2017-02-08 20:41:43 +01:00
HTTP_X_GITHUB_EVENT = ' pull_request ' )
2017-11-04 07:47:46 +01:00
def test_pull_request_assigned_msg ( self ) - > None :
2018-07-20 21:36:18 +02:00
expected_message = u " baxterthehacker assigned [PR #1](https://github.com/baxterthehacker/public-repo/pull/1) to baxterthehacker "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' assigned_pull_request ' , self . EXPECTED_TOPIC_PR_EVENTS , expected_message ,
2017-02-08 20:41:43 +01:00
HTTP_X_GITHUB_EVENT = ' pull_request ' )
2018-07-20 21:36:18 +02:00
def test_pull_request_assigned_msg_with_custom_topic_in_url ( self ) - > None :
self . url = self . build_webhook_url ( topic = ' notifications ' )
2018-11-09 20:33:58 +01:00
expected_topic = u " notifications "
2018-07-20 21:36:18 +02:00
expected_message = u " baxterthehacker assigned [PR #1 Update the README with new information](https://github.com/baxterthehacker/public-repo/pull/1) to baxterthehacker "
2018-11-09 20:33:58 +01:00
self . send_and_test_stream_message ( ' assigned_pull_request ' , expected_topic , expected_message ,
2018-07-20 21:36:18 +02:00
HTTP_X_GITHUB_EVENT = ' pull_request ' )
2017-11-04 07:47:46 +01:00
def test_pull_request_unassigned_msg ( self ) - > None :
2018-07-20 21:36:18 +02:00
expected_message = u " eeshangarg unassigned [PR #1](https://github.com/zulip-test-org/helloworld/pull/1) "
2017-08-25 01:01:46 +02:00
self . send_and_test_stream_message (
' unassigned_pull_request ' ,
' helloworld / PR #1 Mention that Zulip rocks! ' ,
expected_message ,
HTTP_X_GITHUB_EVENT = ' pull_request '
)
2017-02-08 21:30:25 +01:00
2018-07-01 20:40:08 +02:00
def test_pull_request_review_requested_msg ( self ) - > None :
expected_message = u " **eeshangarg** requested [showell](https://github.com/showell) for a review on [PR #1](https://github.com/eeshangarg/Scheduler/pull/1). "
self . send_and_test_stream_message ( ' pull_request_review_requested ' ,
' Scheduler / PR #1 This is just a test commit ' ,
expected_message ,
HTTP_X_GITHUB_EVENT = ' pull_request ' )
2018-10-23 20:05:14 +02:00
def test_pull_request_review_requested_singular_key_msg ( self ) - > None :
expected_message = u " **eeshangarg** requested [rishig](https://github.com/rishig) for a review on [PR #6](https://github.com/eeshangarg/Scheduler/pull/6). "
self . send_and_test_stream_message ( ' pull_request_review_requested_singular_key ' ,
' Scheduler / PR #6 Mention how awesome this project is in ... ' ,
expected_message ,
HTTP_X_GITHUB_EVENT = ' pull_request ' )
2018-07-01 20:40:08 +02:00
def test_pull_request_review_requested_multiple_reviwers_msg ( self ) - > None :
expected_message = u " **eeshangarg** requested [showell](https://github.com/showell), and [timabbott](https://github.com/timabbott) for a review on [PR #1](https://github.com/eeshangarg/Scheduler/pull/1). "
self . send_and_test_stream_message ( ' pull_request_review_requested_multiple_reviewers ' ,
' Scheduler / PR #1 This is just a test commit ' ,
expected_message ,
HTTP_X_GITHUB_EVENT = ' pull_request ' )
2018-07-20 21:36:18 +02:00
def test_pull_request_review_requested_with_custom_topic_in_url ( self ) - > None :
self . url = self . build_webhook_url ( topic = ' notifications ' )
2018-11-09 20:33:58 +01:00
expected_topic = u " notifications "
2018-07-20 21:36:18 +02:00
expected_message = u " **eeshangarg** requested [showell](https://github.com/showell) for a review on [PR #1 This is just a test commit](https://github.com/eeshangarg/Scheduler/pull/1). "
self . send_and_test_stream_message ( ' pull_request_review_requested ' ,
2018-11-09 20:33:58 +01:00
expected_topic ,
2018-07-20 21:36:18 +02:00
expected_message ,
HTTP_X_GITHUB_EVENT = ' pull_request ' )
2018-04-18 21:34:30 +02:00
@patch ( ' zerver.webhooks.github.view.check_send_webhook_message ' )
2017-11-04 07:47:46 +01:00
def test_pull_request_labeled_ignore (
2018-03-16 22:53:50 +01:00
self , check_send_webhook_message_mock : MagicMock ) - > None :
2017-02-08 21:30:25 +01:00
payload = self . get_body ( ' labeled_pull_request ' )
result = self . client_post ( self . url , payload , HTTP_X_GITHUB_EVENT = ' pull_request ' , content_type = " application/json " )
2018-03-16 22:53:50 +01:00
self . assertFalse ( check_send_webhook_message_mock . called )
2017-02-08 21:30:25 +01:00
self . assert_json_success ( result )
2018-04-18 21:34:30 +02:00
@patch ( ' zerver.webhooks.github.view.check_send_webhook_message ' )
2017-11-04 07:47:46 +01:00
def test_pull_request_unlabeled_ignore (
2018-03-16 22:53:50 +01:00
self , check_send_webhook_message_mock : MagicMock ) - > None :
2017-02-08 21:30:25 +01:00
payload = self . get_body ( ' unlabeled_pull_request ' )
result = self . client_post ( self . url , payload , HTTP_X_GITHUB_EVENT = ' pull_request ' , content_type = " application/json " )
2018-03-16 22:53:50 +01:00
self . assertFalse ( check_send_webhook_message_mock . called )
2017-02-08 21:30:25 +01:00
self . assert_json_success ( result )
2018-04-18 21:34:30 +02:00
@patch ( ' zerver.webhooks.github.view.check_send_webhook_message ' )
2017-11-04 07:47:46 +01:00
def test_pull_request_request_review_remove_ignore (
2018-03-16 22:53:50 +01:00
self , check_send_webhook_message_mock : MagicMock ) - > None :
2017-02-08 21:30:25 +01:00
payload = self . get_body ( ' request_review_removed_pull_request ' )
result = self . client_post ( self . url , payload , HTTP_X_GITHUB_EVENT = ' pull_request ' , content_type = " application/json " )
2018-03-16 22:53:50 +01:00
self . assertFalse ( check_send_webhook_message_mock . called )
2017-02-08 21:30:25 +01:00
self . assert_json_success ( result )
2017-03-25 03:23:15 +01:00
2018-04-18 21:34:30 +02:00
@patch ( ' zerver.webhooks.github.view.check_send_webhook_message ' )
2017-11-04 07:47:46 +01:00
def test_push_1_commit_filtered_by_branches_ignore (
2018-03-16 22:53:50 +01:00
self , check_send_webhook_message_mock : MagicMock ) - > None :
2017-04-21 23:35:40 +02:00
self . url = self . build_webhook_url ( branches = ' master,development ' )
2017-03-25 03:23:15 +01:00
payload = self . get_body ( ' push_1_commit ' )
result = self . client_post ( self . url , payload , HTTP_X_GITHUB_EVENT = ' push ' , content_type = " application/json " )
2018-03-16 22:53:50 +01:00
self . assertFalse ( check_send_webhook_message_mock . called )
2017-03-25 03:23:15 +01:00
self . assert_json_success ( result )
2018-04-18 21:34:30 +02:00
@patch ( ' zerver.webhooks.github.view.check_send_webhook_message ' )
2017-11-04 07:47:46 +01:00
def test_push_50_commits_filtered_by_branches_ignore (
2018-03-16 22:53:50 +01:00
self , check_send_webhook_message_mock : MagicMock ) - > None :
2017-04-21 23:35:40 +02:00
self . url = self . build_webhook_url ( branches = ' master,development ' )
2017-03-25 03:23:15 +01:00
payload = self . get_body ( ' push_50_commits ' )
result = self . client_post ( self . url , payload , HTTP_X_GITHUB_EVENT = ' push ' , content_type = " application/json " )
2018-03-16 22:53:50 +01:00
self . assertFalse ( check_send_webhook_message_mock . called )
2017-03-25 03:23:15 +01:00
self . assert_json_success ( result )
2017-04-21 23:35:40 +02:00
2018-04-18 21:34:30 +02:00
@patch ( ' zerver.webhooks.github.view.check_send_webhook_message ' )
2017-11-04 07:47:46 +01:00
def test_push_multiple_comitters_filtered_by_branches_ignore (
2018-03-16 22:53:50 +01:00
self , check_send_webhook_message_mock : MagicMock ) - > None :
2017-04-21 23:35:40 +02:00
self . url = self . build_webhook_url ( branches = ' master,development ' )
payload = self . get_body ( ' push_multiple_committers ' )
result = self . client_post ( self . url , payload , HTTP_X_GITHUB_EVENT = ' push ' , content_type = " application/json " )
2018-03-16 22:53:50 +01:00
self . assertFalse ( check_send_webhook_message_mock . called )
2017-04-21 23:35:40 +02:00
self . assert_json_success ( result )
2018-04-18 21:34:30 +02:00
@patch ( ' zerver.webhooks.github.view.check_send_webhook_message ' )
2017-11-04 07:47:46 +01:00
def test_push_multiple_comitters_with_others_filtered_by_branches_ignore (
2018-03-16 22:53:50 +01:00
self , check_send_webhook_message_mock : MagicMock ) - > None :
2017-04-21 23:35:40 +02:00
self . url = self . build_webhook_url ( branches = ' master,development ' )
payload = self . get_body ( ' push_multiple_committers_with_others ' )
result = self . client_post ( self . url , payload , HTTP_X_GITHUB_EVENT = ' push ' , content_type = " application/json " )
2018-03-16 22:53:50 +01:00
self . assertFalse ( check_send_webhook_message_mock . called )
2017-04-21 23:35:40 +02:00
self . assert_json_success ( result )