mirror of
https://github.com/zulip/zulip.git
synced 2025-11-16 20:02:15 +00:00
We now show a few new things: (1) The number of commits pushed. (2) Who authored the commits (just counts, not which specific ones, for brevity). Add tests for case of multiple committers. Part of #3968.
78 lines
4.3 KiB
Python
78 lines
4.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
from typing import Dict, Text
|
|
from zerver.lib.webhooks.git import COMMITS_LIMIT
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
class BeanstalkHookTests(WebhookTestCase):
|
|
STREAM_NAME = 'commits'
|
|
URL_TEMPLATE = u"/api/v1/external/beanstalk"
|
|
|
|
def test_git_single(self):
|
|
# type: () -> None
|
|
expected_subject = "work-test / master"
|
|
expected_message = """Leo Franchi [pushed](http://lfranchi-svn.beanstalkapp.com/work-test) 1 commit to branch master. Commits by Leo Franchi(1)
|
|
|
|
* add some stuff ([e50508d](http://lfranchi-svn.beanstalkapp.com/work-test/changesets/e50508df))"""
|
|
self.send_and_test_stream_message('git_singlecommit', expected_subject, expected_message,
|
|
content_type=None,
|
|
**self.api_auth(self.TEST_USER_EMAIL))
|
|
|
|
def test_git_multiple_committers(self):
|
|
# type: () -> None
|
|
expected_subject = "work-test / master"
|
|
expected_message = """Leo Franchi [pushed](http://lfranchi-svn.beanstalkapp.com/work-test) 3 commits to branch master. Commits by Leo Franchi(2) and Tomasz Kolek(1)
|
|
|
|
* Added new file ([edf529c](http://lfranchi-svn.beanstalkapp.com/work-test/changesets/edf529c7))
|
|
* Filled in new file with some stuff ([c2a191b](http://lfranchi-svn.beanstalkapp.com/work-test/changesets/c2a191b9))
|
|
* More work to fix some bugs ([2009815](http://lfranchi-svn.beanstalkapp.com/work-test/changesets/20098158))"""
|
|
self.send_and_test_stream_message('git_multiple_committers', expected_subject, expected_message,
|
|
content_type=None,
|
|
**self.api_auth(self.TEST_USER_EMAIL))
|
|
|
|
def test_git_multiple(self):
|
|
# type: () -> None
|
|
expected_subject = "work-test / master"
|
|
expected_message = """Leo Franchi [pushed](http://lfranchi-svn.beanstalkapp.com/work-test) 3 commits to branch master. Commits by Leo Franchi(3)
|
|
|
|
* Added new file ([edf529c](http://lfranchi-svn.beanstalkapp.com/work-test/changesets/edf529c7))
|
|
* Filled in new file with some stuff ([c2a191b](http://lfranchi-svn.beanstalkapp.com/work-test/changesets/c2a191b9))
|
|
* More work to fix some bugs ([2009815](http://lfranchi-svn.beanstalkapp.com/work-test/changesets/20098158))"""
|
|
self.send_and_test_stream_message('git_multiple', expected_subject, expected_message,
|
|
content_type=None,
|
|
**self.api_auth(self.TEST_USER_EMAIL))
|
|
|
|
def test_git_more_than_limit(self):
|
|
# type: () -> None
|
|
commits_info = "* add some stuff ([e50508d](http://lfranchi-svn.beanstalkapp.com/work-test/changesets/e50508df))\n"
|
|
expected_subject = "work-test / master"
|
|
expected_message = """Leo Franchi [pushed](http://lfranchi-svn.beanstalkapp.com/work-test) 50 commits to branch master. Commits by Leo Franchi(50)
|
|
|
|
{}[and {} more commit(s)]""".format((commits_info * COMMITS_LIMIT), 50 - COMMITS_LIMIT)
|
|
self.send_and_test_stream_message('git_morethanlimitcommits', expected_subject, expected_message,
|
|
content_type=None,
|
|
**self.api_auth(self.TEST_USER_EMAIL))
|
|
|
|
def test_svn_addremove(self):
|
|
# type: () -> None
|
|
expected_subject = "svn r3"
|
|
expected_message = """Leo Franchi pushed [revision 3](http://lfranchi-svn.beanstalkapp.com/work-test/changesets/3):
|
|
|
|
> Removed a file and added another one!"""
|
|
self.send_and_test_stream_message('svn_addremove', expected_subject, expected_message,
|
|
content_type=None,
|
|
**self.api_auth(self.TEST_USER_EMAIL))
|
|
|
|
def test_svn_changefile(self):
|
|
# type: () -> None
|
|
expected_subject = "svn r2"
|
|
expected_message = """Leo Franchi pushed [revision 2](http://lfranchi-svn.beanstalkapp.com/work-test/changesets/2):
|
|
|
|
> Added some code"""
|
|
self.send_and_test_stream_message('svn_changefile', expected_subject, expected_message,
|
|
content_type=None,
|
|
**self.api_auth(self.TEST_USER_EMAIL))
|
|
|
|
def get_body(self, fixture_name):
|
|
# type: (Text) -> Dict[str, Text]
|
|
return {'payload': self.fixture_data('beanstalk', fixture_name)}
|