ClickHouse/tests/ci/compatibility_check.py

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

232 lines
7.5 KiB
Python
Raw Normal View History

2021-11-10 10:17:19 +00:00
#!/usr/bin/env python3
import argparse
2021-11-10 10:17:19 +00:00
import logging
import os
2021-11-10 10:17:19 +00:00
import subprocess
2021-12-01 14:23:51 +00:00
import sys
from pathlib import Path
from typing import List, Tuple
2021-11-10 10:17:19 +00:00
# isort: off
from pip._vendor.packaging.version import Version
# isort: on
2021-11-12 11:07:54 +00:00
from build_download_helper import download_builds_filter
from docker_images_helper import DockerImage, get_docker_image, pull_image
from env_helper import REPORT_PATH, TEMP_PATH
from report import FAILURE, SUCCESS, JobReport, TestResult, TestResults
from stopwatch import Stopwatch
2021-11-10 10:17:19 +00:00
IMAGE_UBUNTU = "clickhouse/test-old-ubuntu"
IMAGE_CENTOS = "clickhouse/test-old-centos"
DOWNLOAD_RETRIES_COUNT = 5
2023-09-22 11:16:46 +00:00
def process_os_check(log_path: Path) -> TestResult:
name = log_path.name
2024-02-26 18:25:02 +00:00
with open(log_path, "r", encoding="utf-8") as log:
line = log.read().split("\n")[0].strip()
if line != "OK":
return TestResult(name, "FAIL")
2023-09-22 11:16:46 +00:00
return TestResult(name, "OK")
2021-11-10 10:17:19 +00:00
2023-09-22 11:16:46 +00:00
def process_glibc_check(log_path: Path, max_glibc_version: str) -> TestResults:
test_results = [] # type: TestResults
2024-02-26 18:25:02 +00:00
with open(log_path, "r", encoding="utf-8") 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":
test_results.append(TestResult(symbol_with_glibc, "FAIL"))
elif Version(version) > Version(max_glibc_version):
test_results.append(TestResult(symbol_with_glibc, "FAIL"))
if not test_results:
test_results.append(TestResult("glibc check", "OK"))
return test_results
2021-11-10 10:17:19 +00:00
def process_result(
2023-09-22 11:16:46 +00:00
result_directory: Path,
server_log_directory: Path,
2023-03-02 20:54:45 +00:00
check_glibc: bool,
check_distributions: bool,
max_glibc_version: str,
2023-09-22 11:16:46 +00:00
) -> Tuple[str, str, TestResults, List[Path]]:
glibc_log_path = result_directory / "glibc.log"
test_results = process_glibc_check(glibc_log_path, max_glibc_version)
2021-11-10 10:17:19 +00:00
status = SUCCESS
2021-11-10 10:17:19 +00:00
description = "Compatibility check passed"
2023-03-02 20:48:25 +00:00
if check_glibc:
if len(test_results) > 1 or test_results[0].status != "OK":
status = FAILURE
2023-03-02 20:48:25 +00:00
description = "glibc check failed"
if status == SUCCESS and check_distributions:
2021-11-10 10:17:19 +00:00
for operating_system in ("ubuntu:12.04", "centos:5"):
2023-09-22 11:16:46 +00:00
test_result = process_os_check(result_directory / operating_system)
if test_result.status != "OK":
status = FAILURE
2021-11-10 10:17:19 +00:00
description = f"Old {operating_system} failed"
test_results += [test_result]
2021-11-10 10:17:19 +00:00
break
test_results += [test_result]
2021-11-10 10:17:19 +00:00
2023-09-22 11:16:46 +00:00
result_logs = [
p
for p in [
server_log_directory / name
for name in ("clickhouse-server.log", "stderr.log", "clientstderr.log")
]
+ [glibc_log_path]
if p.exists()
]
2021-11-10 10:17:19 +00:00
return status, description, test_results, result_logs
2021-11-10 10:17:19 +00:00
2023-09-22 11:16:46 +00:00
def get_run_commands_glibc(build_path: Path, result_directory: Path) -> List[str]:
2021-11-10 10:17:19 +00:00
return [
2023-09-22 11:16:46 +00:00
f"readelf -s --wide {build_path}/usr/bin/clickhouse | "
f"grep '@GLIBC_' > {result_directory}/glibc.log",
f"readelf -s --wide {build_path}/usr/bin/clickhouse-odbc-bridge | "
f"grep '@GLIBC_' >> {result_directory}/glibc.log",
f"readelf -s --wide {build_path}/usr/bin/clickhouse-library-bridge | "
f"grep '@GLIBC_' >> {result_directory}/glibc.log",
]
def get_run_commands_distributions(
2023-09-22 11:16:46 +00:00
build_path: Path,
result_directory: Path,
server_log_directory: Path,
image_centos: DockerImage,
image_ubuntu: DockerImage,
) -> List[str]:
return [
f"docker run --network=host --volume={build_path}/usr/bin/clickhouse:/clickhouse "
f"--volume={build_path}/etc/clickhouse-server:/config "
2023-09-22 11:16:46 +00:00
f"--volume={server_log_directory}:/var/log/clickhouse-server {image_ubuntu} > "
f"{result_directory}/ubuntu:12.04",
f"docker run --network=host --volume={build_path}/usr/bin/clickhouse:/clickhouse "
f"--volume={build_path}/etc/clickhouse-server:/config "
2023-09-22 11:16:46 +00:00
f"--volume={server_log_directory}:/var/log/clickhouse-server {image_centos} > "
f"{result_directory}/centos:5",
2021-11-10 10:17:19 +00:00
]
def parse_args():
parser = argparse.ArgumentParser("Check compatibility with old distributions")
parser.add_argument("--check-name", required=False)
return parser.parse_args()
def main():
2021-11-10 10:17:19 +00:00
logging.basicConfig(level=logging.INFO)
2021-11-19 14:47:04 +00:00
args = parse_args()
check_name = args.check_name or os.getenv("CHECK_NAME")
assert check_name
check_glibc = True
# currently hardcoded to x86, don't enable for ARM
check_distributions = (
"aarch64" not in check_name.lower() and "arm64" not in check_name.lower()
)
2021-11-19 14:47:04 +00:00
stopwatch = Stopwatch()
2023-09-22 11:16:46 +00:00
temp_path = Path(TEMP_PATH)
reports_path = Path(REPORT_PATH)
2023-09-22 11:16:46 +00:00
temp_path.mkdir(parents=True, exist_ok=True)
reports_path.mkdir(parents=True, exist_ok=True)
2021-11-10 10:17:19 +00:00
2023-09-22 11:16:46 +00:00
packages_path = temp_path / "packages"
packages_path.mkdir(parents=True, exist_ok=True)
2021-11-10 10:17:19 +00:00
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
download_builds_filter(check_name, reports_path, packages_path, url_filter)
2021-11-12 11:07:54 +00:00
2023-09-27 14:27:37 +00:00
for package in packages_path.iterdir():
if package.suffix == ".deb":
subprocess.check_call(
2023-09-27 14:27:37 +00:00
f"dpkg -x {package} {packages_path} && rm {package}", shell=True
)
2021-11-10 10:17:19 +00:00
2023-09-22 11:16:46 +00:00
server_log_path = temp_path / "server_log"
server_log_path.mkdir(parents=True, exist_ok=True)
2021-11-10 10:17:19 +00:00
2023-09-22 11:16:46 +00:00
result_path = temp_path / "result_path"
result_path.mkdir(parents=True, exist_ok=True)
2021-11-10 10:17:19 +00:00
run_commands = []
if check_glibc:
check_glibc_commands = get_run_commands_glibc(packages_path, result_path)
run_commands.extend(check_glibc_commands)
if check_distributions:
centos_image = pull_image(get_docker_image(IMAGE_CENTOS))
ubuntu_image = pull_image(get_docker_image(IMAGE_UBUNTU))
check_distributions_commands = get_run_commands_distributions(
packages_path,
result_path,
server_log_path,
centos_image,
ubuntu_image,
)
run_commands.extend(check_distributions_commands)
2021-11-10 10:17:19 +00:00
state = SUCCESS
2021-11-10 10:17:19 +00:00
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 10:17:19 +00:00
2021-11-10 13:28:12 +00:00
subprocess.check_call(f"sudo chown -R ubuntu:ubuntu {temp_path}", shell=True)
# See https://sourceware.org/glibc/wiki/Glibc%20Timeline
max_glibc_version = ""
if "amd64" in check_name:
max_glibc_version = "2.4"
elif "aarch64" in check_name:
2023-03-02 11:22:32 +00:00
max_glibc_version = "2.18" # because of build with newer sysroot?
else:
2024-02-26 18:25:02 +00:00
raise RuntimeError("Can't determine max glibc version")
state, description, test_results, additional_logs = process_result(
2023-03-02 20:54:45 +00:00
result_path,
server_log_path,
check_glibc,
check_distributions,
2023-03-02 20:54:45 +00:00
max_glibc_version,
)
2021-11-19 14:47:04 +00:00
JobReport(
description=description,
test_results=test_results,
status=state,
start_time=stopwatch.start_time_str,
duration=stopwatch.duration_seconds,
additional_files=additional_logs,
).dump()
2022-03-29 12:41:47 +00:00
if state == FAILURE:
2022-03-29 12:41:47 +00:00
sys.exit(1)
if __name__ == "__main__":
main()