2020-05-26 07:16:25 +02:00
from unittest . mock import MagicMock , patch
2019-11-18 03:28:15 +01:00
from zerver . lib . test_classes import WebhookTestCase
2020-01-14 22:06:24 +01:00
2019-11-18 03:28:15 +01:00
class GiteaHookTests ( WebhookTestCase ) :
2024-05-04 22:02:50 +02:00
CHANNEL_NAME = " commits "
2021-04-16 01:11:45 +02:00
URL_TEMPLATE = " /api/v1/external/gitea?&api_key= {api_key} &stream= {stream} "
2021-06-26 09:18:33 +02:00
WEBHOOK_DIR_NAME = " gitea "
2019-11-18 03:28:15 +01:00
def test_multiple_commits ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / d "
2020-04-09 21:51:58 +02:00
expected_message = """ kostekIV [pushed](https://try.gitea.io/kostekIV/test/compare/21138d2ca0ce18f8e037696fdbe1b3f0c211f630...2ec0c971d04723523aa20f2b378f8b419b47d4ec) 5 commits to branch d.
2019-11-18 03:28:15 +01:00
2022-11-07 21:15:53 +01:00
* commit ( [ 2 ec0c971d04 ] ( https : / / try . gitea . io / kostekIV / test / commit / 2 ec0c971d04723523aa20f2b378f8b419b47d4ec ) )
* commit ( [ 6 cb1701c8b0 ] ( https : / / try . gitea . io / kostekIV / test / commit / 6 cb1701c8b0114ad716f4cd49153076e7109cb85 ) )
* commit ( [ 6773 eabc077 ] ( https : / / try . gitea . io / kostekIV / test / commit / 6773 eabc0778a3e38997c06a13f5f0c48b67e5dc ) )
* commit ( [ 337402 cf675 ] ( https : / / try . gitea . io / kostekIV / test / commit / 337402 cf675ce7082ddcd23d06a116c85241825a ) )
* commit ( [ 0 a38cad3fac ] ( https : / / try . gitea . io / kostekIV / test / commit / 0 a38cad3fac3a13bb78b738d13f15ce9cc3343fa ) ) """
2024-01-17 15:53:30 +01:00
self . check_webhook ( " push__5_commits " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_new_branch ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / test-branch "
2020-04-09 21:51:58 +02:00
expected_message = " kostekIV created [test-branch](https://try.gitea.io/kostekIV/test/src/test-branch) branch. "
2024-01-17 15:53:30 +01:00
self . check_webhook ( " create__branch " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_pull_request_opened ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / PR #1905 New pr "
2020-04-09 21:51:58 +02:00
expected_message = """ kostekIV opened [PR #4](https://try.gitea.io/kostekIV/test/pulls/4) from `test-branch` to `master`. """
2024-01-17 15:53:30 +01:00
self . check_webhook ( " pull_request__opened " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_pull_request_merged ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / PR #1905 New pr "
2020-04-09 21:51:58 +02:00
expected_message = """ kostekIV merged [PR #4](https://try.gitea.io/kostekIV/test/pulls/4) from `test-branch` to `master`. """
2024-01-17 15:53:30 +01:00
self . check_webhook ( " pull_request__merged " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_pull_request_edited ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / PR #1906 test 2 "
2023-04-07 23:41:47 +02:00
expected_message = (
""" kostekIV edited [PR #5](https://try.gitea.io/kostekIV/test/pulls/5). """
)
2024-01-17 15:53:30 +01:00
self . check_webhook ( " pull_request__edited " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_pull_request_reopened ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / PR #1906 test 2 "
2020-04-09 21:51:58 +02:00
expected_message = """ kostekIV reopened [PR #5](https://try.gitea.io/kostekIV/test/pulls/5) from `d` to `master`. """
2024-01-17 15:53:30 +01:00
self . check_webhook ( " pull_request__reopened " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_pull_request_closed ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / PR #1906 test 2 "
2020-04-09 21:51:58 +02:00
expected_message = """ kostekIV closed [PR #5](https://try.gitea.io/kostekIV/test/pulls/5) from `d` to `master`. """
2024-01-17 15:53:30 +01:00
self . check_webhook ( " pull_request__closed " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_pull_request_assigned ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / PR #1906 test 2 "
2024-10-24 03:56:41 +02:00
expected_message = """ kostekIV assigned kostekIV to [PR #5](https://try.gitea.io/kostekIV/test/pulls/5) from `d` to `master` (assigned to kostekIV). """
2024-01-17 15:53:30 +01:00
self . check_webhook ( " pull_request__assigned " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_issues_opened ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / issue #3 Test issue "
2021-05-10 07:02:14 +02:00
expected_message = """ kostekIV opened [issue #3](https://try.gitea.io/kostekIV/test/issues/3): \n \n ~~~ quote \n Test body \n ~~~ """
2024-01-17 15:53:30 +01:00
self . check_webhook ( " issues__opened " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_issues_edited ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / issue #3 Test issue 2 "
2021-05-10 07:02:14 +02:00
expected_message = """ kostekIV edited [issue #3](https://try.gitea.io/kostekIV/test/issues/3) (assigned to kostekIV): \n \n ~~~ quote \n Test body \n ~~~ """
2024-01-17 15:53:30 +01:00
self . check_webhook ( " issues__edited " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_issues_closed ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / issue #3 Test issue 2 "
2021-05-10 07:02:14 +02:00
expected_message = """ kostekIV closed [issue #3](https://try.gitea.io/kostekIV/test/issues/3) (assigned to kostekIV): \n \n ~~~ quote \n Test body \n ~~~ """
2024-01-17 15:53:30 +01:00
self . check_webhook ( " issues__closed " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_issues_assigned ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / issue #3 Test issue "
2024-10-24 03:56:41 +02:00
expected_message = """ kostekIV assigned kostekIV to [issue #3](https://try.gitea.io/kostekIV/test/issues/3) (assigned to kostekIV): \n \n ~~~ quote \n Test body \n ~~~ """
2024-01-17 15:53:30 +01:00
self . check_webhook ( " issues__assigned " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_issues_reopened ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / issue #3 Test issue 2 "
2021-05-10 07:02:14 +02:00
expected_message = """ kostekIV reopened [issue #3](https://try.gitea.io/kostekIV/test/issues/3) (assigned to kostekIV): \n \n ~~~ quote \n Test body \n ~~~ """
2024-01-17 15:53:30 +01:00
self . check_webhook ( " issues__reopened " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_issue_comment_new ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / issue #3 Test issue "
2021-05-10 07:02:14 +02:00
expected_message = """ kostekIV [commented](https://try.gitea.io/kostekIV/test/issues/3#issuecomment-24400) on [issue #3](https://try.gitea.io/kostekIV/test/issues/3): \n \n ~~~ quote \n test comment \n ~~~ """
2024-01-17 15:53:30 +01:00
self . check_webhook ( " issue_comment__new " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_issue_comment_in_pr ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / issue #1 dummy "
2021-05-10 07:02:14 +02:00
expected_message = """ kostekIV [commented](https://try.gitea.io/kostekIV/test/pulls/1/files#issuecomment-24399) on [issue #1](https://try.gitea.io/kostekIV/test/issues/1): \n \n ~~~ quote \n test comment \n ~~~ """
2024-01-17 15:53:30 +01:00
self . check_webhook ( " issue_comment__in_pr " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
def test_issue_comment_edited ( self ) - > None :
2024-01-17 15:53:30 +01:00
expected_topic_name = " test / issue #3 Test issue 2 "
2021-05-10 07:02:14 +02:00
expected_message = """ kostekIV edited a [comment](https://try.gitea.io/kostekIV/test/issues/3#issuecomment-24400) on [issue #3](https://try.gitea.io/kostekIV/test/issues/3): \n \n ~~~ quote \n edit test comment \n ~~~ """
2019-11-18 03:28:15 +01:00
2024-01-17 15:53:30 +01:00
self . check_webhook ( " issue_comment__edited " , expected_topic_name , expected_message )
2019-11-18 03:28:15 +01:00
2021-02-12 08:20:45 +01:00
@patch ( " zerver.webhooks.gogs.view.check_send_webhook_message " )
2021-02-12 08:19:30 +01:00
def test_push_filtered_by_branches_ignore (
self , check_send_webhook_message_mock : MagicMock
) - > None :
2021-02-12 08:20:45 +01:00
self . url = self . build_webhook_url ( branches = " changes,development " )
payload = self . get_body ( " push__5_commits " )
2021-02-12 08:19:30 +01:00
result = self . client_post (
2021-02-12 08:20:45 +01:00
self . url , payload , HTTP_X_GITEA_EVENT = " push " , content_type = " application/json "
2021-02-12 08:19:30 +01:00
)
2019-11-18 03:28:15 +01:00
self . assertFalse ( check_send_webhook_message_mock . called )
self . assert_json_success ( result )