avocado_qemu: Fix KNOWN_DISTROS map into the LinuxDistro class
As the KNOWN_DISTROS grows, more loosely methods will be created in the avocado_qemu/__init__.py file. Let's refactor the code so that KNOWN_DISTROS and related methods are packaged in a class Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com> Signed-off-by: Eric Auger <eric.auger@redhat.com> Message-Id: <20210706131729.30749-2-eric.auger@redhat.com> [CR: moved aarch64 definition from patch 2 to 1] [CR: protect get() when arch is not defined] [CR: split long lines] Acked-by: Wainer dos Santos Moschetta <wainersm@redhat.com> Signed-off-by: Cleber Rosa <crosa@redhat.com>
This commit is contained in:
parent
9f51934130
commit
fb13040173
@ -306,34 +306,50 @@ class LinuxSSHMixIn:
|
|||||||
f'Guest command failed: {command}')
|
f'Guest command failed: {command}')
|
||||||
return stdout_lines, stderr_lines
|
return stdout_lines, stderr_lines
|
||||||
|
|
||||||
|
class LinuxDistro:
|
||||||
|
"""Represents a Linux distribution
|
||||||
|
|
||||||
#: A collection of known distros and their respective image checksum
|
Holds information of known distros.
|
||||||
KNOWN_DISTROS = {
|
"""
|
||||||
'fedora': {
|
#: A collection of known distros and their respective image checksum
|
||||||
'31': {
|
KNOWN_DISTROS = {
|
||||||
'x86_64':
|
'fedora': {
|
||||||
{'checksum': ('e3c1b309d9203604922d6e255c2c5d09'
|
'31': {
|
||||||
'8a309c2d46215d8fc026954f3c5c27a0')},
|
'x86_64':
|
||||||
'aarch64':
|
{'checksum': ('e3c1b309d9203604922d6e255c2c5d09'
|
||||||
{'checksum': ('1e18d9c0cf734940c4b5d5ec592facae'
|
'8a309c2d46215d8fc026954f3c5c27a0')},
|
||||||
'd2af0ad0329383d5639c997fdf16fe49')},
|
'aarch64':
|
||||||
'ppc64':
|
{'checksum': ('1e18d9c0cf734940c4b5d5ec592facae'
|
||||||
{'checksum': ('7c3528b85a3df4b2306e892199a9e1e4'
|
'd2af0ad0329383d5639c997fdf16fe49')},
|
||||||
'3f991c506f2cc390dc4efa2026ad2f58')},
|
'ppc64':
|
||||||
's390x':
|
{'checksum': ('7c3528b85a3df4b2306e892199a9e1e4'
|
||||||
{'checksum': ('4caaab5a434fd4d1079149a072fdc789'
|
'3f991c506f2cc390dc4efa2026ad2f58')},
|
||||||
'1e354f834d355069ca982fdcaf5a122d')},
|
's390x':
|
||||||
|
{'checksum': ('4caaab5a434fd4d1079149a072fdc789'
|
||||||
|
'1e354f834d355069ca982fdcaf5a122d')},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def __init__(self, name, version, arch):
|
||||||
|
self.name = name
|
||||||
|
self.version = version
|
||||||
|
self.arch = arch
|
||||||
|
try:
|
||||||
|
info = self.KNOWN_DISTROS.get(name).get(version).get(arch)
|
||||||
|
except AttributeError:
|
||||||
|
# Unknown distro
|
||||||
|
info = None
|
||||||
|
self._info = info or {}
|
||||||
|
|
||||||
def get_known_distro_checksum(distro, distro_version, arch):
|
@property
|
||||||
try:
|
def checksum(self):
|
||||||
return KNOWN_DISTROS.get(distro).get(distro_version).\
|
"""Gets the cloud-image file checksum"""
|
||||||
get(arch).get('checksum')
|
return self._info.get('checksum', None)
|
||||||
except AttributeError:
|
|
||||||
return None
|
@checksum.setter
|
||||||
|
def checksum(self, value):
|
||||||
|
self._info['checksum'] = value
|
||||||
|
|
||||||
|
|
||||||
class LinuxTest(Test, LinuxSSHMixIn):
|
class LinuxTest(Test, LinuxSSHMixIn):
|
||||||
@ -344,24 +360,24 @@ class LinuxTest(Test, LinuxSSHMixIn):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
timeout = 900
|
timeout = 900
|
||||||
distro_checksum = None
|
distro = None
|
||||||
username = 'root'
|
username = 'root'
|
||||||
password = 'password'
|
password = 'password'
|
||||||
|
|
||||||
def _set_distro(self):
|
def _set_distro(self):
|
||||||
distro = self.params.get(
|
distro_name = self.params.get(
|
||||||
'distro',
|
'distro',
|
||||||
default=self._get_unique_tag_val('distro'))
|
default=self._get_unique_tag_val('distro'))
|
||||||
if not distro:
|
if not distro_name:
|
||||||
distro = 'fedora'
|
distro_name = 'fedora'
|
||||||
self.distro = distro
|
|
||||||
|
|
||||||
distro_version = self.params.get(
|
distro_version = self.params.get(
|
||||||
'distro_version',
|
'distro_version',
|
||||||
default=self._get_unique_tag_val('distro_version'))
|
default=self._get_unique_tag_val('distro_version'))
|
||||||
if not distro_version:
|
if not distro_version:
|
||||||
distro_version = '31'
|
distro_version = '31'
|
||||||
self.distro_version = distro_version
|
|
||||||
|
self.distro = LinuxDistro(distro_name, distro_version, self.arch)
|
||||||
|
|
||||||
# The distro checksum behaves differently than distro name and
|
# The distro checksum behaves differently than distro name and
|
||||||
# version. First, it does not respect a tag with the same
|
# version. First, it does not respect a tag with the same
|
||||||
@ -370,13 +386,9 @@ class LinuxTest(Test, LinuxSSHMixIn):
|
|||||||
# order of precedence is: parameter, attribute and then value
|
# order of precedence is: parameter, attribute and then value
|
||||||
# from KNOWN_DISTROS.
|
# from KNOWN_DISTROS.
|
||||||
distro_checksum = self.params.get('distro_checksum',
|
distro_checksum = self.params.get('distro_checksum',
|
||||||
default=self.distro_checksum)
|
default=None)
|
||||||
if not distro_checksum:
|
|
||||||
distro_checksum = get_known_distro_checksum(self.distro,
|
|
||||||
self.distro_version,
|
|
||||||
self.arch)
|
|
||||||
if distro_checksum:
|
if distro_checksum:
|
||||||
self.distro_checksum = distro_checksum
|
self.distro.checksum = distro_checksum
|
||||||
|
|
||||||
def setUp(self, ssh_pubkey=None, network_device_type='virtio-net'):
|
def setUp(self, ssh_pubkey=None, network_device_type='virtio-net'):
|
||||||
super(LinuxTest, self).setUp()
|
super(LinuxTest, self).setUp()
|
||||||
@ -418,14 +430,14 @@ class LinuxTest(Test, LinuxSSHMixIn):
|
|||||||
self.log.info('Downloading/preparing boot image')
|
self.log.info('Downloading/preparing boot image')
|
||||||
# Fedora 31 only provides ppc64le images
|
# Fedora 31 only provides ppc64le images
|
||||||
image_arch = self.arch
|
image_arch = self.arch
|
||||||
if self.distro == 'fedora':
|
if self.distro.name == 'fedora':
|
||||||
if image_arch == 'ppc64':
|
if image_arch == 'ppc64':
|
||||||
image_arch = 'ppc64le'
|
image_arch = 'ppc64le'
|
||||||
|
|
||||||
try:
|
try:
|
||||||
boot = vmimage.get(
|
boot = vmimage.get(
|
||||||
self.distro, arch=image_arch, version=self.distro_version,
|
self.distro.name, arch=image_arch, version=self.distro.version,
|
||||||
checksum=self.distro_checksum,
|
checksum=self.distro.checksum,
|
||||||
algorithm='sha256',
|
algorithm='sha256',
|
||||||
cache_dir=self.cache_dirs[0],
|
cache_dir=self.cache_dirs[0],
|
||||||
snapshot_dir=self.workdir)
|
snapshot_dir=self.workdir)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user