2021-06-09 13:53:16 +00:00
|
|
|
from helpers.cluster import run_and_check
|
2021-06-04 14:33:22 +00:00
|
|
|
import pytest
|
|
|
|
import logging
|
2021-06-09 13:53:16 +00:00
|
|
|
import os
|
2017-05-19 18:54:05 +00:00
|
|
|
from helpers.test_tools import TSV
|
2021-06-04 14:33:22 +00:00
|
|
|
from helpers.network import _NetworkManager
|
2017-05-19 18:54:05 +00:00
|
|
|
|
2022-03-22 16:39:58 +00:00
|
|
|
|
2021-06-04 14:33:22 +00:00
|
|
|
@pytest.fixture(autouse=True, scope="session")
|
|
|
|
def cleanup_environment():
|
|
|
|
try:
|
2021-12-18 10:19:53 +00:00
|
|
|
if int(os.environ.get("PYTEST_CLEANUP_CONTAINERS", 0)) == 1:
|
2021-11-19 09:48:08 +00:00
|
|
|
logging.debug(f"Cleaning all iptables rules")
|
|
|
|
_NetworkManager.clean_all_user_iptables_rules()
|
2022-03-22 16:39:58 +00:00
|
|
|
result = run_and_check(["docker ps | wc -l"], shell=True)
|
2021-06-09 13:53:16 +00:00
|
|
|
if int(result) > 1:
|
2021-12-18 10:19:53 +00:00
|
|
|
if int(os.environ.get("PYTEST_CLEANUP_CONTAINERS", 0)) != 1:
|
2022-03-22 16:39:58 +00:00
|
|
|
logging.warning(
|
|
|
|
f"Docker containters({int(result)}) 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."
|
|
|
|
)
|
2021-06-04 15:00:59 +00:00
|
|
|
else:
|
2021-06-09 13:53:16 +00:00
|
|
|
logging.debug("Trying to kill unstopped containers...")
|
2022-03-22 16:39:58 +00:00
|
|
|
run_and_check(
|
|
|
|
[f"docker kill $(docker container list --all --quiet)"],
|
|
|
|
shell=True,
|
|
|
|
nothrow=True,
|
|
|
|
)
|
|
|
|
run_and_check(
|
|
|
|
[f"docker rm $docker container list --all --quiet)"],
|
|
|
|
shell=True,
|
|
|
|
nothrow=True,
|
|
|
|
)
|
2021-06-09 13:53:16 +00:00
|
|
|
logging.debug("Unstopped containers killed")
|
2022-03-22 16:39:58 +00:00
|
|
|
r = run_and_check(["docker-compose", "ps", "--services", "--all"])
|
2021-06-09 13:53:16 +00:00
|
|
|
logging.debug(f"Docker ps before start:{r.stdout}")
|
|
|
|
else:
|
|
|
|
logging.debug(f"No running containers")
|
2021-06-04 15:00:59 +00:00
|
|
|
except Exception as e:
|
2021-06-09 13:53:16 +00:00
|
|
|
logging.exception(f"cleanup_environment:{str(e)}")
|
2021-06-04 14:33:22 +00:00
|
|
|
pass
|
2020-09-16 04:26:10 +00:00
|
|
|
|
2021-06-21 08:14:26 +00:00
|
|
|
yield
|
|
|
|
|
2022-03-22 16:39:58 +00:00
|
|
|
|
2021-06-21 08:14:26 +00:00
|
|
|
def pytest_addoption(parser):
|
2022-03-22 16:39:58 +00:00
|
|
|
parser.addoption(
|
|
|
|
"--run-id",
|
|
|
|
default="",
|
|
|
|
help="run-id is used as postfix in _instances_{} directory",
|
|
|
|
)
|
|
|
|
|
2021-06-21 08:14:26 +00:00
|
|
|
|
|
|
|
def pytest_configure(config):
|
2022-03-22 16:39:58 +00:00
|
|
|
os.environ["INTEGRATION_TESTS_RUN_ID"] = config.option.run_id
|