2016-02-01 09:50:28 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import mock
|
2016-02-26 09:31:43 +00:00
|
|
|
import os
|
2016-05-25 11:39:02 +00:00
|
|
|
try:
|
|
|
|
import unittest2 as unittest
|
|
|
|
except ImportError:
|
|
|
|
import unittest
|
2016-02-11 14:15:36 +00:00
|
|
|
import tempfile
|
|
|
|
import shutil
|
2016-04-05 06:40:54 +00:00
|
|
|
import errno
|
2016-02-01 09:50:28 +00:00
|
|
|
|
|
|
|
from pungi.util import get_arch_variant_data
|
2016-08-22 14:08:25 +00:00
|
|
|
from pungi import paths, checks
|
2016-02-11 14:15:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PungiTestCase(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.topdir = tempfile.mkdtemp()
|
|
|
|
|
|
|
|
def tearDown(self):
|
2016-04-05 06:40:54 +00:00
|
|
|
try:
|
|
|
|
shutil.rmtree(self.topdir)
|
|
|
|
except OSError as err:
|
|
|
|
if err.errno != errno.ENOENT:
|
|
|
|
raise
|
2016-02-01 09:50:28 +00:00
|
|
|
|
|
|
|
|
2016-02-22 14:58:34 +00:00
|
|
|
class DummyCompose(object):
|
2016-02-11 14:15:36 +00:00
|
|
|
def __init__(self, topdir, config):
|
2016-02-11 15:45:56 +00:00
|
|
|
self.supported = True
|
2016-02-01 09:50:28 +00:00
|
|
|
self.compose_date = '20151203'
|
|
|
|
self.compose_type_suffix = '.t'
|
2016-04-04 07:38:48 +00:00
|
|
|
self.compose_type = 'test'
|
2016-02-01 09:50:28 +00:00
|
|
|
self.compose_respin = 0
|
|
|
|
self.compose_id = 'Test-20151203.0.t'
|
2016-03-16 07:33:43 +00:00
|
|
|
self.compose_label = None
|
2016-04-04 07:38:48 +00:00
|
|
|
self.compose_label_major_version = None
|
2016-03-22 07:56:51 +00:00
|
|
|
self.image_release = '20151203.t.0'
|
2016-08-30 07:51:36 +00:00
|
|
|
self.image_version = '25'
|
2016-02-01 09:50:28 +00:00
|
|
|
self.ci_base = mock.Mock(
|
|
|
|
release_id='Test-1.0',
|
|
|
|
release=mock.Mock(
|
|
|
|
short='test',
|
|
|
|
version='1.0',
|
2016-02-29 11:58:21 +00:00
|
|
|
is_layered=False,
|
2016-02-01 09:50:28 +00:00
|
|
|
),
|
|
|
|
)
|
2016-02-11 14:15:36 +00:00
|
|
|
self.topdir = topdir
|
2016-08-22 14:08:25 +00:00
|
|
|
self.conf = load_config(PKGSET_REPOS, **config)
|
|
|
|
checks.validate(self.conf)
|
2016-02-11 14:15:36 +00:00
|
|
|
self.paths = paths.Paths(self)
|
2016-02-01 09:50:28 +00:00
|
|
|
self._logger = mock.Mock()
|
|
|
|
self.variants = {
|
2016-02-11 14:15:36 +00:00
|
|
|
'Server': mock.Mock(uid='Server', arches=['x86_64', 'amd64'],
|
|
|
|
type='variant', is_empty=False),
|
|
|
|
'Client': mock.Mock(uid='Client', arches=['amd64'],
|
|
|
|
type='variant', is_empty=False),
|
|
|
|
'Everything': mock.Mock(uid='Everything', arches=['x86_64', 'amd64'],
|
|
|
|
type='variant', is_empty=False),
|
2016-02-01 09:50:28 +00:00
|
|
|
}
|
2016-02-26 09:31:43 +00:00
|
|
|
self.log_info = mock.Mock()
|
2016-02-01 09:50:28 +00:00
|
|
|
self.log_error = mock.Mock()
|
2016-02-11 15:45:56 +00:00
|
|
|
self.log_debug = mock.Mock()
|
2016-02-29 08:21:49 +00:00
|
|
|
self.log_warning = mock.Mock()
|
2016-02-01 09:50:28 +00:00
|
|
|
self.get_image_name = mock.Mock(return_value='image-name')
|
2016-06-24 07:44:40 +00:00
|
|
|
self.image = mock.Mock(path='Client/i386/iso/image.iso', can_fail=False)
|
2016-06-06 08:29:40 +00:00
|
|
|
self.im = mock.Mock(images={'Client': {'amd64': [self.image]}})
|
2016-02-29 11:58:21 +00:00
|
|
|
self.old_composes = []
|
2016-03-10 12:22:11 +00:00
|
|
|
self.config_dir = '/home/releng/config'
|
2016-04-06 08:41:07 +00:00
|
|
|
self.notifier = None
|
2016-04-13 11:44:17 +00:00
|
|
|
self.attempt_deliverable = mock.Mock()
|
|
|
|
self.fail_deliverable = mock.Mock()
|
|
|
|
self.require_deliverable = mock.Mock()
|
2016-02-01 09:50:28 +00:00
|
|
|
|
2016-04-06 08:41:07 +00:00
|
|
|
def get_variants(self, arch=None, types=None, recursive=None):
|
2016-02-01 09:50:28 +00:00
|
|
|
return [v for v in self.variants.values() if not arch or arch in v.arches]
|
|
|
|
|
|
|
|
def can_fail(self, variant, arch, deliverable):
|
|
|
|
failable = get_arch_variant_data(self.conf, 'failable_deliverables', arch, variant)
|
|
|
|
return deliverable in failable
|
2016-02-11 15:45:56 +00:00
|
|
|
|
|
|
|
def get_arches(self):
|
|
|
|
result = set()
|
|
|
|
for variant in self.variants.itervalues():
|
|
|
|
result |= set(variant.arches)
|
2016-05-12 11:41:53 +00:00
|
|
|
return sorted(result)
|
2016-02-26 09:31:43 +00:00
|
|
|
|
|
|
|
|
2016-02-29 12:35:55 +00:00
|
|
|
def touch(path, content=None):
|
2016-02-26 09:31:43 +00:00
|
|
|
"""Helper utility that creates an dummy file in given location. Directories
|
|
|
|
will be created."""
|
2016-02-29 12:35:55 +00:00
|
|
|
content = content or (path + '\n')
|
2016-02-26 09:31:43 +00:00
|
|
|
try:
|
|
|
|
os.makedirs(os.path.dirname(path))
|
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
with open(path, 'w') as f:
|
2016-02-29 12:35:55 +00:00
|
|
|
f.write(content)
|
2016-02-29 08:21:49 +00:00
|
|
|
|
|
|
|
|
2016-04-22 09:15:06 +00:00
|
|
|
FIXTURE_DIR = os.path.join(os.path.dirname(__file__), 'fixtures')
|
|
|
|
|
|
|
|
|
2016-02-29 08:21:49 +00:00
|
|
|
def copy_fixture(fixture_name, dest):
|
2016-04-22 09:15:06 +00:00
|
|
|
src = os.path.join(FIXTURE_DIR, fixture_name)
|
2016-02-29 08:21:49 +00:00
|
|
|
touch(dest)
|
|
|
|
shutil.copy2(src, dest)
|
2016-03-10 12:22:11 +00:00
|
|
|
|
|
|
|
|
2016-03-23 09:40:16 +00:00
|
|
|
def boom(*args, **kwargs):
|
|
|
|
raise Exception('BOOM')
|
2016-08-22 14:08:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
PKGSET_REPOS = dict(
|
|
|
|
pkgset_source='repos',
|
|
|
|
pkgset_repos={},
|
|
|
|
)
|
|
|
|
|
|
|
|
BASE_CONFIG = dict(
|
|
|
|
release_short='test',
|
|
|
|
release_name='Test',
|
|
|
|
release_version='1.0',
|
|
|
|
release_is_layered=False,
|
|
|
|
variants_file='variants.xml',
|
|
|
|
runroot=False,
|
|
|
|
createrepo_checksum='sha256',
|
|
|
|
gather_method='deps',
|
|
|
|
gather_source='none',
|
|
|
|
sigkeys=[],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def load_config(data={}, **kwargs):
|
|
|
|
conf = dict()
|
|
|
|
conf.update(BASE_CONFIG)
|
|
|
|
conf.update(data)
|
|
|
|
conf.update(kwargs)
|
|
|
|
return conf
|