ClickHouse/tests/ci/compatibility_check.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

206 lines
6.9 KiB
Python
Raw Normal View History

2021-11-10 10:17:19 +00:00
#!/usr/bin/env python3
from distutils.version import StrictVersion
import logging
import os
import subprocess
2021-12-01 14:23:51 +00:00
import sys
2021-11-10 10:17:19 +00:00
from github import Github
2022-08-11 13:01:32 +00:00
from env_helper import TEMP_PATH, REPO_COPY, REPORTS_PATH
2021-11-10 10:17:19 +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_builds_filter
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_images_with_versions
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-11-10 10:17:19 +00:00
IMAGE_UBUNTU = "clickhouse/test-old-ubuntu"
IMAGE_CENTOS = "clickhouse/test-old-centos"
MAX_GLIBC_VERSION = "2.4"
2021-11-10 10:17:19 +00:00
DOWNLOAD_RETRIES_COUNT = 5
CHECK_NAME = "Compatibility check"
2021-11-10 10:17:19 +00:00
2021-11-10 10:17:19 +00:00
def process_os_check(log_path):
name = os.path.basename(log_path)
with open(log_path, "r") as log:
line = log.read().split("\n")[0].strip()
if line != "OK":
2021-11-10 10:17:19 +00:00
return (name, "FAIL")
else:
return (name, "OK")
2021-11-10 10:17:19 +00:00
def process_glibc_check(log_path):
bad_lines = []
with open(log_path, "r") as log:
2021-11-10 10:17:19 +00:00
for line in log:
if line.strip():
columns = line.strip().split(" ")
2021-11-10 10:17:19 +00:00
symbol_with_glibc = columns[-2] # sysconf@GLIBC_2.2.5
_, version = symbol_with_glibc.split("@GLIBC_")
if version == "PRIVATE":
2021-11-10 10:17:19 +00:00
bad_lines.append((symbol_with_glibc, "FAIL"))
elif StrictVersion(version) > MAX_GLIBC_VERSION:
bad_lines.append((symbol_with_glibc, "FAIL"))
if not bad_lines:
bad_lines.append(("glibc check", "OK"))
return bad_lines
2021-11-10 10:17:19 +00:00
def process_result(result_folder, server_log_folder):
summary = process_glibc_check(os.path.join(result_folder, "glibc.log"))
status = "success"
description = "Compatibility check passed"
if len(summary) > 1 or summary[0][1] != "OK":
status = "failure"
description = "glibc check failed"
if status == "success":
for operating_system in ("ubuntu:12.04", "centos:5"):
result = process_os_check(os.path.join(result_folder, operating_system))
if result[1] != "OK":
status = "failure"
description = f"Old {operating_system} failed"
summary += [result]
break
summary += [result]
server_log_path = os.path.join(server_log_folder, "clickhouse-server.log")
stderr_log_path = os.path.join(server_log_folder, "stderr.log")
client_stderr_log_path = os.path.join(server_log_folder, "clientstderr.log")
result_logs = []
if os.path.exists(server_log_path):
result_logs.append(server_log_path)
if os.path.exists(stderr_log_path):
result_logs.append(stderr_log_path)
if os.path.exists(client_stderr_log_path):
result_logs.append(client_stderr_log_path)
return status, description, summary, result_logs
def get_run_commands(
build_path, result_folder, server_log_folder, image_centos, image_ubuntu
):
2021-11-10 10:17:19 +00:00
return [
f"readelf -s {build_path}/usr/bin/clickhouse | grep '@GLIBC_' > {result_folder}/glibc.log",
f"readelf -s {build_path}/usr/bin/clickhouse-odbc-bridge | grep '@GLIBC_' >> {result_folder}/glibc.log",
f"readelf -s {build_path}/usr/bin/clickhouse-library-bridge | grep '@GLIBC_' >> {result_folder}/glibc.log",
f"docker run --network=host --volume={build_path}/usr/bin/clickhouse:/clickhouse "
f"--volume={build_path}/etc/clickhouse-server:/config "
f"--volume={server_log_folder}:/var/log/clickhouse-server {image_ubuntu} > {result_folder}/ubuntu:12.04",
f"docker run --network=host --volume={build_path}/usr/bin/clickhouse:/clickhouse "
f"--volume={build_path}/etc/clickhouse-server:/config "
f"--volume={server_log_folder}:/var/log/clickhouse-server {image_centos} > {result_folder}/centos:5",
2021-11-10 10:17:19 +00:00
]
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-10 10:17:19 +00:00
2021-11-26 14:00:09 +00:00
pr_info = PRInfo()
2021-11-10 10:17:19 +00:00
gh = Github(get_best_robot_token(), per_page=100)
2021-11-10 10:17:19 +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_images = get_images_with_versions(reports_path, [IMAGE_CENTOS, IMAGE_UBUNTU])
2021-11-10 10:17:19 +00:00
packages_path = os.path.join(temp_path, "packages")
if not os.path.exists(packages_path):
os.makedirs(packages_path)
2021-11-12 11:07:54 +00:00
def url_filter(url):
return url.endswith(".deb") and (
"clickhouse-common-static_" in url or "clickhouse-server_" in url
)
2021-11-12 11:07:54 +00:00
2021-11-12 19:57:26 +00:00
download_builds_filter(CHECK_NAME, reports_path, packages_path, url_filter)
2021-11-12 11:07:54 +00:00
2021-11-10 10:17:19 +00:00
for f in os.listdir(packages_path):
if ".deb" in f:
2021-11-10 10:17:19 +00:00
full_path = os.path.join(packages_path, f)
subprocess.check_call(
f"dpkg -x {full_path} {packages_path} && rm {full_path}", shell=True
)
2021-11-10 10:17:19 +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_commands = get_run_commands(
packages_path, result_path, server_log_path, docker_images[0], docker_images[1]
)
2021-11-10 10:17:19 +00:00
state = "success"
for run_command in run_commands:
try:
logging.info("Running command %s", run_command)
subprocess.check_call(run_command, shell=True)
except subprocess.CalledProcessError as ex:
logging.info("Exception calling command %s", ex)
state = "failure"
2021-11-10 13:28:12 +00:00
subprocess.check_call(f"sudo chown -R ubuntu:ubuntu {temp_path}", shell=True)
2022-08-11 13:01:32 +00:00
s3_helper = S3Helper()
state, description, test_results, additional_logs = process_result(
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,
additional_logs,
CHECK_NAME,
)
2021-11-10 10:17:19 +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)