|
|
# RhodeCode VCSServer provides access to different vcs backends via network.
|
|
|
# Copyright (C) 2014-2023 RhodeCode GmbH
|
|
|
#
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
# (at your option) any later version.
|
|
|
#
|
|
|
# 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 General Public License
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
import io
|
|
|
import mock
|
|
|
import pytest
|
|
|
import sys
|
|
|
|
|
|
from vcsserver.str_utils import ascii_bytes
|
|
|
|
|
|
|
|
|
class MockPopen:
|
|
|
def __init__(self, stderr):
|
|
|
self.stdout = io.BytesIO(b'')
|
|
|
self.stderr = io.BytesIO(stderr)
|
|
|
self.returncode = 1
|
|
|
|
|
|
def wait(self):
|
|
|
pass
|
|
|
|
|
|
|
|
|
INVALID_CERTIFICATE_STDERR = '\n'.join([
|
|
|
'svnrdump: E230001: Unable to connect to a repository at URL url',
|
|
|
'svnrdump: E230001: Server SSL certificate verification failed: issuer is not trusted',
|
|
|
])
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('stderr,expected_reason', [
|
|
|
(INVALID_CERTIFICATE_STDERR, 'INVALID_CERTIFICATE'),
|
|
|
('svnrdump: E123456', 'UNKNOWN:svnrdump: E123456'),
|
|
|
], ids=['invalid-cert-stderr', 'svnrdump-err-123456'])
|
|
|
@pytest.mark.xfail(sys.platform == "cygwin",
|
|
|
reason="SVN not packaged for Cygwin")
|
|
|
def test_import_remote_repository_certificate_error(stderr, expected_reason):
|
|
|
from vcsserver.remote import svn_remote
|
|
|
factory = mock.Mock()
|
|
|
factory.repo = mock.Mock(return_value=mock.Mock())
|
|
|
|
|
|
remote = svn_remote.SvnRemote(factory)
|
|
|
remote.is_path_valid_repository = lambda wire, path: True
|
|
|
|
|
|
with mock.patch('subprocess.Popen',
|
|
|
return_value=MockPopen(ascii_bytes(stderr))):
|
|
|
with pytest.raises(Exception) as excinfo:
|
|
|
remote.import_remote_repository({'path': 'path'}, 'url')
|
|
|
|
|
|
expected_error_args = 'Failed to dump the remote repository from url. Reason:{}'.format(expected_reason)
|
|
|
|
|
|
assert excinfo.value.args[0] == expected_error_args
|
|
|
|
|
|
|
|
|
def test_svn_libraries_can_be_imported():
|
|
|
import svn.client # noqa
|
|
|
assert svn.client is not None
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('example_url, parts', [
|
|
|
('http://server.com', ('', '', 'http://server.com')),
|
|
|
('http://user@server.com', ('user', '', 'http://user@server.com')),
|
|
|
('http://user:pass@server.com', ('user', 'pass', 'http://user:pass@server.com')),
|
|
|
('<script>', ('', '', '<script>')),
|
|
|
('http://', ('', '', 'http://')),
|
|
|
])
|
|
|
def test_username_password_extraction_from_url(example_url, parts):
|
|
|
from vcsserver.remote import svn_remote
|
|
|
|
|
|
factory = mock.Mock()
|
|
|
factory.repo = mock.Mock(return_value=mock.Mock())
|
|
|
|
|
|
remote = svn_remote.SvnRemote(factory)
|
|
|
remote.is_path_valid_repository = lambda wire, path: True
|
|
|
|
|
|
assert remote.get_url_and_credentials(example_url) == parts
|
|
|
|
|
|
|
|
|
@pytest.mark.parametrize('call_url', [
|
|
|
b'https://svn.code.sf.net/p/svnbook/source/trunk/',
|
|
|
b'https://marcink@svn.code.sf.net/p/svnbook/source/trunk/',
|
|
|
b'https://marcink:qweqwe@svn.code.sf.net/p/svnbook/source/trunk/',
|
|
|
])
|
|
|
def test_check_url(call_url):
|
|
|
from vcsserver.remote import svn_remote
|
|
|
factory = mock.Mock()
|
|
|
factory.repo = mock.Mock(return_value=mock.Mock())
|
|
|
|
|
|
remote = svn_remote.SvnRemote(factory)
|
|
|
remote.is_path_valid_repository = lambda wire, path: True
|
|
|
assert remote.check_url(call_url, {'dummy': 'config'})
|
|
|
|
|
|
|