2022-07-05 07:18:37 +00:00
|
|
|
import logging
|
|
|
|
import os
|
2022-07-26 07:28:13 +00:00
|
|
|
import re
|
2022-07-05 07:18:37 +00:00
|
|
|
import shutil
|
2022-08-26 19:58:56 +00:00
|
|
|
from datetime import datetime
|
2022-07-05 07:18:37 +00:00
|
|
|
|
|
|
|
import pytest
|
|
|
|
import wallet
|
|
|
|
from cli_helpers import _cmd_run
|
2022-08-29 14:36:27 +00:00
|
|
|
from cli_utils import NeofsAdm, NeofsCli
|
2022-09-05 09:35:46 +00:00
|
|
|
from common import (
|
|
|
|
ASSETS_DIR,
|
|
|
|
FREE_STORAGE,
|
|
|
|
INFRASTRUCTURE_TYPE,
|
|
|
|
MAINNET_WALLET_PATH,
|
|
|
|
NEOFS_NETMAP_DICT
|
|
|
|
)
|
2022-08-08 16:51:28 +00:00
|
|
|
from env_properties import save_env_properties
|
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-08-29 14:36:27 +00:00
|
|
|
from robot.api import deco
|
2022-08-04 21:03:06 +00:00
|
|
|
from service_helper import get_storage_service_helper
|
2022-09-05 09:35:46 +00:00
|
|
|
from wallet import init_wallet
|
|
|
|
|
|
|
|
import allure
|
2022-07-20 14:55:25 +00:00
|
|
|
|
2022-07-05 07:18:37 +00:00
|
|
|
|
2022-09-05 09:35:46 +00:00
|
|
|
logger = logging.getLogger("NeoLogger")
|
2022-07-05 07:18:37 +00:00
|
|
|
|
|
|
|
|
2022-09-05 09:35:46 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2022-08-02 06:37:28 +00:00
|
|
|
def cloud_infrastructure_check():
|
2022-08-04 21:03:06 +00:00
|
|
|
if INFRASTRUCTURE_TYPE != "CLOUD_VM":
|
2022-09-05 09:35:46 +00:00
|
|
|
pytest.skip("Test only works on SberCloud infrastructure")
|
2022-08-01 06:16:36 +00:00
|
|
|
yield
|
|
|
|
|
|
|
|
|
2022-09-05 09:35:46 +00:00
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
|
|
@allure.title("Check binary versions")
|
2022-07-05 07:18:37 +00:00
|
|
|
def check_binary_versions(request):
|
2022-08-04 21:03:06 +00:00
|
|
|
# Collect versions of local binaries
|
2022-09-05 09:35:46 +00:00
|
|
|
binaries = ["neo-go", "neofs-authmate"]
|
2022-08-08 16:51:28 +00:00
|
|
|
local_binaries = _get_binaries_version_local(binaries)
|
2022-08-03 15:20:50 +00:00
|
|
|
|
2022-08-29 14:36:27 +00:00
|
|
|
try:
|
2022-09-05 09:35:46 +00:00
|
|
|
local_binaries["neofs-adm"] = NeofsAdm().version.get()
|
2022-08-29 14:36:27 +00:00
|
|
|
except RuntimeError:
|
2022-09-05 09:35:46 +00:00
|
|
|
logger.info(f"neofs-adm not installed")
|
|
|
|
local_binaries["neofs-cli"] = NeofsCli().version.get()
|
2022-08-29 14:36:27 +00:00
|
|
|
|
2022-08-04 21:03:06 +00:00
|
|
|
# Collect versions of remote binaries
|
|
|
|
helper = get_storage_service_helper()
|
|
|
|
remote_binaries = helper.get_binaries_version()
|
2022-08-08 16:51:28 +00:00
|
|
|
all_binaries = {**local_binaries, **remote_binaries}
|
2022-07-26 07:28:13 +00:00
|
|
|
|
|
|
|
# Get version of aws binary
|
2022-09-05 09:35:46 +00:00
|
|
|
out = _cmd_run("aws --version")
|
2022-07-26 07:28:13 +00:00
|
|
|
out_lines = out.split("\n")
|
2022-09-05 09:35:46 +00:00
|
|
|
all_binaries["AWS"] = out_lines[0] if out_lines else "Unknown"
|
2022-07-05 07:18:37 +00:00
|
|
|
|
2022-08-08 16:51:28 +00:00
|
|
|
save_env_properties(request.config, all_binaries)
|
2022-07-05 07:18:37 +00:00
|
|
|
|
|
|
|
|
2022-08-03 15:20:50 +00:00
|
|
|
def _get_binaries_version_local(binaries: list) -> dict:
|
|
|
|
env_out = {}
|
|
|
|
for binary in binaries:
|
2022-09-05 09:35:46 +00:00
|
|
|
out = _cmd_run(f"{binary} --version")
|
|
|
|
version = re.search(r"version[:\s]*(.+)", out, re.IGNORECASE)
|
|
|
|
env_out[binary] = version.group(1).strip() if version else "Unknown"
|
2022-08-03 15:20:50 +00:00
|
|
|
return env_out
|
|
|
|
|
|
|
|
|
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")
|
|
|
|
def collect_logs(prepare_tmp_dir):
|
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-08-26 19:58:56 +00:00
|
|
|
helper = get_storage_service_helper()
|
2022-08-29 20:42:34 +00:00
|
|
|
helper.dump_logs(logs_dir, since=start_time, until=end_time)
|
|
|
|
|
|
|
|
# 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-08-26 19:58:56 +00:00
|
|
|
def run_health_check(collect_logs):
|
2022-07-20 14:55:25 +00:00
|
|
|
failed_nodes = []
|
|
|
|
for node_name in NEOFS_NETMAP_DICT.keys():
|
|
|
|
health_check = node_healthcheck(node_name)
|
2022-09-05 09:35:46 +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):
|
|
|
|
wallet_path, addr, _ = wallet.init_wallet(ASSETS_DIR)
|
2022-09-05 09:35:46 +00:00
|
|
|
logger.info(f"Init wallet: {wallet_path},\naddr: {addr}")
|
|
|
|
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
|