##// END OF EJS Templates
env-variables: make it safer if there's a syntax problem inside .ini file....
env-variables: make it safer if there's a syntax problem inside .ini file. It's better to not crash, since it means server wont start. Let users fix problems instead of breaking the startup because of that.

File last commit:

r3104:4de59e0f default
r3237:5cf82ecc 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',
branch-permissions: enabled branch permissions checks for SSH backend.
r2982 permissions={}, branch_permissions={})
exceptions: use python3 compatible exception handling
r3104 assert str(exc_info.value) == '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