forked from KolibriOS/kolibrios
git-svn-id: svn://kolibrios.org@9316 a494cfbc-eb01-0410-851d-a64ba20cac60
96 lines
3.0 KiB
Python
96 lines
3.0 KiB
Python
# Copyright 2021 KolibriOS Team
|
|
# Copyright 2021 Nekos Team
|
|
# Published under MIT License
|
|
|
|
import io
|
|
import os
|
|
import subprocess
|
|
import timeit
|
|
import time
|
|
import shlex
|
|
import signal
|
|
from . makeflop import Floppy
|
|
|
|
class TestTimeoutException(Exception):
|
|
pass
|
|
|
|
class TestFailureException(Exception):
|
|
pass
|
|
|
|
class Qemu:
|
|
def __init__(self, popen):
|
|
self.popen = popen
|
|
# Qemu needs time to create debug.log file
|
|
while not os.path.exists("debug.log"):
|
|
self.wait()
|
|
self.debug = open("debug.log", "rb")
|
|
self.monitor_in = open("monitor.pipe.in", "wb")
|
|
|
|
def wait_for_debug_log(self, needle, timeout = 1):
|
|
needle = bytes(needle, "utf-8")
|
|
start = timeit.default_timer()
|
|
log = b""
|
|
|
|
# While no timeout, read and search logs
|
|
while timeit.default_timer() - start < timeout:
|
|
log += self.debug.read(1)
|
|
if needle in log:
|
|
return
|
|
|
|
# We don't have to read whole logs to find the neddle
|
|
# If we read len(needle) * 2 bytes of log then we
|
|
# already can say that if there's no needle in the data
|
|
# then it can't be in first len(needle) bytes of the data
|
|
# so first len(needle) bytes of saved logs may be thrown away
|
|
#
|
|
# So we consume lessser memory and don't search all the previous
|
|
# logs every single time
|
|
if len(log) > len(needle) * 2:
|
|
log = log[len(needle):]
|
|
|
|
self.timeout()
|
|
|
|
def kill(self):
|
|
os.killpg(os.getpgid(self.popen.pid), signal.SIGTERM)
|
|
|
|
def failure(self):
|
|
self.kill()
|
|
raise TestFailureException()
|
|
|
|
def timeout(self):
|
|
self.kill()
|
|
raise TestTimeoutException()
|
|
|
|
def wait(self, seconds = 0.25):
|
|
time.sleep(seconds)
|
|
|
|
def send_keys(self, keys):
|
|
for key in keys.split():
|
|
self.send_monitor_command(f"sendkey {key}")
|
|
|
|
def take_screenshot(self, fname):
|
|
self.send_monitor_command(f"screendump {fname}")
|
|
|
|
def send_monitor_command(self, command):
|
|
self.monitor_in.write(bytes(command + "\n", "utf-8"))
|
|
self.monitor_in.flush()
|
|
|
|
def images_diff(self, i0, i1, expect=True):
|
|
diff = bool(os.system(f"perceptualdiff {i0} {i1} > /dev/null"))
|
|
if diff != expect:
|
|
self.failure()
|
|
|
|
def run():
|
|
if os.path.exists("debug.log"):
|
|
os.remove("debug.log")
|
|
if os.path.exists("monitor.pipe.in"):
|
|
os.remove("monitor.pipe.in")
|
|
if os.path.exists("monitor.pipe.out"):
|
|
os.remove("monitor.pipe.out")
|
|
os.system("mkfifo monitor.pipe.in monitor.pipe.out")
|
|
s = f"qemu-system-i386 -nographic -monitor pipe:monitor.pipe -debugcon file:debug.log -L . -m 128 -drive format=raw,file=../../kolibri_test.img,index=0,if=floppy -boot a -vga vmware -net nic,model=rtl8139 -net user -soundhw ac97"
|
|
a = shlex.split(s)
|
|
popen = subprocess.Popen(a, bufsize = 0, stdout = subprocess.DEVNULL, stderr = subprocess.DEVNULL, stdin = subprocess.DEVNULL, start_new_session = True)
|
|
return Qemu(popen)
|
|
|