ClickHouse/tests/ci/ast_fuzzer_check.py

144 lines
5.2 KiB
Python
Raw Normal View History

2021-11-02 13:38:55 +00:00
#!/usr/bin/env python3
import logging
import subprocess
import os
import sys
from github import Github
from s3_helper import S3Helper
from get_robot_token import get_best_robot_token
from pr_info import PRInfo, get_event
from build_download_helper import get_build_name_for_check, get_build_urls
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
2021-11-19 14:47:04 +00:00
from clickhouse_helper import ClickHouseHelper, prepare_tests_results_for_clickhouse
from stopwatch import Stopwatch
2021-12-01 14:23:51 +00:00
from rerun_helper import RerunHelper
2021-11-02 13:38:55 +00:00
IMAGE_NAME = 'clickhouse/fuzzer'
def get_run_command(pr_number, sha, download_url, workspace_path, image):
return f'docker run --network=host --volume={workspace_path}:/workspace ' \
'--cap-add syslog --cap-add sys_admin ' \
2021-11-02 15:37:55 +00:00
f'-e PR_TO_TEST={pr_number} -e SHA_TO_TEST={sha} -e BINARY_URL_TO_DOWNLOAD="{download_url}" '\
2021-11-02 13:38:55 +00:00
f'{image}'
def get_commit(gh, commit_sha):
repo = gh.get_repo(os.getenv("GITHUB_REPOSITORY", "ClickHouse/ClickHouse"))
commit = repo.get_commit(commit_sha)
return commit
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO)
2021-11-19 14:47:04 +00:00
stopwatch = Stopwatch()
2021-11-02 13:38:55 +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]
if not os.path.exists(temp_path):
os.makedirs(temp_path)
pr_info = PRInfo(get_event())
2021-11-02 13:38:55 +00:00
gh = Github(get_best_robot_token())
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(temp_path, IMAGE_NAME)
2021-11-02 13:38:55 +00:00
build_name = get_build_name_for_check(check_name)
print(build_name)
urls = get_build_urls(build_name, reports_path)
2021-11-02 13:38:55 +00:00
if not urls:
raise Exception("No build URLs found")
for url in urls:
if url.endswith('/clickhouse'):
build_url = url
break
else:
raise Exception("Cannot binary clickhouse among build results")
logging.info("Got build url %s", build_url)
workspace_path = os.path.join(temp_path, 'workspace')
if not os.path.exists(workspace_path):
os.makedirs(workspace_path)
run_command = get_run_command(pr_info.number, pr_info.sha, build_url, workspace_path, docker_image)
logging.info("Going to run %s", run_command)
run_log_path = os.path.join(temp_path, "runlog.log")
with open(run_log_path, 'w', encoding='utf-8') as log:
with subprocess.Popen(run_command, shell=True, stderr=log, stdout=log) as process:
retcode = process.wait()
if retcode == 0:
logging.info("Run successfully")
else:
logging.info("Run failed")
subprocess.check_call(f"sudo chown -R ubuntu:ubuntu {temp_path}", shell=True)
check_name_lower = check_name.lower().replace('(', '').replace(')', '').replace(' ', '')
s3_prefix = f'{pr_info.number}/{pr_info.sha}/fuzzer_{check_name_lower}/'
paths = {
2021-11-02 15:37:55 +00:00
'runlog.log': run_log_path,
2021-11-02 19:29:58 +00:00
'main.log': os.path.join(workspace_path, 'main.log'),
'server.log': os.path.join(workspace_path, 'server.log'),
'fuzzer.log': os.path.join(workspace_path, 'fuzzer.log'),
'report.html': os.path.join(workspace_path, 'report.html'),
2021-11-02 13:38:55 +00:00
}
s3_helper = S3Helper('https://s3.amazonaws.com')
for f in paths:
try:
2021-11-02 19:29:58 +00:00
paths[f] = s3_helper.upload_test_report_to_s3(paths[f], s3_prefix + '/' + f)
except Exception as ex:
logging.info("Exception uploading file %s text %s", f, ex)
2021-11-02 13:38:55 +00:00
paths[f] = ''
2021-11-19 12:58:26 +00:00
report_url = f"{os.getenv('GITHUB_SERVER_URL')}/{os.getenv('GITHUB_REPOSITORY')}/actions/runs/{os.getenv('GITHUB_RUN_ID')}"
2021-11-02 15:37:55 +00:00
if paths['runlog.log']:
report_url = paths['runlog.log']
if paths['main.log']:
report_url = paths['main.log']
if paths['server.log']:
report_url = paths['server.log']
if paths['fuzzer.log']:
report_url = paths['fuzzer.log']
if paths['report.html']:
report_url = paths['report.html']
2021-11-02 13:38:55 +00:00
# Try to get status message saved by the fuzzer
try:
2021-11-02 19:29:58 +00:00
with open(os.path.join(workspace_path, 'status.txt'), 'r', encoding='utf-8') as status_f:
2021-11-02 13:38:55 +00:00
status = status_f.readline().rstrip('\n')
2021-11-02 19:29:58 +00:00
with open(os.path.join(workspace_path, 'description.txt'), 'r', encoding='utf-8') as desc_f:
2021-11-02 13:38:55 +00:00
description = desc_f.readline().rstrip('\n')[:140]
except:
status = 'failure'
description = 'Task failed: $?=' + str(retcode)
2021-11-19 14:47:04 +00:00
if 'fail' in status:
test_result = [(description, 'FAIL')]
else:
test_result = [(description, 'OK')]
ch_helper = ClickHouseHelper()
prepared_events = prepare_tests_results_for_clickhouse(pr_info, test_result, status, stopwatch.duration_seconds, stopwatch.start_time_str, report_url, check_name)
2021-11-02 13:38:55 +00:00
logging.info("Result: '%s', '%s', '%s'", status, description, report_url)
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, status, report_url)