2021-11-03 11:27:49 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
2022-03-18 20:32:59 +00:00
|
|
|
import argparse
|
|
|
|
import csv
|
2021-11-03 11:27:49 +00:00
|
|
|
import json
|
2022-03-18 20:32:59 +00:00
|
|
|
import logging
|
|
|
|
import os
|
2021-11-03 11:27:49 +00:00
|
|
|
import subprocess
|
2022-03-18 20:32:59 +00:00
|
|
|
import sys
|
2023-01-03 14:23:19 +00:00
|
|
|
from pathlib import Path
|
2023-09-22 11:16:46 +00:00
|
|
|
from typing import Dict, List, Tuple
|
2021-11-03 11:27:49 +00:00
|
|
|
|
|
|
|
from github import Github
|
|
|
|
|
2021-11-12 11:07:54 +00:00
|
|
|
from build_download_helper import download_all_deb_packages
|
2022-03-22 16:39:58 +00:00
|
|
|
from clickhouse_helper import (
|
|
|
|
ClickHouseHelper,
|
|
|
|
prepare_tests_results_for_clickhouse,
|
|
|
|
)
|
2023-01-03 14:23:19 +00:00
|
|
|
from commit_status_helper import (
|
2023-04-18 14:58:17 +00:00
|
|
|
RerunHelper,
|
|
|
|
get_commit,
|
2023-01-03 14:23:19 +00:00
|
|
|
override_status,
|
2023-04-18 14:58:17 +00:00
|
|
|
post_commit_status,
|
2023-01-03 14:23:19 +00:00
|
|
|
post_commit_status_to_file,
|
|
|
|
)
|
2023-09-22 11:16:46 +00:00
|
|
|
from docker_pull_helper import get_images_with_versions, DockerImage
|
2023-01-03 14:23:19 +00:00
|
|
|
from download_release_packages import download_last_release
|
|
|
|
from env_helper import TEMP_PATH, REPO_COPY, REPORTS_PATH
|
|
|
|
from get_robot_token import get_best_robot_token
|
|
|
|
from pr_info import PRInfo
|
2023-11-02 10:36:18 +00:00
|
|
|
from report import ERROR, TestResult, TestResults, read_test_results
|
2023-01-03 14:23:19 +00:00
|
|
|
from s3_helper import S3Helper
|
|
|
|
from stopwatch import Stopwatch
|
2021-12-03 08:33:16 +00:00
|
|
|
from tee_popen import TeePopen
|
2023-01-03 14:23:19 +00:00
|
|
|
from upload_result_helper import upload_results
|
2021-11-19 14:47:04 +00:00
|
|
|
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2022-02-13 13:39:30 +00:00
|
|
|
# When update, update
|
2023-07-05 13:36:27 +00:00
|
|
|
# tests/integration/ci-runner.py:ClickhouseIntegrationTestsRunner.get_images_names too
|
2021-11-03 11:27:49 +00:00
|
|
|
IMAGES = [
|
2023-07-05 13:36:27 +00:00
|
|
|
"clickhouse/dotnet-client",
|
|
|
|
"clickhouse/integration-helper",
|
|
|
|
"clickhouse/integration-test",
|
2021-12-09 07:55:51 +00:00
|
|
|
"clickhouse/integration-tests-runner",
|
2023-07-05 13:36:27 +00:00
|
|
|
"clickhouse/kerberized-hadoop",
|
|
|
|
"clickhouse/kerberos-kdc",
|
2021-12-09 07:55:51 +00:00
|
|
|
"clickhouse/mysql-golang-client",
|
|
|
|
"clickhouse/mysql-java-client",
|
|
|
|
"clickhouse/mysql-js-client",
|
|
|
|
"clickhouse/mysql-php-client",
|
2023-07-05 13:36:27 +00:00
|
|
|
"clickhouse/nginx-dav",
|
2021-12-09 07:55:51 +00:00
|
|
|
"clickhouse/postgresql-java-client",
|
2021-11-03 11:27:49 +00:00
|
|
|
]
|
|
|
|
|
2022-03-22 16:39:58 +00:00
|
|
|
|
|
|
|
def get_json_params_dict(
|
2023-09-22 11:16:46 +00:00
|
|
|
check_name: str,
|
|
|
|
pr_info: PRInfo,
|
|
|
|
docker_images: List[DockerImage],
|
|
|
|
run_by_hash_total: int,
|
|
|
|
run_by_hash_num: int,
|
|
|
|
) -> dict:
|
2021-11-03 11:27:49 +00:00
|
|
|
return {
|
2022-03-22 16:39:58 +00:00
|
|
|
"context_name": check_name,
|
|
|
|
"commit": pr_info.sha,
|
|
|
|
"pull_request": pr_info.number,
|
|
|
|
"pr_info": {"changed_files": list(pr_info.changed_files)},
|
2023-09-22 11:16:46 +00:00
|
|
|
"docker_images_with_versions": {d.name: d.version for d in docker_images},
|
2022-03-22 16:39:58 +00:00
|
|
|
"shuffle_test_groups": False,
|
|
|
|
"use_tmpfs": False,
|
|
|
|
"disable_net_host": True,
|
|
|
|
"run_by_hash_total": run_by_hash_total,
|
|
|
|
"run_by_hash_num": run_by_hash_num,
|
2021-11-03 11:27:49 +00:00
|
|
|
}
|
|
|
|
|
2022-03-22 16:39:58 +00:00
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
def get_env_for_runner(
|
|
|
|
check_name: str,
|
|
|
|
build_path: Path,
|
|
|
|
repo_path: Path,
|
|
|
|
result_path: Path,
|
|
|
|
work_path: Path,
|
|
|
|
) -> Dict[str, str]:
|
|
|
|
binary_path = build_path / "clickhouse"
|
|
|
|
odbc_bridge_path = build_path / "clickhouse-odbc-bridge"
|
|
|
|
library_bridge_path = build_path / "clickhouse-library-bridge"
|
2021-11-03 11:27:49 +00:00
|
|
|
|
|
|
|
my_env = os.environ.copy()
|
2023-09-22 11:16:46 +00:00
|
|
|
my_env["CLICKHOUSE_TESTS_BUILD_PATH"] = build_path.as_posix()
|
|
|
|
my_env["CLICKHOUSE_TESTS_SERVER_BIN_PATH"] = binary_path.as_posix()
|
|
|
|
my_env["CLICKHOUSE_TESTS_CLIENT_BIN_PATH"] = binary_path.as_posix()
|
|
|
|
my_env["CLICKHOUSE_TESTS_ODBC_BRIDGE_BIN_PATH"] = odbc_bridge_path.as_posix()
|
|
|
|
my_env["CLICKHOUSE_TESTS_LIBRARY_BRIDGE_BIN_PATH"] = library_bridge_path.as_posix()
|
|
|
|
my_env["CLICKHOUSE_TESTS_REPO_PATH"] = repo_path.as_posix()
|
|
|
|
my_env["CLICKHOUSE_TESTS_RESULT_PATH"] = result_path.as_posix()
|
2021-11-03 11:27:49 +00:00
|
|
|
my_env["CLICKHOUSE_TESTS_BASE_CONFIG_DIR"] = f"{repo_path}/programs/server"
|
2023-09-22 11:16:46 +00:00
|
|
|
my_env["CLICKHOUSE_TESTS_JSON_PARAMS_PATH"] = f"{work_path}/params.json"
|
2022-03-22 16:39:58 +00:00
|
|
|
my_env["CLICKHOUSE_TESTS_RUNNER_RESTART_DOCKER"] = "0"
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2023-06-14 13:17:04 +00:00
|
|
|
if "analyzer" in check_name.lower():
|
2023-06-15 14:15:01 +00:00
|
|
|
my_env["CLICKHOUSE_USE_NEW_ANALYZER"] = "1"
|
2023-06-14 13:17:04 +00:00
|
|
|
|
2021-11-03 11:27:49 +00:00
|
|
|
return my_env
|
|
|
|
|
2022-03-22 16:39:58 +00:00
|
|
|
|
2022-11-16 09:08:53 +00:00
|
|
|
def process_results(
|
2023-09-22 11:16:46 +00:00
|
|
|
result_directory: Path,
|
|
|
|
) -> Tuple[str, str, TestResults, List[Path]]:
|
2023-01-03 14:23:19 +00:00
|
|
|
test_results = [] # type: TestResults
|
2021-11-03 11:27:49 +00:00
|
|
|
additional_files = []
|
2023-09-22 11:16:46 +00:00
|
|
|
# Just upload all files from result_directory.
|
|
|
|
# If task provides processed results, then it's responsible for content of
|
|
|
|
# result_directory.
|
|
|
|
if result_directory.exists():
|
|
|
|
additional_files = [p for p in result_directory.iterdir() if p.is_file()]
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2021-12-12 12:09:44 +00:00
|
|
|
status = []
|
2023-09-22 11:16:46 +00:00
|
|
|
status_path = result_directory / "check_status.tsv"
|
|
|
|
if status_path.exists():
|
2023-12-09 22:31:05 +00:00
|
|
|
logging.info("Found check_status.tsv")
|
2022-03-22 16:39:58 +00:00
|
|
|
with open(status_path, "r", encoding="utf-8") as status_file:
|
|
|
|
status = list(csv.reader(status_file, delimiter="\t"))
|
2021-11-03 11:27:49 +00:00
|
|
|
|
|
|
|
if len(status) != 1 or len(status[0]) != 2:
|
2023-09-22 11:16:46 +00:00
|
|
|
logging.info("Files in result folder %s", os.listdir(result_directory))
|
2021-11-03 11:27:49 +00:00
|
|
|
return "error", "Invalid check_status.tsv", test_results, additional_files
|
|
|
|
state, description = status[0][0], status[0][1]
|
|
|
|
|
2022-12-14 14:05:22 +00:00
|
|
|
try:
|
2023-09-22 11:16:46 +00:00
|
|
|
results_path = result_directory / "test_results.tsv"
|
2022-12-14 14:05:22 +00:00
|
|
|
test_results = read_test_results(results_path, False)
|
|
|
|
if len(test_results) == 0:
|
|
|
|
return "error", "Empty test_results.tsv", test_results, additional_files
|
|
|
|
except Exception as e:
|
|
|
|
return (
|
|
|
|
"error",
|
|
|
|
f"Cannot parse test_results.tsv ({e})",
|
|
|
|
test_results,
|
|
|
|
additional_files,
|
|
|
|
)
|
2021-11-03 11:27:49 +00:00
|
|
|
|
|
|
|
return state, description, test_results, additional_files
|
|
|
|
|
2022-03-14 13:09:53 +00:00
|
|
|
|
2022-03-14 15:52:46 +00:00
|
|
|
def parse_args():
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument("check_name")
|
2022-03-22 16:39:58 +00:00
|
|
|
parser.add_argument(
|
|
|
|
"--validate-bugfix",
|
|
|
|
action="store_true",
|
|
|
|
help="Check that added tests failed on latest stable",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--post-commit-status",
|
|
|
|
default="commit_status",
|
|
|
|
choices=["commit_status", "file"],
|
|
|
|
help="Where to public post commit status",
|
|
|
|
)
|
2022-03-14 15:52:46 +00:00
|
|
|
return parser.parse_args()
|
|
|
|
|
|
|
|
|
2023-01-03 14:23:19 +00:00
|
|
|
def main():
|
2021-11-03 11:27:49 +00:00
|
|
|
logging.basicConfig(level=logging.INFO)
|
2021-11-19 14:47:04 +00:00
|
|
|
|
|
|
|
stopwatch = Stopwatch()
|
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
temp_path = Path(TEMP_PATH)
|
|
|
|
temp_path.mkdir(parents=True, exist_ok=True)
|
|
|
|
|
|
|
|
post_commit_path = temp_path / "integration_commit_status.tsv"
|
|
|
|
repo_path = Path(REPO_COPY)
|
|
|
|
reports_path = Path(REPORTS_PATH)
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2022-03-14 15:52:46 +00:00
|
|
|
args = parse_args()
|
|
|
|
check_name = args.check_name
|
2022-12-28 12:53:23 +00:00
|
|
|
validate_bugfix_check = args.validate_bugfix
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2022-03-22 16:39:58 +00:00
|
|
|
if "RUN_BY_HASH_NUM" in os.environ:
|
2022-11-16 09:08:53 +00:00
|
|
|
run_by_hash_num = int(os.getenv("RUN_BY_HASH_NUM", "0"))
|
|
|
|
run_by_hash_total = int(os.getenv("RUN_BY_HASH_TOTAL", "0"))
|
2022-03-22 16:39:58 +00:00
|
|
|
check_name_with_group = (
|
|
|
|
check_name + f" [{run_by_hash_num + 1}/{run_by_hash_total}]"
|
|
|
|
)
|
2021-12-10 15:39:02 +00:00
|
|
|
else:
|
|
|
|
run_by_hash_num = 0
|
|
|
|
run_by_hash_total = 0
|
|
|
|
check_name_with_group = check_name
|
|
|
|
|
2022-03-22 16:39:58 +00:00
|
|
|
is_flaky_check = "flaky" in check_name
|
2022-10-27 10:49:02 +00:00
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
# For validate_bugfix_check we need up to date information about labels, so
|
|
|
|
# pr_event_from_api is used
|
2022-10-27 11:32:42 +00:00
|
|
|
pr_info = PRInfo(
|
2022-12-28 12:53:23 +00:00
|
|
|
need_changed_files=is_flaky_check or validate_bugfix_check,
|
|
|
|
pr_event_from_api=validate_bugfix_check,
|
2022-10-27 11:32:42 +00:00
|
|
|
)
|
2022-03-10 16:39:18 +00:00
|
|
|
|
2022-12-28 12:53:23 +00:00
|
|
|
if validate_bugfix_check and "pr-bugfix" not in pr_info.labels:
|
2022-03-22 16:39:58 +00:00
|
|
|
if args.post_commit_status == "file":
|
|
|
|
post_commit_status_to_file(
|
2023-01-03 15:30:36 +00:00
|
|
|
post_commit_path,
|
2022-10-27 10:49:02 +00:00
|
|
|
f"Skipped (no pr-bugfix in {pr_info.labels})",
|
2022-03-22 16:39:58 +00:00
|
|
|
"success",
|
|
|
|
"null",
|
|
|
|
)
|
2022-10-27 10:49:02 +00:00
|
|
|
logging.info("Skipping '%s' (no pr-bugfix in '%s')", check_name, pr_info.labels)
|
2022-03-10 16:39:18 +00:00
|
|
|
sys.exit(0)
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2022-07-30 05:07:22 +00:00
|
|
|
gh = Github(get_best_robot_token(), per_page=100)
|
2023-04-18 14:58:17 +00:00
|
|
|
commit = get_commit(gh, pr_info.sha)
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2023-04-18 14:58:17 +00:00
|
|
|
rerun_helper = RerunHelper(commit, 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-12-10 07:54:37 +00:00
|
|
|
images = get_images_with_versions(reports_path, IMAGES)
|
2023-09-22 11:16:46 +00:00
|
|
|
result_path = temp_path / "output_dir"
|
|
|
|
result_path.mkdir(parents=True, exist_ok=True)
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
work_path = temp_path / "workdir"
|
|
|
|
work_path.mkdir(parents=True, exist_ok=True)
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
build_path = temp_path / "build"
|
|
|
|
build_path.mkdir(parents=True, exist_ok=True)
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2022-12-28 12:53:23 +00:00
|
|
|
if validate_bugfix_check:
|
2022-07-04 13:02:22 +00:00
|
|
|
download_last_release(build_path)
|
2022-03-14 15:52:46 +00:00
|
|
|
else:
|
|
|
|
download_all_deb_packages(check_name, reports_path, build_path)
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2023-06-14 13:38:44 +00:00
|
|
|
my_env = get_env_for_runner(
|
|
|
|
check_name, build_path, repo_path, result_path, work_path
|
|
|
|
)
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
json_path = work_path / "params.json"
|
2022-03-22 16:39:58 +00:00
|
|
|
with open(json_path, "w", encoding="utf-8") as json_params:
|
2022-05-03 10:23:23 +00:00
|
|
|
params_text = json.dumps(
|
|
|
|
get_json_params_dict(
|
|
|
|
check_name,
|
|
|
|
pr_info,
|
2023-09-22 11:16:46 +00:00
|
|
|
images,
|
2022-05-03 10:23:23 +00:00
|
|
|
run_by_hash_total,
|
|
|
|
run_by_hash_num,
|
2022-03-22 16:39:58 +00:00
|
|
|
)
|
|
|
|
)
|
2022-05-03 10:23:23 +00:00
|
|
|
json_params.write(params_text)
|
|
|
|
logging.info("Parameters file %s is written: %s", json_path, params_text)
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
output_path_log = result_path / "main_script_log.txt"
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2023-09-22 11:16:46 +00:00
|
|
|
runner_path = repo_path / "tests" / "integration" / "ci-runner.py"
|
2022-06-29 00:10:10 +00:00
|
|
|
run_command = f"sudo -E {runner_path}"
|
2022-05-03 10:23:23 +00:00
|
|
|
logging.info("Going to run command: `%s`", run_command)
|
|
|
|
logging.info(
|
|
|
|
"ENV parameters for runner:\n%s",
|
|
|
|
"\n".join(
|
|
|
|
[f"{k}={v}" for k, v in my_env.items() if k.startswith("CLICKHOUSE_")]
|
|
|
|
),
|
|
|
|
)
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2023-11-02 10:36:18 +00:00
|
|
|
ch_helper = ClickHouseHelper()
|
2021-12-03 08:33:16 +00:00
|
|
|
with TeePopen(run_command, output_path_log, my_env) as process:
|
|
|
|
retcode = process.wait()
|
|
|
|
if retcode == 0:
|
|
|
|
logging.info("Run tests successfully")
|
2023-01-05 13:53:45 +00:00
|
|
|
elif retcode == 13:
|
|
|
|
logging.warning(
|
|
|
|
"There were issues with infrastructure. Not writing status report to restart job."
|
|
|
|
)
|
2023-11-02 10:36:18 +00:00
|
|
|
prepared_events = prepare_tests_results_for_clickhouse(
|
|
|
|
pr_info,
|
|
|
|
[
|
|
|
|
TestResult(
|
|
|
|
"integration_infrastructure_fail",
|
|
|
|
"ERROR",
|
|
|
|
stopwatch.duration_seconds,
|
|
|
|
)
|
|
|
|
],
|
|
|
|
ERROR,
|
|
|
|
stopwatch.duration_seconds,
|
|
|
|
stopwatch.start_time_str,
|
|
|
|
"",
|
|
|
|
check_name_with_group,
|
|
|
|
)
|
|
|
|
|
|
|
|
ch_helper.insert_events_into(
|
|
|
|
db="default", table="checks", events=prepared_events
|
|
|
|
)
|
2023-01-05 13:53:45 +00:00
|
|
|
sys.exit(1)
|
2021-12-03 08:33:16 +00:00
|
|
|
else:
|
|
|
|
logging.info("Some tests failed")
|
2021-11-03 11:27:49 +00:00
|
|
|
|
|
|
|
subprocess.check_call(f"sudo chown -R ubuntu:ubuntu {temp_path}", shell=True)
|
|
|
|
|
|
|
|
state, description, test_results, additional_logs = process_results(result_path)
|
2022-12-28 12:53:23 +00:00
|
|
|
state = override_status(state, check_name, invert=validate_bugfix_check)
|
2021-11-03 11:27:49 +00:00
|
|
|
|
2022-08-11 13:01:32 +00:00
|
|
|
s3_helper = S3Helper()
|
2022-03-22 16:39:58 +00:00
|
|
|
report_url = upload_results(
|
|
|
|
s3_helper,
|
|
|
|
pr_info.number,
|
|
|
|
pr_info.sha,
|
|
|
|
test_results,
|
|
|
|
[output_path_log] + additional_logs,
|
|
|
|
check_name_with_group,
|
|
|
|
)
|
2022-03-18 12:36:45 +00:00
|
|
|
|
|
|
|
print(f"::notice:: {check_name} Report url: {report_url}")
|
2022-03-22 16:39:58 +00:00
|
|
|
if args.post_commit_status == "commit_status":
|
|
|
|
post_commit_status(
|
2023-04-18 23:03:48 +00:00
|
|
|
commit, state, report_url, description, check_name_with_group, pr_info
|
2022-03-22 16:39:58 +00:00
|
|
|
)
|
|
|
|
elif args.post_commit_status == "file":
|
2023-04-18 23:03:48 +00:00
|
|
|
post_commit_status_to_file(post_commit_path, description, state, report_url)
|
2022-03-18 12:36:45 +00:00
|
|
|
else:
|
2022-03-22 16:39:58 +00:00
|
|
|
raise Exception(
|
|
|
|
f'Unknown post_commit_status option "{args.post_commit_status}"'
|
|
|
|
)
|
|
|
|
|
|
|
|
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,
|
|
|
|
)
|
2022-03-30 09:08:24 +00:00
|
|
|
|
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
|
|
|
|
2023-01-03 14:23:19 +00:00
|
|
|
if state == "failure":
|
2022-03-29 12:41:47 +00:00
|
|
|
sys.exit(1)
|
2023-01-03 14:23:19 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|