mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
154 lines
5.1 KiB
Python
154 lines
5.1 KiB
Python
#!/usr/bin/env python3
|
|
# pylint: disable=unused-argument
|
|
# pylint: disable=broad-exception-raised
|
|
|
|
import logging
|
|
import os
|
|
|
|
import pytest # pylint:disable=import-error; for style check
|
|
from helpers.cluster import run_and_check, is_port_free
|
|
from helpers.network import _NetworkManager
|
|
|
|
# This is a workaround for a problem with logging in pytest [1].
|
|
#
|
|
# [1]: https://github.com/pytest-dev/pytest/issues/5502
|
|
logging.raiseExceptions = False
|
|
PORTS_PER_WORKER = 50
|
|
|
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
def pdb_history(request):
|
|
"""
|
|
Fixture loads and saves pdb history to file, so it can be preserved between runs
|
|
"""
|
|
if request.config.getoption("--pdb"):
|
|
import readline # pylint:disable=import-outside-toplevel
|
|
import pdb # pylint:disable=import-outside-toplevel
|
|
|
|
def save_history():
|
|
readline.write_history_file(".pdb_history")
|
|
|
|
def load_history():
|
|
try:
|
|
readline.read_history_file(".pdb_history")
|
|
except FileNotFoundError:
|
|
pass
|
|
|
|
load_history()
|
|
pdb.Pdb.use_rawinput = True
|
|
|
|
yield
|
|
|
|
save_history()
|
|
else:
|
|
yield
|
|
|
|
|
|
@pytest.fixture(autouse=True, scope="session")
|
|
def tune_local_port_range():
|
|
# Lots of services uses non privileged ports:
|
|
# - hdfs -- 50020/50070/...
|
|
# - minio
|
|
#
|
|
# NOTE: 5K is not enough, and sometimes leads to EADDRNOTAVAIL error.
|
|
# NOTE: it is not inherited, so you may need to specify this in docker_compose_$SERVICE.yml
|
|
try:
|
|
run_and_check(["sysctl net.ipv4.ip_local_port_range='55000 65535'"], shell=True)
|
|
except Exception as ex:
|
|
logging.warning(
|
|
"Failed to run sysctl, tests may fail with EADDRINUSE %s", str(ex)
|
|
)
|
|
|
|
|
|
@pytest.fixture(autouse=True, scope="session")
|
|
def cleanup_environment():
|
|
try:
|
|
if int(os.environ.get("PYTEST_CLEANUP_CONTAINERS", 0)) == 1:
|
|
logging.debug("Cleaning all iptables rules")
|
|
_NetworkManager.clean_all_user_iptables_rules()
|
|
result = run_and_check(["docker ps | wc -l"], shell=True)
|
|
if int(result) > 1:
|
|
if int(os.environ.get("PYTEST_CLEANUP_CONTAINERS", 0)) != 1:
|
|
logging.warning(
|
|
"Docker containters(%s) are running before tests run. "
|
|
"They can be left from previous pytest run and cause test failures.\n"
|
|
"You can set env PYTEST_CLEANUP_CONTAINERS=1 or use runner with "
|
|
"--cleanup-containers argument to enable automatic containers cleanup.",
|
|
int(result),
|
|
)
|
|
else:
|
|
logging.debug("Trying to kill unstopped containers...")
|
|
run_and_check(
|
|
["docker kill $(docker container list --all --quiet)"],
|
|
shell=True,
|
|
nothrow=True,
|
|
)
|
|
run_and_check(
|
|
["docker rm $docker container list --all --quiet)"],
|
|
shell=True,
|
|
nothrow=True,
|
|
)
|
|
logging.debug("Unstopped containers killed")
|
|
r = run_and_check(["docker-compose", "ps", "--services", "--all"])
|
|
logging.debug("Docker ps before start:%s", r.stdout)
|
|
else:
|
|
logging.debug("No running containers")
|
|
|
|
logging.debug("Pruning Docker networks")
|
|
run_and_check(
|
|
["docker network prune --force"],
|
|
shell=True,
|
|
nothrow=True,
|
|
)
|
|
except Exception as e:
|
|
logging.exception("cleanup_environment:%s", e)
|
|
|
|
yield
|
|
|
|
|
|
def pytest_addoption(parser):
|
|
parser.addoption(
|
|
"--run-id",
|
|
default="",
|
|
help="run-id is used as postfix in _instances_{} directory",
|
|
)
|
|
|
|
|
|
def get_unique_free_ports(total):
|
|
ports = []
|
|
for port in range(30000, 55000):
|
|
if is_port_free(port) and port not in ports:
|
|
ports.append(port)
|
|
|
|
if len(ports) == total:
|
|
return ports
|
|
|
|
raise Exception(f"Can't collect {total} ports. Collected: {len(ports)}")
|
|
|
|
|
|
def pytest_configure(config):
|
|
os.environ["INTEGRATION_TESTS_RUN_ID"] = config.option.run_id
|
|
|
|
# When running tests without pytest-xdist,
|
|
# the `pytest_xdist_setupnodes` hook is not executed
|
|
worker_ports = os.getenv("WORKER_FREE_PORTS", None)
|
|
if worker_ports is None:
|
|
master_ports = get_unique_free_ports(PORTS_PER_WORKER)
|
|
os.environ["WORKER_FREE_PORTS"] = " ".join([str(p) for p in master_ports])
|
|
|
|
|
|
def pytest_xdist_setupnodes(config, specs):
|
|
# Find {PORTS_PER_WORKER} * {number of xdist workers} ports and
|
|
# allocate pool of {PORTS_PER_WORKER} ports to each worker
|
|
|
|
# Get number of xdist workers
|
|
num_workers = len(specs)
|
|
# Get free ports which will be distributed across workers
|
|
ports = get_unique_free_ports(num_workers * PORTS_PER_WORKER)
|
|
|
|
# Iterate over specs of workers and add allocated ports to env variable
|
|
for i, spec in enumerate(specs):
|
|
start_range = i * PORTS_PER_WORKER
|
|
per_workrer_ports = ports[start_range : start_range + PORTS_PER_WORKER]
|
|
spec.env["WORKER_FREE_PORTS"] = " ".join([str(p) for p in per_workrer_ports])
|