ClickHouse/tests/ci/functional_test_check.py

207 lines
7.9 KiB
Python
Raw Normal View History

2021-10-27 07:21:48 +00:00
#!/usr/bin/env python3
2021-10-28 07:29:13 +00:00
2021-10-27 07:21:48 +00:00
import csv
import logging
import subprocess
import os
import sys
2021-10-28 07:39:16 +00:00
from github import Github
2021-10-28 07:29:13 +00:00
from s3_helper import S3Helper
from get_robot_token import get_best_robot_token
from pr_info import PRInfo, get_event
2021-11-12 11:07:54 +00:00
from build_download_helper import download_all_deb_packages
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, get_commit
2021-11-19 14:47:04 +00:00
from clickhouse_helper import ClickHouseHelper, mark_flaky_tests, prepare_tests_results_for_clickhouse
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-10-27 07:21:48 +00:00
def get_additional_envs(check_name, run_by_hash_num, run_by_hash_total):
result = []
2021-11-30 11:40:19 +00:00
if 'DatabaseReplicated' in check_name:
result.append("USE_DATABASE_REPLICATED=1")
2021-11-30 11:40:19 +00:00
if 'DatabaseOrdinary' in check_name:
result.append("USE_DATABASE_ORDINARY=1")
2021-11-30 11:40:19 +00:00
if 'wide parts enabled' in check_name:
result.append("USE_POLYMORPHIC_PARTS=1")
2021-11-30 11:40:19 +00:00
if run_by_hash_total != 0:
result.append(f"RUN_BY_HASH_NUM={run_by_hash_num}")
result.append(f"RUN_BY_HASH_TOTAL={run_by_hash_total}")
return result
2021-10-27 07:21:48 +00:00
def get_image_name(check_name):
if 'stateless' in check_name.lower():
return 'clickhouse/stateless-test'
if 'stateful' in check_name.lower():
return 'clickhouse/stateful-test'
2021-10-27 08:02:30 +00:00
else:
raise Exception(f"Cannot deduce image name based on check name {check_name}")
2021-10-27 07:21:48 +00:00
2021-11-10 13:49:19 +00:00
def get_run_command(builds_path, result_path, server_log_path, kill_timeout, additional_envs, image, flaky_check, tests_to_run):
2021-10-27 07:21:48 +00:00
additional_options = ['--hung-check']
additional_options.append('--print-time')
2021-11-10 13:49:19 +00:00
if tests_to_run:
additional_options += tests_to_run
2021-10-27 07:21:48 +00:00
additional_options_str = '-e ADDITIONAL_OPTIONS="' + ' '.join(additional_options) + '"'
2021-10-28 09:26:59 +00:00
envs = [f'-e MAX_RUN_TIME={int(0.9 * kill_timeout)}', '-e S3_URL="https://clickhouse-datasets.s3.amazonaws.com"']
2021-11-10 13:49:19 +00:00
if flaky_check:
envs += ['-e NUM_TRIES=100', '-e MAX_RUN_TIME=1800']
2021-10-27 07:21:48 +00:00
envs += [f'-e {e}' for e in additional_envs]
2021-11-10 13:49:19 +00:00
2021-10-27 07:21:48 +00:00
env_str = ' '.join(envs)
return f"docker run --volume={builds_path}:/package_folder " \
f"--volume={result_path}:/test_output --volume={server_log_path}:/var/log/clickhouse-server " \
2021-10-27 09:58:21 +00:00
f"--cap-add=SYS_PTRACE {env_str} {additional_options_str} {image}"
2021-10-27 07:21:48 +00:00
2021-11-10 13:49:19 +00:00
def get_tests_to_run(pr_info):
result = set([])
if pr_info.changed_files is None:
return []
for fpath in pr_info.changed_files:
if 'tests/queries/0_stateless/0' in fpath:
logging.info('File %s changed and seems like stateless test', fpath)
fname = fpath.split('/')[3]
fname_without_ext = os.path.splitext(fname)[0]
result.add(fname_without_ext + '.')
return list(result)
2021-10-27 07:21:48 +00:00
def process_results(result_folder, server_log_path):
test_results = []
additional_files = []
# Just upload all files from result_folder.
# If task provides processed results, then it's responsible for content of result_folder.
if os.path.exists(result_folder):
test_files = [f for f in os.listdir(result_folder) if os.path.isfile(os.path.join(result_folder, f))]
additional_files = [os.path.join(result_folder, f) for f in test_files]
if os.path.exists(server_log_path):
server_log_files = [f for f in os.listdir(server_log_path) if os.path.isfile(os.path.join(server_log_path, f))]
additional_files = additional_files + [os.path.join(server_log_path, f) for f in server_log_files]
status_path = os.path.join(result_folder, "check_status.tsv")
logging.info("Found test_results.tsv")
2021-10-28 07:29:13 +00:00
with open(status_path, 'r', encoding='utf-8') as status_file:
status = list(csv.reader(status_file, delimiter='\t'))
2021-10-27 07:21:48 +00:00
if len(status) != 1 or len(status[0]) != 2:
return "error", "Invalid check_status.tsv", test_results, additional_files
state, description = status[0][0], status[0][1]
results_path = os.path.join(result_folder, "test_results.tsv")
2021-10-28 07:29:13 +00:00
with open(results_path, 'r', encoding='utf-8') as results_file:
test_results = list(csv.reader(results_file, delimiter='\t'))
2021-10-27 07:21:48 +00:00
if len(test_results) == 0:
raise Exception("Empty results")
return state, description, test_results, additional_files
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO)
2021-11-19 14:47:04 +00:00
stopwatch = Stopwatch()
2021-10-27 07:21:48 +00:00
temp_path = os.getenv("TEMP_PATH", os.path.abspath("."))
repo_path = os.getenv("REPO_COPY", os.path.abspath("../../"))
reports_path = os.getenv("REPORTS_PATH", "./reports")
check_name = sys.argv[1]
2021-11-12 11:07:54 +00:00
kill_timeout = int(sys.argv[2])
2021-11-10 13:49:19 +00:00
flaky_check = 'flaky' in check_name.lower()
2021-12-01 14:23:51 +00:00
gh = Github(get_best_robot_token())
pr_info = PRInfo(get_event(), need_changed_files=flaky_check)
if 'RUN_BY_HASH_NUM' in os.environ:
run_by_hash_num = int(os.getenv('RUN_BY_HASH_NUM'))
run_by_hash_total = int(os.getenv('RUN_BY_HASH_TOTAL'))
check_name_with_group = check_name + f' [{run_by_hash_num + 1}/{run_by_hash_total}]'
else:
run_by_hash_num = 0
run_by_hash_total = 0
check_name_with_group = check_name
rerun_helper = RerunHelper(gh, pr_info, check_name_with_group)
2021-12-01 14:23:51 +00:00
if rerun_helper.is_already_finished_by_status():
logging.info("Check is already finished according to github status, exiting")
sys.exit(0)
2021-10-27 07:21:48 +00:00
if not os.path.exists(temp_path):
os.makedirs(temp_path)
2021-11-10 13:49:19 +00:00
tests_to_run = []
if flaky_check:
tests_to_run = get_tests_to_run(pr_info)
if not tests_to_run:
commit = get_commit(gh, pr_info.sha)
commit.create_status(context=check_name_with_group, description='Not found changed stateless tests', state='success')
2021-11-10 13:49:19 +00:00
sys.exit(0)
2021-10-28 20:20:30 +00:00
2021-10-27 07:21:48 +00:00
image_name = get_image_name(check_name)
2021-11-12 12:13:13 +00:00
docker_image = get_image_with_version(reports_path, image_name)
2021-10-27 07:21:48 +00:00
packages_path = os.path.join(temp_path, "packages")
if not os.path.exists(packages_path):
os.makedirs(packages_path)
2021-11-12 12:13:13 +00:00
download_all_deb_packages(check_name, reports_path, packages_path)
2021-11-12 11:07:54 +00:00
2021-10-27 07:21:48 +00:00
server_log_path = os.path.join(temp_path, "server_log")
if not os.path.exists(server_log_path):
os.makedirs(server_log_path)
result_path = os.path.join(temp_path, "result_path")
if not os.path.exists(result_path):
os.makedirs(result_path)
run_log_path = os.path.join(result_path, "runlog.log")
additional_envs = get_additional_envs(check_name, run_by_hash_num, run_by_hash_total)
2021-11-30 11:40:19 +00:00
run_command = get_run_command(packages_path, result_path, server_log_path, kill_timeout, additional_envs, docker_image, flaky_check, tests_to_run)
2021-10-27 07:21:48 +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-10-27 07:21:48 +00:00
subprocess.check_call(f"sudo chown -R ubuntu:ubuntu {temp_path}", shell=True)
s3_helper = S3Helper('https://s3.amazonaws.com')
2021-10-27 13:51:13 +00:00
state, description, test_results, additional_logs = process_results(result_path, server_log_path)
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_with_group)
2021-11-12 12:36:25 +00:00
2021-10-28 07:29:13 +00:00
print(f"::notice ::Report url: {report_url}")
post_commit_status(gh, pr_info.sha, check_name_with_group, 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_with_group)
2021-11-19 14:47:04 +00:00
ch_helper.insert_events_into(db="gh-data", table="checks", events=prepared_events)
2021-11-25 10:01:29 +00:00
2021-11-25 13:41:38 +00:00
if state != 'success':
2021-12-01 09:50:36 +00:00
if 'force-tests' in pr_info.labels:
print("'force-tests' enabled, will report success")
else:
sys.exit(1)