2016-09-20 22:51:11 +02:00
# -*- coding: utf-8 -*-
2018-05-10 19:34:01 +02:00
from typing import Optional
2017-04-03 04:46:41 +02:00
2017-11-16 00:43:10 +01:00
from mock import MagicMock , patch
2016-11-10 19:30:09 +01: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-09-20 22:51:11 +02:00
class GitlabHookTests ( WebhookTestCase ) :
STREAM_NAME = ' gitlab '
2017-04-21 23:35:40 +02:00
URL_TEMPLATE = " /api/v1/external/gitlab?&api_key= {api_key} &stream= {stream} "
2016-09-20 22:51:11 +02:00
FIXTURE_DIR_NAME = ' gitlab '
2018-01-09 12:06:52 +01:00
def test_push_event_specified_topic ( self ) - > None :
self . url = self . build_webhook_url ( " topic=Specific % 20topic " )
expected_topic = u " Specific topic "
expected_message = u " Tomasz Kolek [pushed](https://gitlab.com/tomaszkolek0/my-awesome-project/compare/5fcdd5551fc3085df79bece2c32b1400802ac407...eb6ae1e591e0819dc5bf187c6bfe18ec065a80e9) 2 commits to branch tomek. \n \n * b ([66abd2d](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/66abd2da28809ffa128ed0447965cf11d7f863a7)) \n * c ([eb6ae1e](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/eb6ae1e591e0819dc5bf187c6bfe18ec065a80e9)) "
self . send_and_test_stream_message ( ' push ' , expected_topic , expected_message , HTTP_X_GITLAB_EVENT = " Push Hook " )
2017-11-04 07:47:46 +01:00
def test_push_event_message ( self ) - > None :
2016-09-26 08:12:24 +02:00
expected_subject = u " my-awesome-project / tomek "
2017-04-26 02:57:47 +02:00
expected_message = u " Tomasz Kolek [pushed](https://gitlab.com/tomaszkolek0/my-awesome-project/compare/5fcdd5551fc3085df79bece2c32b1400802ac407...eb6ae1e591e0819dc5bf187c6bfe18ec065a80e9) 2 commits to branch tomek. \n \n * b ([66abd2d](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/66abd2da28809ffa128ed0447965cf11d7f863a7)) \n * c ([eb6ae1e](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/eb6ae1e591e0819dc5bf187c6bfe18ec065a80e9)) "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message ( ' push ' , expected_subject , expected_message , HTTP_X_GITLAB_EVENT = " Push Hook " )
2017-11-04 07:47:46 +01:00
def test_push_local_branch_without_commits ( self ) - > None :
2017-05-17 04:12:56 +02:00
expected_subject = u " my-awesome-project / changes "
expected_message = u " Eeshan Garg [pushed](https://gitlab.com/eeshangarg/my-awesome-project/compare/0000000000000000000000000000000000000000...68d7a5528cf423dfaac37dd62a56ac9cc8a884e3) the branch changes. "
self . send_and_test_stream_message ( ' push_local_branch_without_commits ' , expected_subject , expected_message , HTTP_X_GITLAB_EVENT = " Push Hook " )
2017-11-04 07:47:46 +01:00
def test_push_event_message_filtered_by_branches ( self ) - > None :
2017-04-21 23:35:40 +02:00
self . url = self . build_webhook_url ( branches = ' master,tomek ' )
2017-04-03 04:46:41 +02:00
expected_subject = u " my-awesome-project / tomek "
2017-04-26 02:57:47 +02:00
expected_message = u " Tomasz Kolek [pushed](https://gitlab.com/tomaszkolek0/my-awesome-project/compare/5fcdd5551fc3085df79bece2c32b1400802ac407...eb6ae1e591e0819dc5bf187c6bfe18ec065a80e9) 2 commits to branch tomek. \n \n * b ([66abd2d](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/66abd2da28809ffa128ed0447965cf11d7f863a7)) \n * c ([eb6ae1e](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/eb6ae1e591e0819dc5bf187c6bfe18ec065a80e9)) "
2017-04-03 04:46:41 +02:00
self . send_and_test_stream_message ( ' push ' , expected_subject , expected_message , HTTP_X_GITLAB_EVENT = " Push Hook " )
2017-11-04 07:47:46 +01:00
def test_push_multiple_committers ( self ) - > None :
2017-04-05 09:12:19 +02:00
expected_subject = u " my-awesome-project / tomek "
2017-04-26 00:19:47 +02:00
expected_message = u " Tomasz Kolek [pushed](https://gitlab.com/tomaszkolek0/my-awesome-project/compare/5fcdd5551fc3085df79bece2c32b1400802ac407...eb6ae1e591e0819dc5bf187c6bfe18ec065a80e9) 2 commits to branch tomek. Commits by Ben (1) and Tomasz Kolek (1). \n \n * b ([66abd2d](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/66abd2da28809ffa128ed0447965cf11d7f863a7)) \n * c ([eb6ae1e](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/eb6ae1e591e0819dc5bf187c6bfe18ec065a80e9)) "
2017-04-05 09:12:19 +02:00
self . send_and_test_stream_message ( ' push_multiple_committers ' , expected_subject , expected_message , HTTP_X_GITLAB_EVENT = " Push Hook " )
2017-11-04 07:47:46 +01:00
def test_push_multiple_committers_with_others ( self ) - > None :
2017-04-05 09:12:19 +02:00
expected_subject = u " my-awesome-project / tomek "
commit_info = u " * b ([eb6ae1e](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/eb6ae1e591e0819dc5bf187c6bfe18ec065a80e9)) \n "
2017-04-26 00:19:47 +02:00
expected_message = u " Tomasz Kolek [pushed](https://gitlab.com/tomaszkolek0/my-awesome-project/compare/5fcdd5551fc3085df79bece2c32b1400802ac407...eb6ae1e591e0819dc5bf187c6bfe18ec065a80e9) 7 commits to branch tomek. Commits by Ben (3), baxterthehacker (2), James (1) and others (1). \n \n {} * b ([eb6ae1e](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/eb6ae1e591e0819dc5bf187c6bfe18ec065a80e9)) " . format ( commit_info * 6 )
2017-04-05 09:12:19 +02:00
self . send_and_test_stream_message ( ' push_multiple_committers_with_others ' , expected_subject , expected_message , HTTP_X_GITLAB_EVENT = " Push Hook " )
2017-11-04 07:47:46 +01:00
def test_push_commits_more_than_limit_event_message ( self ) - > None :
2016-10-07 15:20:37 +02:00
expected_subject = u " my-awesome-project / tomek "
2017-03-15 10:15:03 +01:00
commits_info = u ' * b ([66abd2d](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/66abd2da28809ffa128ed0447965cf11d7f863a7)) \n '
2017-04-26 02:57:47 +02:00
expected_message = u " Tomasz Kolek [pushed](https://gitlab.com/tomaszkolek0/my-awesome-project/compare/5fcdd5551fc3085df79bece2c32b1400802ac407...eb6ae1e591e0819dc5bf187c6bfe18ec065a80e9) 50 commits to branch tomek. \n \n {} [and {} more commit(s)] " . format (
2016-10-12 23:27:24 +02:00
commits_info * COMMITS_LIMIT ,
50 - COMMITS_LIMIT ,
2016-10-07 15:20:37 +02:00
)
self . send_and_test_stream_message ( ' push_commits_more_than_limit ' , expected_subject , expected_message , HTTP_X_GITLAB_EVENT = " Push Hook " )
2017-11-04 07:47:46 +01:00
def test_push_commits_more_than_limit_message_filtered_by_branches ( self ) - > None :
2017-04-21 23:35:40 +02:00
self . url = self . build_webhook_url ( branches = ' master,tomek ' )
2017-04-03 04:46:41 +02:00
expected_subject = u " my-awesome-project / tomek "
commits_info = u ' * b ([66abd2d](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/66abd2da28809ffa128ed0447965cf11d7f863a7)) \n '
2017-04-26 02:57:47 +02:00
expected_message = u " Tomasz Kolek [pushed](https://gitlab.com/tomaszkolek0/my-awesome-project/compare/5fcdd5551fc3085df79bece2c32b1400802ac407...eb6ae1e591e0819dc5bf187c6bfe18ec065a80e9) 50 commits to branch tomek. \n \n {} [and {} more commit(s)] " . format (
2017-04-03 04:46:41 +02:00
commits_info * COMMITS_LIMIT ,
50 - COMMITS_LIMIT ,
)
self . send_and_test_stream_message ( ' push_commits_more_than_limit ' , expected_subject , expected_message , HTTP_X_GITLAB_EVENT = " Push Hook " )
2017-11-04 07:47:46 +01:00
def test_remove_branch_event_message ( self ) - > None :
2016-10-06 17:13:40 +02:00
expected_subject = u " my-awesome-project / tomek "
expected_message = u " Tomasz Kolek deleted branch tomek "
self . send_and_test_stream_message ( ' remove_branch ' , expected_subject , expected_message , HTTP_X_GITLAB_EVENT = " Push Hook " )
2017-11-04 07:47:46 +01:00
def test_add_tag_event_message ( self ) - > None :
2016-09-26 08:12:24 +02:00
expected_subject = u " my-awesome-project "
2016-11-14 20:32:37 +01:00
expected_message = u " Tomasz Kolek pushed tag xyz "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' add_tag ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Tag Push Hook " ,
)
2017-11-04 07:47:46 +01:00
def test_remove_tag_event_message ( self ) - > None :
2016-09-26 08:12:24 +02:00
expected_subject = u " my-awesome-project "
2016-11-14 20:32:37 +01:00
expected_message = u " Tomasz Kolek removed tag xyz "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' remove_tag ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Tag Push Hook "
)
2017-11-04 07:47:46 +01:00
def test_create_issue_without_assignee_event_message ( self ) - > None :
2016-10-19 23:49:23 +02:00
expected_subject = u " my-awesome-project / Issue #1 Issue title "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek created [Issue #1](https://gitlab.com/tomaszkolek0/my-awesome-project/issues/1) \n \n ~~~ quote \n Issue description \n ~~~ "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' issue_created_without_assignee ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Issue Hook "
)
2017-11-04 07:47:46 +01:00
def test_create_issue_with_assignee_event_message ( self ) - > None :
2016-10-19 23:49:23 +02:00
expected_subject = u " my-awesome-project / Issue #1 Issue title "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek created [Issue #1](https://gitlab.com/tomaszkolek0/my-awesome-project/issues/1)(assigned to Tomasz Kolek) \n \n ~~~ quote \n Issue description \n ~~~ "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' issue_created_with_assignee ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Issue Hook "
)
2018-01-24 03:08:53 +01:00
def test_create_issue_with_hidden_comment_in_description ( self ) - > None :
expected_subject = u " public-repo / Issue #3 New Issue with hidden comment "
expected_message = u " Eeshan Garg created [Issue #3](https://gitlab.com/eeshangarg/public-repo/issues/3) \n \n ~~~ quote \n This description actually has a hidden comment in it! \n ~~~ "
self . send_and_test_stream_message (
' issue_created_with_hidden_comment_in_description ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Issue Hook "
)
2018-03-23 18:50:46 +01:00
def test_create_issue_with_null_description ( self ) - > None :
expected_subject = u " my-awesome-project / Issue #7 Issue without description "
expected_message = u " Eeshan Garg created [Issue #7](https://gitlab.com/eeshangarg/my-awesome-project/issues/7) "
self . send_and_test_stream_message (
' issue_opened_with_null_description ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Issue Hook "
)
2017-11-04 07:47:46 +01:00
def test_update_issue_event_message ( self ) - > None :
2016-10-19 23:49:23 +02:00
expected_subject = u " my-awesome-project / Issue #1 Issue title_new "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek updated [Issue #1](https://gitlab.com/tomaszkolek0/my-awesome-project/issues/1) "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' issue_updated ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Issue Hook "
)
2017-11-04 07:47:46 +01:00
def test_close_issue_event_message ( self ) - > None :
2016-10-19 23:49:23 +02:00
expected_subject = u " my-awesome-project / Issue #1 Issue title_new "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek closed [Issue #1](https://gitlab.com/tomaszkolek0/my-awesome-project/issues/1) "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' issue_closed ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Issue Hook "
)
2017-11-04 07:47:46 +01:00
def test_reopen_issue_event_message ( self ) - > None :
2016-10-19 23:49:23 +02:00
expected_subject = u " my-awesome-project / Issue #1 Issue title_new "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek reopened [Issue #1](https://gitlab.com/tomaszkolek0/my-awesome-project/issues/1) "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' issue_reopened ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Issue Hook "
)
2017-11-04 07:47:46 +01:00
def test_note_commit_event_message ( self ) - > None :
2016-09-26 08:12:24 +02:00
expected_subject = u " my-awesome-project "
2016-10-27 21:43:15 +02:00
expected_message = u " Tomasz Kolek [commented](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/66abd2da28809ffa128ed0447965cf11d7f863a7#note_14169211) on [66abd2d](https://gitlab.com/tomaszkolek0/my-awesome-project/commit/66abd2da28809ffa128ed0447965cf11d7f863a7) \n ~~~ quote \n nice commit \n ~~~ "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' commit_note ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Note Hook "
)
2017-11-04 07:47:46 +01:00
def test_note_merge_request_event_message ( self ) - > None :
2016-10-21 16:01:15 +02:00
expected_subject = u " my-awesome-project / MR #1 Tomek "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek [commented](https://gitlab.com/tomaszkolek0/my-awesome-project/merge_requests/1#note_14171860) on [MR #1](https://gitlab.com/tomaszkolek0/my-awesome-project/merge_requests/1) \n \n ~~~ quote \n Nice merge request! \n ~~~ "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' merge_request_note ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Note Hook "
)
2017-11-04 07:47:46 +01:00
def test_note_issue_event_message ( self ) - > None :
2016-10-21 16:01:15 +02:00
expected_subject = u " my-awesome-project / Issue #2 abc "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek [commented](https://gitlab.com/tomaszkolek0/my-awesome-project/issues/2#note_14172057) on [Issue #2](https://gitlab.com/tomaszkolek0/my-awesome-project/issues/2) \n \n ~~~ quote \n Nice issue \n ~~~ "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' issue_note ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Note Hook "
)
2017-11-04 07:47:46 +01:00
def test_note_snippet_event_message ( self ) - > None :
2016-10-21 17:53:33 +02:00
expected_subject = u " my-awesome-project / Snippet #2 test "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek [commented](https://gitlab.com/tomaszkolek0/my-awesome-project/snippets/2#note_14172058) on [Snippet #2](https://gitlab.com/tomaszkolek0/my-awesome-project/snippets/2) \n \n ~~~ quote \n Nice snippet \n ~~~ "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' snippet_note ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Note Hook "
)
2017-11-04 07:47:46 +01:00
def test_merge_request_created_without_assignee_event_message ( self ) - > None :
2016-10-11 18:54:48 +02:00
expected_subject = u " my-awesome-project / MR #2 NEW MR "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek created [MR #2](https://gitlab.com/tomaszkolek0/my-awesome-project/merge_requests/2) \n from `tomek` to `master` \n \n ~~~ quote \n description of merge request \n ~~~ "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' merge_request_created_without_assignee ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Merge Request Hook "
)
2016-11-29 07:22:02 +01:00
2017-11-04 07:47:46 +01:00
def test_merge_request_created_with_assignee_event_message ( self ) - > None :
2016-10-11 18:54:48 +02:00
expected_subject = u " my-awesome-project / MR #3 New Merge Request "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek created [MR #3](https://gitlab.com/tomaszkolek0/my-awesome-project/merge_requests/3)(assigned to Tomasz Kolek) \n from `tomek` to `master` \n \n ~~~ quote \n description of merge request \n ~~~ "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' merge_request_created_with_assignee ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Merge Request Hook "
)
2017-11-04 07:47:46 +01:00
def test_merge_request_closed_event_message ( self ) - > None :
2016-10-11 18:54:48 +02:00
expected_subject = u " my-awesome-project / MR #2 NEW MR "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek closed [MR #2](https://gitlab.com/tomaszkolek0/my-awesome-project/merge_requests/2) "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' merge_request_closed ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Merge Request Hook "
)
2017-11-04 07:47:46 +01:00
def test_merge_request_reopened_event_message ( self ) - > None :
2017-05-31 06:30:04 +02:00
expected_subject = u " my-awesome-project / MR #1 Update the README with author ... "
expected_message = u " Eeshan Garg reopened [MR #1](https://gitlab.com/eeshangarg/my-awesome-project/merge_requests/1) "
self . send_and_test_stream_message (
' merge_request_reopened ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Merge Request Hook "
)
2017-12-18 01:58:54 +01:00
def test_merge_request_approved_event_message ( self ) - > None :
expected_subject = u " my-awesome-project / MR #1 Update the README with author ... "
expected_message = u " Eeshan Garg approved [MR #1](https://gitlab.com/eeshangarg/my-awesome-project/merge_requests/1) "
self . send_and_test_stream_message (
' merge_request_approved ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Merge Request Hook "
)
2017-11-04 07:47:46 +01:00
def test_merge_request_updated_event_message ( self ) - > None :
2016-10-11 18:54:48 +02:00
expected_subject = u " my-awesome-project / MR #3 New Merge Request "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek updated [MR #3](https://gitlab.com/tomaszkolek0/my-awesome-project/merge_requests/3)(assigned to Tomasz Kolek) \n from `tomek` to `master` \n \n ~~~ quote \n updated desc \n ~~~ "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' merge_request_updated ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Merge Request Hook "
)
2017-11-04 07:47:46 +01:00
def test_merge_request_added_commit_event_message ( self ) - > None :
2016-10-11 18:54:48 +02:00
expected_subject = u " my-awesome-project / MR #3 New Merge Request "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek added commit(s) to [MR #3](https://gitlab.com/tomaszkolek0/my-awesome-project/merge_requests/3) "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' merge_request_added_commit ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Merge Request Hook "
)
2017-11-04 07:47:46 +01:00
def test_merge_request_merged_event_message ( self ) - > None :
2016-10-11 18:54:48 +02:00
expected_subject = u " my-awesome-project / MR #3 New Merge Request "
2016-10-26 21:13:00 +02:00
expected_message = u " Tomasz Kolek merged [MR #3](https://gitlab.com/tomaszkolek0/my-awesome-project/merge_requests/3) "
2016-09-20 22:51:11 +02:00
self . send_and_test_stream_message (
' merge_request_merged ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Merge Request Hook "
)
2017-11-04 07:47:46 +01:00
def test_wiki_page_opened_event_message ( self ) - > None :
2016-09-26 08:12:24 +02:00
expected_subject = u " my-awesome-project "
2016-09-20 22:51:11 +02:00
expected_message = u " Tomasz Kolek created [Wiki Page \" how to \" ](https://gitlab.com/tomaszkolek0/my-awesome-project/wikis/how-to). "
self . send_and_test_stream_message (
' wiki_page_opened ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Wiki Page Hook "
)
2017-11-04 07:47:46 +01:00
def test_wiki_page_edited_event_message ( self ) - > None :
2016-09-26 08:12:24 +02:00
expected_subject = u " my-awesome-project "
2016-09-20 22:51:11 +02:00
expected_message = u " Tomasz Kolek updated [Wiki Page \" how to \" ](https://gitlab.com/tomaszkolek0/my-awesome-project/wikis/how-to). "
self . send_and_test_stream_message (
' wiki_page_edited ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Wiki Page Hook "
)
2016-09-28 22:02:41 +02:00
2017-11-04 07:47:46 +01:00
def test_build_created_event_message ( self ) - > None :
2016-09-28 22:02:41 +02:00
expected_subject = u " my-awesome-project / master "
expected_message = u " Build job_name from test stage was created. "
self . send_and_test_stream_message (
' build_created ' ,
expected_subject ,
expected_message ,
2018-02-24 03:07:57 +01:00
HTTP_X_GITLAB_EVENT = " Job Hook "
2016-09-28 22:02:41 +02:00
)
2017-11-04 07:47:46 +01:00
def test_build_started_event_message ( self ) - > None :
2016-09-28 22:02:41 +02:00
expected_subject = u " my-awesome-project / master "
expected_message = u " Build job_name from test stage started. "
self . send_and_test_stream_message (
' build_started ' ,
expected_subject ,
expected_message ,
2018-02-24 03:07:57 +01:00
HTTP_X_GITLAB_EVENT = " Job Hook "
2016-09-28 22:02:41 +02:00
)
2017-11-04 07:47:46 +01:00
def test_build_succeeded_event_message ( self ) - > None :
2016-09-28 22:02:41 +02:00
expected_subject = u " my-awesome-project / master "
expected_message = u " Build job_name from test stage changed status to success. "
self . send_and_test_stream_message (
' build_succeeded ' ,
expected_subject ,
expected_message ,
2018-02-24 03:07:57 +01:00
HTTP_X_GITLAB_EVENT = " Job Hook "
2016-09-28 22:02:41 +02:00
)
2016-09-28 23:06:04 +02:00
2018-02-24 23:41:25 +01:00
def test_build_created_event_message_legacy_event_name ( self ) - > None :
expected_subject = u " my-awesome-project / master "
expected_message = u " Build job_name from test stage was created. "
self . send_and_test_stream_message (
' build_created ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Build Hook "
)
def test_build_started_event_message_legacy_event_name ( self ) - > None :
expected_subject = u " my-awesome-project / master "
expected_message = u " Build job_name from test stage started. "
self . send_and_test_stream_message (
' build_started ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Build Hook "
)
def test_build_succeeded_event_message_legacy_event_name ( self ) - > None :
expected_subject = u " my-awesome-project / master "
expected_message = u " Build job_name from test stage changed status to success. "
self . send_and_test_stream_message (
' build_succeeded ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Build Hook "
)
2017-11-04 07:47:46 +01:00
def test_pipeline_succeeded_event_message ( self ) - > None :
2016-09-28 23:06:04 +02:00
expected_subject = u " my-awesome-project / master "
expected_message = u " Pipeline changed status to success with build(s): \n * job_name2 - success \n * job_name - success. "
self . send_and_test_stream_message (
' pipeline_succeeded ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Pipeline Hook "
)
2017-11-04 07:47:46 +01:00
def test_pipeline_started_event_message ( self ) - > None :
2016-09-28 23:06:04 +02:00
expected_subject = u " my-awesome-project / master "
expected_message = u " Pipeline started with build(s): \n * job_name - running \n * job_name2 - pending. "
self . send_and_test_stream_message (
' pipeline_started ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Pipeline Hook "
)
2017-11-04 07:47:46 +01:00
def test_pipeline_pending_event_message ( self ) - > None :
2016-09-28 23:06:04 +02:00
expected_subject = u " my-awesome-project / master "
expected_message = u " Pipeline was created with build(s): \n * job_name2 - pending \n * job_name - created. "
self . send_and_test_stream_message (
' pipeline_pending ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Pipeline Hook "
)
2017-04-03 04:46:41 +02:00
2018-03-12 02:47:49 +01:00
def test_issue_type_test_payload ( self ) - > None :
2017-11-15 04:20:21 +01:00
expected_subject = u ' public-repo '
expected_message = u " Webhook for **public-repo** has been configured successfully! :tada: "
self . send_and_test_stream_message (
' issue_test_payload ' ,
expected_subject ,
expected_message ,
HTTP_X_GITLAB_EVENT = " Test Hook "
)
2018-03-13 23:43:02 +01:00
@patch ( ' zerver.lib.webhooks.common.check_send_webhook_message ' )
2017-04-03 04:46:41 +02:00
def test_push_event_message_filtered_by_branches_ignore (
2018-03-13 23:43:02 +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-04-03 04:46:41 +02:00
payload = self . get_body ( ' push ' )
result = self . client_post ( self . url , payload , HTTP_X_GITLAB_EVENT = ' Push Hook ' , content_type = " application/json " )
2018-03-13 23:43:02 +01:00
self . assertFalse ( check_send_webhook_message_mock . called )
2017-04-03 04:46:41 +02:00
self . assert_json_success ( result )
2018-03-13 23:43:02 +01:00
@patch ( ' zerver.lib.webhooks.common.check_send_webhook_message ' )
2017-04-03 04:46:41 +02:00
def test_push_commits_more_than_limit_message_filtered_by_branches_ignore (
2018-03-13 23:43:02 +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-04-03 04:46:41 +02:00
payload = self . get_body ( ' push_commits_more_than_limit ' )
result = self . client_post ( self . url , payload , HTTP_X_GITLAB_EVENT = ' Push Hook ' , content_type = " application/json " )
2018-03-13 23:43:02 +01:00
self . assertFalse ( check_send_webhook_message_mock . called )
2017-04-03 04:46:41 +02:00
self . assert_json_success ( result )