2022-07-05 07:18:37 +00:00
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import shutil
|
2022-08-26 19:58:56 +00:00
|
|
|
from datetime import datetime
|
2022-07-05 07:18:37 +00:00
|
|
|
|
2022-09-20 15:03:52 +00:00
|
|
|
import allure
|
2022-07-05 07:18:37 +00:00
|
|
|
import pytest
|
|
|
|
import wallet
|
2022-10-09 20:01:59 +00:00
|
|
|
import yaml
|
|
|
|
from binary_version_helper import get_local_binaries_versions, get_remote_binaries_versions
|
2022-09-05 09:35:46 +00:00
|
|
|
from common import (
|
|
|
|
ASSETS_DIR,
|
|
|
|
FREE_STORAGE,
|
2022-10-09 20:01:59 +00:00
|
|
|
HOSTING_CONFIG_FILE,
|
2022-09-05 09:35:46 +00:00
|
|
|
MAINNET_WALLET_PATH,
|
2022-09-20 15:03:52 +00:00
|
|
|
NEOFS_NETMAP_DICT,
|
2022-09-05 09:35:46 +00:00
|
|
|
)
|
2022-08-08 16:51:28 +00:00
|
|
|
from env_properties import save_env_properties
|
2022-10-09 20:01:59 +00:00
|
|
|
from neofs_testlib.hosting import Hosting
|
2022-10-13 18:53:44 +00:00
|
|
|
from neofs_testlib.shell import LocalShell, Shell
|
2022-07-01 17:30:07 +00:00
|
|
|
from payment_neogo import neofs_deposit, transfer_mainnet_gas
|
2022-08-04 21:03:06 +00:00
|
|
|
from python_keywords.node_management import node_healthcheck
|
2022-09-05 09:35:46 +00:00
|
|
|
|
|
|
|
logger = logging.getLogger("NeoLogger")
|
2022-07-05 07:18:37 +00:00
|
|
|
|
|
|
|
|
2022-10-13 18:53:44 +00:00
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
def client_shell() -> Shell:
|
|
|
|
yield LocalShell()
|
|
|
|
|
|
|
|
|
2022-09-05 09:35:46 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2022-10-13 12:12:28 +00:00
|
|
|
def require_multiple_hosts(hosting: Hosting):
|
|
|
|
"""Fixture that is applied to tests that require that environment has multiple hosts."""
|
|
|
|
if len(hosting.hosts) <= 1:
|
|
|
|
pytest.skip("Test only works with multiple hosts")
|
2022-08-01 06:16:36 +00:00
|
|
|
yield
|
|
|
|
|
|
|
|
|
2022-10-09 20:01:59 +00:00
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
def hosting() -> Hosting:
|
|
|
|
with open(HOSTING_CONFIG_FILE, "r") as file:
|
|
|
|
hosting_config = yaml.full_load(file)
|
2022-07-26 07:28:13 +00:00
|
|
|
|
2022-10-09 20:01:59 +00:00
|
|
|
hosting_instance = Hosting()
|
|
|
|
hosting_instance.configure(hosting_config)
|
|
|
|
yield hosting_instance
|
2022-07-05 07:18:37 +00:00
|
|
|
|
|
|
|
|
2022-10-09 20:01:59 +00:00
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
|
|
@allure.title("Check binary versions")
|
|
|
|
def check_binary_versions(request, hosting: Hosting, client_shell: Shell):
|
|
|
|
local_versions = get_local_binaries_versions(client_shell)
|
|
|
|
remote_versions = get_remote_binaries_versions(hosting)
|
2022-07-05 07:18:37 +00:00
|
|
|
|
2022-10-09 20:01:59 +00:00
|
|
|
all_versions = {**local_versions, **remote_versions}
|
|
|
|
save_env_properties(request.config, all_versions)
|
2022-08-03 15:20:50 +00:00
|
|
|
|
|
|
|
|
2022-09-05 09:35:46 +00:00
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
@allure.title("Prepare tmp directory")
|
2022-08-29 20:42:34 +00:00
|
|
|
def prepare_tmp_dir():
|
2022-09-05 09:35:46 +00:00
|
|
|
full_path = f"{os.getcwd()}/{ASSETS_DIR}"
|
2022-08-29 20:42:34 +00:00
|
|
|
shutil.rmtree(full_path, ignore_errors=True)
|
|
|
|
os.mkdir(full_path)
|
|
|
|
yield full_path
|
|
|
|
shutil.rmtree(full_path)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
|
|
@allure.title("Collect logs")
|
2022-10-09 20:01:59 +00:00
|
|
|
def collect_logs(prepare_tmp_dir, hosting: Hosting):
|
2022-08-26 19:58:56 +00:00
|
|
|
start_time = datetime.utcnow()
|
|
|
|
yield
|
|
|
|
end_time = datetime.utcnow()
|
|
|
|
|
2022-08-29 20:42:34 +00:00
|
|
|
# Dump logs to temp directory (because they might be too large to keep in RAM)
|
|
|
|
logs_dir = os.path.join(prepare_tmp_dir, "logs")
|
|
|
|
os.makedirs(logs_dir)
|
|
|
|
|
2022-10-09 20:01:59 +00:00
|
|
|
for host in hosting.hosts:
|
|
|
|
host.dump_logs(logs_dir, since=start_time, until=end_time)
|
2022-08-29 20:42:34 +00:00
|
|
|
|
|
|
|
# Zip all files and attach to Allure because it is more convenient to download a single
|
|
|
|
# zip with all logs rather than mess with individual logs files per service or node
|
|
|
|
logs_zip_file_path = shutil.make_archive(logs_dir, "zip", logs_dir)
|
|
|
|
allure.attach.file(logs_zip_file_path, name="logs.zip", extension="zip")
|
2022-08-26 19:58:56 +00:00
|
|
|
|
|
|
|
|
2022-09-05 09:35:46 +00:00
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
|
|
@allure.title("Run health check for all storage nodes")
|
2022-10-09 20:01:59 +00:00
|
|
|
def run_health_check(collect_logs, hosting: Hosting):
|
2022-07-20 14:55:25 +00:00
|
|
|
failed_nodes = []
|
|
|
|
for node_name in NEOFS_NETMAP_DICT.keys():
|
2022-10-09 20:01:59 +00:00
|
|
|
health_check = node_healthcheck(hosting, node_name)
|
2022-09-20 15:03:52 +00:00
|
|
|
if health_check.health_status != "READY" or health_check.network_status != "ONLINE":
|
2022-07-20 14:55:25 +00:00
|
|
|
failed_nodes.append(node_name)
|
|
|
|
|
|
|
|
if failed_nodes:
|
2022-09-05 09:35:46 +00:00
|
|
|
raise AssertionError(f"Nodes {failed_nodes} are not healthy")
|
2022-07-20 14:55:25 +00:00
|
|
|
|
|
|
|
|
2022-09-05 09:35:46 +00:00
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
@allure.title("Prepare wallet and deposit")
|
2022-07-26 19:44:05 +00:00
|
|
|
def prepare_wallet_and_deposit(prepare_tmp_dir):
|
2022-10-13 12:12:28 +00:00
|
|
|
wallet_path, address, _ = wallet.init_wallet(ASSETS_DIR)
|
|
|
|
logger.info(f"Init wallet: {wallet_path}, address: {address}")
|
2022-09-20 15:03:52 +00:00
|
|
|
allure.attach.file(wallet_path, os.path.basename(wallet_path), allure.attachment_type.JSON)
|
2022-07-01 17:30:07 +00:00
|
|
|
|
2022-07-05 10:17:36 +00:00
|
|
|
if not FREE_STORAGE:
|
|
|
|
deposit = 30
|
2022-07-26 19:44:05 +00:00
|
|
|
transfer_mainnet_gas(wallet_path, deposit + 1, wallet_path=MAINNET_WALLET_PATH)
|
|
|
|
neofs_deposit(wallet_path, deposit)
|
2022-07-05 07:18:37 +00:00
|
|
|
|
2022-07-26 19:44:05 +00:00
|
|
|
return wallet_path
|