2021-11-09 10:15:22 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2023-09-22 11:17:13 +00:00
|
|
|
import json
|
2021-11-09 10:15:22 +00:00
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import subprocess
|
2024-02-06 12:39:34 +00:00
|
|
|
import sys
|
2023-09-22 11:16:46 +00:00
|
|
|
from pathlib import Path
|
2024-01-04 15:35:09 +00:00
|
|
|
from typing import Tuple
|
2021-11-09 10:15:22 +00:00
|
|
|
|
2021-11-12 11:07:54 +00:00
|
|
|
from build_download_helper import download_unit_tests
|
2024-02-06 12:39:34 +00:00
|
|
|
from docker_images_helper import get_docker_image, pull_image
|
2023-12-18 08:07:22 +00:00
|
|
|
from env_helper import REPORT_PATH, TEMP_PATH
|
2024-02-06 12:39:34 +00:00
|
|
|
from report import ERROR, FAIL, FAILURE, OK, SUCCESS, JobReport, TestResult, TestResults
|
2023-01-03 14:23:19 +00:00
|
|
|
from stopwatch import Stopwatch
|
2021-12-03 08:33:16 +00:00
|
|
|
from tee_popen import TeePopen
|
2021-11-09 10:15:22 +00:00
|
|
|
|
|
|
|
IMAGE_NAME = "clickhouse/unit-test"
|
2022-03-22 16:39:58 +00:00
|
|
|
|
2021-11-09 10:15:22 +00:00
|
|
|
|
|
|
|
def get_test_name(line):
|
|
|
|
elements = reversed(line.split(" "))
|
|
|
|
for element in elements:
|
|
|
|
if "(" not in element and ")" not in element:
|
|
|
|
return element
|
2024-02-26 18:25:02 +00:00
|
|
|
raise ValueError(f"No test name in line '{line}'")
|
2021-11-09 10:15:22 +00:00
|
|
|
|
2022-03-22 16:39:58 +00:00
|
|
|
|
2022-11-16 09:12:07 +00:00
|
|
|
def process_results(
|
2023-09-22 11:17:13 +00:00
|
|
|
result_directory: Path,
|
|
|
|
) -> Tuple[str, str, TestResults]:
|
|
|
|
"""The json is described by the next proto3 scheme:
|
|
|
|
(It's wrong, but that's a copy/paste from
|
|
|
|
https://google.github.io/googletest/advanced.html#generating-a-json-report)
|
|
|
|
|
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package googletest;
|
|
|
|
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
import "google/protobuf/duration.proto";
|
|
|
|
|
|
|
|
message UnitTest {
|
|
|
|
int32 tests = 1;
|
|
|
|
int32 failures = 2;
|
|
|
|
int32 disabled = 3;
|
|
|
|
int32 errors = 4;
|
|
|
|
google.protobuf.Timestamp timestamp = 5;
|
|
|
|
google.protobuf.Duration time = 6;
|
|
|
|
string name = 7;
|
|
|
|
repeated TestCase testsuites = 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
message TestCase {
|
|
|
|
string name = 1;
|
|
|
|
int32 tests = 2;
|
|
|
|
int32 failures = 3;
|
|
|
|
int32 disabled = 4;
|
|
|
|
int32 errors = 5;
|
|
|
|
google.protobuf.Duration time = 6;
|
|
|
|
repeated TestInfo testsuite = 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
message TestInfo {
|
|
|
|
string name = 1;
|
|
|
|
string file = 6;
|
|
|
|
int32 line = 7;
|
|
|
|
enum Status {
|
|
|
|
RUN = 0;
|
|
|
|
NOTRUN = 1;
|
|
|
|
}
|
|
|
|
Status status = 2;
|
|
|
|
google.protobuf.Duration time = 3;
|
|
|
|
string classname = 4;
|
|
|
|
message Failure {
|
|
|
|
string failures = 1;
|
|
|
|
string type = 2;
|
|
|
|
}
|
|
|
|
repeated Failure failures = 5;
|
|
|
|
}"""
|
2021-11-09 10:15:22 +00:00
|
|
|
|
2023-01-03 14:23:19 +00:00
|
|
|
test_results = [] # type: TestResults
|
2023-09-22 11:17:13 +00:00
|
|
|
report_path = result_directory / "test_result.json"
|
|
|
|
if not report_path.exists():
|
|
|
|
logging.info("No output log on path %s", report_path)
|
2023-09-28 09:22:38 +00:00
|
|
|
return ERROR, "No output log", test_results
|
2023-09-22 11:17:13 +00:00
|
|
|
|
|
|
|
with open(report_path, "r", encoding="utf-8") as j:
|
|
|
|
report = json.load(j)
|
|
|
|
|
|
|
|
total_counter = report["tests"]
|
|
|
|
failed_counter = report["failures"]
|
|
|
|
error_counter = report["errors"]
|
|
|
|
|
2021-11-09 10:15:22 +00:00
|
|
|
description = ""
|
2023-09-22 11:17:13 +00:00
|
|
|
SEGFAULT = "Segmentation fault. "
|
|
|
|
SIGNAL = "Exit on signal. "
|
|
|
|
for suite in report["testsuites"]:
|
|
|
|
suite_name = suite["name"]
|
|
|
|
for test_case in suite["testsuite"]:
|
|
|
|
case_name = test_case["name"]
|
|
|
|
test_time = float(test_case["time"][:-1])
|
|
|
|
raw_logs = None
|
|
|
|
if "failures" in test_case:
|
|
|
|
raw_logs = ""
|
|
|
|
for failure in test_case["failures"]:
|
2024-02-06 12:39:34 +00:00
|
|
|
raw_logs += failure[FAILURE]
|
2023-09-22 11:17:13 +00:00
|
|
|
if (
|
|
|
|
"Segmentation fault" in raw_logs # type: ignore
|
|
|
|
and SEGFAULT not in description
|
|
|
|
):
|
|
|
|
description += SEGFAULT
|
|
|
|
if (
|
|
|
|
"received signal SIG" in raw_logs # type: ignore
|
|
|
|
and SIGNAL not in description
|
|
|
|
):
|
|
|
|
description += SIGNAL
|
|
|
|
if test_case["status"] == "NOTRUN":
|
|
|
|
test_status = "SKIPPED"
|
|
|
|
elif raw_logs is None:
|
|
|
|
test_status = OK
|
|
|
|
else:
|
|
|
|
test_status = FAIL
|
|
|
|
|
|
|
|
test_results.append(
|
|
|
|
TestResult(
|
|
|
|
f"{suite_name}.{case_name}",
|
|
|
|
test_status,
|
|
|
|
test_time,
|
|
|
|
raw_logs=raw_logs,
|
|
|
|
)
|
|
|
|
)
|
2021-11-09 10:15:22 +00:00
|
|
|
|
2023-09-28 09:22:38 +00:00
|
|
|
check_status = SUCCESS
|
|
|
|
tests_status = OK
|
|
|
|
tests_time = float(report["time"][:-1])
|
|
|
|
if failed_counter:
|
|
|
|
check_status = FAILURE
|
|
|
|
test_status = FAIL
|
|
|
|
if error_counter:
|
|
|
|
check_status = ERROR
|
|
|
|
test_status = ERROR
|
|
|
|
test_results.append(TestResult(report["name"], tests_status, tests_time))
|
|
|
|
|
2021-11-09 10:15:22 +00:00
|
|
|
if not description:
|
|
|
|
description += (
|
2023-09-22 11:17:13 +00:00
|
|
|
f"fail: {failed_counter + error_counter}, "
|
|
|
|
f"passed: {total_counter - failed_counter - error_counter}"
|
2022-03-22 16:39:58 +00:00
|
|
|
)
|
2021-11-09 10:15:22 +00:00
|
|
|
|
2023-09-28 09:22:38 +00:00
|
|
|
return check_status, description, test_results
|
2021-11-09 10:15:22 +00:00
|
|
|
|
|
|
|
|
2023-01-03 14:23:19 +00:00
|
|
|
def main():
|
2021-11-09 10:15:22 +00:00
|
|
|
logging.basicConfig(level=logging.INFO)
|
2021-11-19 14:47:04 +00:00
|
|
|
|
|
|
|
stopwatch = Stopwatch()
|
|
|
|
|
2023-12-18 08:07:22 +00:00
|
|
|
check_name = sys.argv[1] if len(sys.argv) > 1 else os.getenv("CHECK_NAME")
|
|
|
|
assert (
|
|
|
|
check_name
|
|
|
|
), "Check name must be provided as an input arg or in CHECK_NAME env"
|
2021-11-09 10:15:22 +00:00
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
temp_path = Path(TEMP_PATH)
|
|
|
|
temp_path.mkdir(parents=True, exist_ok=True)
|
2021-11-09 10:15:22 +00:00
|
|
|
|
2023-12-18 08:07:22 +00:00
|
|
|
docker_image = pull_image(get_docker_image(IMAGE_NAME))
|
2021-11-09 10:15:22 +00:00
|
|
|
|
2024-03-19 13:01:31 +00:00
|
|
|
download_unit_tests(check_name, REPORT_PATH, temp_path)
|
2021-11-12 19:57:26 +00:00
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
tests_binary = temp_path / "unit_tests_dbms"
|
|
|
|
os.chmod(tests_binary, 0o777)
|
2021-11-09 10:15:22 +00:00
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
test_output = temp_path / "test_output"
|
|
|
|
test_output.mkdir(parents=True, exist_ok=True)
|
2021-11-09 10:15:22 +00:00
|
|
|
|
2024-08-01 16:59:17 +00:00
|
|
|
# Don't run ASAN under gdb since that breaks leak detection
|
|
|
|
gdb_enabled = "NO_GDB" if "asan" in check_name else "GDB"
|
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
run_command = (
|
|
|
|
f"docker run --cap-add=SYS_PTRACE --volume={tests_binary}:/unit_tests_dbms "
|
2024-02-25 22:49:25 +00:00
|
|
|
"--security-opt seccomp=unconfined " # required to issue io_uring sys-calls
|
2024-08-01 16:59:17 +00:00
|
|
|
f"--volume={test_output}:/test_output {docker_image} ${gdb_enabled}"
|
2023-09-22 11:16:46 +00:00
|
|
|
)
|
2021-11-09 10:15:22 +00:00
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
run_log_path = test_output / "run.log"
|
2021-11-09 10:15:22 +00:00
|
|
|
|
|
|
|
logging.info("Going to run func tests: %s", run_command)
|
|
|
|
|
2021-12-03 08:33:16 +00:00
|
|
|
with TeePopen(run_command, run_log_path) as process:
|
|
|
|
retcode = process.wait()
|
|
|
|
if retcode == 0:
|
|
|
|
logging.info("Run successfully")
|
|
|
|
else:
|
|
|
|
logging.info("Run failed")
|
2021-11-09 10:15:22 +00:00
|
|
|
|
2023-01-26 16:16:05 +00:00
|
|
|
subprocess.check_call(f"sudo chown -R ubuntu:ubuntu {TEMP_PATH}", shell=True)
|
2021-11-09 10:15:22 +00:00
|
|
|
|
2023-09-22 11:17:13 +00:00
|
|
|
state, description, test_results = process_results(test_output)
|
2024-01-04 15:35:09 +00:00
|
|
|
additional_files = [run_log_path] + [
|
|
|
|
p for p in test_output.iterdir() if not p.is_dir()
|
|
|
|
]
|
|
|
|
JobReport(
|
|
|
|
description=description,
|
|
|
|
test_results=test_results,
|
|
|
|
status=state,
|
|
|
|
start_time=stopwatch.start_time_str,
|
|
|
|
duration=stopwatch.duration_seconds,
|
|
|
|
additional_files=additional_files,
|
|
|
|
).dump()
|
2022-03-29 12:41:47 +00:00
|
|
|
|
2024-02-06 12:39:34 +00:00
|
|
|
if state == FAILURE:
|
2022-03-29 12:41:47 +00:00
|
|
|
sys.exit(1)
|
2023-01-03 14:23:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|