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
|
2023-05-15 09:59:33 +00:00
|
|
|
from typing import Optional
|
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
|
2022-10-09 20:01:59 +00:00
|
|
|
import yaml
|
2023-02-27 16:54:27 +00:00
|
|
|
from frostfs_testlib.hosting import Hosting
|
|
|
|
from frostfs_testlib.reporter import AllureHandler, get_reporter
|
2023-05-15 09:59:33 +00:00
|
|
|
from frostfs_testlib.resources.common import (
|
2022-11-28 19:27:37 +00:00
|
|
|
ASSETS_DIR,
|
2022-12-07 12:38:56 +00:00
|
|
|
COMPLEX_OBJECT_CHUNKS_COUNT,
|
|
|
|
COMPLEX_OBJECT_TAIL_SIZE,
|
2023-05-15 09:59:33 +00:00
|
|
|
DEFAULT_WALLET_PASS,
|
2022-12-07 12:38:56 +00:00
|
|
|
SIMPLE_OBJECT_SIZE,
|
2022-12-06 19:57:29 +00:00
|
|
|
)
|
2023-05-15 09:59:33 +00:00
|
|
|
from frostfs_testlib.s3.interfaces import S3ClientWrapper, VersioningStatus
|
|
|
|
from frostfs_testlib.shell import LocalShell, Shell
|
|
|
|
from frostfs_testlib.steps.cli.container import list_containers
|
|
|
|
from frostfs_testlib.steps.cli.object import get_netmap_netinfo
|
|
|
|
from frostfs_testlib.steps.node_management import storage_node_healthcheck
|
|
|
|
from frostfs_testlib.steps.s3 import s3_helper
|
|
|
|
from frostfs_testlib.storage.cluster import Cluster
|
2023-05-26 04:49:23 +00:00
|
|
|
from frostfs_testlib.storage.controllers.cluster_state_controller import ClusterStateController
|
2023-06-21 11:31:42 +00:00
|
|
|
from frostfs_testlib.storage.dataclasses.wallet import WalletFactory, WalletInfo
|
2023-05-15 09:59:33 +00:00
|
|
|
from frostfs_testlib.testing.cluster_test_base import ClusterTestBase
|
|
|
|
from frostfs_testlib.utils import env_utils, version_utils
|
|
|
|
|
|
|
|
from pytest_tests.resources.common import HOSTING_CONFIG_FILE, TEST_CYCLES_COUNT
|
2022-09-05 09:35:46 +00:00
|
|
|
|
|
|
|
logger = logging.getLogger("NeoLogger")
|
2022-07-05 07:18:37 +00:00
|
|
|
|
2022-11-07 07:10:11 +00:00
|
|
|
|
2023-03-14 09:21:40 +00:00
|
|
|
# Add logs check test even if it's not fit to mark selectors
|
|
|
|
def pytest_configure(config: pytest.Config):
|
|
|
|
markers = config.option.markexpr
|
|
|
|
if markers != "":
|
|
|
|
config.option.markexpr = f"logs_after_session or ({markers})"
|
|
|
|
|
|
|
|
|
|
|
|
# pytest hook. Do not rename
|
2023-03-17 08:49:58 +00:00
|
|
|
def pytest_collection_modifyitems(items: list[pytest.Item]):
|
2023-03-14 09:21:40 +00:00
|
|
|
# Make network tests last based on @pytest.mark.node_mgmt and logs_test to be latest
|
2022-11-03 13:17:08 +00:00
|
|
|
def priority(item: pytest.Item) -> int:
|
2023-03-14 09:21:40 +00:00
|
|
|
is_node_mgmt_test = 1 if item.get_closest_marker("node_mgmt") else 0
|
|
|
|
is_logs_check_test = 100 if item.get_closest_marker("logs_after_session") else 0
|
|
|
|
return is_node_mgmt_test + is_logs_check_test
|
2022-11-03 13:17:08 +00:00
|
|
|
|
|
|
|
items.sort(key=lambda item: priority(item))
|
2022-07-05 07:18:37 +00:00
|
|
|
|
2022-11-07 07:10:11 +00:00
|
|
|
|
2023-03-17 08:49:58 +00:00
|
|
|
def pytest_generate_tests(metafunc: pytest.Metafunc):
|
|
|
|
if (
|
|
|
|
TEST_CYCLES_COUNT <= 1
|
|
|
|
or metafunc.definition.get_closest_marker("logs_after_session")
|
|
|
|
or metafunc.definition.get_closest_marker("no_cycles")
|
|
|
|
):
|
|
|
|
return
|
|
|
|
|
|
|
|
metafunc.fixturenames.append("cycle")
|
|
|
|
metafunc.parametrize(
|
|
|
|
"cycle",
|
|
|
|
range(1, TEST_CYCLES_COUNT + 1),
|
|
|
|
ids=[f"cycle {cycle}" for cycle in range(1, TEST_CYCLES_COUNT + 1)],
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2022-10-13 18:53:44 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2022-10-13 16:13:45 +00:00
|
|
|
def configure_testlib():
|
|
|
|
get_reporter().register_handler(AllureHandler())
|
2023-05-15 09:59:33 +00:00
|
|
|
logging.getLogger("paramiko").setLevel(logging.INFO)
|
2022-10-13 16:13:45 +00:00
|
|
|
yield
|
2022-10-13 18:53:44 +00:00
|
|
|
|
|
|
|
|
2022-09-05 09:35:46 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2022-10-13 16:13:45 +00:00
|
|
|
def client_shell(configure_testlib) -> Shell:
|
|
|
|
yield LocalShell()
|
2022-08-01 06:16:36 +00:00
|
|
|
|
|
|
|
|
2022-10-09 20:01:59 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2022-10-13 16:13:45 +00:00
|
|
|
def hosting(configure_testlib) -> Hosting:
|
2022-10-09 20:01:59 +00:00
|
|
|
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)
|
2022-12-05 22:31:45 +00:00
|
|
|
|
2022-10-09 20:01:59 +00:00
|
|
|
yield hosting_instance
|
2022-07-05 07:18:37 +00:00
|
|
|
|
|
|
|
|
2022-10-13 16:13:45 +00:00
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
def require_multiple_hosts(hosting: Hosting):
|
2022-10-14 16:56:15 +00:00
|
|
|
"""Designates tests that require environment with multiple hosts.
|
|
|
|
|
|
|
|
These tests will be skipped on an environment that has only 1 host.
|
|
|
|
"""
|
2022-10-13 16:13:45 +00:00
|
|
|
if len(hosting.hosts) <= 1:
|
|
|
|
pytest.skip("Test only works with multiple hosts")
|
|
|
|
yield
|
|
|
|
|
|
|
|
|
2022-12-07 12:38:56 +00:00
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
def max_object_size(cluster: Cluster, client_shell: Shell) -> int:
|
|
|
|
storage_node = cluster.storage_nodes[0]
|
|
|
|
net_info = get_netmap_netinfo(
|
|
|
|
wallet=storage_node.get_wallet_path(),
|
|
|
|
wallet_config=storage_node.get_wallet_config_path(),
|
|
|
|
endpoint=storage_node.get_rpc_endpoint(),
|
|
|
|
shell=client_shell,
|
|
|
|
)
|
|
|
|
yield net_info["maximum_object_size"]
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
def simple_object_size(max_object_size: int) -> int:
|
|
|
|
yield int(SIMPLE_OBJECT_SIZE) if int(SIMPLE_OBJECT_SIZE) < max_object_size else max_object_size
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
def complex_object_size(max_object_size: int) -> int:
|
|
|
|
return max_object_size * int(COMPLEX_OBJECT_CHUNKS_COUNT) + int(COMPLEX_OBJECT_TAIL_SIZE)
|
|
|
|
|
|
|
|
|
2022-11-10 14:56:25 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2022-12-05 22:31:45 +00:00
|
|
|
def wallet_factory(temp_directory: str, client_shell: Shell, cluster: Cluster) -> WalletFactory:
|
|
|
|
return WalletFactory(temp_directory, client_shell, cluster)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="session")
|
2023-05-15 09:59:33 +00:00
|
|
|
def cluster(temp_directory: str, hosting: Hosting, client_shell: Shell) -> Cluster:
|
2022-12-23 08:52:05 +00:00
|
|
|
cluster = Cluster(hosting)
|
2023-05-15 09:59:33 +00:00
|
|
|
if cluster.is_local_devenv():
|
2022-12-23 08:52:05 +00:00
|
|
|
cluster.create_wallet_configs(hosting)
|
2023-05-15 09:59:33 +00:00
|
|
|
|
|
|
|
ClusterTestBase.shell = client_shell
|
|
|
|
ClusterTestBase.cluster = cluster
|
|
|
|
|
2022-12-23 08:52:05 +00:00
|
|
|
yield cluster
|
2022-11-10 14:56:25 +00:00
|
|
|
|
|
|
|
|
2023-05-15 09:59:33 +00:00
|
|
|
@allure.step("[Class]: Provide S3 policy")
|
|
|
|
@pytest.fixture(scope="class")
|
|
|
|
def s3_policy(request: pytest.FixtureRequest):
|
|
|
|
policy = None
|
|
|
|
if "param" in request.__dict__:
|
|
|
|
policy = request.param
|
|
|
|
|
|
|
|
return policy
|
|
|
|
|
|
|
|
|
2023-05-26 04:49:23 +00:00
|
|
|
@pytest.fixture(scope="session")
|
|
|
|
def cluster_state_controller(client_shell: Shell, cluster: Cluster) -> ClusterStateController:
|
|
|
|
controller = ClusterStateController(client_shell, cluster)
|
|
|
|
yield controller
|
|
|
|
|
|
|
|
|
2023-05-15 09:59:33 +00:00
|
|
|
@allure.step("[Class]: Create S3 client")
|
|
|
|
@pytest.fixture(scope="class")
|
|
|
|
def s3_client(
|
|
|
|
default_wallet: str,
|
|
|
|
client_shell: Shell,
|
|
|
|
s3_policy: Optional[str],
|
|
|
|
cluster: Cluster,
|
|
|
|
request: pytest.FixtureRequest,
|
|
|
|
) -> S3ClientWrapper:
|
2023-06-21 11:31:42 +00:00
|
|
|
wallet = WalletInfo(path=default_wallet, password=DEFAULT_WALLET_PASS)
|
2023-05-15 09:59:33 +00:00
|
|
|
|
|
|
|
(cid, access_key_id, secret_access_key) = s3_helper.init_s3_credentials(
|
2023-06-21 11:31:42 +00:00
|
|
|
wallet,
|
|
|
|
client_shell,
|
|
|
|
cluster,
|
|
|
|
s3gates=[cluster_node.s3_gate for cluster_node in cluster.cluster_nodes],
|
|
|
|
policy=s3_policy,
|
2023-05-15 09:59:33 +00:00
|
|
|
)
|
|
|
|
containers_list = list_containers(
|
2023-06-21 11:31:42 +00:00
|
|
|
wallet.path, shell=client_shell, endpoint=cluster.default_rpc_endpoint
|
2023-05-15 09:59:33 +00:00
|
|
|
)
|
|
|
|
assert cid in containers_list, f"Expected cid {cid} in {containers_list}"
|
|
|
|
|
|
|
|
s3_client_cls = request.param
|
|
|
|
client = s3_client_cls(access_key_id, secret_access_key, cluster.default_s3_gate_endpoint)
|
|
|
|
yield client
|
|
|
|
|
|
|
|
|
|
|
|
@allure.step("Create/delete bucket")
|
|
|
|
@pytest.fixture
|
|
|
|
def bucket(s3_client: S3ClientWrapper, request: pytest.FixtureRequest):
|
|
|
|
bucket_name = s3_client.create_bucket()
|
|
|
|
|
|
|
|
versioning_status: Optional[VersioningStatus] = None
|
|
|
|
if "param" in request.__dict__:
|
|
|
|
versioning_status = request.param
|
|
|
|
|
|
|
|
if versioning_status:
|
|
|
|
s3_helper.set_bucket_versioning(s3_client, bucket_name, versioning_status)
|
|
|
|
|
|
|
|
yield bucket_name
|
|
|
|
s3_helper.delete_bucket_with_objects(s3_client, bucket_name)
|
|
|
|
|
|
|
|
|
|
|
|
@allure.step("Create two buckets")
|
|
|
|
@pytest.fixture
|
|
|
|
def two_buckets(s3_client: S3ClientWrapper):
|
|
|
|
bucket_1 = s3_client.create_bucket()
|
|
|
|
bucket_2 = s3_client.create_bucket()
|
|
|
|
yield bucket_1, bucket_2
|
|
|
|
for bucket_name in [bucket_1, bucket_2]:
|
|
|
|
s3_helper.delete_bucket_with_objects(s3_client, bucket_name)
|
|
|
|
|
|
|
|
|
|
|
|
@allure.step("Check binary versions")
|
2022-10-09 20:01:59 +00:00
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
2023-05-15 09:59:33 +00:00
|
|
|
def check_binary_versions(hosting: Hosting, client_shell: Shell, request: pytest.FixtureRequest):
|
|
|
|
local_versions = version_utils.get_local_binaries_versions(client_shell)
|
|
|
|
remote_versions = version_utils.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}
|
2023-05-15 09:59:33 +00:00
|
|
|
|
|
|
|
environment_dir = request.config.getoption("--alluredir")
|
|
|
|
if not environment_dir:
|
|
|
|
return None
|
|
|
|
|
|
|
|
file_path = f"{environment_dir}/environment.properties"
|
|
|
|
env_utils.save_env_properties(file_path, all_versions)
|
2022-08-03 15:20:50 +00:00
|
|
|
|
|
|
|
|
2023-05-15 09:59:33 +00:00
|
|
|
@allure.step("Prepare tmp directory")
|
2022-09-05 09:35:46 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2022-12-05 22:31:45 +00:00
|
|
|
def temp_directory():
|
2022-11-10 14:56:25 +00:00
|
|
|
with allure.step("Prepare tmp directory"):
|
|
|
|
full_path = os.path.join(os.getcwd(), ASSETS_DIR)
|
|
|
|
shutil.rmtree(full_path, ignore_errors=True)
|
|
|
|
os.mkdir(full_path)
|
|
|
|
|
2022-08-29 20:42:34 +00:00
|
|
|
yield full_path
|
2022-11-10 14:56:25 +00:00
|
|
|
|
|
|
|
with allure.step("Remove tmp directory"):
|
|
|
|
shutil.rmtree(full_path)
|
2022-08-29 20:42:34 +00:00
|
|
|
|
|
|
|
|
2023-03-14 09:21:40 +00:00
|
|
|
@allure.step("[Autouse/Session] Test session start time")
|
2022-08-29 20:42:34 +00:00
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
2023-03-14 09:21:40 +00:00
|
|
|
def session_start_time():
|
2022-08-26 19:58:56 +00:00
|
|
|
start_time = datetime.utcnow()
|
2023-03-14 09:21:40 +00:00
|
|
|
return start_time
|
2022-11-15 08:39:07 +00:00
|
|
|
|
2022-08-26 19:58:56 +00:00
|
|
|
|
2023-05-15 09:59:33 +00:00
|
|
|
@allure.step("Run health check for all storage nodes")
|
2022-09-05 09:35:46 +00:00
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
2023-03-14 09:21:40 +00:00
|
|
|
def run_health_check(session_start_time, cluster: Cluster):
|
2022-07-20 14:55:25 +00:00
|
|
|
failed_nodes = []
|
2022-12-05 22:31:45 +00:00
|
|
|
for node in cluster.storage_nodes:
|
|
|
|
health_check = storage_node_healthcheck(node)
|
2022-09-20 15:03:52 +00:00
|
|
|
if health_check.health_status != "READY" or health_check.network_status != "ONLINE":
|
2022-12-05 22:31:45 +00:00
|
|
|
failed_nodes.append(node)
|
2022-07-20 14:55:25 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
2023-05-15 09:59:33 +00:00
|
|
|
@allure.step("Prepare wallet and deposit")
|
2022-11-28 19:27:37 +00:00
|
|
|
@pytest.fixture(scope="session")
|
2023-05-15 09:59:33 +00:00
|
|
|
def default_wallet(wallet_factory: WalletFactory) -> str:
|
|
|
|
wallet = wallet_factory.create_wallet(password=DEFAULT_WALLET_PASS)
|
|
|
|
allure.attach.file(wallet.path, os.path.basename(wallet.path), allure.attachment_type.JSON)
|
|
|
|
return wallet.path
|