test_webhook.py
132 lines
| 4.7 KiB
| text/x-python
|
PythonLexer
r938 | # -*- coding: utf-8 -*- | |||
r3363 | # Copyright (C) 2010-2019 RhodeCode GmbH | |||
r938 | # | |||
# This program is free software: you can redistribute it and/or modify | ||||
# it under the terms of the GNU Affero General Public License, version 3 | ||||
# (only), as published by the Free Software Foundation. | ||||
# | ||||
# This program is distributed in the hope that it will be useful, | ||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
# GNU General Public License for more details. | ||||
# | ||||
# You should have received a copy of the GNU Affero General Public License | ||||
# along with this program. If not, see <http://www.gnu.org/licenses/>. | ||||
# | ||||
# This program is dual-licensed. If you wish to learn more about the | ||||
# RhodeCode Enterprise Edition, including its added features, Support services, | ||||
# and proprietary license terms, please see https://rhodecode.com/licenses/ | ||||
import pytest | ||||
from rhodecode import events | ||||
from rhodecode.lib.utils2 import AttributeDict | ||||
r2585 | from rhodecode.integrations.types.webhook import WebhookDataHandler | |||
r938 | ||||
@pytest.fixture | ||||
def base_data(): | ||||
return { | ||||
r2585 | 'name': 'event', | |||
r938 | 'repo': { | |||
'repo_name': 'foo', | ||||
'repo_type': 'hg', | ||||
'repo_id': '12', | ||||
r1709 | 'url': 'http://repo.url/foo', | |||
r1761 | 'extra_fields': {}, | |||
r1709 | }, | |||
'actor': { | ||||
'username': 'actor_name', | ||||
'user_id': 1 | ||||
r938 | } | |||
} | ||||
def test_webhook_parse_url_invalid_event(): | ||||
template_url = 'http://server.com/${repo_name}/build' | ||||
r2585 | handler = WebhookDataHandler( | |||
template_url, {'exmaple-header': 'header-values'}) | ||||
event = events.RepoDeleteEvent('') | ||||
r938 | with pytest.raises(ValueError) as err: | |||
r2585 | handler(event, {}) | |||
err = str(err.value) | ||||
assert err.startswith( | ||||
'event type `%s` not in supported list' % event.__class__) | ||||
r938 | ||||
@pytest.mark.parametrize('template,expected_urls', [ | ||||
r2585 | ('http://server.com/${repo_name}/build', | |||
['http://server.com/foo/build']), | ||||
('http://server.com/${repo_name}/${repo_type}', | ||||
['http://server.com/foo/hg']), | ||||
('http://${server}.com/${repo_name}/${repo_id}', | ||||
['http://${server}.com/foo/12']), | ||||
('http://server.com/${branch}/build', | ||||
['http://server.com/${branch}/build']), | ||||
r938 | ]) | |||
def test_webook_parse_url_for_create_event(base_data, template, expected_urls): | ||||
r2086 | headers = {'exmaple-header': 'header-values'} | |||
r2585 | handler = WebhookDataHandler(template, headers) | |||
r938 | urls = handler(events.RepoCreateEvent(''), base_data) | |||
r2086 | assert urls == [ | |||
r2585 | (url, headers, base_data) for url in expected_urls] | |||
r938 | ||||
@pytest.mark.parametrize('template,expected_urls', [ | ||||
r2585 | ('http://server.com/${repo_name}/${pull_request_id}', | |||
['http://server.com/foo/999']), | ||||
('http://server.com/${repo_name}/${pull_request_url}', | ||||
['http://server.com/foo/http://pr-url.com']), | ||||
r938 | ]) | |||
r2086 | def test_webook_parse_url_for_pull_request_event( | |||
base_data, template, expected_urls): | ||||
r938 | base_data['pullrequest'] = { | |||
'pull_request_id': 999, | ||||
'url': 'http://pr-url.com', | ||||
r2588 | 'title': 'example-pr-title', | |||
'commits_uid': 'abcdefg1234', | ||||
r2585 | 'shadow_url': 'http://pr-url.com/repository' | |||
r938 | } | |||
r2086 | headers = {'exmaple-header': 'header-values'} | |||
r2585 | handler = WebhookDataHandler(template, headers) | |||
r938 | urls = handler(events.PullRequestCreateEvent( | |||
AttributeDict({'target_repo': 'foo'})), base_data) | ||||
r2086 | assert urls == [ | |||
r2585 | (url, headers, base_data) for url in expected_urls] | |||
r938 | ||||
@pytest.mark.parametrize('template,expected_urls', [ | ||||
r2585 | ('http://server.com/${branch}/build', | |||
['http://server.com/stable/build', | ||||
'http://server.com/dev/build']), | ||||
('http://server.com/${branch}/${commit_id}', | ||||
['http://server.com/stable/stable-xxx', | ||||
'http://server.com/stable/stable-yyy', | ||||
'http://server.com/dev/dev-xxx', | ||||
'http://server.com/dev/dev-yyy']), | ||||
r3041 | ('http://server.com/${branch_head}', | |||
['http://server.com/stable-yyy', | ||||
'http://server.com/dev-yyy']), | ||||
('http://server.com/${commit_id}', | ||||
['http://server.com/stable-xxx', | ||||
'http://server.com/stable-yyy', | ||||
'http://server.com/dev-xxx', | ||||
'http://server.com/dev-yyy']), | ||||
r938 | ]) | |||
r2086 | def test_webook_parse_url_for_push_event( | |||
r2351 | baseapp, repo_push_event, base_data, template, expected_urls): | |||
r938 | base_data['push'] = { | |||
'branches': [{'name': 'stable'}, {'name': 'dev'}], | ||||
'commits': [{'branch': 'stable', 'raw_id': 'stable-xxx'}, | ||||
{'branch': 'stable', 'raw_id': 'stable-yyy'}, | ||||
{'branch': 'dev', 'raw_id': 'dev-xxx'}, | ||||
{'branch': 'dev', 'raw_id': 'dev-yyy'}] | ||||
} | ||||
r2086 | headers = {'exmaple-header': 'header-values'} | |||
r2585 | handler = WebhookDataHandler(template, headers) | |||
r938 | urls = handler(repo_push_event, base_data) | |||
r2086 | assert urls == [ | |||
r2585 | (url, headers, base_data) for url in expected_urls] | |||