ClickHouse/tests/integration/ci-runner.py

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

1050 lines
38 KiB
Python
Raw Normal View History

2021-02-23 07:24:51 +00:00
#!/usr/bin/env python3
from collections import defaultdict
import csv
import glob
import json
2021-02-23 07:24:51 +00:00
import logging
import os
import random
import re
import shutil
import string
import subprocess
import time
import shlex
import zlib # for crc32
2021-02-23 07:24:51 +00:00
2023-01-02 17:56:24 +00:00
MAX_RETRY = 1
2021-05-14 14:15:08 +00:00
NUM_WORKERS = 5
2021-02-23 07:24:51 +00:00
SLEEP_BETWEEN_RETRIES = 5
2021-05-31 15:46:32 +00:00
PARALLEL_GROUP_SIZE = 100
2021-11-04 15:53:45 +00:00
CLICKHOUSE_BINARY_PATH = "usr/bin/clickhouse"
CLICKHOUSE_ODBC_BRIDGE_BINARY_PATH = "usr/bin/clickhouse-odbc-bridge"
CLICKHOUSE_LIBRARY_BRIDGE_BINARY_PATH = "usr/bin/clickhouse-library-bridge"
2021-02-23 07:24:51 +00:00
2022-03-11 14:14:16 +00:00
FLAKY_TRIES_COUNT = 10
2021-02-24 16:41:44 +00:00
MAX_TIME_SECONDS = 3600
MAX_TIME_IN_SANDBOX = 20 * 60 # 20 minutes
TASK_TIMEOUT = 8 * 60 * 60 # 8 hours
NO_CHANGES_MSG = "Nothing to run"
2022-03-18 12:36:45 +00:00
2021-02-24 16:41:44 +00:00
def stringhash(s):
return zlib.crc32(s.encode("utf-8"))
# Search test by the common prefix.
# This is accept tests w/o parameters in skip list.
#
# Examples:
# - has_test(['foobar'], 'foobar[param]') == True
# - has_test(['foobar[param]'], 'foobar') == True
def has_test(tests, test_to_match):
for test in tests:
if len(test_to_match) < len(test):
if test[0 : len(test_to_match)] == test_to_match:
return True
else:
if test_to_match[0 : len(test)] == test:
return True
return False
2022-03-11 14:14:16 +00:00
def get_changed_tests_to_run(pr_info, repo_path):
result = set()
changed_files = pr_info["changed_files"]
2021-02-24 16:41:44 +00:00
2021-02-24 23:09:09 +00:00
if changed_files is None:
2021-02-24 16:41:44 +00:00
return []
2021-02-24 23:09:09 +00:00
for fpath in changed_files:
if "tests/integration/test_" in fpath:
logging.info("File %s changed and seems like integration test", fpath)
result.add(fpath.split("/")[2])
2022-03-11 14:14:16 +00:00
return filter_existing_tests(result, repo_path)
2021-02-24 16:41:44 +00:00
def filter_existing_tests(tests_to_run, repo_path):
result = []
for relative_test_path in tests_to_run:
if os.path.exists(
os.path.join(repo_path, "tests/integration", relative_test_path)
):
2021-02-24 16:41:44 +00:00
result.append(relative_test_path)
else:
logging.info(
"Skipping test %s, seems like it was removed", relative_test_path
)
2021-02-24 16:41:44 +00:00
return result
2021-02-23 07:24:51 +00:00
def _get_deselect_option(tests):
return " ".join([f"--deselect {t}" for t in tests])
2021-02-23 07:24:51 +00:00
2021-05-25 16:53:42 +00:00
# https://stackoverflow.com/questions/312443/how-do-you-split-a-list-into-evenly-sized-chunks
def chunks(lst, n):
"""Yield successive n-sized chunks from lst."""
for i in range(0, len(lst), n):
yield lst[i : i + n]
2021-02-23 07:24:51 +00:00
def get_counters(fname):
counters = {
"ERROR": set([]),
"PASSED": set([]),
"FAILED": set([]),
"SKIPPED": set([]),
}
with open(fname, "r") as out:
2021-02-23 07:24:51 +00:00
for line in out:
line = line.strip()
# Example of log:
#
# test_mysql_protocol/test.py::test_golang_client
# [gw0] [ 7%] ERROR test_mysql_protocol/test.py::test_golang_client
#
# And only the line with test status should be matched
if not (".py::" in line and " " in line):
continue
2021-02-23 07:24:51 +00:00
line = line.strip()
# [gw0] [ 7%] ERROR test_mysql_protocol/test.py::test_golang_client
# ^^^^^^^^^^^^^
if line.strip().startswith("["):
line = re.sub("^\[[^\[\]]*\] \[[^\[\]]*\] ", "", line)
line_arr = line.split(" ")
if len(line_arr) < 2:
logging.debug("Strange line %s", line)
continue
2021-02-23 07:24:51 +00:00
# Lines like:
#
# ERROR test_mysql_protocol/test.py::test_golang_client
# PASSED test_replicated_users/test.py::test_rename_replicated[QUOTA]
# PASSED test_drop_is_lock_free/test.py::test_query_is_lock_free[detach part]
#
state = line_arr.pop(0)
test_name = " ".join(line_arr)
# Normalize test names for lines like this:
#
# FAILED test_storage_s3/test.py::test_url_reconnect_in_the_middle - Exception
# FAILED test_distributed_ddl/test.py::test_default_database[configs] - AssertionError: assert ...
#
test_name = re.sub(
r"^(?P<test_name>[^\[\] ]+)(?P<test_param>\[[^\[\]]*\]|)(?P<test_error> - .*|)$",
r"\g<test_name>\g<test_param>",
test_name,
)
2021-02-23 07:24:51 +00:00
if state in counters:
counters[state].add(test_name)
else:
# will skip lines like:
# 30.76s call test_host_ip_change/test.py::test_ip_drop_cache
# 5.71s teardown test_host_ip_change/test.py::test_ip_change[node1]
# and similar
logging.debug("Strange state in line %s", line)
2021-02-23 07:24:51 +00:00
return {k: list(v) for k, v in counters.items()}
def parse_test_times(fname):
read = False
description_output = []
with open(fname, "r") as out:
2021-02-23 07:24:51 +00:00
for line in out:
if read and "==" in line:
2021-02-23 07:24:51 +00:00
break
if read and line.strip():
description_output.append(line.strip())
if "slowest durations" in line:
2021-02-23 07:24:51 +00:00
read = True
return description_output
def get_test_times(output):
result = defaultdict(float)
for line in output:
if ".py" in line:
line_arr = line.strip().split(" ")
2021-02-23 07:24:51 +00:00
test_time = line_arr[0]
test_name = " ".join([elem for elem in line_arr[2:] if elem])
2021-02-23 07:24:51 +00:00
if test_name not in result:
result[test_name] = 0.0
result[test_name] += float(test_time[:-1])
return result
def clear_ip_tables_and_restart_daemons():
logging.info(
"Dump iptables after run %s",
subprocess.check_output("sudo iptables -nvL", shell=True),
)
2021-02-23 07:24:51 +00:00
try:
logging.info("Killing all alive docker containers")
subprocess.check_output(
2023-07-09 00:28:12 +00:00
"timeout --signal=KILL 10m docker ps --quiet | xargs --no-run-if-empty docker kill",
2022-09-17 18:38:12 +00:00
shell=True,
)
2021-02-23 07:24:51 +00:00
except subprocess.CalledProcessError as err:
logging.info("docker kill excepted: " + str(err))
try:
logging.info("Removing all docker containers")
subprocess.check_output(
2023-07-09 00:28:12 +00:00
"timeout --signal=KILL 10m docker ps --all --quiet | xargs --no-run-if-empty docker rm --force",
2022-09-17 18:38:12 +00:00
shell=True,
)
2021-02-23 07:24:51 +00:00
except subprocess.CalledProcessError as err:
logging.info("docker rm excepted: " + str(err))
2021-11-08 13:23:14 +00:00
# don't restart docker if it's disabled
if os.environ.get("CLICKHOUSE_TESTS_RUNNER_RESTART_DOCKER", "1") == "1":
2021-11-08 13:23:14 +00:00
try:
logging.info("Stopping docker daemon")
subprocess.check_output("service docker stop", shell=True)
except subprocess.CalledProcessError as err:
logging.info("docker stop excepted: " + str(err))
try:
for i in range(200):
try:
logging.info("Restarting docker %s", i)
subprocess.check_output("service docker start", shell=True)
subprocess.check_output("docker ps", shell=True)
break
except subprocess.CalledProcessError as err:
time.sleep(0.5)
logging.info("Waiting docker to start, current %s", str(err))
else:
raise Exception("Docker daemon doesn't responding")
except subprocess.CalledProcessError as err:
logging.info("Can't reload docker: " + str(err))
2021-03-16 21:39:38 +00:00
iptables_iter = 0
2021-02-23 07:24:51 +00:00
try:
2021-03-16 23:16:03 +00:00
for i in range(1000):
2021-03-16 21:39:38 +00:00
iptables_iter = i
2021-02-23 20:15:11 +00:00
# when rules will be empty, it will raise exception
2021-11-04 20:22:13 +00:00
subprocess.check_output("sudo iptables -D DOCKER-USER 1", shell=True)
2021-03-16 21:39:38 +00:00
except subprocess.CalledProcessError as err:
logging.info(
"All iptables rules cleared, %s iterations, last error: %s",
iptables_iter,
str(err),
)
2021-02-23 07:24:51 +00:00
class ClickhouseIntegrationTestsRunner:
2021-02-24 16:41:44 +00:00
def __init__(self, result_path, params):
2021-02-23 07:24:51 +00:00
self.result_path = result_path
2021-02-24 16:41:44 +00:00
self.params = params
self.image_versions = self.params["docker_images_with_versions"]
self.shuffle_groups = self.params["shuffle_test_groups"]
self.flaky_check = "flaky check" in self.params["context_name"]
self.bugfix_validate_check = (
"bugfix validate check" in self.params["context_name"]
)
2021-11-16 08:59:38 +00:00
# if use_tmpfs is not set we assume it to be true, otherwise check
self.use_tmpfs = "use_tmpfs" not in self.params or self.params["use_tmpfs"]
self.disable_net_host = (
"disable_net_host" in self.params and self.params["disable_net_host"]
)
2021-03-16 17:48:45 +00:00
self.start_time = time.time()
2021-03-17 19:28:18 +00:00
self.soft_deadline_time = self.start_time + (TASK_TIMEOUT - MAX_TIME_IN_SANDBOX)
2021-02-23 07:24:51 +00:00
2023-06-20 13:20:21 +00:00
self.use_analyzer = os.environ.get("CLICKHOUSE_USE_NEW_ANALYZER") is not None
if "run_by_hash_total" in self.params:
self.run_by_hash_total = self.params["run_by_hash_total"]
self.run_by_hash_num = self.params["run_by_hash_num"]
else:
self.run_by_hash_total = 0
self.run_by_hash_num = 0
2021-02-23 07:24:51 +00:00
def path(self):
return self.result_path
2021-02-23 12:25:28 +00:00
def base_path(self):
return os.path.join(str(self.result_path), "../")
2021-02-23 12:25:28 +00:00
2021-02-23 07:24:51 +00:00
def should_skip_tests(self):
return []
def get_image_with_version(self, name):
if name in self.image_versions:
return name + ":" + self.image_versions[name]
logging.warn(
"Cannot find image %s in params list %s", name, self.image_versions
)
if ":" not in name:
2021-02-23 07:24:51 +00:00
return name + ":latest"
return name
2022-05-10 15:15:14 +00:00
def get_image_version(self, name: str):
2021-02-23 07:24:51 +00:00
if name in self.image_versions:
return self.image_versions[name]
logging.warn(
"Cannot find image %s in params list %s", name, self.image_versions
)
return "latest"
2021-02-23 07:24:51 +00:00
def shuffle_test_groups(self):
return self.shuffle_groups != 0
@staticmethod
def get_images_names():
return [
"clickhouse/dotnet-client",
"clickhouse/integration-helper",
"clickhouse/integration-test",
"clickhouse/integration-tests-runner",
"clickhouse/kerberized-hadoop",
"clickhouse/kerberos-kdc",
"clickhouse/mysql-golang-client",
"clickhouse/mysql-java-client",
"clickhouse/mysql-js-client",
"clickhouse/mysql-php-client",
"clickhouse/nginx-dav",
"clickhouse/postgresql-java-client",
]
2021-02-23 07:24:51 +00:00
2023-01-03 18:56:24 +00:00
def _pre_pull_images(self, repo_path):
image_cmd = self._get_runner_image_cmd(repo_path)
2023-01-02 16:46:24 +00:00
cmd = (
"cd {repo_path}/tests/integration && "
2023-07-09 00:28:12 +00:00
"timeout --signal=KILL 1h ./runner {runner_opts} {image_cmd} --pre-pull --command '{command}' ".format(
2023-01-02 16:46:24 +00:00
repo_path=repo_path,
runner_opts=self._get_runner_opts(),
image_cmd=image_cmd,
2023-01-04 15:52:34 +00:00
command=r""" echo Pre Pull finished """,
2023-01-02 16:46:24 +00:00
)
)
for i in range(5):
2023-01-04 11:48:28 +00:00
logging.info("Pulling images before running tests. Attempt %s", i)
2023-01-02 16:46:24 +00:00
try:
subprocess.check_output(
cmd,
shell=True,
)
2023-01-04 13:16:31 +00:00
return
2023-01-02 16:46:24 +00:00
except subprocess.CalledProcessError as err:
logging.info("docker-compose pull failed: " + str(err))
2023-01-04 13:16:31 +00:00
continue
2023-01-03 21:38:59 +00:00
logging.error("Pulling images failed for 5 attempts. Will fail the worker.")
# We pass specific retcode to to ci/integration_test_check.py to skip status reporting and restart job
exit(13)
2023-01-02 16:46:24 +00:00
2021-02-23 07:24:51 +00:00
def _can_run_with(self, path, opt):
with open(path, "r") as script:
2021-02-23 07:24:51 +00:00
for line in script:
if opt in line:
return True
return False
def _install_clickhouse(self, debs_path):
for package in (
"clickhouse-common-static_",
"clickhouse-server_",
"clickhouse-client",
"clickhouse-common-static-dbg_",
): # order matters
2021-02-23 07:24:51 +00:00
logging.info("Installing package %s", package)
for f in os.listdir(debs_path):
if package in f:
full_path = os.path.join(debs_path, f)
logging.info("Package found in %s", full_path)
log_name = "install_" + f + ".log"
log_path = os.path.join(str(self.path()), log_name)
with open(log_path, "w") as log:
2021-11-04 15:53:45 +00:00
cmd = "dpkg -x {} .".format(full_path)
2021-02-23 07:24:51 +00:00
logging.info("Executing installation cmd %s", cmd)
retcode = subprocess.Popen(
cmd, shell=True, stderr=log, stdout=log
).wait()
2021-02-23 07:24:51 +00:00
if retcode == 0:
2022-01-03 00:03:49 +00:00
logging.info("Installation of %s successfull", full_path)
2021-02-23 07:24:51 +00:00
else:
raise Exception("Installation of %s failed", full_path)
break
else:
raise Exception("Package with {} not found".format(package))
# logging.info("Unstripping binary")
# logging.info(
# "Unstring %s",
# subprocess.check_output(
# "eu-unstrip /usr/bin/clickhouse {}".format(CLICKHOUSE_BINARY_PATH),
# shell=True,
# ),
# )
2021-02-23 07:24:51 +00:00
logging.info("All packages installed")
os.chmod(CLICKHOUSE_BINARY_PATH, 0o777)
os.chmod(CLICKHOUSE_ODBC_BRIDGE_BINARY_PATH, 0o777)
2021-03-15 06:37:07 +00:00
os.chmod(CLICKHOUSE_LIBRARY_BRIDGE_BINARY_PATH, 0o777)
shutil.copy(
CLICKHOUSE_BINARY_PATH, os.getenv("CLICKHOUSE_TESTS_SERVER_BIN_PATH")
)
shutil.copy(
CLICKHOUSE_ODBC_BRIDGE_BINARY_PATH,
os.getenv("CLICKHOUSE_TESTS_ODBC_BRIDGE_BIN_PATH"),
)
shutil.copy(
CLICKHOUSE_LIBRARY_BRIDGE_BINARY_PATH,
os.getenv("CLICKHOUSE_TESTS_LIBRARY_BRIDGE_BIN_PATH"),
)
2021-02-23 07:24:51 +00:00
2021-07-01 14:41:59 +00:00
def _compress_logs(self, dir, relpaths, result_path):
retcode = subprocess.call( # STYLE_CHECK_ALLOW_SUBPROCESS_CHECK_CALL
"tar --use-compress-program='zstd --threads=0' -cf {} -C {} {}".format(
result_path, dir, " ".join(relpaths)
),
shell=True,
)
# tar return 1 when the files are changed on compressing, we ignore it
if retcode in (0, 1):
return
# but even on the fatal errors it's better to retry
logging.error("Fatal error on compressing %s: %s", result_path, retcode)
2021-02-23 07:24:51 +00:00
2021-11-16 08:59:38 +00:00
def _get_runner_opts(self):
result = []
if self.use_tmpfs:
result.append("--tmpfs")
if self.disable_net_host:
result.append("--disable-net-host")
2023-06-20 13:20:21 +00:00
if self.use_analyzer:
result.append("--analyzer")
2021-11-16 08:59:38 +00:00
return " ".join(result)
2021-02-23 07:24:51 +00:00
def _get_all_tests(self, repo_path):
image_cmd = self._get_runner_image_cmd(repo_path)
runner_opts = self._get_runner_opts()
out_file_full = os.path.join(self.result_path, "runner_get_all_tests.log")
cmd = (
f"cd {repo_path}/tests/integration && "
f"timeout --signal=KILL 1h ./runner {runner_opts} {image_cmd} -- --setup-plan "
f"| tee '{out_file_full}'"
)
2021-02-23 07:24:51 +00:00
logging.info("Getting all tests with cmd '%s'", cmd)
subprocess.check_call( # STYLE_CHECK_ALLOW_SUBPROCESS_CHECK_CALL
cmd, shell=True
)
all_tests = set()
with open(out_file_full, "r", encoding="utf-8") as all_tests_fd:
for line in all_tests_fd:
if (
line[0] in string.whitespace # test names at the start of lines
or "::test" not in line # test names contain '::test'
or "SKIPPED" in line # pytest.mark.skip/-if
):
continue
all_tests.add(line.strip())
assert all_tests
2021-02-23 07:24:51 +00:00
return list(sorted(all_tests))
2021-05-25 16:53:42 +00:00
def _get_parallel_tests_skip_list(self, repo_path):
skip_list_file_path = "{}/tests/integration/parallel_skip.json".format(
repo_path
)
if (
not os.path.isfile(skip_list_file_path)
or os.path.getsize(skip_list_file_path) == 0
):
raise Exception(
"There is something wrong with getting all tests list: file '{}' is empty or does not exist.".format(
skip_list_file_path
)
)
2021-03-19 16:47:59 +00:00
2021-05-25 16:53:42 +00:00
skip_list_tests = []
with open(skip_list_file_path, "r") as skip_list_file:
skip_list_tests = json.load(skip_list_file)
return list(sorted(skip_list_tests))
2021-03-19 16:47:59 +00:00
2021-02-23 07:24:51 +00:00
def group_test_by_file(self, tests):
result = {}
for test in tests:
test_file = test.split("::")[0]
2021-02-23 07:24:51 +00:00
if test_file not in result:
result[test_file] = []
result[test_file].append(test)
return result
2023-06-22 19:48:13 +00:00
def _update_counters(self, main_counters, current_counters, broken_tests):
2021-02-23 07:24:51 +00:00
for test in current_counters["PASSED"]:
if test not in main_counters["PASSED"]:
2021-02-23 07:24:51 +00:00
if test in main_counters["FAILED"]:
main_counters["FAILED"].remove(test)
if test in main_counters["ERROR"]:
main_counters["ERROR"].remove(test)
2023-06-22 19:48:13 +00:00
if test in main_counters["BROKEN"]:
main_counters["BROKEN"].remove(test)
if test not in broken_tests:
2021-03-17 19:28:18 +00:00
main_counters["PASSED"].append(test)
else:
main_counters["NOT_FAILED"].append(test)
2021-02-23 07:24:51 +00:00
for state in ("ERROR", "FAILED"):
for test in current_counters[state]:
if test in main_counters["PASSED"]:
2021-03-17 19:28:18 +00:00
main_counters["PASSED"].remove(test)
2021-02-23 07:24:51 +00:00
continue
2023-06-22 19:48:13 +00:00
if test not in broken_tests:
if test not in main_counters[state]:
main_counters[state].append(test)
else:
if test not in main_counters["BROKEN"]:
main_counters["BROKEN"].append(test)
2021-02-23 07:24:51 +00:00
2022-04-14 12:39:36 +00:00
for state in ("SKIPPED",):
for test in current_counters[state]:
main_counters[state].append(test)
2021-02-23 07:24:51 +00:00
def _get_runner_image_cmd(self, repo_path):
image_cmd = ""
if self._can_run_with(
os.path.join(repo_path, "tests/integration", "runner"),
"--docker-image-version",
):
2021-02-23 07:24:51 +00:00
for img in self.get_images_names():
2021-09-08 10:03:54 +00:00
if img == "clickhouse/integration-tests-runner":
2022-05-10 15:15:14 +00:00
runner_version = self.get_image_version(img)
logging.info(
"Can run with custom docker image version %s", runner_version
)
image_cmd += " --docker-image-version={} ".format(runner_version)
2021-02-23 07:24:51 +00:00
else:
if self._can_run_with(
os.path.join(repo_path, "tests/integration", "runner"),
"--docker-compose-images-tags",
):
image_cmd += "--docker-compose-images-tags={} ".format(
self.get_image_with_version(img)
)
2021-02-23 07:24:51 +00:00
else:
image_cmd = ""
2021-02-23 07:24:51 +00:00
logging.info("Cannot run with custom docker image version :(")
return image_cmd
2021-07-01 14:41:59 +00:00
def _find_test_data_dirs(self, repo_path, test_names):
relpaths = {}
for test_name in test_names:
if "/" in test_name:
test_dir = test_name[: test_name.find("/")]
2021-07-01 14:41:59 +00:00
else:
test_dir = test_name
if os.path.isdir(os.path.join(repo_path, "tests/integration", test_dir)):
for name in os.listdir(
os.path.join(repo_path, "tests/integration", test_dir)
):
2021-07-01 14:41:59 +00:00
relpath = os.path.join(os.path.join(test_dir, name))
mtime = os.path.getmtime(
os.path.join(repo_path, "tests/integration", relpath)
)
2021-07-01 14:41:59 +00:00
relpaths[relpath] = mtime
return relpaths
def _get_test_data_dirs_difference(self, new_snapshot, old_snapshot):
res = set()
for path in new_snapshot:
if (path not in old_snapshot) or (old_snapshot[path] != new_snapshot[path]):
2021-07-01 14:41:59 +00:00
res.add(path)
return res
def try_run_test_group(
2023-06-22 19:58:58 +00:00
self,
repo_path,
test_group,
tests_in_group,
num_tries,
num_workers,
broken_tests,
):
2021-08-12 10:40:54 +00:00
try:
return self.run_test_group(
2023-06-22 19:58:58 +00:00
repo_path,
test_group,
tests_in_group,
num_tries,
num_workers,
broken_tests,
)
2021-08-12 10:40:54 +00:00
except Exception as e:
logging.info("Failed to run {}:\n{}".format(str(test_group), str(e)))
counters = {
"ERROR": [],
"PASSED": [],
"FAILED": [],
"SKIPPED": [],
}
tests_times = defaultdict(float)
for test in tests_in_group:
counters["ERROR"].append(test)
tests_times[test] = 0
return counters, tests_times, []
def run_test_group(
2023-06-22 19:58:58 +00:00
self,
repo_path,
test_group,
tests_in_group,
num_tries,
num_workers,
broken_tests,
):
2021-02-23 07:24:51 +00:00
counters = {
"ERROR": [],
"PASSED": [],
"FAILED": [],
2021-03-17 19:28:18 +00:00
"SKIPPED": [],
2023-06-22 19:48:13 +00:00
"BROKEN": [],
"NOT_FAILED": [],
2021-02-23 07:24:51 +00:00
}
tests_times = defaultdict(float)
2021-03-16 17:48:45 +00:00
if self.soft_deadline_time < time.time():
for test in tests_in_group:
2021-03-17 19:28:18 +00:00
logging.info("Task timeout exceeded, skipping %s", test)
counters["SKIPPED"].append(test)
2021-03-16 17:48:45 +00:00
tests_times[test] = 0
2021-04-08 20:05:27 +00:00
return counters, tests_times, []
2021-03-16 17:48:45 +00:00
image_cmd = self._get_runner_image_cmd(repo_path)
test_group_str = test_group.replace("/", "_").replace(".", "_")
2021-04-08 20:05:27 +00:00
log_paths = []
2021-07-01 14:41:59 +00:00
test_data_dirs = {}
2021-02-23 07:24:51 +00:00
for i in range(num_tries):
logging.info("Running test group %s for the %s retry", test_group, i)
clear_ip_tables_and_restart_daemons()
test_names = set([])
for test_name in tests_in_group:
if test_name not in counters["PASSED"]:
test_names.add(test_name)
2021-02-23 07:24:51 +00:00
2021-07-01 14:41:59 +00:00
if i == 0:
test_data_dirs = self._find_test_data_dirs(repo_path, test_names)
info_basename = test_group_str + "_" + str(i) + ".nfo"
info_path = os.path.join(repo_path, "tests/integration", info_basename)
test_cmd = " ".join([shlex.quote(test) for test in sorted(test_names)])
parallel_cmd = (
" --parallel {} ".format(num_workers) if num_workers > 0 else ""
)
# -r -- show extra test summary:
# -f -- (f)ailed
# -E -- (E)rror
# -p -- (p)assed
# -s -- (s)kipped
cmd = "cd {}/tests/integration && timeout --signal=KILL 1h ./runner {} {} -t {} {} -- -rfEps --run-id={} --color=no --durations=0 {} | tee {}".format(
repo_path,
self._get_runner_opts(),
image_cmd,
test_cmd,
parallel_cmd,
i,
_get_deselect_option(self.should_skip_tests()),
info_path,
)
2021-02-23 07:24:51 +00:00
2021-07-01 14:41:59 +00:00
log_basename = test_group_str + "_" + str(i) + ".log"
log_path = os.path.join(repo_path, "tests/integration", log_basename)
with open(log_path, "w") as log:
2021-02-23 07:24:51 +00:00
logging.info("Executing cmd: %s", cmd)
# ignore retcode, since it meaningful due to pipe to tee
subprocess.Popen(cmd, shell=True, stderr=log, stdout=log).wait()
2021-02-23 07:24:51 +00:00
2021-07-01 14:41:59 +00:00
extra_logs_names = [log_basename]
log_result_path = os.path.join(
str(self.path()), "integration_run_" + log_basename
)
2021-07-01 14:41:59 +00:00
shutil.copy(log_path, log_result_path)
log_paths.append(log_result_path)
for pytest_log_path in glob.glob(
os.path.join(repo_path, "tests/integration/pytest*.log")
):
new_name = (
test_group_str
+ "_"
+ str(i)
+ "_"
+ os.path.basename(pytest_log_path)
)
os.rename(
pytest_log_path,
os.path.join(repo_path, "tests/integration", new_name),
)
2021-07-01 14:41:59 +00:00
extra_logs_names.append(new_name)
dockerd_log_path = os.path.join(repo_path, "tests/integration/dockerd.log")
if os.path.exists(dockerd_log_path):
new_name = (
test_group_str
+ "_"
+ str(i)
+ "_"
+ os.path.basename(dockerd_log_path)
)
os.rename(
dockerd_log_path,
os.path.join(repo_path, "tests/integration", new_name),
)
2021-07-01 14:41:59 +00:00
extra_logs_names.append(new_name)
if os.path.exists(info_path):
extra_logs_names.append(info_basename)
new_counters = get_counters(info_path)
for state, tests in new_counters.items():
logging.info(
"Tests with %s state (%s): %s", state, len(tests), tests
)
2021-07-01 14:41:59 +00:00
times_lines = parse_test_times(info_path)
2021-02-23 07:24:51 +00:00
new_tests_times = get_test_times(times_lines)
2023-06-22 19:48:13 +00:00
self._update_counters(counters, new_counters, broken_tests)
2021-02-23 07:24:51 +00:00
for test_name, test_time in new_tests_times.items():
tests_times[test_name] = test_time
2021-07-01 14:41:59 +00:00
test_data_dirs_new = self._find_test_data_dirs(repo_path, test_names)
test_data_dirs_diff = self._get_test_data_dirs_difference(
test_data_dirs_new, test_data_dirs
)
2021-07-01 14:41:59 +00:00
test_data_dirs = test_data_dirs_new
if extra_logs_names or test_data_dirs_diff:
extras_result_path = os.path.join(
str(self.path()),
"integration_run_" + test_group_str + "_" + str(i) + ".tar.zst",
)
self._compress_logs(
os.path.join(repo_path, "tests/integration"),
extra_logs_names + list(test_data_dirs_diff),
extras_result_path,
)
2021-07-01 14:41:59 +00:00
log_paths.append(extras_result_path)
if len(counters["PASSED"]) == len(tests_in_group):
2021-02-23 07:24:51 +00:00
logging.info("All tests from group %s passed", test_group)
break
if (
len(counters["PASSED"]) >= 0
and len(counters["FAILED"]) == 0
and len(counters["ERROR"]) == 0
):
logging.info(
"Seems like all tests passed but some of them are skipped or "
"deselected. Ignoring them and finishing group."
)
2021-02-23 07:24:51 +00:00
break
else:
2021-06-09 13:40:28 +00:00
# Mark all non tried tests as errors, with '::' in name
# (example test_partition/test.py::test_partition_simple). For flaky check
# we run whole test dirs like "test_odbc_interaction" and don't
# want to mark them as error so we filter by '::'.
2021-02-23 07:24:51 +00:00
for test in tests_in_group:
if (
test not in counters["PASSED"]
and test not in counters["ERROR"]
and test not in counters["SKIPPED"]
and test not in counters["FAILED"]
and test not in counters["BROKEN"]
and "::" in test
):
2021-02-23 07:24:51 +00:00
counters["ERROR"].append(test)
2021-04-08 20:05:27 +00:00
return counters, tests_times, log_paths
2021-02-23 07:24:51 +00:00
2022-03-11 14:14:16 +00:00
def run_flaky_check(self, repo_path, build_path, should_fail=False):
pr_info = self.params["pr_info"]
2021-02-24 16:41:44 +00:00
2022-03-11 14:14:16 +00:00
tests_to_run = get_changed_tests_to_run(pr_info, repo_path)
2021-02-24 16:41:44 +00:00
if not tests_to_run:
logging.info("No integration tests to run found")
2022-03-18 12:36:45 +00:00
return "success", NO_CHANGES_MSG, [(NO_CHANGES_MSG, "OK")], ""
2021-02-24 16:41:44 +00:00
self._install_clickhouse(build_path)
logging.info("Found '%s' tests to run", " ".join(tests_to_run))
2021-02-24 16:41:44 +00:00
result_state = "success"
description_prefix = "No flaky tests: "
start = time.time()
logging.info("Starting check with retries")
final_retry = 0
2021-04-08 20:05:27 +00:00
logs = []
2022-03-11 14:14:16 +00:00
tires_num = 1 if should_fail else FLAKY_TRIES_COUNT
for i in range(tires_num):
2021-02-24 16:41:44 +00:00
final_retry += 1
logging.info("Running tests for the %s time", i)
counters, tests_times, log_paths = self.try_run_test_group(
2023-06-22 19:48:13 +00:00
repo_path, "bugfix" if should_fail else "flaky", tests_to_run, 1, 1, []
)
2021-04-08 20:05:27 +00:00
logs += log_paths
2021-02-24 16:41:44 +00:00
if counters["FAILED"]:
logging.info("Found failed tests: %s", " ".join(counters["FAILED"]))
2022-03-11 14:14:16 +00:00
description_prefix = "Failed tests found: "
2021-02-24 16:41:44 +00:00
result_state = "failure"
2022-03-11 14:14:16 +00:00
if not should_fail:
break
2021-02-24 16:41:44 +00:00
if counters["ERROR"]:
2022-03-11 14:14:16 +00:00
description_prefix = "Failed tests found: "
logging.info("Found error tests: %s", " ".join(counters["ERROR"]))
# NOTE "error" result state will restart the whole test task,
# so we use "failure" here
2021-03-16 17:48:45 +00:00
result_state = "failure"
2022-03-11 14:14:16 +00:00
if not should_fail:
break
2021-02-24 16:41:44 +00:00
logging.info("Try is OK, all tests passed, going to clear env")
clear_ip_tables_and_restart_daemons()
logging.info("And going to sleep for some time")
if time.time() - start > MAX_TIME_SECONDS:
logging.info("Timeout reached, going to finish flaky check")
break
time.sleep(5)
test_result = []
for state in ("ERROR", "FAILED", "PASSED", "SKIPPED"):
2021-02-24 16:41:44 +00:00
if state == "PASSED":
text_state = "OK"
elif state == "FAILED":
text_state = "FAIL"
else:
text_state = state
test_result += [
(
c + " (✕" + str(final_retry) + ")",
text_state,
"{:.2f}".format(tests_times[c]),
)
for c in counters[state]
]
status_text = description_prefix + ", ".join(
[
str(n).lower().replace("failed", "fail") + ": " + str(len(c))
for n, c in counters.items()
]
)
2021-02-24 16:41:44 +00:00
2021-07-01 14:41:59 +00:00
return result_state, status_text, test_result, logs
2021-02-24 16:41:44 +00:00
def run_impl(self, repo_path, build_path):
2022-03-11 14:14:16 +00:00
if self.flaky_check or self.bugfix_validate_check:
return self.run_flaky_check(
repo_path, build_path, should_fail=self.bugfix_validate_check
)
2021-02-24 16:41:44 +00:00
2021-02-23 07:24:51 +00:00
self._install_clickhouse(build_path)
2023-01-04 20:07:52 +00:00
logging.info("Pulling images")
runner._pre_pull_images(repo_path)
logging.info(
"Dump iptables before run %s",
subprocess.check_output("sudo iptables -nvL", shell=True),
)
2021-02-23 07:24:51 +00:00
all_tests = self._get_all_tests(repo_path)
if self.run_by_hash_total != 0:
grouped_tests = self.group_test_by_file(all_tests)
all_filtered_by_hash_tests = []
for group, tests_in_group in grouped_tests.items():
if stringhash(group) % self.run_by_hash_total == self.run_by_hash_num:
all_filtered_by_hash_tests += tests_in_group
all_tests = all_filtered_by_hash_tests
2021-05-25 16:53:42 +00:00
parallel_skip_tests = self._get_parallel_tests_skip_list(repo_path)
logging.info(
"Found %s tests first 3 %s", len(all_tests), " ".join(all_tests[:3])
)
filtered_sequential_tests = list(
filter(lambda test: has_test(all_tests, test), parallel_skip_tests)
)
filtered_parallel_tests = list(
filter(
lambda test: not has_test(parallel_skip_tests, test),
all_tests,
)
)
not_found_tests = list(
filter(
lambda test: not has_test(all_tests, test),
parallel_skip_tests,
)
)
logging.info(
"Found %s tests first 3 %s, parallel %s, other %s",
len(all_tests),
" ".join(all_tests[:3]),
len(filtered_parallel_tests),
len(filtered_sequential_tests),
)
logging.info(
"Not found %s tests first 3 %s",
len(not_found_tests),
" ".join(not_found_tests[:3]),
)
2021-03-19 16:47:59 +00:00
2021-05-25 16:53:42 +00:00
grouped_tests = self.group_test_by_file(filtered_sequential_tests)
i = 0
2021-06-04 10:15:44 +00:00
for par_group in chunks(filtered_parallel_tests, PARALLEL_GROUP_SIZE):
grouped_tests[f"parallel{i}"] = par_group
i += 1
2021-02-23 07:24:51 +00:00
logging.info("Found %s tests groups", len(grouped_tests))
counters = {
"ERROR": [],
"PASSED": [],
"FAILED": [],
2021-03-17 19:28:18 +00:00
"SKIPPED": [],
2023-06-22 19:48:13 +00:00
"BROKEN": [],
"NOT_FAILED": [],
2021-02-23 07:24:51 +00:00
}
tests_times = defaultdict(float)
2021-04-08 20:05:27 +00:00
tests_log_paths = defaultdict(list)
2021-02-23 07:24:51 +00:00
2021-03-23 03:35:08 +00:00
items_to_run = list(grouped_tests.items())
2021-02-23 07:24:51 +00:00
logging.info("Total test groups %s", len(items_to_run))
if self.shuffle_test_groups():
logging.info("Shuffling test groups")
random.shuffle(items_to_run)
2023-06-22 19:48:13 +00:00
broken_tests = list()
if self.use_analyzer:
with open(f"{repo_path}/tests/analyzer_integration_broken_tests.txt") as f:
broken_tests = f.read().splitlines()
logging.info(f"Broken tests in the list: {len(broken_tests)}")
2021-02-25 07:02:45 +00:00
for group, tests in items_to_run:
2021-12-17 12:01:57 +00:00
logging.info("Running test group %s containing %s tests", group, len(tests))
group_counters, group_test_times, log_paths = self.try_run_test_group(
2023-06-22 19:48:13 +00:00
repo_path, group, tests, MAX_RETRY, NUM_WORKERS, broken_tests
)
2021-02-23 07:24:51 +00:00
total_tests = 0
for counter, value in group_counters.items():
logging.info(
"Tests from group %s stats, %s count %s", group, counter, len(value)
)
2021-02-23 07:24:51 +00:00
counters[counter] += value
logging.info(
"Totally have %s with status %s", len(counters[counter]), counter
)
2021-02-23 07:24:51 +00:00
total_tests += len(counters[counter])
logging.info("Totally finished tests %s/%s", total_tests, len(all_tests))
for test_name, test_time in group_test_times.items():
tests_times[test_name] = test_time
2021-04-08 20:05:27 +00:00
tests_log_paths[test_name] = log_paths
2021-02-23 07:24:51 +00:00
if len(counters["FAILED"]) + len(counters["ERROR"]) >= 20:
logging.info("Collected more than 20 failed/error tests, stopping")
break
if counters["FAILED"] or counters["ERROR"]:
logging.info(
"Overall status failure, because we have tests in FAILED or ERROR state"
)
2021-02-23 07:24:51 +00:00
result_state = "failure"
else:
logging.info("Overall success!")
result_state = "success"
test_result = []
2023-07-12 09:26:01 +00:00
for state in (
"ERROR",
"FAILED",
"PASSED",
"SKIPPED",
"BROKEN",
"NOT_FAILED",
):
2021-02-23 07:24:51 +00:00
if state == "PASSED":
text_state = "OK"
elif state == "FAILED":
text_state = "FAIL"
else:
text_state = state
test_result += [
(c, text_state, "{:.2f}".format(tests_times[c]), tests_log_paths[c])
for c in counters[state]
]
2021-02-23 07:24:51 +00:00
failed_sum = len(counters["FAILED"]) + len(counters["ERROR"])
2023-07-15 21:10:21 +00:00
status_text = "fail: {}, passed: {}".format(failed_sum, len(counters["PASSED"]))
2021-02-23 07:24:51 +00:00
2021-03-16 17:48:45 +00:00
if self.soft_deadline_time < time.time():
status_text = "Timeout, " + status_text
result_state = "failure"
2021-02-23 07:24:51 +00:00
if not counters or sum(len(counter) for counter in counters.values()) == 0:
status_text = "No tests found for some reason! It's a bug"
result_state = "failure"
if "(memory)" in self.params["context_name"]:
2021-02-25 16:11:43 +00:00
result_state = "success"
2021-07-01 14:41:59 +00:00
return result_state, status_text, test_result, []
2021-02-23 07:24:51 +00:00
2021-02-23 07:24:51 +00:00
def write_results(results_file, status_file, results, status):
with open(results_file, "w") as f:
out = csv.writer(f, delimiter="\t")
2021-02-23 07:24:51 +00:00
out.writerows(results)
with open(status_file, "w") as f:
out = csv.writer(f, delimiter="\t")
2021-02-23 07:24:51 +00:00
out.writerow(status)
2021-02-23 07:24:51 +00:00
if __name__ == "__main__":
logging.basicConfig(level=logging.INFO, format="%(asctime)s %(message)s")
2021-02-23 07:24:51 +00:00
repo_path = os.environ.get("CLICKHOUSE_TESTS_REPO_PATH")
build_path = os.environ.get("CLICKHOUSE_TESTS_BUILD_PATH")
result_path = os.environ.get("CLICKHOUSE_TESTS_RESULT_PATH")
2021-02-24 16:41:44 +00:00
params_path = os.environ.get("CLICKHOUSE_TESTS_JSON_PARAMS_PATH")
2021-02-23 07:24:51 +00:00
params = json.loads(open(params_path, "r").read())
2021-02-24 16:41:44 +00:00
runner = ClickhouseIntegrationTestsRunner(result_path, params)
2021-02-23 07:24:51 +00:00
logging.info("Running tests")
# Avoid overlaps with previous runs
logging.info("Clearing dmesg before run")
subprocess.check_call( # STYLE_CHECK_ALLOW_SUBPROCESS_CHECK_CALL
"dmesg --clear", shell=True
)
2021-03-16 17:48:45 +00:00
state, description, test_results, _ = runner.run_impl(repo_path, build_path)
2021-02-23 07:24:51 +00:00
logging.info("Tests finished")
2021-02-24 16:41:44 +00:00
# Dump dmesg (to capture possible OOMs)
logging.info("Dumping dmesg")
subprocess.check_call( # STYLE_CHECK_ALLOW_SUBPROCESS_CHECK_CALL
"dmesg -T", shell=True
)
2021-02-23 07:24:51 +00:00
status = (state, description)
out_results_file = os.path.join(str(runner.path()), "test_results.tsv")
out_status_file = os.path.join(str(runner.path()), "check_status.tsv")
write_results(out_results_file, out_status_file, test_results, status)
logging.info("Result written")