2021-11-05 02:52:56 +03:00
|
|
|
#!/usr/bin/python3
|
2021-11-25 23:53:33 +03:00
|
|
|
# Copyright 2021 Magomed Kostoev
|
2021-11-05 02:52:56 +03:00
|
|
|
# Published under MIT License
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
2021-11-26 00:54:29 +03:00
|
|
|
import urllib
|
2021-11-05 02:52:56 +03:00
|
|
|
from importlib.machinery import SourceFileLoader
|
2021-11-25 23:26:22 +03:00
|
|
|
from shutil import which
|
2021-11-05 02:52:56 +03:00
|
|
|
import timeit
|
|
|
|
import urllib.request
|
|
|
|
import subprocess
|
2021-11-27 00:38:46 +03:00
|
|
|
from threading import Thread
|
2021-11-05 02:52:56 +03:00
|
|
|
|
|
|
|
sys.path.append('test')
|
|
|
|
import common
|
|
|
|
|
2021-11-27 02:08:25 +03:00
|
|
|
enable_umka = False
|
|
|
|
|
2021-11-05 02:52:56 +03:00
|
|
|
def log(s, end = "\n"):
|
|
|
|
print(s, end = end, flush = True)
|
|
|
|
|
|
|
|
def execute(s, mute = False):
|
|
|
|
mute = ">/dev/null" if mute else ""
|
|
|
|
code = os.system(f"{s}{mute}")
|
|
|
|
if code:
|
|
|
|
print(f"Command returned {code}: \"{s}\"")
|
|
|
|
exit(-1)
|
|
|
|
|
|
|
|
def stage(name, command, mute = False):
|
|
|
|
print(f"{name}... ", end = "")
|
|
|
|
execute(command, mute = mute)
|
|
|
|
print("Done.")
|
|
|
|
|
2021-11-26 00:54:29 +03:00
|
|
|
def download(link, path):
|
|
|
|
log(f"Downloading {path}... ", end = "")
|
2021-11-26 00:57:16 +03:00
|
|
|
urllib.request.urlretrieve(link, path)
|
2021-11-26 00:54:29 +03:00
|
|
|
log("Done.")
|
|
|
|
|
2021-11-25 23:26:22 +03:00
|
|
|
def tool_exists(name):
|
|
|
|
assert(type(name) == str)
|
|
|
|
return which(name) != None
|
|
|
|
|
|
|
|
def check_tools(tools):
|
|
|
|
assert(type(tools) == tuple)
|
|
|
|
for name_package_pair in tools:
|
|
|
|
assert(type(name_package_pair) == tuple)
|
|
|
|
assert(len(name_package_pair) == 2)
|
|
|
|
assert(type(name_package_pair[0]) == str)
|
|
|
|
assert(type(name_package_pair[1]) == str)
|
|
|
|
|
|
|
|
not_exists = []
|
|
|
|
for name, package in tools:
|
|
|
|
if not tool_exists(name):
|
|
|
|
not_exists.append((name, package))
|
|
|
|
if len(not_exists) != 0:
|
|
|
|
log("Sorry, I can't find some tools:")
|
2021-11-25 23:32:59 +03:00
|
|
|
|
|
|
|
header_name = "Name"
|
|
|
|
header_package = "Package (probably)"
|
|
|
|
|
|
|
|
max_name_len = len(header_name)
|
|
|
|
max_package_name_len = len(header_package)
|
2021-11-25 23:26:22 +03:00
|
|
|
for name, package in not_exists:
|
|
|
|
if len(package) > max_package_name_len:
|
|
|
|
max_package_name_len = len(package)
|
|
|
|
if len(name) > max_name_len:
|
|
|
|
max_name_len = len(name)
|
|
|
|
|
|
|
|
def draw_row(name, package):
|
|
|
|
log(f" | {name.ljust(max_name_len)} | {package.ljust(max_package_name_len)} |")
|
|
|
|
|
|
|
|
def draw_line():
|
|
|
|
log(f" +-{'-' * max_name_len}-+-{'-' * max_package_name_len}-+")
|
|
|
|
|
|
|
|
draw_line()
|
2021-11-25 23:32:59 +03:00
|
|
|
draw_row(header_name, header_package)
|
2021-11-25 23:26:22 +03:00
|
|
|
draw_line()
|
|
|
|
for name, package in not_exists:
|
|
|
|
draw_row(name, package)
|
|
|
|
draw_line()
|
|
|
|
exit()
|
|
|
|
|
2021-11-27 00:30:41 +03:00
|
|
|
def prepare_test_img():
|
|
|
|
# TODO: Always recompile the kernel (after build system is done?)
|
2021-11-26 00:04:13 +03:00
|
|
|
# Get IMG
|
|
|
|
if not os.path.exists("kolibri_test.img"):
|
|
|
|
if len(sys.argv) == 1:
|
2021-11-26 00:54:29 +03:00
|
|
|
download("http://builds.kolibrios.org/eng/data/data/kolibri.img", "kolibri_test.img")
|
2021-11-26 00:04:13 +03:00
|
|
|
else:
|
|
|
|
builds_eng = sys.argv[1]
|
|
|
|
execute(f"cp {builds_eng}/data/data/kolibri.img kolibri_test.img")
|
|
|
|
|
2021-11-26 01:00:43 +03:00
|
|
|
# Open the IMG
|
|
|
|
with open("kolibri_test.img", "rb") as img:
|
|
|
|
img_data = img.read()
|
|
|
|
img = common.Floppy(img_data)
|
2021-11-27 00:30:41 +03:00
|
|
|
|
2021-11-26 01:00:43 +03:00
|
|
|
# Remove unuseful folders
|
|
|
|
img.delete_path("GAMES")
|
|
|
|
img.delete_path("DEMOS")
|
|
|
|
img.delete_path("3D")
|
2021-11-26 00:04:13 +03:00
|
|
|
|
|
|
|
# Get test kernel
|
|
|
|
if not os.path.exists("kernel.mnt.pretest"):
|
|
|
|
if len(sys.argv) == 1:
|
|
|
|
with open("lang.inc", "w") as lang_inc:
|
|
|
|
lang_inc.write("lang fix en\n")
|
|
|
|
execute("fasm bootbios.asm bootbios.bin.pretest -dpretest_build=1")
|
|
|
|
execute("fasm -m 65536 kernel.asm kernel.mnt.pretest -dpretest_build=1 -ddebug_com_base=0xe9")
|
|
|
|
else:
|
|
|
|
builds_eng = sys.argv[1]
|
|
|
|
execute(f"cp {builds_eng}/data/kernel/trunk/kernel.mnt.pretest kernel.mnt.pretest", mute = True)
|
|
|
|
|
|
|
|
# Put the kernel into IMG
|
2021-11-26 01:00:43 +03:00
|
|
|
with open("kernel.mnt.pretest", "rb") as kernel_mnt_pretest:
|
|
|
|
kernel_mnt_pretest_data = kernel_mnt_pretest.read()
|
2021-11-26 02:04:42 +03:00
|
|
|
img.add_file_path("KERNEL.MNT", kernel_mnt_pretest_data)
|
2021-11-26 01:00:43 +03:00
|
|
|
img.save("kolibri_test.img")
|
2021-11-27 00:30:41 +03:00
|
|
|
|
|
|
|
def collect_tests():
|
|
|
|
tests = []
|
|
|
|
|
2021-11-26 00:04:13 +03:00
|
|
|
# Collect tests from test folder (not recursively yet)
|
|
|
|
for test_folder in os.listdir("test"):
|
|
|
|
test_folder_path = f"test/{test_folder}"
|
|
|
|
test_file = f"{test_folder_path}/test.py"
|
2021-11-27 00:30:41 +03:00
|
|
|
|
2021-11-26 00:04:13 +03:00
|
|
|
if not os.path.isdir(test_folder_path):
|
|
|
|
continue
|
2021-11-27 00:30:41 +03:00
|
|
|
|
2021-11-26 00:04:13 +03:00
|
|
|
if os.path.exists(test_file):
|
|
|
|
tests.append(test_folder_path)
|
2021-11-27 00:30:41 +03:00
|
|
|
return tests
|
|
|
|
|
2021-11-27 02:13:22 +03:00
|
|
|
def collect_umka_tests():
|
|
|
|
tests = []
|
|
|
|
|
|
|
|
for test_file in os.listdir("umka/test"):
|
|
|
|
test_file_path = f"umka/test/{test_file}"
|
|
|
|
if not test_file.endswith(".t"):
|
|
|
|
continue
|
|
|
|
if not os.path.isfile(test_file_path):
|
|
|
|
continue
|
2021-11-27 13:48:59 +03:00
|
|
|
tests.append(test_file_path)
|
2021-11-27 02:13:22 +03:00
|
|
|
return tests
|
|
|
|
|
2021-11-27 00:56:18 +03:00
|
|
|
def run_tests_serially_thread(test, root_dir):
|
2021-11-26 00:04:13 +03:00
|
|
|
test_number = 1
|
|
|
|
for test in tests:
|
|
|
|
test_dir = f"{root_dir}/{test}"
|
|
|
|
|
|
|
|
print(f"[{test_number}/{len(tests)}] {test}... ", end = "", flush=True)
|
|
|
|
start = timeit.default_timer()
|
|
|
|
try:
|
2021-11-27 12:46:44 +03:00
|
|
|
SourceFileLoader("test", f"{test_dir}/test.py").load_module().run(root_dir, test_dir)
|
2021-11-26 00:04:13 +03:00
|
|
|
except common.TestTimeoutException:
|
|
|
|
result = "TIMEOUT"
|
|
|
|
except common.TestFailureException:
|
|
|
|
result = "FAILURE"
|
|
|
|
else:
|
|
|
|
result = "SUCCESS"
|
|
|
|
finish = timeit.default_timer()
|
|
|
|
print(f"{result} ({finish - start:.2f} seconds)")
|
|
|
|
|
|
|
|
test_number += 1
|
2021-11-27 00:38:46 +03:00
|
|
|
|
2021-11-27 00:56:18 +03:00
|
|
|
def run_tests_serially(tests, root_dir):
|
|
|
|
thread = Thread(target = run_tests_serially_thread, args = (tests, root_dir))
|
|
|
|
thread.start()
|
|
|
|
return thread
|
|
|
|
|
2021-11-27 02:08:25 +03:00
|
|
|
def gcc(fin, fout):
|
2021-11-27 12:23:17 +03:00
|
|
|
flags = "-m32 -std=c11 -g -O0 -masm=intel -fno-pie"
|
|
|
|
defines = "-D_FILE_OFFSET_BITS=64 -DNDEBUG -D_POSIX_C_SOURCE=200809L"
|
|
|
|
include = "-Iumka -Iumka/linux"
|
|
|
|
command = f"gcc {flags} {defines} {include} -c {fin} -o {fout}"
|
2021-11-27 02:08:25 +03:00
|
|
|
print(command)
|
|
|
|
os.system(command)
|
|
|
|
|
2021-11-27 12:23:17 +03:00
|
|
|
def build_umka_asm():
|
|
|
|
include = "INCLUDE=\"../../programs/develop/libraries/libcrash/hash\""
|
|
|
|
flags = "-dUEFI=1 -dextended_primary_loader=1 -dUMKA=1"
|
|
|
|
files = "umka/umka.asm umka/build/umka.o -s umka/build/umka.fas"
|
|
|
|
memory = "-m 2000000"
|
|
|
|
os.system(f"{include} fasm {flags} {files} {memory}")
|
|
|
|
|
2021-11-27 02:08:25 +03:00
|
|
|
def build_umka():
|
|
|
|
if not enable_umka:
|
|
|
|
return
|
|
|
|
if os.path.exists("umka_shell"):
|
|
|
|
return
|
2021-11-27 12:33:11 +03:00
|
|
|
os.makedirs("umka/build/linux", exist_ok = True)
|
2021-11-27 12:23:17 +03:00
|
|
|
sources = [ "umka_shell.c",
|
|
|
|
"shell.c",
|
|
|
|
"trace.c",
|
|
|
|
"trace_lbr.c",
|
|
|
|
"vdisk.c",
|
|
|
|
"vnet.c",
|
|
|
|
"lodepng.c",
|
|
|
|
"linux/pci.c",
|
|
|
|
"linux/thread.c",
|
|
|
|
"util.c" ]
|
2021-11-27 02:08:25 +03:00
|
|
|
sources = [f"umka/{f}" for f in sources]
|
2021-11-27 12:33:11 +03:00
|
|
|
objects = []
|
2021-11-27 02:08:25 +03:00
|
|
|
for source in sources:
|
2021-11-27 12:33:11 +03:00
|
|
|
object_path = source.replace("umka/", "umka/build/")
|
|
|
|
object_path = f"{object_path}.o"
|
|
|
|
gcc(source, object_path)
|
|
|
|
objects.append(object_path)
|
2021-11-27 12:23:17 +03:00
|
|
|
build_umka_asm()
|
2021-11-27 12:33:11 +03:00
|
|
|
objects.append("umka/build/umka.o")
|
|
|
|
objects = " ".join(objects)
|
2021-11-27 02:08:25 +03:00
|
|
|
os.system(f"gcc -m32 -no-pie -o umka_shell -static -T umka/umka.ld {objects}")
|
|
|
|
|
2021-11-27 13:48:59 +03:00
|
|
|
def create_relocated(root_dir, fname):
|
|
|
|
with open(fname, "rb") as f:
|
|
|
|
contents = f.read()
|
|
|
|
new_contents = contents.replace(b"../img", bytes(f"{root_dir}/umka/img", "ascii"))
|
|
|
|
new_contents = new_contents.replace(b"chess_image.rgb", bytes(f"{root_dir}/umka/test/chess_image.rgb", "ascii"))
|
|
|
|
outname = f"{fname}.o" # .o extension just to avoid indexing of the file
|
|
|
|
with open(outname, "wb") as f:
|
|
|
|
f.write(new_contents)
|
|
|
|
return outname
|
|
|
|
|
|
|
|
def run_umka_test(root_dir, test_file_path):
|
|
|
|
test = create_relocated(root_dir, test_file_path)
|
|
|
|
ref_log = create_relocated(root_dir, f"{test_file_path[:-2]}.ref.log")
|
|
|
|
out_log = create_relocated(root_dir, f"{test_file_path[:-2]}.out.log")
|
|
|
|
os.system(f"./umka_shell < {test} > {out_log}")
|
2021-11-27 02:28:38 +03:00
|
|
|
if os.system(f"cmp {ref_log} {out_log}") != 0:
|
|
|
|
print(f"FAILURE: {test_file_path}\n", end = "")
|
|
|
|
else:
|
|
|
|
print(f"SUCCESS: {test_file_path}\n", end = "")
|
|
|
|
|
2021-11-27 00:38:46 +03:00
|
|
|
if __name__ == "__main__":
|
|
|
|
root_dir = os.getcwd()
|
|
|
|
|
|
|
|
# Check available tools
|
|
|
|
tools = (("qemu-system-i386", "qemu-system-x86"),
|
|
|
|
("fasm", "fasm"))
|
|
|
|
check_tools(tools)
|
2021-11-26 00:04:13 +03:00
|
|
|
|
2021-11-27 00:38:46 +03:00
|
|
|
prepare_test_img()
|
2021-11-27 02:08:25 +03:00
|
|
|
build_umka()
|
2021-11-27 00:38:46 +03:00
|
|
|
tests = collect_tests()
|
2021-11-27 02:28:38 +03:00
|
|
|
umka_tests = collect_umka_tests()
|
2021-11-27 00:56:18 +03:00
|
|
|
serial_executor_thread = run_tests_serially(tests, root_dir)
|
|
|
|
serial_executor_thread.join()
|
2021-11-27 02:28:38 +03:00
|
|
|
if enable_umka:
|
|
|
|
for umka_test in umka_tests:
|
2021-11-27 13:48:59 +03:00
|
|
|
run_umka_test(root_dir, umka_test)
|
2021-11-27 00:56:18 +03:00
|
|
|
|