##// END OF EJS Templates
pull-requests: add merge check that detects WIP marker in title. This will prevent merges in such case....
pull-requests: add merge check that detects WIP marker in title. This will prevent merges in such case. Usually WIP in title means unfinished task that needs still some work. This pattern is present in Gitlab/Github and is already quite common.

File last commit:

r3946:39fb0295 default
r4099:c12e69d0 default
Show More
test_server_hg.py
119 lines | 4.1 KiB | text/x-python | PythonLexer
ssh: embedded ssh support...
r2043 # -*- coding: utf-8 -*-
docs: updated copyrights to 2019
r3363 # Copyright (C) 2016-2019 RhodeCode GmbH
ssh: embedded ssh support...
r2043 #
# 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/
Mercurial: fix ssh-server support for UI objects...
r3626 import os
ssh-support: enabled full handling of all backends via SSH....
r2187 import mock
ssh: embedded ssh support...
r2043 import pytest
ssh-support: don't use API calls to fetch the data....
r2186 from rhodecode.apps.ssh_support.lib.backends.hg import MercurialServer
dan
tests: fixed some pytest deprecated calls, and warnings.
r3098 from rhodecode.apps.ssh_support.tests.conftest import plain_dummy_env, plain_dummy_user
ssh: embedded ssh support...
r2043
class MercurialServerCreator(object):
root = '/tmp/repo/path/'
hg_path = '/usr/local/bin/hg'
config_data = {
'app:main': {
ssh-support: enabled full handling of all backends via SSH....
r2187 'ssh.executable.hg': hg_path,
'vcs.hooks.protocol': 'http',
ssh: embedded ssh support...
r2043 }
}
repo_name = 'test_hg'
dan
tests: fixed some pytest deprecated calls, and warnings.
r3098 user = plain_dummy_user()
ssh: embedded ssh support...
r2043
def __init__(self):
def config_get(part, key):
return self.config_data.get(part, {}).get(key)
ssh-support: enabled full handling of all backends via SSH....
r2187 self.config_mock = mock.Mock()
self.config_mock.get = mock.Mock(side_effect=config_get)
ssh: embedded ssh support...
r2043
def create(self, **kwargs):
parameters = {
ssh-support: enabled full handling of all backends via SSH....
r2187 'store': self.root,
ssh: embedded ssh support...
r2043 'ini_path': '',
'user': self.user,
'repo_name': self.repo_name,
'user_permissions': {
ssh-support: enabled full handling of all backends via SSH....
r2187 'test_hg': 'repository.admin'
ssh: embedded ssh support...
r2043 },
'config': self.config_mock,
dan
tests: fixed some pytest deprecated calls, and warnings.
r3098 'env': plain_dummy_env()
ssh: embedded ssh support...
r2043 }
parameters.update(kwargs)
server = MercurialServer(**parameters)
return server
pytest: use consistent way of creating a fixture by using pytest.fixture()
r3946 @pytest.fixture()
ssh-support: enabled full handling of all backends via SSH....
r2187 def hg_server(app):
return MercurialServerCreator()
ssh: embedded ssh support...
r2043 class TestMercurialServer(object):
ssh-support: enabled full handling of all backends via SSH....
r2187
Mercurial: fix ssh-server support for UI objects...
r3626 def test_command(self, hg_server, tmpdir):
ssh: embedded ssh support...
r2043 server = hg_server.create()
Mercurial: fix ssh-server support for UI objects...
r3626 custom_hgrc = os.path.join(str(tmpdir), 'hgrc')
ssh: embedded ssh support...
r2043 expected_command = (
Mercurial: fix ssh-server support for UI objects...
r3626 'cd {root}; HGRCPATH={custom_hgrc} {hg_path} -R {root}{repo_name} serve --stdio'.format(
root=hg_server.root, custom_hgrc=custom_hgrc, hg_path=hg_server.hg_path,
ssh: embedded ssh support...
r2043 repo_name=hg_server.repo_name)
)
Mercurial: fix ssh-server support for UI objects...
r3626 server_command = server.tunnel.command(custom_hgrc)
assert expected_command == server_command
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 @pytest.mark.parametrize('permissions, action, code', [
({}, 'pull', -2),
({'test_hg': 'repository.read'}, 'pull', 0),
({'test_hg': 'repository.read'}, 'push', -2),
({'test_hg': 'repository.write'}, 'push', 0),
({'test_hg': 'repository.admin'}, 'push', 0),
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 ])
def test_permission_checks(self, hg_server, permissions, action, code):
server = hg_server.create(user_permissions=permissions)
result = server._check_permissions(action)
assert result is code
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 @pytest.mark.parametrize('permissions, value', [
({}, False),
({'test_hg': 'repository.read'}, False),
({'test_hg': 'repository.write'}, True),
({'test_hg': 'repository.admin'}, True),
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 ])
def test_has_write_permissions(self, hg_server, permissions, value):
server = hg_server.create(user_permissions=permissions)
result = server.has_write_perm()
assert result is value
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 def test_run_returns_executes_command(self, hg_server):
ssh: embedded ssh support...
r2043 server = hg_server.create()
ssh-support: enabled full handling of all backends via SSH....
r2187 from rhodecode.apps.ssh_support.lib.backends.hg import MercurialTunnelWrapper
with mock.patch.object(MercurialTunnelWrapper, 'create_hooks_env') as _patch:
_patch.return_value = 0
with mock.patch.object(MercurialTunnelWrapper, 'command', return_value='date'):
ssh: embedded ssh support...
r2043 exit_code = server.run()
assert exit_code == (0, False)
ssh-support: enabled full handling of all backends via SSH....
r2187