##// END OF EJS Templates
python3: fixed various code issues...
python3: fixed various code issues - iterators - use of u''

File last commit:

r4973:5e52ba1a default
r4973:5e52ba1a default
Show More
test_archives.py
176 lines | 6.2 KiB | text/x-python | PythonLexer
project: added all source files and assets
r1 # -*- coding: utf-8 -*-
code: update copyrights to 2020
r4306 # Copyright (C) 2010-2020 RhodeCode GmbH
project: added all source files and assets
r1 #
# 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/
import datetime
import os
import shutil
import tarfile
import tempfile
import zipfile
python3: fixed various code issues...
r4973 import io
project: added all source files and assets
r1
import mock
import pytest
from rhodecode.lib.vcs.backends import base
from rhodecode.lib.vcs.exceptions import ImproperArchiveTypeError, VCSError
from rhodecode.lib.vcs.nodes import FileNode
tests: use gunicorn for testing. This is close to production testing...
r2453 from rhodecode.tests.vcs.conftest import BackendTestMixin
project: added all source files and assets
r1
tests: use gunicorn for testing. This is close to production testing...
r2453 @pytest.mark.usefixtures("vcs_repository_support")
project: added all source files and assets
r1 class TestArchives(BackendTestMixin):
@pytest.fixture(autouse=True)
def tempfile(self, request):
self.temp_file = tempfile.mkstemp()[1]
@request.addfinalizer
def cleanup():
os.remove(self.temp_file)
@classmethod
def _get_commits(cls):
start_date = datetime.datetime(2010, 1, 1, 20)
archives: optimize performance of repo archive option by delegating all logic to vcsserver....
r4536 yield {
'message': 'Initial Commit',
'author': 'Joe Doe <joe.doe@example.com>',
'date': start_date + datetime.timedelta(hours=12),
'added': [
FileNode('executable_0o100755', '...', mode=0o100755),
FileNode('executable_0o100500', '...', mode=0o100500),
FileNode('not_executable', '...', mode=0o100644),
],
}
tests: use gunicorn for testing. This is close to production testing...
r2453 for x in range(5):
project: added all source files and assets
r1 yield {
'message': 'Commit %d' % x,
'author': 'Joe Doe <joe.doe@example.com>',
'date': start_date + datetime.timedelta(hours=12 * x),
'added': [
archives: optimize performance of repo archive option by delegating all logic to vcsserver....
r4536 FileNode('%d/file_%d.txt' % (x, x), content='Foobar %d' % x),
project: added all source files and assets
r1 ],
}
@pytest.mark.parametrize('compressor', ['gz', 'bz2'])
def test_archive_tar(self, compressor):
self.tip.archive_repo(
archives: optimize performance of repo archive option by delegating all logic to vcsserver....
r4536 self.temp_file, kind='t{}'.format(compressor), archive_dir_name='repo')
project: added all source files and assets
r1 out_dir = tempfile.mkdtemp()
archives: optimize performance of repo archive option by delegating all logic to vcsserver....
r4536 out_file = tarfile.open(self.temp_file, 'r|{}'.format(compressor))
project: added all source files and assets
r1 out_file.extractall(out_dir)
out_file.close()
tests: use gunicorn for testing. This is close to production testing...
r2453 for x in range(5):
project: added all source files and assets
r1 node_path = '%d/file_%d.txt' % (x, x)
with open(os.path.join(out_dir, 'repo/' + node_path)) as f:
file_content = f.read()
assert file_content == self.tip.get_node(node_path).content
shutil.rmtree(out_dir)
archives: optimize performance of repo archive option by delegating all logic to vcsserver....
r4536 @pytest.mark.parametrize('compressor', ['gz', 'bz2'])
def test_archive_tar_symlink(self, compressor):
return False
@pytest.mark.parametrize('compressor', ['gz', 'bz2'])
def test_archive_tar_file_modes(self, compressor):
self.tip.archive_repo(
self.temp_file, kind='t{}'.format(compressor), archive_dir_name='repo')
out_dir = tempfile.mkdtemp()
out_file = tarfile.open(self.temp_file, 'r|{}'.format(compressor))
out_file.extractall(out_dir)
out_file.close()
dest = lambda inp: os.path.join(out_dir, 'repo/' + inp)
assert oct(os.stat(dest('not_executable')).st_mode) == '0100644'
project: added all source files and assets
r1 def test_archive_zip(self):
archives: optimize performance of repo archive option by delegating all logic to vcsserver....
r4536 self.tip.archive_repo(self.temp_file, kind='zip', archive_dir_name='repo')
project: added all source files and assets
r1 out = zipfile.ZipFile(self.temp_file)
tests: use gunicorn for testing. This is close to production testing...
r2453 for x in range(5):
project: added all source files and assets
r1 node_path = '%d/file_%d.txt' % (x, x)
python3: fixed various code issues...
r4973 decompressed = io.StringIO()
project: added all source files and assets
r1 decompressed.write(out.read('repo/' + node_path))
assert decompressed.getvalue() == \
self.tip.get_node(node_path).content
decompressed.close()
def test_archive_zip_with_metadata(self):
self.tip.archive_repo(self.temp_file, kind='zip',
archives: optimize performance of repo archive option by delegating all logic to vcsserver....
r4536 archive_dir_name='repo', write_metadata=True)
project: added all source files and assets
r1
out = zipfile.ZipFile(self.temp_file)
archives: optimize performance of repo archive option by delegating all logic to vcsserver....
r4536 metafile = out.read('repo/.archival.txt')
project: added all source files and assets
r1
raw_id = self.tip.raw_id
commits: updated logic of in-memory-commits, fixed tests and re-architectured a bit how commit_ids are calculated and updated....
r3743 assert 'commit_id:%s' % raw_id in metafile
project: added all source files and assets
r1
tests: use gunicorn for testing. This is close to production testing...
r2453 for x in range(5):
project: added all source files and assets
r1 node_path = '%d/file_%d.txt' % (x, x)
python3: fixed various code issues...
r4973 decompressed = io.StringIO()
project: added all source files and assets
r1 decompressed.write(out.read('repo/' + node_path))
assert decompressed.getvalue() == \
self.tip.get_node(node_path).content
decompressed.close()
def test_archive_wrong_kind(self):
with pytest.raises(ImproperArchiveTypeError):
self.tip.archive_repo(self.temp_file, kind='wrong kind')
pytest: use consistent way of creating a fixture by using pytest.fixture()
r3946 @pytest.fixture()
project: added all source files and assets
r1 def base_commit():
"""
Prepare a `base.BaseCommit` just enough for `_validate_archive_prefix`.
"""
commit = base.BaseCommit()
commit.repository = mock.Mock()
commit.repository.name = u'fake_repo'
commit.short_id = 'fake_id'
return commit
@pytest.mark.parametrize("prefix", [u"unicode-prefix", u"Ünïcödë"])
def test_validate_archive_prefix_enforces_bytes_as_prefix(prefix, base_commit):
with pytest.raises(ValueError):
base_commit._validate_archive_prefix(prefix)
def test_validate_archive_prefix_empty_prefix(base_commit):
# TODO: johbo: Should raise a ValueError here.
with pytest.raises(VCSError):
base_commit._validate_archive_prefix('')
def test_validate_archive_prefix_with_leading_slash(base_commit):
# TODO: johbo: Should raise a ValueError here.
with pytest.raises(VCSError):
base_commit._validate_archive_prefix('/any')
def test_validate_archive_prefix_falls_back_to_repository_name(base_commit):
prefix = base_commit._validate_archive_prefix(None)
expected_prefix = base_commit._ARCHIVE_PREFIX_TEMPLATE.format(
repo_name='fake_repo',
short_id='fake_id')
assert isinstance(prefix, str)
assert prefix == expected_prefix