ClickHouse/tests/ci/unit_tests_check.py

181 lines
5.5 KiB
Python
Raw Normal View History

2021-11-09 10:15:22 +00:00
#!/usr/bin/env python3
import logging
import os
import sys
import subprocess
from github import Github
2022-08-10 13:22:04 +00:00
from env_helper import TEMP_PATH, REPO_COPY, REPORTS_PATH, S3_URL
2021-11-09 10:15:22 +00:00
from s3_helper import S3Helper
from get_robot_token import get_best_robot_token
2021-11-26 14:00:09 +00:00
from pr_info import PRInfo
2021-11-12 11:07:54 +00:00
from build_download_helper import download_unit_tests
2021-11-12 11:39:00 +00:00
from upload_result_helper import upload_results
2021-11-12 12:13:13 +00:00
from docker_pull_helper import get_image_with_version
2021-11-12 12:36:25 +00:00
from commit_status_helper import post_commit_status
from clickhouse_helper import (
ClickHouseHelper,
mark_flaky_tests,
prepare_tests_results_for_clickhouse,
)
2021-11-19 14:47:04 +00:00
from stopwatch import Stopwatch
2021-12-01 14:23:51 +00:00
from rerun_helper import RerunHelper
2021-12-03 08:33:16 +00:00
from tee_popen import TeePopen
2021-11-19 14:47:04 +00:00
2021-11-09 10:15:22 +00:00
IMAGE_NAME = "clickhouse/unit-test"
2021-11-09 10:15:22 +00:00
def get_test_name(line):
elements = reversed(line.split(" "))
2021-11-09 10:15:22 +00:00
for element in elements:
if "(" not in element and ")" not in element:
2021-11-09 10:15:22 +00:00
return element
raise Exception(f"No test name in line '{line}'")
2021-11-09 10:15:22 +00:00
def process_result(result_folder):
OK_SIGN = "OK ]"
FAILED_SIGN = "FAILED ]"
SEGFAULT = "Segmentation fault"
SIGNAL = "received signal SIG"
PASSED = "PASSED"
2021-11-09 10:15:22 +00:00
summary = []
total_counter = 0
failed_counter = 0
result_log_path = f"{result_folder}/test_result.txt"
2021-11-09 10:15:22 +00:00
if not os.path.exists(result_log_path):
logging.info("No output log on path %s", result_log_path)
return "error", "No output log", summary, []
status = "success"
description = ""
passed = False
with open(result_log_path, "r", encoding="utf-8") as test_result:
2021-11-09 10:15:22 +00:00
for line in test_result:
if OK_SIGN in line:
logging.info("Found ok line: '%s'", line)
test_name = get_test_name(line.strip())
logging.info("Test name: '%s'", test_name)
summary.append((test_name, "OK"))
total_counter += 1
elif FAILED_SIGN in line and "listed below" not in line and "ms)" in line:
2021-11-09 10:15:22 +00:00
logging.info("Found fail line: '%s'", line)
test_name = get_test_name(line.strip())
logging.info("Test name: '%s'", test_name)
summary.append((test_name, "FAIL"))
total_counter += 1
failed_counter += 1
elif SEGFAULT in line:
logging.info("Found segfault line: '%s'", line)
status = "failure"
description += "Segmentation fault. "
break
elif SIGNAL in line:
logging.info("Received signal line: '%s'", line)
status = "failure"
description += "Exit on signal. "
break
elif PASSED in line:
logging.info("PASSED record found: '%s'", line)
passed = True
if not passed:
status = "failure"
description += "PASSED record not found. "
if failed_counter != 0:
status = "failure"
if not description:
description += (
f"fail: {failed_counter}, passed: {total_counter - failed_counter}"
)
2021-11-09 10:15:22 +00:00
return status, description, summary, [result_log_path]
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO)
2021-11-19 14:47:04 +00:00
stopwatch = Stopwatch()
2021-11-26 14:00:09 +00:00
temp_path = TEMP_PATH
repo_path = REPO_COPY
reports_path = REPORTS_PATH
2021-11-09 10:15:22 +00:00
check_name = sys.argv[1]
if not os.path.exists(temp_path):
os.makedirs(temp_path)
2021-11-26 14:00:09 +00:00
pr_info = PRInfo()
2021-11-09 10:15:22 +00:00
gh = Github(get_best_robot_token(), per_page=100)
2021-11-09 10:15:22 +00:00
2021-12-01 14:23:51 +00:00
rerun_helper = RerunHelper(gh, pr_info, check_name)
if rerun_helper.is_already_finished_by_status():
logging.info("Check is already finished according to github status, exiting")
sys.exit(0)
2021-11-12 12:13:13 +00:00
docker_image = get_image_with_version(reports_path, IMAGE_NAME)
2021-11-09 10:15:22 +00:00
2021-11-12 11:07:54 +00:00
download_unit_tests(check_name, reports_path, temp_path)
2021-11-12 19:57:26 +00:00
2021-11-09 10:15:22 +00:00
tests_binary_path = os.path.join(temp_path, "unit_tests_dbms")
os.chmod(tests_binary_path, 0o777)
test_output = os.path.join(temp_path, "test_output")
if not os.path.exists(test_output):
os.makedirs(test_output)
run_command = f"docker run --cap-add=SYS_PTRACE --volume={tests_binary_path}:/unit_tests_dbms --volume={test_output}:/test_output {docker_image}"
run_log_path = os.path.join(test_output, "runlog.log")
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
subprocess.check_call(f"sudo chown -R ubuntu:ubuntu {temp_path}", shell=True)
2022-08-10 13:22:04 +00:00
s3_helper = S3Helper(S3_URL)
2021-11-09 10:15:22 +00:00
state, description, test_results, additional_logs = process_result(test_output)
2021-11-19 14:47:04 +00:00
ch_helper = ClickHouseHelper()
mark_flaky_tests(ch_helper, check_name, test_results)
report_url = upload_results(
s3_helper,
pr_info.number,
pr_info.sha,
test_results,
[run_log_path] + additional_logs,
check_name,
)
2021-11-09 10:15:22 +00:00
print(f"::notice ::Report url: {report_url}")
2021-11-12 12:36:25 +00:00
post_commit_status(gh, pr_info.sha, check_name, description, state, report_url)
2021-11-19 14:47:04 +00:00
prepared_events = prepare_tests_results_for_clickhouse(
pr_info,
test_results,
state,
stopwatch.duration_seconds,
stopwatch.start_time_str,
report_url,
check_name,
)
2022-03-29 19:06:50 +00:00
ch_helper.insert_events_into(db="default", table="checks", events=prepared_events)
2022-03-29 12:41:47 +00:00
if state == "error":
sys.exit(1)