2022-07-12 09:59:19 +00:00
|
|
|
#!/usr/bin/python3.9
|
2022-04-25 09:53:20 +00:00
|
|
|
|
|
|
|
"""
|
2022-07-12 09:59:19 +00:00
|
|
|
This module contains keywords that utilize `neofs-cli container` commands.
|
2022-04-25 09:53:20 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
import json
|
2022-09-20 15:03:52 +00:00
|
|
|
import logging
|
2022-08-19 02:22:20 +00:00
|
|
|
from time import sleep
|
|
|
|
from typing import Optional, Union
|
2022-04-25 09:53:20 +00:00
|
|
|
|
2022-09-20 15:03:52 +00:00
|
|
|
import allure
|
2022-06-13 20:33:09 +00:00
|
|
|
import json_transformers
|
2022-08-29 14:36:27 +00:00
|
|
|
from cli_utils import NeofsCli
|
2022-08-19 02:22:20 +00:00
|
|
|
from common import NEOFS_ENDPOINT, WALLET_CONFIG
|
2022-09-20 15:03:52 +00:00
|
|
|
|
|
|
|
logger = logging.getLogger("NeoLogger")
|
2022-04-25 09:53:20 +00:00
|
|
|
|
2022-07-12 09:59:19 +00:00
|
|
|
DEFAULT_PLACEMENT_RULE = "REP 2 IN X CBF 1 SELECT 4 FROM * AS X"
|
2022-04-25 09:53:20 +00:00
|
|
|
|
2022-08-19 02:22:20 +00:00
|
|
|
|
2022-09-20 15:03:52 +00:00
|
|
|
@allure.step("Create Container")
|
|
|
|
def create_container(
|
|
|
|
wallet: str,
|
|
|
|
rule: str = DEFAULT_PLACEMENT_RULE,
|
|
|
|
basic_acl: str = "",
|
|
|
|
attributes: Optional[dict] = None,
|
|
|
|
session_token: str = "",
|
|
|
|
session_wallet: str = "",
|
|
|
|
name: str = None,
|
|
|
|
options: dict = None,
|
|
|
|
await_mode: bool = True,
|
|
|
|
wait_for_creation: bool = True,
|
|
|
|
) -> str:
|
2022-04-25 09:53:20 +00:00
|
|
|
"""
|
2022-09-20 15:03:52 +00:00
|
|
|
A wrapper for `neofs-cli container create` call.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
wallet (str): a wallet on whose behalf a container is created
|
|
|
|
rule (optional, str): placement rule for container
|
|
|
|
basic_acl (optional, str): an ACL for container, will be
|
|
|
|
appended to `--basic-acl` key
|
|
|
|
attributes (optional, dict): container attributes , will be
|
|
|
|
appended to `--attributes` key
|
|
|
|
session_token (optional, str): a path to session token file
|
|
|
|
session_wallet(optional, str): a path to the wallet which signed
|
|
|
|
the session token; this parameter makes sense
|
|
|
|
when paired with `session_token`
|
|
|
|
options (optional, dict): any other options to pass to the call
|
|
|
|
name (optional, str): container name attribute
|
|
|
|
await_mode (bool): block execution until container is persisted
|
|
|
|
wait_for_creation (): Wait for container shows in container list
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
(str): CID of the created container
|
2022-04-25 09:53:20 +00:00
|
|
|
"""
|
|
|
|
|
2022-08-19 02:22:20 +00:00
|
|
|
cli = NeofsCli(config=WALLET_CONFIG, timeout=60)
|
2022-09-20 15:03:52 +00:00
|
|
|
output = cli.container.create(
|
|
|
|
rpc_endpoint=NEOFS_ENDPOINT,
|
|
|
|
wallet=session_wallet if session_wallet else wallet,
|
|
|
|
policy=rule,
|
|
|
|
basic_acl=basic_acl,
|
|
|
|
attributes=attributes,
|
|
|
|
name=name,
|
|
|
|
session=session_token,
|
|
|
|
await_mode=await_mode,
|
|
|
|
**options or {},
|
|
|
|
)
|
2022-08-19 02:22:20 +00:00
|
|
|
|
2022-04-25 09:53:20 +00:00
|
|
|
cid = _parse_cid(output)
|
|
|
|
|
2022-08-19 02:22:20 +00:00
|
|
|
logger.info("Container created; waiting until it is persisted in the sidechain")
|
|
|
|
|
|
|
|
if wait_for_creation:
|
|
|
|
wait_for_container_creation(wallet, cid)
|
|
|
|
|
|
|
|
return cid
|
|
|
|
|
2022-04-25 09:53:20 +00:00
|
|
|
|
2022-08-19 02:22:20 +00:00
|
|
|
def wait_for_container_creation(wallet: str, cid: str, attempts: int = 15, sleep_interval: int = 1):
|
|
|
|
for _ in range(attempts):
|
2022-04-25 09:53:20 +00:00
|
|
|
containers = list_containers(wallet)
|
|
|
|
if cid in containers:
|
2022-08-19 02:22:20 +00:00
|
|
|
return
|
|
|
|
logger.info(f"There is no {cid} in {containers} yet; sleep {sleep_interval} and continue")
|
|
|
|
sleep(sleep_interval)
|
2022-09-20 15:03:52 +00:00
|
|
|
raise RuntimeError(
|
|
|
|
f"After {attempts * sleep_interval} seconds container {cid} hasn't been persisted; exiting"
|
|
|
|
)
|
2022-08-19 02:22:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
def wait_for_container_deletion(wallet: str, cid: str, attempts: int = 30, sleep_interval: int = 1):
|
|
|
|
for _ in range(attempts):
|
|
|
|
try:
|
|
|
|
get_container(wallet, cid)
|
|
|
|
sleep(sleep_interval)
|
|
|
|
continue
|
|
|
|
except Exception as err:
|
2022-09-20 15:03:52 +00:00
|
|
|
if "container not found" not in str(err):
|
2022-08-19 02:22:20 +00:00
|
|
|
raise AssertionError(f'Expected "container not found" in error, got\n{err}')
|
|
|
|
return
|
2022-09-20 15:03:52 +00:00
|
|
|
raise AssertionError(f"Expected container deleted during {attempts * sleep_interval} sec.")
|
2022-04-25 09:53:20 +00:00
|
|
|
|
|
|
|
|
2022-09-23 11:09:41 +00:00
|
|
|
@allure.step("List Containers")
|
2022-07-12 09:59:19 +00:00
|
|
|
def list_containers(wallet: str) -> list[str]:
|
2022-04-25 09:53:20 +00:00
|
|
|
"""
|
2022-09-20 15:03:52 +00:00
|
|
|
A wrapper for `neofs-cli container list` call. It returns all the
|
|
|
|
available containers for the given wallet.
|
|
|
|
Args:
|
|
|
|
wallet (str): a wallet on whose behalf we list the containers
|
|
|
|
Returns:
|
|
|
|
(list): list of containers
|
2022-04-25 09:53:20 +00:00
|
|
|
"""
|
2022-08-19 02:22:20 +00:00
|
|
|
cli = NeofsCli(config=WALLET_CONFIG)
|
|
|
|
output = cli.container.list(rpc_endpoint=NEOFS_ENDPOINT, wallet=wallet)
|
|
|
|
logger.info(f"Containers: \n{output}")
|
2022-04-25 09:53:20 +00:00
|
|
|
return output.split()
|
|
|
|
|
|
|
|
|
2022-09-23 11:09:41 +00:00
|
|
|
@allure.step("Get Container")
|
2022-08-19 02:22:20 +00:00
|
|
|
def get_container(wallet: str, cid: str, json_mode: bool = True) -> Union[dict, str]:
|
2022-04-25 09:53:20 +00:00
|
|
|
"""
|
2022-09-20 15:03:52 +00:00
|
|
|
A wrapper for `neofs-cli container get` call. It extracts container's
|
|
|
|
attributes and rearranges them into a more compact view.
|
|
|
|
Args:
|
|
|
|
wallet (str): path to a wallet on whose behalf we get the container
|
|
|
|
cid (str): ID of the container to get
|
|
|
|
json_mode (bool): return container in JSON format
|
|
|
|
Returns:
|
|
|
|
(dict, str): dict of container attributes
|
2022-04-25 09:53:20 +00:00
|
|
|
"""
|
2022-08-19 02:22:20 +00:00
|
|
|
cli = NeofsCli(config=WALLET_CONFIG)
|
2022-09-20 15:03:52 +00:00
|
|
|
output = cli.container.get(
|
|
|
|
rpc_endpoint=NEOFS_ENDPOINT, wallet=wallet, cid=cid, json_mode=json_mode
|
|
|
|
)
|
2022-08-19 02:22:20 +00:00
|
|
|
|
|
|
|
if not json_mode:
|
2022-07-08 17:24:55 +00:00
|
|
|
return output
|
2022-08-19 02:22:20 +00:00
|
|
|
|
2022-04-25 09:53:20 +00:00
|
|
|
container_info = json.loads(output)
|
|
|
|
attributes = dict()
|
2022-09-20 15:03:52 +00:00
|
|
|
for attr in container_info["attributes"]:
|
|
|
|
attributes[attr["key"]] = attr["value"]
|
|
|
|
container_info["attributes"] = attributes
|
|
|
|
container_info["ownerID"] = json_transformers.json_reencode(container_info["ownerID"]["value"])
|
2022-05-27 14:42:42 +00:00
|
|
|
return container_info
|
2022-04-25 09:53:20 +00:00
|
|
|
|
|
|
|
|
2022-09-23 11:09:41 +00:00
|
|
|
@allure.step("Delete Container")
|
2022-04-25 09:53:20 +00:00
|
|
|
# TODO: make the error message about a non-found container more user-friendly
|
|
|
|
# https://github.com/nspcc-dev/neofs-contract/issues/121
|
2022-08-25 10:57:55 +00:00
|
|
|
def delete_container(wallet: str, cid: str, force: bool = False) -> None:
|
2022-04-25 09:53:20 +00:00
|
|
|
"""
|
2022-09-20 15:03:52 +00:00
|
|
|
A wrapper for `neofs-cli container delete` call.
|
|
|
|
Args:
|
|
|
|
wallet (str): path to a wallet on whose behalf we delete the container
|
|
|
|
cid (str): ID of the container to delete
|
|
|
|
force (bool): do not check whether container contains locks and remove immediately
|
|
|
|
This function doesn't return anything.
|
2022-04-25 09:53:20 +00:00
|
|
|
"""
|
|
|
|
|
2022-08-19 02:22:20 +00:00
|
|
|
cli = NeofsCli(config=WALLET_CONFIG)
|
2022-08-25 10:57:55 +00:00
|
|
|
cli.container.delete(wallet=wallet, cid=cid, rpc_endpoint=NEOFS_ENDPOINT, force=force)
|
2022-04-25 09:53:20 +00:00
|
|
|
|
|
|
|
|
2022-07-12 09:59:19 +00:00
|
|
|
def _parse_cid(output: str) -> str:
|
2022-04-25 09:53:20 +00:00
|
|
|
"""
|
2022-07-12 09:59:19 +00:00
|
|
|
Parses container ID from a given CLI output. The input string we expect:
|
2022-04-25 09:53:20 +00:00
|
|
|
container ID: 2tz86kVTDpJxWHrhw3h6PbKMwkLtBEwoqhHQCKTre1FN
|
|
|
|
awaiting...
|
|
|
|
container has been persisted on sidechain
|
|
|
|
We want to take 'container ID' value from the string.
|
|
|
|
|
|
|
|
Args:
|
2022-07-12 09:59:19 +00:00
|
|
|
output (str): CLI output to parse
|
2022-04-25 09:53:20 +00:00
|
|
|
|
|
|
|
Returns:
|
|
|
|
(str): extracted CID
|
|
|
|
"""
|
|
|
|
try:
|
2022-07-12 09:59:19 +00:00
|
|
|
# taking first line from command's output
|
2022-09-20 15:03:52 +00:00
|
|
|
first_line = output.split("\n")[0]
|
2022-04-25 09:53:20 +00:00
|
|
|
except Exception:
|
2022-07-12 09:59:19 +00:00
|
|
|
logger.error(f"Got empty output: {output}")
|
|
|
|
splitted = first_line.split(": ")
|
2022-04-25 09:53:20 +00:00
|
|
|
if len(splitted) != 2:
|
2022-07-12 09:59:19 +00:00
|
|
|
raise ValueError(f"no CID was parsed from command output: \t{first_line}")
|
2022-04-25 09:53:20 +00:00
|
|
|
return splitted[1]
|