mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-31 13:03:02 +02:00
Allow all host commands to be run with a prefix (e.g. `ssh user@remotehost sudo`), such that yanger can be tested against the current state of a remote system. If a command wrapper _and_ a test directory is specified, the output of all commands and files are recorded for use by a future test execution. Example: 1. Launch a `make run` instance and setup some config for which we want to test yanger and cli-pretty 2. Capture the output of all commands needed to produce the data for some YANG model: `yanger -t /tmp/ifs -w "ixll -A ssh qtap1 sudo" ietf-interfaces` 3. Kill the instance (we do not need it any more) 4. Test cli-pretty using the captured state: `yanger -t /tmp/ifs ietf-interfaces | cli-pretty show-interfaces `
195 lines
5.6 KiB
Python
195 lines
5.6 KiB
Python
import abc
|
|
import datetime
|
|
import functools
|
|
import json
|
|
import os
|
|
import subprocess
|
|
|
|
from . import common
|
|
|
|
|
|
HOST = None
|
|
|
|
|
|
class Host(abc.ABC):
|
|
"""Host system API"""
|
|
|
|
@abc.abstractmethod
|
|
def now(self):
|
|
"""Get the current time as a `datetime`"""
|
|
pass
|
|
|
|
@abc.abstractmethod
|
|
def run(self, cmd, default=None, log=True):
|
|
"""Get stdout of cmd
|
|
|
|
Run cmd, provided as an argv, and return the output it
|
|
produces. On error, return the default value if provided,
|
|
otherwise raise an exception.
|
|
|
|
"""
|
|
pass
|
|
|
|
def run_multiline(self, cmd, default=None):
|
|
"""Get lines of stdout of cmd"""
|
|
try:
|
|
txt = self.run(cmd, log=(default is None))
|
|
return txt.splitlines()
|
|
except:
|
|
if default is not None:
|
|
return default
|
|
raise
|
|
|
|
def run_json(self, cmd, default=None):
|
|
"""Get JSON object from stdout of cmd"""
|
|
try:
|
|
txt = self.run(cmd, log=(default is None))
|
|
return json.loads(txt)
|
|
except:
|
|
if default is not None:
|
|
return default
|
|
raise
|
|
|
|
@abc.abstractmethod
|
|
def read(self, path):
|
|
"""Get the contents of path
|
|
|
|
Returns `None` if the file is not readable for any reason.
|
|
|
|
"""
|
|
pass
|
|
|
|
def read_json(self, path, default=None):
|
|
"""Get JSON object from path """
|
|
try:
|
|
txt = self.read(path)
|
|
return json.loads(txt)
|
|
except:
|
|
if default is not None:
|
|
return default
|
|
raise
|
|
|
|
|
|
class Localhost(Host):
|
|
def now(self):
|
|
return datetime.datetime.now(tz=datetime.timezone.utc)
|
|
|
|
# @functools.cache
|
|
def run(self, cmd, default=None, log=True):
|
|
try:
|
|
result = subprocess.run(cmd, check=True, text=True,
|
|
stdin=subprocess.DEVNULL,
|
|
stdout=subprocess.PIPE,
|
|
stderr=subprocess.DEVNULL)
|
|
return result.stdout
|
|
except subprocess.CalledProcessError as err:
|
|
if default is not None:
|
|
return default
|
|
|
|
if log:
|
|
common.LOG.error(f"Failed to run {err}")
|
|
raise
|
|
|
|
def read(self, path):
|
|
try:
|
|
with open(path, 'r') as f:
|
|
data = f.read().strip()
|
|
return data
|
|
except FileNotFoundError:
|
|
# This is considered OK
|
|
pass
|
|
except IOError:
|
|
common.LOG.error(f"Failed to read \"{path}\"")
|
|
|
|
return None
|
|
|
|
|
|
class Remotehost(Localhost):
|
|
def __init__(self, wrap, basedir):
|
|
super().__init__()
|
|
self.wrap = wrap.split()
|
|
self.basedir = basedir
|
|
if basedir:
|
|
for subdir in ("rootfs", "run"):
|
|
os.makedirs(os.path.join(basedir, subdir), exist_ok=True)
|
|
|
|
def now(self):
|
|
timestamp = self._run(["date", "-u", "+%s"], default=None, log=True)
|
|
if self.basedir:
|
|
with open(os.path.join(self.basedir, "timestamp"), "w") as f:
|
|
f.write(f"{timestamp}\n")
|
|
pass
|
|
|
|
return datetime.datetime.fromtimestamp(int(timestamp), datetime.timezone.utc)
|
|
|
|
def _run(self, cmd, default, log):
|
|
# Assume that the wrapper acts like ssh(1) and simply concats
|
|
# arguments to a single string. Therefore, we must quoute
|
|
# arguments containing spaces so that commands like `vtysh -c
|
|
# "show ip route json"` work as expected.
|
|
cmd = " ".join([ arg if " " not in arg else f"\"{arg}\"" for arg in cmd ])
|
|
return super().run(self.wrap + (cmd,), default, log)
|
|
|
|
def run(self, cmd, default=None, log=True):
|
|
if not self.basedir:
|
|
return self._run(cmd, default, log)
|
|
|
|
storedpath = os.path.join(self.basedir, "run", Testhost.SlugOf(cmd))
|
|
if os.path.exists(storedpath):
|
|
with open(storedpath) as f:
|
|
return f.read()
|
|
|
|
out = self._run(cmd, default, log)
|
|
with open(storedpath, "w") as f:
|
|
f.write(out)
|
|
|
|
return out
|
|
|
|
def read(self, path):
|
|
out = self._run(["cat", path], default="", log=False)
|
|
|
|
if self.basedir:
|
|
dirname = os.path.join(self.basedir, "rootfs", os.path.dirname(path[1:]))
|
|
os.makedirs(dirname, exist_ok=True)
|
|
with open(os.path.join(self.basedir, "rootfs", path[1:]), "w") as f:
|
|
f.write(out)
|
|
|
|
|
|
class Testhost(Host):
|
|
def SlugOf(cmd):
|
|
return "_".join(cmd).replace("/", "+").replace(" ", "-")
|
|
|
|
def __init__(self, basedir):
|
|
self.basedir = basedir
|
|
|
|
def now(self):
|
|
with open(os.path.join(self.basedir, "timestamp")) as f:
|
|
timestamp = f.read().strip()
|
|
return datetime.datetime.fromtimestamp(int(timestamp), datetime.timezone.utc)
|
|
|
|
def run(self, cmd, default=None, log=True):
|
|
path = os.path.join(self.basedir, "run", Testhost.SlugOf(cmd))
|
|
|
|
try:
|
|
with open(path, 'r') as f:
|
|
return f.read()
|
|
except:
|
|
if default is not None:
|
|
return default
|
|
|
|
if log:
|
|
common.LOG.error(f"No recording found for run \"{path}\"")
|
|
raise
|
|
|
|
def read(self, path):
|
|
path = os.path.join(self.basedir, "rootfs", path[1:])
|
|
try:
|
|
with open(path, 'r') as f:
|
|
return f.read()
|
|
except FileNotFoundError:
|
|
# This is considered OK
|
|
pass
|
|
except:
|
|
common.LOG.error(f"No recording found for file \"{path}\"")
|
|
raise
|