##// END OF EJS Templates
tests: fix httpbin port, within a container we use internal docker network so port is not exposed, we should call httpbin directly
tests: fix httpbin port, within a container we use internal docker network so port is not exposed, we should call httpbin directly

File last commit:

r5153:57de8b95 default
r5153:57de8b95 default
Show More
conftest.py
59 lines | 2.0 KiB | text/x-python | PythonLexer
webhooks: added variables into the call URL. Fixes #4211
r938
copyrights: updated for 2023
r5088 # Copyright (C) 2010-2023 RhodeCode GmbH
webhooks: added variables into the call URL. Fixes #4211
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
integrations: parse pushed tags, and lightweight tags for git....
r2422 from rhodecode.lib.utils2 import AttributeDict
tests: fix httpbin port, within a container we use internal docker network so port is not exposed, we should call httpbin directly
r5153 from rhodecode.tests.conftest import HTTPBIN_DOMAIN
webhooks: added variables into the call URL. Fixes #4211
r938
pytest: use consistent way of creating a fixture by using pytest.fixture()
r3946 @pytest.fixture()
webhooks: added variables into the call URL. Fixes #4211
r938 def repo_push_event(backend, user_regular):
commits = [
{'message': 'ancestor commit fixes #15'},
{'message': 'quick fixes'},
{'message': 'change that fixes #41, #2'},
{'message': 'this is because 5b23c3532 broke stuff'},
{'message': 'last commit'},
]
integrations: restructure code and added better coverage.
r5123 r = backend.create_repo(commits)
commit_ids = list(backend.commit_ids.values())
repo_name = backend.repo_name
alias = backend.alias
integrations: parse pushed tags, and lightweight tags for git....
r2422 scm_extras = AttributeDict({
webhooks: added variables into the call URL. Fixes #4211
r938 'ip': '127.0.0.1',
'username': user_regular.username,
vcs-ops: store user_id inside the extras for vcs context operations....
r2411 'user_id': user_regular.user_id,
webhooks: added variables into the call URL. Fixes #4211
r938 'action': '',
integrations: restructure code and added better coverage.
r5123 'repository': repo_name,
'scm': alias,
webhooks: added variables into the call URL. Fixes #4211
r938 'config': '',
hooks: pass in store_path into env for hooks.
r3094 'repo_store': '',
tests: fix httpbin port, within a container we use internal docker network so port is not exposed, we should call httpbin directly
r5153 'server_url': HTTPBIN_DOMAIN,
webhooks: added variables into the call URL. Fixes #4211
r938 'make_lock': None,
'locked_by': [None],
'commit_ids': commit_ids,
integrations: parse pushed tags, and lightweight tags for git....
r2422 })
webhooks: added variables into the call URL. Fixes #4211
r938
integrations: restructure code and added better coverage.
r5123 return events.RepoPushEvent(repo_name=repo_name,
webhooks: added variables into the call URL. Fixes #4211
r938 pushed_commit_ids=commit_ids,
extras=scm_extras)