Files
shadow/tests/system/framework/hosts/base.py
2025-08-26 22:55:14 +02:00

114 lines
3.4 KiB
Python

"""Base classes and objects for shadow specific multihost hosts."""
from __future__ import annotations
import csv
from pytest_mh import MultihostBackupHost, MultihostHost
from pytest_mh.utils.fs import LinuxFileSystem
from ..config import ShadowMultihostDomain
__all__ = [
"BaseHost",
"BaseLinuxHost",
]
class BaseHost(MultihostBackupHost[ShadowMultihostDomain]):
"""
Base class for all shadow hosts.
"""
def __init__(self, *args, **kwargs) -> None:
# restore is handled in topology controllers
super().__init__(*args, **kwargs)
@property
def features(self) -> dict[str, bool]:
"""
Features supported by the host.
"""
return {}
class BaseLinuxHost(MultihostHost[ShadowMultihostDomain]):
"""
Base Linux host.
Adds linux specific reentrant utilities.
"""
def __init__(self, *args, **kwargs) -> None:
super().__init__(*args, **kwargs)
self.fs: LinuxFileSystem = LinuxFileSystem(self)
self._os_release: dict = {}
self._distro_name: str = "unknown"
self._distro_major: int = 0
self._distro_minor: int = 0
self._revision: int = 0
def _distro_information(self):
"""
Pulls distro information from a host from /ets/os-release
"""
self.logger.info(f"Detecting distro information on {self.hostname}")
os_release = self.fs.read("/etc/os-release")
valid_lines = [line for line in os_release.splitlines() if line and not line.startswith("#")]
self._os_release = dict(csv.reader(valid_lines, delimiter="="))
if "NAME" in self._os_release:
self._distro_name = self._os_release["NAME"]
if "VERSION_ID" not in self._os_release:
return
if self._os_release["VERSION_ID"].count(".") == 2:
self._distro_major = int(self._os_release["VERSION_ID"].split(".")[0])
self._distro_minor = int(self._os_release["VERSION_ID"].split(".")[1])
self._revision = int(self._os_release["VERSION_ID"].split(".")[2])
elif self._os_release["VERSION_ID"].count(".") == 1:
self._distro_major = int(self._os_release["VERSION_ID"].split(".")[0])
self._distro_minor = int(self._os_release["VERSION_ID"].split(".")[1])
else:
self._distro_major = int(self._os_release["VERSION_ID"])
@property
def distro_name(self) -> str:
"""
Host distribution
:return: Distribution name or "unknown"
:rtype: str
"""
# NAME item from os-release
if not self._os_release:
self._distro_information()
return self._distro_name
@property
def distro_major(self) -> int:
"""
Host distribution major version
:return: Major version
:rtype: int
"""
# First part of VERSION_ID from os-release
# Returns zero when could not detect
if not self._os_release:
self._distro_information()
return self._distro_major
@property
def distro_minor(self) -> int:
"""
Host distribution minor version
:return: Minor version
:rtype: int
"""
# Second part of VERSION_ID from os-release
# Returns zero when no minor version is present
if not self._os_release:
self._distro_information()
return self._distro_minor