##// END OF EJS Templates
feat(configs): deprecared old hooks protocol and ssh wrapper....
feat(configs): deprecared old hooks protocol and ssh wrapper. New defaults are now set on v2 keys, so previous installation are automatically set to new keys. Fallback mode is still available.

File last commit:

r5496:cab50adf default
r5496:cab50adf default
Show More
test_server_svn.py
203 lines | 6.5 KiB | text/x-python | PythonLexer
copyrights: updated for 2023
r5088 # Copyright (C) 2016-2023 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/
tests: fixed some flacky tests on docker.
r4654 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.svn import SubversionServer
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 SubversionServerCreator(object):
root = '/tmp/repo/path/'
svn_path = '/usr/local/bin/svnserve'
config_data = {
'app:main': {
ssh-support: enabled full handling of all backends via SSH....
r2187 'ssh.executable.svn': svn_path,
feat(configs): deprecared old hooks protocol and ssh wrapper....
r5496 'vcs.hooks.protocol.v2': 'celery',
ssh: embedded ssh support...
r2043 }
}
repo_name = 'test-svn'
dan
tests: fixed some pytest deprecated calls, and warnings.
r3098 user = plain_dummy_user()
ssh: embedded ssh support...
r2043
def __init__(self):
feat(ssh-wrapper-speedup): major rewrite of code to address imports problem with ssh-wrapper-v2...
r5325 pass
ssh: embedded ssh support...
r2043
def create(self, **kwargs):
parameters = {
ssh-support: enabled full handling of all backends via SSH....
r2187 'store': self.root,
'repo_name': self.repo_name,
ssh: embedded ssh support...
r2043 'ini_path': '',
'user': self.user,
'user_permissions': {
ssh-support: enabled full handling of all backends via SSH....
r2187 self.repo_name: 'repository.admin'
ssh: embedded ssh support...
r2043 },
feat(ssh-wrapper-speedup): major rewrite of code to address imports problem with ssh-wrapper-v2...
r5325 'settings': self.config_data['app:main'],
dan
tests: fixed some pytest deprecated calls, and warnings.
r3098 'env': plain_dummy_env()
ssh: embedded ssh support...
r2043 }
ssh-support: enabled full handling of all backends via SSH....
r2187
ssh: embedded ssh support...
r2043 parameters.update(kwargs)
server = SubversionServer(**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 svn_server(app):
return SubversionServerCreator()
ssh: embedded ssh support...
r2043 class TestSubversionServer(object):
fix(tests): fixed svn tests
r5336
ssh-support: enabled full handling of all backends via SSH....
r2187 def test_command(self, svn_server):
ssh: embedded ssh support...
r2043 server = svn_server.create()
ssh-support: enabled full handling of all backends via SSH....
r2187 expected_command = [
dan
svn: explicitly specify tunnel-user to properly map rhodecode username on svn commit via SSH backend...
r4286 svn_server.svn_path, '-t',
'--config-file', server.tunnel.svn_conf_path,
'--tunnel-user', svn_server.user.username,
'-r', svn_server.root
ssh-support: enabled full handling of all backends via SSH....
r2187 ]
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 assert expected_command == server.tunnel.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-svn': 'repository.read'}, 'pull', 0),
({'test-svn': 'repository.read'}, 'push', -2),
({'test-svn': 'repository.write'}, 'push', 0),
({'test-svn': 'repository.admin'}, 'push', 0),
])
def test_permission_checks(self, svn_server, permissions, action, code):
server = svn_server.create(user_permissions=permissions)
result = server._check_permissions(action)
assert result is code
ssh: embedded ssh support...
r2043
dan
svn: fixed case of wrong extracted repository name for SSH backend. In cases...
r4281 @pytest.mark.parametrize('permissions, access_paths, expected_match', [
# not matched repository name
({
'test-svn': ''
}, ['test-svn-1', 'test-svn-1/subpath'],
None),
# exact match
({
'test-svn': ''
},
['test-svn'],
'test-svn'),
# subdir commits
({
'test-svn': ''
},
['test-svn/foo',
'test-svn/foo/test-svn',
'test-svn/trunk/development.txt',
],
'test-svn'),
# subgroups + similar patterns
({
'test-svn': '',
'test-svn-1': '',
'test-svn-subgroup/test-svn': '',
},
['test-svn-1',
'test-svn-1/foo/test-svn',
'test-svn-1/test-svn',
],
'test-svn-1'),
# subgroups + similar patterns
({
'test-svn-1': '',
'test-svn-10': '',
'test-svn-100': '',
},
['test-svn-10',
'test-svn-10/foo/test-svn',
'test-svn-10/test-svn',
],
'test-svn-10'),
# subgroups + similar patterns
({
'name': '',
'nameContains': '',
'nameContainsThis': '',
},
['nameContains',
'nameContains/This',
'nameContains/This/test-svn',
],
'nameContains'),
# subgroups + similar patterns
({
'test-svn': '',
'test-svn-1': '',
'test-svn-subgroup/test-svn': '',
},
['test-svn-subgroup/test-svn',
'test-svn-subgroup/test-svn/foo/test-svn',
'test-svn-subgroup/test-svn/trunk/example.txt',
],
'test-svn-subgroup/test-svn'),
])
def test_repo_extraction_on_subdir(self, svn_server, permissions, access_paths, expected_match):
server = svn_server.create(user_permissions=permissions)
for path in access_paths:
repo_name = server.tunnel._match_repo_name(path)
assert repo_name == expected_match
ssh-support: enabled full handling of all backends via SSH....
r2187 def test_run_returns_executes_command(self, svn_server):
ssh: embedded ssh support...
r2043 server = svn_server.create()
ssh-support: enabled full handling of all backends via SSH....
r2187 from rhodecode.apps.ssh_support.lib.backends.svn import SubversionTunnelWrapper
tests: fixed some flacky tests on docker.
r4654 os.environ['SSH_CLIENT'] = '127.0.0.1'
ssh-support: enabled full handling of all backends via SSH....
r2187 with mock.patch.object(
SubversionTunnelWrapper, 'get_first_client_response',
return_value={'url': 'http://server/test-svn'}):
with mock.patch.object(
SubversionTunnelWrapper, 'patch_first_client_response',
return_value=0):
with mock.patch.object(
SubversionTunnelWrapper, 'sync',
return_value=0):
with mock.patch.object(
SubversionTunnelWrapper, 'command',
svn: fixed tests for svn backend.
r2603 return_value=['date']):
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 exit_code = server.run()
# SVN has this differently configured, and we get in our mock env
# None as return code
assert exit_code == (None, False)
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 def test_run_returns_executes_command_that_cannot_extract_repo_name(self, svn_server):
server = svn_server.create()
from rhodecode.apps.ssh_support.lib.backends.svn import SubversionTunnelWrapper
with mock.patch.object(
SubversionTunnelWrapper, 'command',
svn: fixed tests for svn backend.
r2603 return_value=['date']):
ssh-support: enabled full handling of all backends via SSH....
r2187 with mock.patch.object(
SubversionTunnelWrapper, 'get_first_client_response',
return_value=None):
exit_code = server.run()
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 assert exit_code == (1, False)