##// 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_git.py
151 lines | 5.2 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.git import GitServer
dan
tests: fixed some pytest deprecated calls, and warnings.
r3098 from rhodecode.apps.ssh_support.tests.conftest import plain_dummy_env, plain_dummy_user
tests: fixed all tests for python3 BIG changes
r5087 from rhodecode.lib.ext_json import json
ssh: embedded ssh support...
r2043
feat(ssh-wrapper-speedup): major rewrite of code to address imports problem with ssh-wrapper-v2...
r5325
ssh: embedded ssh support...
r2043 class GitServerCreator(object):
root = '/tmp/repo/path/'
ssh-support: enabled full handling of all backends via SSH....
r2187 git_path = '/usr/local/bin/git'
ssh: embedded ssh support...
r2043 config_data = {
'app:main': {
ssh-support: enabled full handling of all backends via SSH....
r2187 'ssh.executable.git': git_path,
feat(configs): deprecared old hooks protocol and ssh wrapper....
r5496 'vcs.hooks.protocol.v2': 'celery',
ssh: embedded ssh support...
r2043 }
}
repo_name = 'test_git'
repo_mode = 'receive-pack'
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,
ssh: embedded ssh support...
r2043 'ini_path': '',
'user': self.user,
'repo_name': self.repo_name,
'repo_mode': self.repo_mode,
'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 }
parameters.update(kwargs)
server = GitServer(**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 git_server(app):
return GitServerCreator()
ssh: embedded ssh support...
r2043 class TestGitServer(object):
ssh-support: enabled full handling of all backends via SSH....
r2187
ssh: embedded ssh support...
r2043 def test_command(self, git_server):
server = git_server.create()
expected_command = (
ssh-support: enabled full handling of all backends via SSH....
r2187 'cd {root}; {git_path} {repo_mode} \'{root}{repo_name}\''.format(
ssh: embedded ssh support...
r2043 root=git_server.root, git_path=git_server.git_path,
repo_mode=git_server.repo_mode, repo_name=git_server.repo_name)
)
ssh-support: enabled full handling of all backends via SSH....
r2187 assert expected_command == server.tunnel.command()
@pytest.mark.parametrize('permissions, action, code', [
({}, 'pull', -2),
({'test_git': 'repository.read'}, 'pull', 0),
({'test_git': 'repository.read'}, 'push', -2),
({'test_git': 'repository.write'}, 'push', 0),
({'test_git': '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, git_server, permissions, action, code):
server = git_server.create(user_permissions=permissions)
result = server._check_permissions(action)
assert result is code
@pytest.mark.parametrize('permissions, value', [
({}, False),
({'test_git': 'repository.read'}, False),
({'test_git': 'repository.write'}, True),
({'test_git': 'repository.admin'}, True),
])
def test_has_write_permissions(self, git_server, permissions, value):
server = git_server.create(user_permissions=permissions)
result = server.has_write_perm()
assert result is value
def test_run_returns_executes_command(self, git_server):
ssh: embedded ssh support...
r2043 server = git_server.create()
ssh-support: enabled full handling of all backends via SSH....
r2187 from rhodecode.apps.ssh_support.lib.backends.git import GitTunnelWrapper
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(GitTunnelWrapper, 'create_hooks_env') as _patch:
_patch.return_value = 0
with mock.patch.object(GitTunnelWrapper, 'command', return_value='date'):
ssh: embedded ssh support...
r2043 exit_code = server.run()
ssh-support: enabled full handling of all backends via SSH....
r2187 assert exit_code == (0, False)
ssh: embedded ssh support...
r2043
@pytest.mark.parametrize(
'repo_mode, action', [
['receive-pack', 'push'],
['upload-pack', 'pull']
])
def test_update_environment(self, git_server, repo_mode, action):
server = git_server.create(repo_mode=repo_mode)
hooks: pass in store_path into env for hooks.
r3094 store = server.store
ssh-support: enabled full handling of all backends via SSH....
r2187 with mock.patch('os.environ', {'SSH_CLIENT': '10.10.10.10 b'}):
with mock.patch('os.putenv') as putenv_mock:
server.update_environment(action)
tests: fixed tests for random dict order could sometimes break the tests
r2112
ssh: embedded ssh support...
r2043 expected_data = {
ssh-support: enabled full handling of all backends via SSH....
r2187 'username': git_server.user.username,
vcs-ops: store user_id inside the extras for vcs context operations....
r2411 'user_id': git_server.user.user_id,
ssh-support: enabled full handling of all backends via SSH....
r2187 'scm': 'git',
'repository': git_server.repo_name,
'make_lock': None,
'action': action,
'ip': '10.10.10.10',
'locked_by': [None, None],
'config': '',
hooks: pass in store_path into env for hooks.
r3094 'repo_store': store,
ssh-support: enabled full handling of all backends via SSH....
r2187 'server_url': None,
'hooks': ['push', 'pull'],
'is_shadow_repo': False,
feat(ssh-wrapper-speedup): major rewrite of code to address imports problem with ssh-wrapper-v2...
r5325 'hooks_module': 'rhodecode.lib.hook_daemon.hook_module',
branch-permissions: enabled branch permissions checks for SSH backend.
r2982 'check_branch_perms': False,
'detect_force_push': False,
statsd/audit-logs: cleanup push/pull user agent code....
r4858 'user_agent': u'git/ssh-user-agent',
ssh-support: enabled full handling of all backends via SSH....
r2187 'SSH': True,
'SSH_PERMISSIONS': 'repository.admin',
ssh: embedded ssh support...
r2043 }
tests: fixed tests for random dict order could sometimes break the tests
r2112 args, kwargs = putenv_mock.call_args
assert json.loads(args[1]) == expected_data