2019-09-06 08:25:22 +01:00
|
|
|
|
#! /somewhere/python3
|
2020-08-30 23:42:06 +01:00
|
|
|
|
from contextlib import contextmanager, _GeneratorContextManager
|
|
|
|
|
from queue import Queue, Empty
|
|
|
|
|
from typing import Tuple, Any, Callable, Dict, Iterator, Optional, List
|
|
|
|
|
from xml.sax.saxutils import XMLGenerator
|
|
|
|
|
import queue
|
|
|
|
|
import io
|
|
|
|
|
import _thread
|
2020-06-18 12:23:32 +01:00
|
|
|
|
import argparse
|
2019-09-06 08:25:22 +01:00
|
|
|
|
import atexit
|
2020-01-28 07:52:30 +00:00
|
|
|
|
import base64
|
2020-08-30 23:42:06 +01:00
|
|
|
|
import codecs
|
2019-09-06 08:25:22 +01:00
|
|
|
|
import os
|
2020-01-28 07:52:30 +00:00
|
|
|
|
import pathlib
|
2020-08-30 23:42:06 +01:00
|
|
|
|
import ptpython.repl
|
2019-09-06 08:25:22 +01:00
|
|
|
|
import pty
|
|
|
|
|
import re
|
2020-01-28 07:52:30 +00:00
|
|
|
|
import shlex
|
2019-09-06 08:25:22 +01:00
|
|
|
|
import shutil
|
|
|
|
|
import socket
|
|
|
|
|
import subprocess
|
|
|
|
|
import sys
|
|
|
|
|
import tempfile
|
|
|
|
|
import time
|
2020-08-30 23:42:06 +01:00
|
|
|
|
import traceback
|
|
|
|
|
import unicodedata
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
|
|
|
|
CHAR_TO_KEY = {
|
|
|
|
|
"A": "shift-a",
|
|
|
|
|
"N": "shift-n",
|
|
|
|
|
"-": "0x0C",
|
|
|
|
|
"_": "shift-0x0C",
|
|
|
|
|
"B": "shift-b",
|
|
|
|
|
"O": "shift-o",
|
|
|
|
|
"=": "0x0D",
|
|
|
|
|
"+": "shift-0x0D",
|
|
|
|
|
"C": "shift-c",
|
|
|
|
|
"P": "shift-p",
|
|
|
|
|
"[": "0x1A",
|
|
|
|
|
"{": "shift-0x1A",
|
|
|
|
|
"D": "shift-d",
|
|
|
|
|
"Q": "shift-q",
|
|
|
|
|
"]": "0x1B",
|
|
|
|
|
"}": "shift-0x1B",
|
|
|
|
|
"E": "shift-e",
|
|
|
|
|
"R": "shift-r",
|
|
|
|
|
";": "0x27",
|
|
|
|
|
":": "shift-0x27",
|
|
|
|
|
"F": "shift-f",
|
|
|
|
|
"S": "shift-s",
|
|
|
|
|
"'": "0x28",
|
|
|
|
|
'"': "shift-0x28",
|
|
|
|
|
"G": "shift-g",
|
|
|
|
|
"T": "shift-t",
|
|
|
|
|
"`": "0x29",
|
|
|
|
|
"~": "shift-0x29",
|
|
|
|
|
"H": "shift-h",
|
|
|
|
|
"U": "shift-u",
|
|
|
|
|
"\\": "0x2B",
|
|
|
|
|
"|": "shift-0x2B",
|
|
|
|
|
"I": "shift-i",
|
|
|
|
|
"V": "shift-v",
|
|
|
|
|
",": "0x33",
|
|
|
|
|
"<": "shift-0x33",
|
|
|
|
|
"J": "shift-j",
|
|
|
|
|
"W": "shift-w",
|
|
|
|
|
".": "0x34",
|
|
|
|
|
">": "shift-0x34",
|
|
|
|
|
"K": "shift-k",
|
|
|
|
|
"X": "shift-x",
|
|
|
|
|
"/": "0x35",
|
|
|
|
|
"?": "shift-0x35",
|
|
|
|
|
"L": "shift-l",
|
|
|
|
|
"Y": "shift-y",
|
|
|
|
|
" ": "spc",
|
|
|
|
|
"M": "shift-m",
|
|
|
|
|
"Z": "shift-z",
|
|
|
|
|
"\n": "ret",
|
|
|
|
|
"!": "shift-0x02",
|
|
|
|
|
"@": "shift-0x03",
|
|
|
|
|
"#": "shift-0x04",
|
|
|
|
|
"$": "shift-0x05",
|
|
|
|
|
"%": "shift-0x06",
|
|
|
|
|
"^": "shift-0x07",
|
|
|
|
|
"&": "shift-0x08",
|
|
|
|
|
"*": "shift-0x09",
|
|
|
|
|
"(": "shift-0x0A",
|
|
|
|
|
")": "shift-0x0B",
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
# Forward references
|
|
|
|
|
log: "Logger"
|
2019-11-08 10:01:29 +00:00
|
|
|
|
machines: "List[Machine]"
|
|
|
|
|
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
def eprint(*args: object, **kwargs: Any) -> None:
|
|
|
|
|
print(*args, file=sys.stderr, **kwargs)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
|
|
|
|
|
2019-11-24 23:03:16 +00:00
|
|
|
|
def make_command(args: list) -> str:
|
|
|
|
|
return " ".join(map(shlex.quote, (map(str, args))))
|
|
|
|
|
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def create_vlan(vlan_nr: str) -> Tuple[str, str, "subprocess.Popen[bytes]", Any]:
|
2020-08-30 23:42:06 +01:00
|
|
|
|
global log
|
|
|
|
|
log.log("starting VDE switch for network {}".format(vlan_nr))
|
2020-03-28 14:29:49 +00:00
|
|
|
|
vde_socket = tempfile.mkdtemp(
|
|
|
|
|
prefix="nixos-test-vde-", suffix="-vde{}.ctl".format(vlan_nr)
|
|
|
|
|
)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
pty_master, pty_slave = pty.openpty()
|
|
|
|
|
vde_process = subprocess.Popen(
|
2020-03-28 14:29:49 +00:00
|
|
|
|
["vde_switch", "-s", vde_socket, "--dirmode", "0700"],
|
2019-09-06 08:25:22 +01:00
|
|
|
|
bufsize=1,
|
|
|
|
|
stdin=pty_slave,
|
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
|
stderr=subprocess.PIPE,
|
|
|
|
|
shell=False,
|
|
|
|
|
)
|
|
|
|
|
fd = os.fdopen(pty_master, "w")
|
|
|
|
|
fd.write("version\n")
|
|
|
|
|
# TODO: perl version checks if this can be read from
|
|
|
|
|
# an if not, dies. we could hang here forever. Fix it.
|
2020-03-27 07:25:07 +00:00
|
|
|
|
assert vde_process.stdout is not None
|
2019-09-06 08:25:22 +01:00
|
|
|
|
vde_process.stdout.readline()
|
|
|
|
|
if not os.path.exists(os.path.join(vde_socket, "ctl")):
|
|
|
|
|
raise Exception("cannot start vde_switch")
|
|
|
|
|
|
|
|
|
|
return (vlan_nr, vde_socket, vde_process, fd)
|
|
|
|
|
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def retry(fn: Callable) -> None:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
"""Call the given function repeatedly, with 1 second intervals,
|
|
|
|
|
until it returns True or a timeout is reached.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
for _ in range(900):
|
|
|
|
|
if fn(False):
|
|
|
|
|
return
|
|
|
|
|
time.sleep(1)
|
|
|
|
|
|
|
|
|
|
if not fn(True):
|
|
|
|
|
raise Exception("action timed out")
|
|
|
|
|
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
class Logger:
|
|
|
|
|
def __init__(self) -> None:
|
|
|
|
|
self.logfile = os.environ.get("LOGFILE", "/dev/null")
|
|
|
|
|
self.logfile_handle = codecs.open(self.logfile, "wb")
|
|
|
|
|
self.xml = XMLGenerator(self.logfile_handle, encoding="utf-8")
|
|
|
|
|
self.queue: "Queue[Dict[str, str]]" = Queue()
|
|
|
|
|
|
|
|
|
|
self.xml.startDocument()
|
|
|
|
|
self.xml.startElement("logfile", attrs={})
|
|
|
|
|
|
|
|
|
|
def close(self) -> None:
|
|
|
|
|
self.xml.endElement("logfile")
|
|
|
|
|
self.xml.endDocument()
|
|
|
|
|
self.logfile_handle.close()
|
|
|
|
|
|
|
|
|
|
def sanitise(self, message: str) -> str:
|
|
|
|
|
return "".join(ch for ch in message if unicodedata.category(ch)[0] != "C")
|
|
|
|
|
|
|
|
|
|
def maybe_prefix(self, message: str, attributes: Dict[str, str]) -> str:
|
|
|
|
|
if "machine" in attributes:
|
|
|
|
|
return "{}: {}".format(attributes["machine"], message)
|
|
|
|
|
return message
|
|
|
|
|
|
|
|
|
|
def log_line(self, message: str, attributes: Dict[str, str]) -> None:
|
|
|
|
|
self.xml.startElement("line", attributes)
|
|
|
|
|
self.xml.characters(message)
|
|
|
|
|
self.xml.endElement("line")
|
|
|
|
|
|
|
|
|
|
def log(self, message: str, attributes: Dict[str, str] = {}) -> None:
|
|
|
|
|
eprint(self.maybe_prefix(message, attributes))
|
|
|
|
|
self.drain_log_queue()
|
|
|
|
|
self.log_line(message, attributes)
|
|
|
|
|
|
|
|
|
|
def enqueue(self, message: Dict[str, str]) -> None:
|
|
|
|
|
self.queue.put(message)
|
|
|
|
|
|
|
|
|
|
def drain_log_queue(self) -> None:
|
|
|
|
|
try:
|
|
|
|
|
while True:
|
|
|
|
|
item = self.queue.get_nowait()
|
|
|
|
|
attributes = {"machine": item["machine"], "type": "serial"}
|
|
|
|
|
self.log_line(self.sanitise(item["msg"]), attributes)
|
|
|
|
|
except Empty:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
@contextmanager
|
|
|
|
|
def nested(self, message: str, attributes: Dict[str, str] = {}) -> Iterator[None]:
|
|
|
|
|
eprint(self.maybe_prefix(message, attributes))
|
|
|
|
|
|
|
|
|
|
self.xml.startElement("nest", attrs={})
|
|
|
|
|
self.xml.startElement("head", attributes)
|
|
|
|
|
self.xml.characters(message)
|
|
|
|
|
self.xml.endElement("head")
|
|
|
|
|
|
|
|
|
|
tic = time.time()
|
|
|
|
|
self.drain_log_queue()
|
|
|
|
|
yield
|
|
|
|
|
self.drain_log_queue()
|
|
|
|
|
toc = time.time()
|
|
|
|
|
self.log("({:.2f} seconds)".format(toc - tic))
|
|
|
|
|
|
|
|
|
|
self.xml.endElement("nest")
|
|
|
|
|
|
|
|
|
|
|
2019-09-06 08:25:22 +01:00
|
|
|
|
class Machine:
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def __init__(self, args: Dict[str, Any]) -> None:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
if "name" in args:
|
|
|
|
|
self.name = args["name"]
|
|
|
|
|
else:
|
|
|
|
|
self.name = "machine"
|
2019-11-08 10:01:29 +00:00
|
|
|
|
cmd = args.get("startCommand", None)
|
|
|
|
|
if cmd:
|
|
|
|
|
match = re.search("run-(.+)-vm$", cmd)
|
|
|
|
|
if match:
|
|
|
|
|
self.name = match.group(1)
|
2020-09-07 11:26:28 +01:00
|
|
|
|
self.logger = args["log"]
|
2019-09-06 08:25:22 +01:00
|
|
|
|
self.script = args.get("startCommand", self.create_startcommand(args))
|
|
|
|
|
|
|
|
|
|
tmp_dir = os.environ.get("TMPDIR", tempfile.gettempdir())
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def create_dir(name: str) -> str:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
path = os.path.join(tmp_dir, name)
|
|
|
|
|
os.makedirs(path, mode=0o700, exist_ok=True)
|
|
|
|
|
return path
|
|
|
|
|
|
2020-09-07 11:26:28 +01:00
|
|
|
|
self.state_dir = os.path.join(tmp_dir, f"vm-state-{self.name}")
|
2020-09-11 09:47:03 +01:00
|
|
|
|
if not args.get("keepVmState", False):
|
2020-09-07 11:26:28 +01:00
|
|
|
|
self.cleanup_statedir()
|
|
|
|
|
os.makedirs(self.state_dir, mode=0o700, exist_ok=True)
|
2020-01-12 23:49:17 +00:00
|
|
|
|
self.shared_dir = create_dir("shared-xchg")
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
|
|
|
|
self.booted = False
|
|
|
|
|
self.connected = False
|
2019-11-08 10:01:29 +00:00
|
|
|
|
self.pid: Optional[int] = None
|
2019-09-06 08:25:22 +01:00
|
|
|
|
self.socket = None
|
2019-11-08 10:01:29 +00:00
|
|
|
|
self.monitor: Optional[socket.socket] = None
|
2019-09-06 08:25:22 +01:00
|
|
|
|
self.allow_reboot = args.get("allowReboot", False)
|
|
|
|
|
|
|
|
|
|
@staticmethod
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def create_startcommand(args: Dict[str, str]) -> str:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
net_backend = "-netdev user,id=net0"
|
|
|
|
|
net_frontend = "-device virtio-net-pci,netdev=net0"
|
|
|
|
|
|
|
|
|
|
if "netBackendArgs" in args:
|
|
|
|
|
net_backend += "," + args["netBackendArgs"]
|
|
|
|
|
|
|
|
|
|
if "netFrontendArgs" in args:
|
|
|
|
|
net_frontend += "," + args["netFrontendArgs"]
|
|
|
|
|
|
|
|
|
|
start_command = (
|
|
|
|
|
"qemu-kvm -m 384 " + net_backend + " " + net_frontend + " $QEMU_OPTS "
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
if "hda" in args:
|
|
|
|
|
hda_path = os.path.abspath(args["hda"])
|
|
|
|
|
if args.get("hdaInterface", "") == "scsi":
|
|
|
|
|
start_command += (
|
|
|
|
|
"-drive id=hda,file="
|
|
|
|
|
+ hda_path
|
|
|
|
|
+ ",werror=report,if=none "
|
|
|
|
|
+ "-device scsi-hd,drive=hda "
|
|
|
|
|
)
|
|
|
|
|
else:
|
|
|
|
|
start_command += (
|
|
|
|
|
"-drive file="
|
|
|
|
|
+ hda_path
|
|
|
|
|
+ ",if="
|
|
|
|
|
+ args["hdaInterface"]
|
|
|
|
|
+ ",werror=report "
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
if "cdrom" in args:
|
|
|
|
|
start_command += "-cdrom " + args["cdrom"] + " "
|
|
|
|
|
|
|
|
|
|
if "usb" in args:
|
|
|
|
|
start_command += (
|
|
|
|
|
"-device piix3-usb-uhci -drive "
|
|
|
|
|
+ "id=usbdisk,file="
|
|
|
|
|
+ args["usb"]
|
|
|
|
|
+ ",if=none,readonly "
|
|
|
|
|
+ "-device usb-storage,drive=usbdisk "
|
|
|
|
|
)
|
|
|
|
|
if "bios" in args:
|
|
|
|
|
start_command += "-bios " + args["bios"] + " "
|
|
|
|
|
|
|
|
|
|
start_command += args.get("qemuFlags", "")
|
|
|
|
|
|
|
|
|
|
return start_command
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def is_up(self) -> bool:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
return self.booted and self.connected
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
def log(self, msg: str) -> None:
|
|
|
|
|
self.logger.log(msg, {"machine": self.name})
|
|
|
|
|
|
|
|
|
|
def nested(self, msg: str, attrs: Dict[str, str] = {}) -> _GeneratorContextManager:
|
|
|
|
|
my_attrs = {"machine": self.name}
|
|
|
|
|
my_attrs.update(attrs)
|
|
|
|
|
return self.logger.nested(msg, my_attrs)
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def wait_for_monitor_prompt(self) -> str:
|
|
|
|
|
assert self.monitor is not None
|
2019-11-19 16:08:30 +00:00
|
|
|
|
answer = ""
|
2019-09-06 08:25:22 +01:00
|
|
|
|
while True:
|
2019-11-19 16:08:30 +00:00
|
|
|
|
undecoded_answer = self.monitor.recv(1024)
|
|
|
|
|
if not undecoded_answer:
|
|
|
|
|
break
|
|
|
|
|
answer += undecoded_answer.decode()
|
2019-09-06 08:25:22 +01:00
|
|
|
|
if answer.endswith("(qemu) "):
|
2019-11-19 16:08:30 +00:00
|
|
|
|
break
|
|
|
|
|
return answer
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def send_monitor_command(self, command: str) -> str:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
message = ("{}\n".format(command)).encode()
|
2020-08-30 23:42:06 +01:00
|
|
|
|
self.log("sending monitor command: {}".format(command))
|
2019-11-08 10:01:29 +00:00
|
|
|
|
assert self.monitor is not None
|
2019-09-06 08:25:22 +01:00
|
|
|
|
self.monitor.send(message)
|
|
|
|
|
return self.wait_for_monitor_prompt()
|
|
|
|
|
|
2019-12-03 07:35:17 +00:00
|
|
|
|
def wait_for_unit(self, unit: str, user: Optional[str] = None) -> None:
|
|
|
|
|
"""Wait for a systemd unit to get into "active" state.
|
|
|
|
|
Throws exceptions on "failed" and "inactive" states as well as
|
|
|
|
|
after timing out.
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
def check_active(_: Any) -> bool:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
info = self.get_unit_info(unit, user)
|
|
|
|
|
state = info["ActiveState"]
|
|
|
|
|
if state == "failed":
|
|
|
|
|
raise Exception('unit "{}" reached state "{}"'.format(unit, state))
|
|
|
|
|
|
|
|
|
|
if state == "inactive":
|
|
|
|
|
status, jobs = self.systemctl("list-jobs --full 2>&1", user)
|
|
|
|
|
if "No jobs" in jobs:
|
2019-11-08 14:01:42 +00:00
|
|
|
|
info = self.get_unit_info(unit, user)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
if info["ActiveState"] == state:
|
|
|
|
|
raise Exception(
|
|
|
|
|
(
|
|
|
|
|
'unit "{}" is inactive and there ' "are no pending jobs"
|
|
|
|
|
).format(unit)
|
|
|
|
|
)
|
2019-12-03 07:35:17 +00:00
|
|
|
|
|
|
|
|
|
return state == "active"
|
|
|
|
|
|
|
|
|
|
retry(check_active)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def get_unit_info(self, unit: str, user: Optional[str] = None) -> Dict[str, str]:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
status, lines = self.systemctl('--no-pager show "{}"'.format(unit), user)
|
|
|
|
|
if status != 0:
|
2019-11-08 09:46:37 +00:00
|
|
|
|
raise Exception(
|
|
|
|
|
'retrieving systemctl info for unit "{}" {} failed with exit code {}'.format(
|
|
|
|
|
unit, "" if user is None else 'under user "{}"'.format(user), status
|
|
|
|
|
)
|
|
|
|
|
)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
|
|
|
|
line_pattern = re.compile(r"^([^=]+)=(.*)$")
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def tuple_from_line(line: str) -> Tuple[str, str]:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
match = line_pattern.match(line)
|
2019-11-08 10:01:29 +00:00
|
|
|
|
assert match is not None
|
2019-09-06 08:25:22 +01:00
|
|
|
|
return match[1], match[2]
|
|
|
|
|
|
|
|
|
|
return dict(
|
|
|
|
|
tuple_from_line(line)
|
|
|
|
|
for line in lines.split("\n")
|
|
|
|
|
if line_pattern.match(line)
|
|
|
|
|
)
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def systemctl(self, q: str, user: Optional[str] = None) -> Tuple[int, str]:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
if user is not None:
|
|
|
|
|
q = q.replace("'", "\\'")
|
|
|
|
|
return self.execute(
|
|
|
|
|
(
|
2020-05-09 18:32:42 +01:00
|
|
|
|
"su -l {} --shell /bin/sh -c "
|
2019-09-06 08:25:22 +01:00
|
|
|
|
"$'XDG_RUNTIME_DIR=/run/user/`id -u` "
|
|
|
|
|
"systemctl --user {}'"
|
|
|
|
|
).format(user, q)
|
|
|
|
|
)
|
|
|
|
|
return self.execute("systemctl {}".format(q))
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def require_unit_state(self, unit: str, require_state: str = "active") -> None:
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested(
|
|
|
|
|
"checking if unit ‘{}’ has reached state '{}'".format(unit, require_state)
|
|
|
|
|
):
|
|
|
|
|
info = self.get_unit_info(unit)
|
|
|
|
|
state = info["ActiveState"]
|
|
|
|
|
if state != require_state:
|
|
|
|
|
raise Exception(
|
|
|
|
|
"Expected unit ‘{}’ to to be in state ".format(unit)
|
|
|
|
|
+ "'{}' but it is in state ‘{}’".format(require_state, state)
|
|
|
|
|
)
|
2020-08-25 14:50:47 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def execute(self, command: str) -> Tuple[int, str]:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
self.connect()
|
|
|
|
|
|
2020-05-07 14:20:34 +01:00
|
|
|
|
out_command = "( {} ); echo '|!=EOF' $?\n".format(command)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
self.shell.send(out_command.encode())
|
|
|
|
|
|
|
|
|
|
output = ""
|
2020-05-07 14:20:34 +01:00
|
|
|
|
status_code_pattern = re.compile(r"(.*)\|\!=EOF\s+(\d+)")
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
|
|
|
|
while True:
|
2020-01-26 12:04:11 +00:00
|
|
|
|
chunk = self.shell.recv(4096).decode(errors="ignore")
|
2019-09-06 08:25:22 +01:00
|
|
|
|
match = status_code_pattern.match(chunk)
|
|
|
|
|
if match:
|
|
|
|
|
output += match[1]
|
|
|
|
|
status_code = int(match[2])
|
|
|
|
|
return (status_code, output)
|
|
|
|
|
output += chunk
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def succeed(self, *commands: str) -> str:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
"""Execute each command and check that it succeeds."""
|
2019-11-11 00:24:49 +00:00
|
|
|
|
output = ""
|
2019-09-06 08:25:22 +01:00
|
|
|
|
for command in commands:
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("must succeed: {}".format(command)):
|
|
|
|
|
(status, out) = self.execute(command)
|
|
|
|
|
if status != 0:
|
|
|
|
|
self.log("output: {}".format(out))
|
|
|
|
|
raise Exception(
|
|
|
|
|
"command `{}` failed (exit code {})".format(command, status)
|
|
|
|
|
)
|
|
|
|
|
output += out
|
2019-11-11 00:24:49 +00:00
|
|
|
|
return output
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2020-08-21 20:28:24 +01:00
|
|
|
|
def fail(self, *commands: str) -> str:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
"""Execute each command and check that it fails."""
|
2020-08-21 20:28:24 +01:00
|
|
|
|
output = ""
|
2019-09-06 08:25:22 +01:00
|
|
|
|
for command in commands:
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("must fail: {}".format(command)):
|
|
|
|
|
(status, out) = self.execute(command)
|
|
|
|
|
if status == 0:
|
|
|
|
|
raise Exception(
|
|
|
|
|
"command `{}` unexpectedly succeeded".format(command)
|
|
|
|
|
)
|
|
|
|
|
output += out
|
2020-08-21 20:28:24 +01:00
|
|
|
|
return output
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def wait_until_succeeds(self, command: str) -> str:
|
2019-12-03 07:35:17 +00:00
|
|
|
|
"""Wait until a command returns success and return its output.
|
|
|
|
|
Throws an exception on timeout.
|
|
|
|
|
"""
|
|
|
|
|
output = ""
|
|
|
|
|
|
|
|
|
|
def check_success(_: Any) -> bool:
|
|
|
|
|
nonlocal output
|
|
|
|
|
status, output = self.execute(command)
|
|
|
|
|
return status == 0
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("waiting for success: {}".format(command)):
|
|
|
|
|
retry(check_success)
|
|
|
|
|
return output
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def wait_until_fails(self, command: str) -> str:
|
2019-12-03 07:35:17 +00:00
|
|
|
|
"""Wait until a command returns failure.
|
|
|
|
|
Throws an exception on timeout.
|
|
|
|
|
"""
|
|
|
|
|
output = ""
|
|
|
|
|
|
|
|
|
|
def check_failure(_: Any) -> bool:
|
|
|
|
|
nonlocal output
|
|
|
|
|
status, output = self.execute(command)
|
|
|
|
|
return status != 0
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("waiting for failure: {}".format(command)):
|
|
|
|
|
retry(check_failure)
|
|
|
|
|
return output
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def wait_for_shutdown(self) -> None:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
if not self.booted:
|
|
|
|
|
return
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("waiting for the VM to power off"):
|
|
|
|
|
sys.stdout.flush()
|
|
|
|
|
self.process.wait()
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
self.pid = None
|
|
|
|
|
self.booted = False
|
|
|
|
|
self.connected = False
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def get_tty_text(self, tty: str) -> str:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
status, output = self.execute(
|
|
|
|
|
"fold -w$(stty -F /dev/tty{0} size | "
|
|
|
|
|
"awk '{{print $2}}') /dev/vcs{0}".format(tty)
|
|
|
|
|
)
|
|
|
|
|
return output
|
|
|
|
|
|
2019-12-03 07:35:17 +00:00
|
|
|
|
def wait_until_tty_matches(self, tty: str, regexp: str) -> None:
|
|
|
|
|
"""Wait until the visible output on the chosen TTY matches regular
|
|
|
|
|
expression. Throws an exception on timeout.
|
|
|
|
|
"""
|
2019-09-06 08:25:22 +01:00
|
|
|
|
matcher = re.compile(regexp)
|
2019-12-03 07:35:17 +00:00
|
|
|
|
|
|
|
|
|
def tty_matches(last: bool) -> bool:
|
|
|
|
|
text = self.get_tty_text(tty)
|
|
|
|
|
if last:
|
2020-08-30 23:42:06 +01:00
|
|
|
|
self.log(
|
2019-12-03 07:35:17 +00:00
|
|
|
|
f"Last chance to match /{regexp}/ on TTY{tty}, "
|
|
|
|
|
f"which currently contains: {text}"
|
|
|
|
|
)
|
|
|
|
|
return len(matcher.findall(text)) > 0
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("waiting for {} to appear on tty {}".format(regexp, tty)):
|
|
|
|
|
retry(tty_matches)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def send_chars(self, chars: List[str]) -> None:
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("sending keys ‘{}‘".format(chars)):
|
|
|
|
|
for char in chars:
|
|
|
|
|
self.send_key(char)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-12-03 07:35:17 +00:00
|
|
|
|
def wait_for_file(self, filename: str) -> None:
|
|
|
|
|
"""Waits until the file exists in machine's file system."""
|
|
|
|
|
|
|
|
|
|
def check_file(_: Any) -> bool:
|
|
|
|
|
status, _ = self.execute("test -e {}".format(filename))
|
|
|
|
|
return status == 0
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("waiting for file ‘{}‘".format(filename)):
|
|
|
|
|
retry(check_file)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def wait_for_open_port(self, port: int) -> None:
|
|
|
|
|
def port_is_open(_: Any) -> bool:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
status, _ = self.execute("nc -z localhost {}".format(port))
|
|
|
|
|
return status == 0
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("waiting for TCP port {}".format(port)):
|
|
|
|
|
retry(port_is_open)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def wait_for_closed_port(self, port: int) -> None:
|
|
|
|
|
def port_is_closed(_: Any) -> bool:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
status, _ = self.execute("nc -z localhost {}".format(port))
|
|
|
|
|
return status != 0
|
|
|
|
|
|
|
|
|
|
retry(port_is_closed)
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def start_job(self, jobname: str, user: Optional[str] = None) -> Tuple[int, str]:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
return self.systemctl("start {}".format(jobname), user)
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def stop_job(self, jobname: str, user: Optional[str] = None) -> Tuple[int, str]:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
return self.systemctl("stop {}".format(jobname), user)
|
|
|
|
|
|
2019-12-03 07:35:17 +00:00
|
|
|
|
def wait_for_job(self, jobname: str) -> None:
|
|
|
|
|
self.wait_for_unit(jobname)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def connect(self) -> None:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
if self.connected:
|
|
|
|
|
return
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("waiting for the VM to finish booting"):
|
|
|
|
|
self.start()
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
tic = time.time()
|
|
|
|
|
self.shell.recv(1024)
|
|
|
|
|
# TODO: Timeout
|
|
|
|
|
toc = time.time()
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
self.log("connected to guest root shell")
|
|
|
|
|
self.log("(connecting took {:.2f} seconds)".format(toc - tic))
|
|
|
|
|
self.connected = True
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def screenshot(self, filename: str) -> None:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
out_dir = os.environ.get("out", os.getcwd())
|
|
|
|
|
word_pattern = re.compile(r"^\w+$")
|
|
|
|
|
if word_pattern.match(filename):
|
|
|
|
|
filename = os.path.join(out_dir, "{}.png".format(filename))
|
|
|
|
|
tmp = "{}.ppm".format(filename)
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested(
|
|
|
|
|
"making screenshot {}".format(filename),
|
|
|
|
|
{"image": os.path.basename(filename)},
|
|
|
|
|
):
|
|
|
|
|
self.send_monitor_command("screendump {}".format(tmp))
|
|
|
|
|
ret = subprocess.run("pnmtopng {} > {}".format(tmp, filename), shell=True)
|
|
|
|
|
os.unlink(tmp)
|
|
|
|
|
if ret.returncode != 0:
|
|
|
|
|
raise Exception("Cannot convert screenshot")
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2020-01-28 07:52:30 +00:00
|
|
|
|
def copy_from_host_via_shell(self, source: str, target: str) -> None:
|
|
|
|
|
"""Copy a file from the host into the guest by piping it over the
|
|
|
|
|
shell into the destination file. Works without host-guest shared folder.
|
|
|
|
|
Prefer copy_from_host for whenever possible.
|
|
|
|
|
"""
|
|
|
|
|
with open(source, "rb") as fh:
|
|
|
|
|
content_b64 = base64.b64encode(fh.read()).decode()
|
|
|
|
|
self.succeed(
|
|
|
|
|
f"mkdir -p $(dirname {target})",
|
|
|
|
|
f"echo -n {content_b64} | base64 -d > {target}",
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
def copy_from_host(self, source: str, target: str) -> None:
|
|
|
|
|
"""Copy a file from the host into the guest via the `shared_dir` shared
|
|
|
|
|
among all the VMs (using a temporary directory).
|
|
|
|
|
"""
|
|
|
|
|
host_src = pathlib.Path(source)
|
|
|
|
|
vm_target = pathlib.Path(target)
|
|
|
|
|
with tempfile.TemporaryDirectory(dir=self.shared_dir) as shared_td:
|
|
|
|
|
shared_temp = pathlib.Path(shared_td)
|
|
|
|
|
host_intermediate = shared_temp / host_src.name
|
|
|
|
|
vm_shared_temp = pathlib.Path("/tmp/shared") / shared_temp.name
|
|
|
|
|
vm_intermediate = vm_shared_temp / host_src.name
|
|
|
|
|
|
|
|
|
|
self.succeed(make_command(["mkdir", "-p", vm_shared_temp]))
|
|
|
|
|
if host_src.is_dir():
|
|
|
|
|
shutil.copytree(host_src, host_intermediate)
|
|
|
|
|
else:
|
|
|
|
|
shutil.copy(host_src, host_intermediate)
|
|
|
|
|
self.succeed(make_command(["mkdir", "-p", vm_target.parent]))
|
|
|
|
|
self.succeed(make_command(["cp", "-r", vm_intermediate, vm_target]))
|
|
|
|
|
|
2019-11-24 23:03:16 +00:00
|
|
|
|
def copy_from_vm(self, source: str, target_dir: str = "") -> None:
|
|
|
|
|
"""Copy a file from the VM (specified by an in-VM source path) to a path
|
|
|
|
|
relative to `$out`. The file is copied via the `shared_dir` shared among
|
|
|
|
|
all the VMs (using a temporary directory).
|
|
|
|
|
"""
|
|
|
|
|
# Compute the source, target, and intermediate shared file names
|
|
|
|
|
out_dir = pathlib.Path(os.environ.get("out", os.getcwd()))
|
|
|
|
|
vm_src = pathlib.Path(source)
|
|
|
|
|
with tempfile.TemporaryDirectory(dir=self.shared_dir) as shared_td:
|
|
|
|
|
shared_temp = pathlib.Path(shared_td)
|
2020-01-19 18:33:46 +00:00
|
|
|
|
vm_shared_temp = pathlib.Path("/tmp/shared") / shared_temp.name
|
2019-11-24 23:03:16 +00:00
|
|
|
|
vm_intermediate = vm_shared_temp / vm_src.name
|
|
|
|
|
intermediate = shared_temp / vm_src.name
|
|
|
|
|
# Copy the file to the shared directory inside VM
|
|
|
|
|
self.succeed(make_command(["mkdir", "-p", vm_shared_temp]))
|
|
|
|
|
self.succeed(make_command(["cp", "-r", vm_src, vm_intermediate]))
|
|
|
|
|
abs_target = out_dir / target_dir / vm_src.name
|
|
|
|
|
abs_target.parent.mkdir(exist_ok=True, parents=True)
|
|
|
|
|
# Copy the file from the shared directory outside VM
|
|
|
|
|
if intermediate.is_dir():
|
|
|
|
|
shutil.copytree(intermediate, abs_target)
|
|
|
|
|
else:
|
|
|
|
|
shutil.copy(intermediate, abs_target)
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def dump_tty_contents(self, tty: str) -> None:
|
2019-11-06 21:40:02 +00:00
|
|
|
|
"""Debugging: Dump the contents of the TTY<n>
|
|
|
|
|
"""
|
|
|
|
|
self.execute("fold -w 80 /dev/vcs{} | systemd-cat".format(tty))
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def get_screen_text(self) -> str:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
if shutil.which("tesseract") is None:
|
|
|
|
|
raise Exception("get_screen_text used but enableOCR is false")
|
|
|
|
|
|
|
|
|
|
magick_args = (
|
|
|
|
|
"-filter Catrom -density 72 -resample 300 "
|
|
|
|
|
+ "-contrast -normalize -despeckle -type grayscale "
|
|
|
|
|
+ "-sharpen 1 -posterize 3 -negate -gamma 100 "
|
|
|
|
|
+ "-blur 1x65535"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
tess_args = "-c debug_file=/dev/null --psm 11 --oem 2"
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("performing optical character recognition"):
|
|
|
|
|
with tempfile.NamedTemporaryFile() as tmpin:
|
|
|
|
|
self.send_monitor_command("screendump {}".format(tmpin.name))
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
cmd = "convert {} {} tiff:- | tesseract - - {}".format(
|
|
|
|
|
magick_args, tmpin.name, tess_args
|
|
|
|
|
)
|
|
|
|
|
ret = subprocess.run(cmd, shell=True, capture_output=True)
|
|
|
|
|
if ret.returncode != 0:
|
|
|
|
|
raise Exception(
|
|
|
|
|
"OCR failed with exit code {}".format(ret.returncode)
|
|
|
|
|
)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
return ret.stdout.decode("utf-8")
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def wait_for_text(self, regex: str) -> None:
|
|
|
|
|
def screen_matches(last: bool) -> bool:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
text = self.get_screen_text()
|
2019-11-08 10:01:29 +00:00
|
|
|
|
matches = re.search(regex, text) is not None
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
if last and not matches:
|
2020-08-30 23:42:06 +01:00
|
|
|
|
self.log("Last OCR attempt failed. Text was: {}".format(text))
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
return matches
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("waiting for {} to appear on screen".format(regex)):
|
|
|
|
|
retry(screen_matches)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2020-06-13 11:04:05 +01:00
|
|
|
|
def wait_for_console_text(self, regex: str) -> None:
|
2020-08-30 23:42:06 +01:00
|
|
|
|
self.log("waiting for {} to appear on console".format(regex))
|
2020-06-13 11:04:05 +01:00
|
|
|
|
# Buffer the console output, this is needed
|
|
|
|
|
# to match multiline regexes.
|
|
|
|
|
console = io.StringIO()
|
|
|
|
|
while True:
|
|
|
|
|
try:
|
|
|
|
|
console.write(self.last_lines.get())
|
|
|
|
|
except queue.Empty:
|
|
|
|
|
self.sleep(1)
|
|
|
|
|
continue
|
|
|
|
|
console.seek(0)
|
|
|
|
|
matches = re.search(regex, console.read())
|
|
|
|
|
if matches is not None:
|
|
|
|
|
return
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def send_key(self, key: str) -> None:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
key = CHAR_TO_KEY.get(key, key)
|
|
|
|
|
self.send_monitor_command("sendkey {}".format(key))
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def start(self) -> None:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
if self.booted:
|
|
|
|
|
return
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
self.log("starting vm")
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def create_socket(path: str) -> socket.socket:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
if os.path.exists(path):
|
|
|
|
|
os.unlink(path)
|
|
|
|
|
s = socket.socket(family=socket.AF_UNIX, type=socket.SOCK_STREAM)
|
|
|
|
|
s.bind(path)
|
|
|
|
|
s.listen(1)
|
|
|
|
|
return s
|
|
|
|
|
|
|
|
|
|
monitor_path = os.path.join(self.state_dir, "monitor")
|
|
|
|
|
self.monitor_socket = create_socket(monitor_path)
|
|
|
|
|
|
|
|
|
|
shell_path = os.path.join(self.state_dir, "shell")
|
|
|
|
|
self.shell_socket = create_socket(shell_path)
|
|
|
|
|
|
|
|
|
|
qemu_options = (
|
|
|
|
|
" ".join(
|
|
|
|
|
[
|
|
|
|
|
"" if self.allow_reboot else "-no-reboot",
|
|
|
|
|
"-monitor unix:{}".format(monitor_path),
|
|
|
|
|
"-chardev socket,id=shell,path={}".format(shell_path),
|
|
|
|
|
"-device virtio-serial",
|
|
|
|
|
"-device virtconsole,chardev=shell",
|
|
|
|
|
"-device virtio-rng-pci",
|
|
|
|
|
"-serial stdio" if "DISPLAY" in os.environ else "-nographic",
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|
+ " "
|
|
|
|
|
+ os.environ.get("QEMU_OPTS", "")
|
|
|
|
|
)
|
|
|
|
|
|
2019-11-19 11:59:14 +00:00
|
|
|
|
environment = dict(os.environ)
|
|
|
|
|
environment.update(
|
|
|
|
|
{
|
|
|
|
|
"TMPDIR": self.state_dir,
|
|
|
|
|
"SHARED_DIR": self.shared_dir,
|
|
|
|
|
"USE_TMPDIR": "1",
|
|
|
|
|
"QEMU_OPTS": qemu_options,
|
|
|
|
|
}
|
|
|
|
|
)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
|
|
|
|
self.process = subprocess.Popen(
|
|
|
|
|
self.script,
|
|
|
|
|
bufsize=1,
|
|
|
|
|
stdin=subprocess.DEVNULL,
|
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
|
stderr=subprocess.STDOUT,
|
2019-11-06 20:48:08 +00:00
|
|
|
|
shell=True,
|
2019-09-06 08:25:22 +01:00
|
|
|
|
cwd=self.state_dir,
|
|
|
|
|
env=environment,
|
|
|
|
|
)
|
|
|
|
|
self.monitor, _ = self.monitor_socket.accept()
|
|
|
|
|
self.shell, _ = self.shell_socket.accept()
|
|
|
|
|
|
2020-06-13 11:04:05 +01:00
|
|
|
|
# Store last serial console lines for use
|
|
|
|
|
# of wait_for_console_text
|
2020-08-30 23:42:06 +01:00
|
|
|
|
self.last_lines: Queue = Queue()
|
2020-06-13 11:04:05 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def process_serial_output() -> None:
|
2020-03-27 07:25:07 +00:00
|
|
|
|
assert self.process.stdout is not None
|
2019-11-08 10:01:29 +00:00
|
|
|
|
for _line in self.process.stdout:
|
2020-01-14 18:18:17 +00:00
|
|
|
|
# Ignore undecodable bytes that may occur in boot menus
|
|
|
|
|
line = _line.decode(errors="ignore").replace("\r", "").rstrip()
|
2020-06-13 11:04:05 +01:00
|
|
|
|
self.last_lines.put(line)
|
2020-08-30 23:42:06 +01:00
|
|
|
|
eprint("{} # {}".format(self.name, line))
|
|
|
|
|
self.logger.enqueue({"msg": line, "machine": self.name})
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
|
|
|
|
_thread.start_new_thread(process_serial_output, ())
|
|
|
|
|
|
|
|
|
|
self.wait_for_monitor_prompt()
|
|
|
|
|
|
|
|
|
|
self.pid = self.process.pid
|
|
|
|
|
self.booted = True
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
self.log("QEMU running (pid {})".format(self.pid))
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2020-06-18 12:23:32 +01:00
|
|
|
|
def cleanup_statedir(self) -> None:
|
2020-09-07 11:26:28 +01:00
|
|
|
|
if os.path.isdir(self.state_dir):
|
2020-06-18 12:23:32 +01:00
|
|
|
|
shutil.rmtree(self.state_dir)
|
2020-09-07 11:26:28 +01:00
|
|
|
|
self.logger.log(f"deleting VM state directory {self.state_dir}")
|
|
|
|
|
self.logger.log("if you want to keep the VM state, pass --keep-vm-state")
|
2020-06-18 12:23:32 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def shutdown(self) -> None:
|
2019-11-06 15:06:43 +00:00
|
|
|
|
if not self.booted:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
self.shell.send("poweroff\n".encode())
|
|
|
|
|
self.wait_for_shutdown()
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def crash(self) -> None:
|
2019-11-06 15:06:43 +00:00
|
|
|
|
if not self.booted:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
return
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
self.log("forced crash")
|
2019-09-06 08:25:22 +01:00
|
|
|
|
self.send_monitor_command("quit")
|
|
|
|
|
self.wait_for_shutdown()
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def wait_for_x(self) -> None:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
"""Wait until it is possible to connect to the X server. Note that
|
|
|
|
|
testing the existence of /tmp/.X11-unix/X0 is insufficient.
|
|
|
|
|
"""
|
2019-12-03 07:35:17 +00:00
|
|
|
|
|
|
|
|
|
def check_x(_: Any) -> bool:
|
|
|
|
|
cmd = (
|
|
|
|
|
"journalctl -b SYSLOG_IDENTIFIER=systemd | "
|
|
|
|
|
+ 'grep "Reached target Current graphical"'
|
|
|
|
|
)
|
|
|
|
|
status, _ = self.execute(cmd)
|
|
|
|
|
if status != 0:
|
|
|
|
|
return False
|
|
|
|
|
status, _ = self.execute("[ -e /tmp/.X11-unix/X0 ]")
|
|
|
|
|
return status == 0
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("waiting for the X11 server"):
|
|
|
|
|
retry(check_x)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def get_window_names(self) -> List[str]:
|
2019-11-05 14:59:29 +00:00
|
|
|
|
return self.succeed(
|
|
|
|
|
r"xwininfo -root -tree | sed 's/.*0x[0-9a-f]* \"\([^\"]*\)\".*/\1/; t; d'"
|
|
|
|
|
).splitlines()
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def wait_for_window(self, regexp: str) -> None:
|
2019-11-05 14:59:29 +00:00
|
|
|
|
pattern = re.compile(regexp)
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def window_is_visible(last_try: bool) -> bool:
|
2019-11-05 14:59:29 +00:00
|
|
|
|
names = self.get_window_names()
|
|
|
|
|
if last_try:
|
2020-08-30 23:42:06 +01:00
|
|
|
|
self.log(
|
|
|
|
|
"Last chance to match {} on the window list,".format(regexp)
|
|
|
|
|
+ " which currently contains: "
|
|
|
|
|
+ ", ".join(names)
|
2019-11-05 14:59:29 +00:00
|
|
|
|
)
|
|
|
|
|
return any(pattern.search(name) for name in names)
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with self.nested("Waiting for a window to appear"):
|
|
|
|
|
retry(window_is_visible)
|
2019-11-05 14:59:29 +00:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def sleep(self, secs: int) -> None:
|
2020-08-28 23:47:17 +01:00
|
|
|
|
# We want to sleep in *guest* time, not *host* time.
|
|
|
|
|
self.succeed(f"sleep {secs}")
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def forward_port(self, host_port: int = 8080, guest_port: int = 80) -> None:
|
2019-11-06 21:41:03 +00:00
|
|
|
|
"""Forward a TCP port on the host to a TCP port on the guest.
|
|
|
|
|
Useful during interactive testing.
|
|
|
|
|
"""
|
|
|
|
|
self.send_monitor_command(
|
|
|
|
|
"hostfwd_add tcp::{}-:{}".format(host_port, guest_port)
|
|
|
|
|
)
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def block(self) -> None:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
"""Make the machine unreachable by shutting down eth1 (the multicast
|
|
|
|
|
interface used to talk to the other VMs). We keep eth0 up so that
|
|
|
|
|
the test driver can continue to talk to the machine.
|
|
|
|
|
"""
|
|
|
|
|
self.send_monitor_command("set_link virtio-net-pci.1 off")
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def unblock(self) -> None:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
"""Make the machine reachable.
|
|
|
|
|
"""
|
|
|
|
|
self.send_monitor_command("set_link virtio-net-pci.1 on")
|
|
|
|
|
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def create_machine(args: Dict[str, Any]) -> Machine:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
global log
|
2020-08-30 23:42:06 +01:00
|
|
|
|
args["log"] = log
|
2019-09-06 08:25:22 +01:00
|
|
|
|
args["redirectSerial"] = os.environ.get("USE_SERIAL", "0") == "1"
|
|
|
|
|
return Machine(args)
|
|
|
|
|
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def start_all() -> None:
|
|
|
|
|
global machines
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with log.nested("starting all VMs"):
|
|
|
|
|
for machine in machines:
|
|
|
|
|
machine.start()
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def join_all() -> None:
|
|
|
|
|
global machines
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with log.nested("waiting for all VMs to finish"):
|
|
|
|
|
for machine in machines:
|
|
|
|
|
machine.wait_for_shutdown()
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def test_script() -> None:
|
2019-09-06 08:25:22 +01:00
|
|
|
|
exec(os.environ["testScript"])
|
|
|
|
|
|
|
|
|
|
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def run_tests() -> None:
|
|
|
|
|
global machines
|
2019-09-06 08:25:22 +01:00
|
|
|
|
tests = os.environ.get("tests", None)
|
|
|
|
|
if tests is not None:
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with log.nested("running the VM test script"):
|
|
|
|
|
try:
|
|
|
|
|
exec(tests, globals())
|
|
|
|
|
except Exception as e:
|
|
|
|
|
eprint("error: ")
|
|
|
|
|
traceback.print_exc()
|
|
|
|
|
sys.exit(1)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
else:
|
2019-11-04 21:49:45 +00:00
|
|
|
|
ptpython.repl.embed(locals(), globals())
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
|
|
|
|
# TODO: Collect coverage data
|
|
|
|
|
|
|
|
|
|
for machine in machines:
|
|
|
|
|
if machine.is_up():
|
|
|
|
|
machine.execute("sync")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@contextmanager
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def subtest(name: str) -> Iterator[None]:
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with log.nested(name):
|
|
|
|
|
try:
|
|
|
|
|
yield
|
|
|
|
|
return True
|
|
|
|
|
except Exception as e:
|
|
|
|
|
log.log(f'Test "{name}" failed with error: "{e}"')
|
|
|
|
|
raise e
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
if __name__ == "__main__":
|
2020-06-18 12:23:32 +01:00
|
|
|
|
arg_parser = argparse.ArgumentParser()
|
|
|
|
|
arg_parser.add_argument(
|
|
|
|
|
"-K",
|
|
|
|
|
"--keep-vm-state",
|
|
|
|
|
help="re-use a VM state coming from a previous run",
|
|
|
|
|
action="store_true",
|
|
|
|
|
)
|
|
|
|
|
(cli_args, vm_scripts) = arg_parser.parse_known_args()
|
|
|
|
|
|
2020-08-30 23:42:06 +01:00
|
|
|
|
log = Logger()
|
|
|
|
|
|
2020-02-14 07:50:07 +00:00
|
|
|
|
vlan_nrs = list(dict.fromkeys(os.environ.get("VLANS", "").split()))
|
2019-09-06 08:25:22 +01:00
|
|
|
|
vde_sockets = [create_vlan(v) for v in vlan_nrs]
|
|
|
|
|
for nr, vde_socket, _, _ in vde_sockets:
|
|
|
|
|
os.environ["QEMU_VDE_SOCKET_{}".format(nr)] = vde_socket
|
|
|
|
|
|
2020-09-07 11:26:28 +01:00
|
|
|
|
machines = [
|
|
|
|
|
create_machine({"startCommand": s, "keepVmState": cli_args.keep_vm_state})
|
|
|
|
|
for s in vm_scripts
|
|
|
|
|
]
|
2019-09-06 08:25:22 +01:00
|
|
|
|
machine_eval = [
|
2020-08-30 23:42:06 +01:00
|
|
|
|
"{0} = machines[{1}]".format(m.name, idx) for idx, m in enumerate(machines)
|
2019-09-06 08:25:22 +01:00
|
|
|
|
]
|
|
|
|
|
exec("\n".join(machine_eval))
|
|
|
|
|
|
|
|
|
|
@atexit.register
|
2019-11-08 10:01:29 +00:00
|
|
|
|
def clean_up() -> None:
|
2020-08-30 23:42:06 +01:00
|
|
|
|
with log.nested("cleaning up"):
|
|
|
|
|
for machine in machines:
|
|
|
|
|
if machine.pid is None:
|
|
|
|
|
continue
|
|
|
|
|
log.log("killing {} (pid {})".format(machine.name, machine.pid))
|
|
|
|
|
machine.process.kill()
|
|
|
|
|
for _, _, process, _ in vde_sockets:
|
|
|
|
|
process.terminate()
|
|
|
|
|
log.close()
|
2019-09-06 08:25:22 +01:00
|
|
|
|
|
|
|
|
|
tic = time.time()
|
|
|
|
|
run_tests()
|
|
|
|
|
toc = time.time()
|
|
|
|
|
print("test script finished in {:.2f}s".format(toc - tic))
|