140 lines
5.4 KiB
Python
140 lines
5.4 KiB
Python
import random
|
|
|
|
import allure
|
|
import pytest
|
|
from frostfs_testlib.resources.common import DEFAULT_WALLET_PASS
|
|
from frostfs_testlib.resources.error_patterns import SESSION_NOT_FOUND
|
|
from frostfs_testlib.steps.cli.container import create_container
|
|
from frostfs_testlib.steps.cli.object import delete_object, put_object, put_object_to_random_node
|
|
from frostfs_testlib.steps.session_token import create_session_token
|
|
from frostfs_testlib.storage.dataclasses.object_size import ObjectSize
|
|
from frostfs_testlib.testing.cluster_test_base import ClusterTestBase
|
|
from frostfs_testlib.utils import wallet_utils
|
|
from frostfs_testlib.utils.file_utils import generate_file
|
|
|
|
|
|
@pytest.mark.sanity
|
|
@pytest.mark.session_token
|
|
class TestDynamicObjectSession(ClusterTestBase):
|
|
@allure.title("Object Operations with Session Token (obj_size={object_size})")
|
|
def test_object_session_token(self, default_wallet: str, object_size: ObjectSize):
|
|
"""
|
|
Test how operations over objects are executed with a session token
|
|
|
|
Steps:
|
|
1. Create a private container
|
|
2. Obj operation requests to the node which IS NOT in the container but granted
|
|
with a session token
|
|
3. Obj operation requests to the node which IS in the container and NOT granted
|
|
with a session token
|
|
4. Obj operation requests to the node which IS NOT in the container and NOT granted
|
|
with a session token
|
|
"""
|
|
|
|
with allure.step("Init wallet"):
|
|
wallet = default_wallet
|
|
address = wallet_utils.get_last_address_from_wallet(wallet, "")
|
|
|
|
with allure.step("Nodes Settlements"):
|
|
session_token_node, container_node, non_container_node = random.sample(
|
|
self.cluster.storage_nodes, 3
|
|
)
|
|
|
|
with allure.step("Create Session Token"):
|
|
session_token = create_session_token(
|
|
shell=self.shell,
|
|
owner=address,
|
|
wallet_path=wallet,
|
|
wallet_password=DEFAULT_WALLET_PASS,
|
|
rpc_endpoint=session_token_node.get_rpc_endpoint(),
|
|
)
|
|
|
|
with allure.step("Create Private Container"):
|
|
un_locode = container_node.get_un_locode()
|
|
locode = "SPB" if un_locode == "RU LED" else un_locode.split()[1]
|
|
placement_policy = (
|
|
f"REP 1 IN LOC_{locode}_PLACE CBF 1 SELECT 1 FROM LOC_{locode} "
|
|
f'AS LOC_{locode}_PLACE FILTER "UN-LOCODE" '
|
|
f'EQ "{un_locode}" AS LOC_{locode}'
|
|
)
|
|
cid = create_container(
|
|
wallet,
|
|
shell=self.shell,
|
|
endpoint=self.cluster.default_rpc_endpoint,
|
|
rule=placement_policy,
|
|
)
|
|
|
|
with allure.step("Put Objects"):
|
|
file_path = generate_file(object_size.value)
|
|
oid = put_object_to_random_node(
|
|
wallet=wallet,
|
|
path=file_path,
|
|
cid=cid,
|
|
shell=self.shell,
|
|
cluster=self.cluster,
|
|
)
|
|
oid_delete = put_object_to_random_node(
|
|
wallet=wallet,
|
|
path=file_path,
|
|
cid=cid,
|
|
shell=self.shell,
|
|
cluster=self.cluster,
|
|
)
|
|
|
|
with allure.step("Node not in container but granted a session token"):
|
|
put_object(
|
|
wallet=wallet,
|
|
path=file_path,
|
|
cid=cid,
|
|
shell=self.shell,
|
|
endpoint=session_token_node.get_rpc_endpoint(),
|
|
session=session_token,
|
|
)
|
|
delete_object(
|
|
wallet=wallet,
|
|
cid=cid,
|
|
oid=oid_delete,
|
|
shell=self.shell,
|
|
endpoint=session_token_node.get_rpc_endpoint(),
|
|
session=session_token,
|
|
)
|
|
|
|
with allure.step("Node in container and not granted a session token"):
|
|
with pytest.raises(Exception, match=SESSION_NOT_FOUND):
|
|
put_object(
|
|
wallet=wallet,
|
|
path=file_path,
|
|
cid=cid,
|
|
shell=self.shell,
|
|
endpoint=container_node.get_rpc_endpoint(),
|
|
session=session_token,
|
|
)
|
|
with pytest.raises(Exception, match=SESSION_NOT_FOUND):
|
|
delete_object(
|
|
wallet=wallet,
|
|
cid=cid,
|
|
oid=oid,
|
|
shell=self.shell,
|
|
endpoint=container_node.get_rpc_endpoint(),
|
|
session=session_token,
|
|
)
|
|
|
|
with allure.step("Node not in container and not granted a session token"):
|
|
with pytest.raises(Exception, match=SESSION_NOT_FOUND):
|
|
put_object(
|
|
wallet=wallet,
|
|
path=file_path,
|
|
cid=cid,
|
|
shell=self.shell,
|
|
endpoint=non_container_node.get_rpc_endpoint(),
|
|
session=session_token,
|
|
)
|
|
with pytest.raises(Exception, match=SESSION_NOT_FOUND):
|
|
delete_object(
|
|
wallet=wallet,
|
|
cid=cid,
|
|
oid=oid,
|
|
shell=self.shell,
|
|
endpoint=non_container_node.get_rpc_endpoint(),
|
|
session=session_token,
|
|
)
|