mirror of https://github.com/zulip/zulip.git
56 lines
3.0 KiB
Python
56 lines
3.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
from typing import Text
|
|
from zerver.lib.webhooks.git import COMMITS_LIMIT
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
|
class GogsHookTests(WebhookTestCase):
|
|
STREAM_NAME = 'commits'
|
|
URL_TEMPLATE = "/api/v1/external/gogs?&api_key={api_key}"
|
|
FIXTURE_DIR_NAME = 'gogs'
|
|
|
|
def test_push(self):
|
|
# type: () -> None
|
|
expected_subject = u"try-git / master"
|
|
expected_message = u"""john [pushed](http://localhost:3000/john/try-git/compare/479e6b772b7fba19412457483f50b201286d0103...d8fce16c72a2ff56a5afc8a08645a6ce45491794) to branch master
|
|
|
|
* Webhook Test ([d8fce16](http://localhost:3000/john/try-git/commit/d8fce16c72a2ff56a5afc8a08645a6ce45491794))"""
|
|
self.send_and_test_stream_message('push', expected_subject, expected_message, HTTP_X_GOGS_EVENT='push')
|
|
|
|
def test_push_commits_more_than_limits(self):
|
|
# type: () -> None
|
|
expected_subject = u"try-git / master"
|
|
commits_info = "* Webhook Test ([d8fce16](http://localhost:3000/john/try-git/commit/d8fce16c72a2ff56a5afc8a08645a6ce45491794))\n"
|
|
expected_message = u"john [pushed](http://localhost:3000/john/try-git/compare/479e6b772b7fba19412457483f50b201286d0103...d8fce16c72a2ff56a5afc8a08645a6ce45491794) to branch master\n\n{}[and {} more commit(s)]".format(
|
|
commits_info * COMMITS_LIMIT,
|
|
30 - COMMITS_LIMIT
|
|
)
|
|
self.send_and_test_stream_message('push_commits_more_than_limits', expected_subject, expected_message, HTTP_X_GOGS_EVENT='push')
|
|
|
|
def test_new_branch(self):
|
|
# type: () -> None
|
|
expected_subject = u"try-git / my_feature"
|
|
expected_message = u"john created [my_feature](http://localhost:3000/john/try-git/src/my_feature) branch"
|
|
self.send_and_test_stream_message('branch', expected_subject, expected_message, HTTP_X_GOGS_EVENT='create')
|
|
|
|
def test_pull_request_opened(self):
|
|
# type: () -> None
|
|
expected_subject = u"try-git / PR #1 Title Text for Pull Request"
|
|
expected_message = u"""john opened [PR #1](http://localhost:3000/john/try-git/pulls/1)
|
|
from `feature` to `master`"""
|
|
self.send_and_test_stream_message('pull_request_opened', expected_subject, expected_message, HTTP_X_GOGS_EVENT='pull_request')
|
|
|
|
def test_pull_request_closed(self):
|
|
# type: () -> None
|
|
expected_subject = u"try-git / PR #1 Title Text for Pull Request"
|
|
expected_message = u"""john closed [PR #1](http://localhost:3000/john/try-git/pulls/1)
|
|
from `feature` to `master`"""
|
|
self.send_and_test_stream_message('pull_request_closed', expected_subject, expected_message, HTTP_X_GOGS_EVENT='pull_request')
|
|
|
|
def test_pull_request_merged(self):
|
|
# type: () -> None
|
|
expected_subject = u"try-git / PR #2 Title Text for Pull Request"
|
|
expected_message = u"""john merged [PR #2](http://localhost:3000/john/try-git/pulls/2)
|
|
from `feature` to `master`"""
|
|
self.send_and_test_stream_message('pull_request_merged', expected_subject, expected_message, HTTP_X_GOGS_EVENT='pull_request')
|