##// END OF EJS Templates
chore(deps): bumped pytest related deps
chore(deps): bumped pytest related deps

File last commit:

r1152:a0c49580 default
r1218:5a5e18ae tip default
Show More
test_svn.py
103 lines | 3.6 KiB | text/x-python | PythonLexer
packaging: moved tests into the main library itself. This is consistent with how our other projects do it.
r130 # RhodeCode VCSServer provides access to different vcs backends via network.
source-code: updated copyrights to 2023
r1126 # Copyright (C) 2014-2023 RhodeCode GmbH
packaging: moved tests into the main library itself. This is consistent with how our other projects do it.
r130 #
# 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
packages: move the str utils to it's own module
r1060 from vcsserver.str_utils import ascii_bytes
python3: code change for py3 support...
r1048
packaging: moved tests into the main library itself. This is consistent with how our other projects do it.
r130
lint: auto-fixes
r1152 class MockPopen:
packaging: moved tests into the main library itself. This is consistent with how our other projects do it.
r130 def __init__(self, stderr):
python3: code change for py3 support...
r1048 self.stdout = io.BytesIO(b'')
packaging: moved tests into the main library itself. This is consistent with how our other projects do it.
r130 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'),
tests: fixed svn import tests
r522 ('svnrdump: E123456', 'UNKNOWN:svnrdump: E123456'),
test: prevent breaking with newlines during test display.
r145 ], ids=['invalid-cert-stderr', 'svnrdump-err-123456'])
packaging: moved tests into the main library itself. This is consistent with how our other projects do it.
r130 @pytest.mark.xfail(sys.platform == "cygwin",
reason="SVN not packaged for Cygwin")
def test_import_remote_repository_certificate_error(stderr, expected_reason):
core: renamed remote packages to prevent conflicts with builtin libraries like svn core library called same as svn remote
r1145 from vcsserver.remote import svn_remote
caches: new cache implementation for remote functions
r739 factory = mock.Mock()
factory.repo = mock.Mock(return_value=mock.Mock())
packaging: moved tests into the main library itself. This is consistent with how our other projects do it.
r130
core: renamed remote packages to prevent conflicts with builtin libraries like svn core library called same as svn remote
r1145 remote = svn_remote.SvnRemote(factory)
packaging: moved tests into the main library itself. This is consistent with how our other projects do it.
r130 remote.is_path_valid_repository = lambda wire, path: True
with mock.patch('subprocess.Popen',
python3: code change for py3 support...
r1048 return_value=MockPopen(ascii_bytes(stderr))):
packaging: moved tests into the main library itself. This is consistent with how our other projects do it.
r130 with pytest.raises(Exception) as excinfo:
remote.import_remote_repository({'path': 'path'}, 'url')
python3: code change for py3 support...
r1048 expected_error_args = 'Failed to dump the remote repository from url. Reason:{}'.format(expected_reason)
packaging: moved tests into the main library itself. This is consistent with how our other projects do it.
r130
python3: code change for py3 support...
r1048 assert excinfo.value.args[0] == expected_error_args
packaging: moved tests into the main library itself. This is consistent with how our other projects do it.
r130
def test_svn_libraries_can_be_imported():
core: renamed remote packages to prevent conflicts with builtin libraries like svn core library called same as svn remote
r1145 import svn.client # noqa
packaging: moved tests into the main library itself. This is consistent with how our other projects do it.
r130 assert svn.client is not None
svn: properly pass credentials from URL during import.
r523
@pytest.mark.parametrize('example_url, parts', [
app: new optimized remote endpoints for python3 rewrite
r1124 ('http://server.com', ('', '', 'http://server.com')),
('http://user@server.com', ('user', '', 'http://user@server.com')),
svn: properly pass credentials from URL during import.
r523 ('http://user:pass@server.com', ('user', 'pass', 'http://user:pass@server.com')),
app: new optimized remote endpoints for python3 rewrite
r1124 ('<script>', ('', '', '<script>')),
('http://', ('', '', 'http://')),
svn: properly pass credentials from URL during import.
r523 ])
def test_username_password_extraction_from_url(example_url, parts):
core: renamed remote packages to prevent conflicts with builtin libraries like svn core library called same as svn remote
r1145 from vcsserver.remote import svn_remote
svn: properly pass credentials from URL during import.
r523
caches: new cache implementation for remote functions
r739 factory = mock.Mock()
factory.repo = mock.Mock(return_value=mock.Mock())
core: renamed remote packages to prevent conflicts with builtin libraries like svn core library called same as svn remote
r1145 remote = svn_remote.SvnRemote(factory)
svn: properly pass credentials from URL during import.
r523 remote.is_path_valid_repository = lambda wire, path: True
assert remote.get_url_and_credentials(example_url) == parts
python3: code change for py3 support...
r1048
@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):
core: renamed remote packages to prevent conflicts with builtin libraries like svn core library called same as svn remote
r1145 from vcsserver.remote import svn_remote
python3: code change for py3 support...
r1048 factory = mock.Mock()
factory.repo = mock.Mock(return_value=mock.Mock())
core: renamed remote packages to prevent conflicts with builtin libraries like svn core library called same as svn remote
r1145 remote = svn_remote.SvnRemote(factory)
python3: code change for py3 support...
r1048 remote.is_path_valid_repository = lambda wire, path: True
app: new optimized remote endpoints for python3 rewrite
r1124 assert remote.check_url(call_url, {'dummy': 'config'})
python3: code change for py3 support...
r1048