esds/tests/run.py

42 lines
1.6 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2022-09-01 10:24:55 +02:00
2022-09-02 10:01:16 +02:00
import os,subprocess,time,sys
2022-09-01 10:24:55 +02:00
2022-09-02 10:01:16 +02:00
##### Setup variables
2022-09-01 11:02:55 +02:00
tests_timeout=20 # Max duration of a test
tests_path = os.path.dirname(os.path.realpath(__file__))
2022-09-02 10:01:16 +02:00
##### Run all tests
2022-09-01 11:02:55 +02:00
for file in os.listdir(tests_path):
current_test_path=os.path.join(tests_path,file)
if os.path.isdir(current_test_path):
platform_path=os.path.join(current_test_path,"platform.yaml")
2022-09-01 11:02:55 +02:00
out_path=os.path.join(current_test_path,"out")
2022-09-01 13:33:18 +02:00
print("- %-40s%s " % (file,"=>"),end='')
2022-09-01 10:24:55 +02:00
try:
2022-09-01 13:33:18 +02:00
start_at=time.time()
out=subprocess.check_output(["esds", "run", platform_path],stderr=subprocess.STDOUT,timeout=tests_timeout,encoding="utf-8")
2022-09-01 11:02:55 +02:00
out_expected=open(out_path).read()
2022-09-01 13:33:18 +02:00
end_at=time.time()
2022-09-01 11:02:55 +02:00
if out_expected != out:
2022-09-01 10:24:55 +02:00
print("failed :(")
print("------------- Expected -------------")
2022-09-01 11:02:55 +02:00
print(out_expected,end="")
2022-09-01 10:24:55 +02:00
print("------------- Got -------------")
print(out,end="")
else:
2022-09-01 13:33:18 +02:00
print("passed (%0.1fs)"%(end_at-start_at))
2022-09-01 10:24:55 +02:00
except subprocess.TimeoutExpired as err:
print("failed :(")
2022-09-02 10:01:16 +02:00
print("------------- Test duration expired (timeout="+str(tests_timeout)+"s) -------------")
2022-09-01 17:53:42 +02:00
print(err.output,end="")
2022-09-01 10:24:55 +02:00
exit(1)
except subprocess.CalledProcessError as err:
print("failed :(")
2022-09-02 10:01:16 +02:00
print("------------- Test has a non-zero exit code -------------")
2022-09-01 17:53:42 +02:00
print(err.output,end="")
2022-09-01 10:24:55 +02:00
exit(2)
except Exception as err:
print("failed :(")
print("Reason: "+str(err))
exit(3)