##// END OF EJS Templates
processes: better handling of PID that are not part of RhodeCode processes....
processes: better handling of PID that are not part of RhodeCode processes. - in some cases for multiple gunicorn instances the PID sent is not from rhodecode which would lead to AccessDenied errors. We prevent from crashing the server on this type of errors.

File last commit:

r2487:fcee5614 default
r2661:042cb4c7 default
Show More
test_ssh_wrapper.py
54 lines | 2.1 KiB | text/x-python | PythonLexer
ssh: embedded ssh support...
r2043 # -*- coding: utf-8 -*-
release: update copyright year to 2018
r2487 # Copyright (C) 2016-2018 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/
ssh-support: enabled full handling of all backends via SSH....
r2187
ssh: embedded ssh support...
r2043 import pytest
ssh-support: enabled full handling of all backends via SSH....
r2187 class TestSSHWrapper(object):
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 def test_serve_raises_an_exception_when_vcs_is_not_recognized(self, ssh_wrapper):
with pytest.raises(Exception) as exc_info:
ssh_wrapper.serve(
vcs='microsoft-tfs', repo='test-repo', mode=None, user='test',
permissions={})
assert exc_info.value.message == 'Unrecognised VCS: microsoft-tfs'
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 def test_parse_config(self, ssh_wrapper):
config = ssh_wrapper.parse_config(ssh_wrapper.ini_path)
assert config
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 def test_get_connection_info(self, ssh_wrapper):
conn_info = ssh_wrapper.get_connection_info()
assert {'client_ip': '127.0.0.1',
'client_port': '22',
'server_ip': '10.0.0.1',
'server_port': '443'} == conn_info
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 @pytest.mark.parametrize('command, vcs', [
('xxx', None),
('svnserve -t', 'svn'),
('hg -R repo serve --stdio', 'hg'),
('git-receive-pack \'repo.git\'', 'git'),
ssh: embedded ssh support...
r2043
ssh-support: enabled full handling of all backends via SSH....
r2187 ])
def test_get_repo_details(self, ssh_wrapper, command, vcs):
ssh_wrapper.command = command
vcs_type, repo_name, mode = ssh_wrapper.get_repo_details(mode='auto')
assert vcs_type == vcs