forked from TrueCloudLab/frostfs-testcases
Some linter fixes.
Signed-off-by: a.y.volkov <a.y.volkov@yadro.com>
This commit is contained in:
parent
e086d0d62b
commit
0e27ea02c1
19 changed files with 291 additions and 275 deletions
|
@ -1,34 +1,34 @@
|
||||||
#!/usr/bin/python3.8
|
#!/usr/bin/python3.8
|
||||||
|
|
||||||
from enum import Enum, auto
|
import base64
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import uuid
|
import uuid
|
||||||
|
from enum import Enum, auto
|
||||||
|
|
||||||
import base64
|
|
||||||
import base58
|
import base58
|
||||||
from cli_helpers import _cmd_run
|
from cli_helpers import _cmd_run
|
||||||
from common import ASSETS_DIR, NEOFS_ENDPOINT, WALLET_PASS
|
from common import ASSETS_DIR, NEOFS_ENDPOINT, WALLET_PASS
|
||||||
from robot.api.deco import keyword
|
|
||||||
from robot.api import logger
|
from robot.api import logger
|
||||||
|
from robot.api.deco import keyword
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Robot Keywords and helper functions for work with NeoFS ACL.
|
Robot Keywords and helper functions for work with NeoFS ACL.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
|
||||||
# path to neofs-cli executable
|
# path to neofs-cli executable
|
||||||
NEOFS_CLI_EXEC = os.getenv('NEOFS_CLI_EXEC', 'neofs-cli')
|
NEOFS_CLI_EXEC = os.getenv('NEOFS_CLI_EXEC', 'neofs-cli')
|
||||||
EACL_LIFETIME = 100500
|
EACL_LIFETIME = 100500
|
||||||
|
|
||||||
|
|
||||||
class AutoName(Enum):
|
class AutoName(Enum):
|
||||||
def _generate_next_value_(name, start, count, last_values):
|
def _generate_next_value_(name, start, count, last_values):
|
||||||
return name
|
return name
|
||||||
|
|
||||||
|
|
||||||
class Role(AutoName):
|
class Role(AutoName):
|
||||||
USER = auto()
|
USER = auto()
|
||||||
SYSTEM = auto()
|
SYSTEM = auto()
|
||||||
|
@ -65,6 +65,7 @@ def _encode_cid_for_eacl(cid: str) -> str:
|
||||||
cid_base58 = base58.b58decode(cid)
|
cid_base58 = base58.b58decode(cid)
|
||||||
return base64.b64encode(cid_base58).decode("utf-8")
|
return base64.b64encode(cid_base58).decode("utf-8")
|
||||||
|
|
||||||
|
|
||||||
@keyword('Create eACL')
|
@keyword('Create eACL')
|
||||||
def create_eacl(cid: str, rules_list: list):
|
def create_eacl(cid: str, rules_list: list):
|
||||||
table = f"{os.getcwd()}/{ASSETS_DIR}/eacl_table_{str(uuid.uuid4())}.json"
|
table = f"{os.getcwd()}/{ASSETS_DIR}/eacl_table_{str(uuid.uuid4())}.json"
|
||||||
|
|
|
@ -6,8 +6,8 @@ and other CLIs.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import subprocess
|
import subprocess
|
||||||
import pexpect
|
|
||||||
|
|
||||||
|
import pexpect
|
||||||
from robot.api import logger
|
from robot.api import logger
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
@ -35,6 +35,7 @@ def _cmd_run(cmd, timeout=30):
|
||||||
f"{exc.output.decode('utf-8') if type(exc.output) is bytes else exc.output}")
|
f"{exc.output.decode('utf-8') if type(exc.output) is bytes else exc.output}")
|
||||||
raise
|
raise
|
||||||
|
|
||||||
|
|
||||||
def _run_with_passwd(cmd):
|
def _run_with_passwd(cmd):
|
||||||
child = pexpect.spawn(cmd)
|
child = pexpect.spawn(cmd)
|
||||||
child.expect(".*")
|
child.expect(".*")
|
||||||
|
|
|
@ -6,6 +6,7 @@ from robot.api.deco import keyword
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
|
||||||
|
|
||||||
@keyword('Run Process And Enter Empty Password')
|
@keyword('Run Process And Enter Empty Password')
|
||||||
def run_proccess_and_interact(cmd: str) -> str:
|
def run_proccess_and_interact(cmd: str) -> str:
|
||||||
p = pexpect.spawn(cmd)
|
p = pexpect.spawn(cmd)
|
||||||
|
|
|
@ -10,13 +10,13 @@
|
||||||
first non-null response.
|
first non-null response.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from common import NEOFS_NETMAP
|
|
||||||
import neofs_verbs
|
|
||||||
|
|
||||||
from robot.api.deco import keyword
|
|
||||||
from robot.api import logger
|
from robot.api import logger
|
||||||
|
from robot.api.deco import keyword
|
||||||
from robot.libraries.BuiltIn import BuiltIn
|
from robot.libraries.BuiltIn import BuiltIn
|
||||||
|
|
||||||
|
import neofs_verbs
|
||||||
|
from common import NEOFS_NETMAP
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -8,14 +8,13 @@
|
||||||
import json
|
import json
|
||||||
import time
|
import time
|
||||||
|
|
||||||
from common import NEOFS_ENDPOINT, COMMON_PLACEMENT_RULE, NEOFS_CLI_EXEC, WALLET_PASS
|
|
||||||
from cli_helpers import _cmd_run
|
|
||||||
from data_formatters import dict_to_attrs
|
|
||||||
import json_transformers
|
|
||||||
|
|
||||||
from robot.api.deco import keyword
|
|
||||||
from robot.api import logger
|
from robot.api import logger
|
||||||
|
from robot.api.deco import keyword
|
||||||
|
|
||||||
|
import json_transformers
|
||||||
|
from cli_helpers import _cmd_run
|
||||||
|
from common import NEOFS_ENDPOINT, COMMON_PLACEMENT_RULE, NEOFS_CLI_EXEC, WALLET_PASS
|
||||||
|
from data_formatters import dict_to_attrs
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
|
||||||
|
|
|
@ -7,15 +7,15 @@ from functools import reduce
|
||||||
|
|
||||||
|
|
||||||
def dict_to_attrs(attrs: dict):
|
def dict_to_attrs(attrs: dict):
|
||||||
'''
|
"""
|
||||||
This function takes dictionary of object attributes and converts them
|
This function takes dictionary of object attributes and converts them
|
||||||
into the string. The string is passed to `--attibutes` key of the
|
into the string. The string is passed to `--attributes` key of the
|
||||||
neofs-cli.
|
neofs-cli.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
attrs (dict): object attirbutes in {"a": "b", "c": "d"} format.
|
attrs (dict): object attributes in {"a": "b", "c": "d"} format.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
(str): string in "a=b,c=d" format.
|
(str): string in "a=b,c=d" format.
|
||||||
'''
|
"""
|
||||||
return reduce(lambda a, b: f"{a},{b}", map(lambda i: f"{i}={attrs[i]}", attrs))
|
return reduce(lambda a, b: f"{a},{b}", map(lambda i: f"{i}={attrs[i]}", attrs))
|
||||||
|
|
|
@ -3,15 +3,16 @@
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
|
from robot.api import logger
|
||||||
|
from robot.api.deco import keyword
|
||||||
|
from robot.libraries.BuiltIn import BuiltIn
|
||||||
|
|
||||||
from common import HTTP_GATE
|
from common import HTTP_GATE
|
||||||
from robot.api.deco import keyword
|
|
||||||
from robot.api import logger
|
|
||||||
from robot.libraries.BuiltIn import BuiltIn
|
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
ASSETS_DIR = BuiltIn().get_variable_value("${ASSETS_DIR}")
|
ASSETS_DIR = BuiltIn().get_variable_value("${ASSETS_DIR}")
|
||||||
|
|
||||||
|
|
||||||
@keyword('Get via HTTP Gate')
|
@keyword('Get via HTTP Gate')
|
||||||
def get_via_http_gate(cid: str, oid: str):
|
def get_via_http_gate(cid: str, oid: str):
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -1,24 +1,25 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
'''
|
"""
|
||||||
When doing requests to NeoFS, we get JSON output as an automatically decoded
|
When doing requests to NeoFS, we get JSON output as an automatically decoded
|
||||||
structure from protobuf. Some fields are decoded with boilerplates and binary
|
structure from protobuf. Some fields are decoded with boilerplates and binary
|
||||||
values are Base64-encoded.
|
values are Base64-encoded.
|
||||||
|
|
||||||
This module contains functions which rearrange the structure and reencode binary
|
This module contains functions which rearrange the structure and reencode binary
|
||||||
data from Base64 to Base58.
|
data from Base64 to Base58.
|
||||||
'''
|
"""
|
||||||
|
|
||||||
|
|
||||||
import base64
|
import base64
|
||||||
|
|
||||||
import base58
|
import base58
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
|
||||||
|
|
||||||
def decode_simple_header(data: dict):
|
def decode_simple_header(data: dict):
|
||||||
'''
|
"""
|
||||||
This function reencodes Simple Object header and its attributes.
|
This function reencodes Simple Object header and its attributes.
|
||||||
'''
|
"""
|
||||||
try:
|
try:
|
||||||
data = decode_common_fields(data)
|
data = decode_common_fields(data)
|
||||||
|
|
||||||
|
@ -34,12 +35,12 @@ def decode_simple_header(data: dict):
|
||||||
|
|
||||||
|
|
||||||
def decode_split_header(data: dict):
|
def decode_split_header(data: dict):
|
||||||
'''
|
"""
|
||||||
This function rearranges Complex Object header.
|
This function rearranges Complex Object header.
|
||||||
The header holds SplitID, a random unique
|
The header holds SplitID, a random unique
|
||||||
number, which is common among all splitted objects, and IDs of the Linking
|
number, which is common among all splitted objects, and IDs of the Linking
|
||||||
Object and the last splitted Object.
|
Object and the last splitted Object.
|
||||||
'''
|
"""
|
||||||
try:
|
try:
|
||||||
data["splitId"] = json_reencode(data["splitId"])
|
data["splitId"] = json_reencode(data["splitId"])
|
||||||
data["lastPart"] = (
|
data["lastPart"] = (
|
||||||
|
@ -55,11 +56,12 @@ def decode_split_header(data: dict):
|
||||||
|
|
||||||
return data
|
return data
|
||||||
|
|
||||||
|
|
||||||
def decode_linking_object(data: dict):
|
def decode_linking_object(data: dict):
|
||||||
'''
|
"""
|
||||||
This function reencodes Linking Object header.
|
This function reencodes Linking Object header.
|
||||||
It contains IDs of child Objects and Split Chain data.
|
It contains IDs of child Objects and Split Chain data.
|
||||||
'''
|
"""
|
||||||
try:
|
try:
|
||||||
data = decode_simple_header(data)
|
data = decode_simple_header(data)
|
||||||
# reencoding Child Object IDs
|
# reencoding Child Object IDs
|
||||||
|
@ -82,9 +84,9 @@ def decode_linking_object(data: dict):
|
||||||
|
|
||||||
|
|
||||||
def decode_storage_group(data: dict):
|
def decode_storage_group(data: dict):
|
||||||
'''
|
"""
|
||||||
This function reencodes Storage Group header.
|
This function reencodes Storage Group header.
|
||||||
'''
|
"""
|
||||||
try:
|
try:
|
||||||
data = decode_common_fields(data)
|
data = decode_common_fields(data)
|
||||||
except Exception as exc:
|
except Exception as exc:
|
||||||
|
@ -92,10 +94,11 @@ def decode_storage_group(data: dict):
|
||||||
|
|
||||||
return data
|
return data
|
||||||
|
|
||||||
|
|
||||||
def decode_tombstone(data: dict):
|
def decode_tombstone(data: dict):
|
||||||
'''
|
"""
|
||||||
This function reencodes Tombstone header.
|
This function reencodes Tombstone header.
|
||||||
'''
|
"""
|
||||||
try:
|
try:
|
||||||
data = decode_simple_header(data)
|
data = decode_simple_header(data)
|
||||||
data['header']['sessionToken'] = decode_session_token(
|
data['header']['sessionToken'] = decode_session_token(
|
||||||
|
@ -106,39 +109,41 @@ def decode_tombstone(data: dict):
|
||||||
|
|
||||||
|
|
||||||
def decode_session_token(data: dict):
|
def decode_session_token(data: dict):
|
||||||
'''
|
"""
|
||||||
This function reencodes a fragment of header which contains
|
This function reencodes a fragment of header which contains
|
||||||
information about session token.
|
information about session token.
|
||||||
'''
|
"""
|
||||||
data['body']['object']['address']['containerID'] = json_reencode(
|
data['body']['object']['address']['containerID'] = json_reencode(
|
||||||
data['body']['object']['address']['containerID']['value'])
|
data['body']['object']['address']['containerID']['value'])
|
||||||
data['body']['object']['address']['objectID'] = json_reencode(
|
data['body']['object']['address']['objectID'] = json_reencode(
|
||||||
data['body']['object']['address']['objectID']['value'])
|
data['body']['object']['address']['objectID']['value'])
|
||||||
return data
|
return data
|
||||||
|
|
||||||
|
|
||||||
def json_reencode(data: str):
|
def json_reencode(data: str):
|
||||||
'''
|
"""
|
||||||
According to JSON protocol, binary data (Object/Container/Storage Group IDs, etc)
|
According to JSON protocol, binary data (Object/Container/Storage Group IDs, etc)
|
||||||
is converted to string via Base58 encoder. But we usually operate with Base64-encoded
|
is converted to string via Base58 encoder. But we usually operate with Base64-encoded
|
||||||
format.
|
format.
|
||||||
This function reencodes given Base58 string into the Base64 one.
|
This function reencodes given Base58 string into the Base64 one.
|
||||||
'''
|
"""
|
||||||
return base58.b58encode(base64.b64decode(data)).decode("utf-8")
|
return base58.b58encode(base64.b64decode(data)).decode("utf-8")
|
||||||
|
|
||||||
|
|
||||||
def encode_for_json(data: str):
|
def encode_for_json(data: str):
|
||||||
'''
|
"""
|
||||||
This function encodes binary data for sending them as protobuf
|
This function encodes binary data for sending them as protobuf
|
||||||
structures.
|
structures.
|
||||||
'''
|
"""
|
||||||
return base64.b64encode(base58.b58decode(data)).decode('utf-8')
|
return base64.b64encode(base58.b58decode(data)).decode('utf-8')
|
||||||
|
|
||||||
|
|
||||||
def decode_common_fields(data: dict):
|
def decode_common_fields(data: dict):
|
||||||
'''
|
"""
|
||||||
Despite of type (simple/complex Object, Storage Group, etc) every Object
|
Despite of type (simple/complex Object, Storage Group, etc) every Object
|
||||||
header contains several common fields.
|
header contains several common fields.
|
||||||
This function rearranges these fields.
|
This function rearranges these fields.
|
||||||
'''
|
"""
|
||||||
# reencoding binary IDs
|
# reencoding binary IDs
|
||||||
data["objectID"] = json_reencode(data["objectID"]["value"])
|
data["objectID"] = json_reencode(data["objectID"]["value"])
|
||||||
data["header"]["containerID"] = json_reencode(data["header"]["containerID"]["value"])
|
data["header"]["containerID"] = json_reencode(data["header"]["containerID"]["value"])
|
||||||
|
|
|
@ -5,12 +5,13 @@ import os
|
||||||
import random
|
import random
|
||||||
|
|
||||||
from neo3 import wallet
|
from neo3 import wallet
|
||||||
from common import NEOFS_NETMAP_DICT
|
|
||||||
import neofs_verbs
|
|
||||||
from robot.api.deco import keyword
|
|
||||||
from robot.api import logger
|
from robot.api import logger
|
||||||
|
from robot.api.deco import keyword
|
||||||
from robot.libraries.BuiltIn import BuiltIn
|
from robot.libraries.BuiltIn import BuiltIn
|
||||||
|
|
||||||
|
import neofs_verbs
|
||||||
|
from common import NEOFS_NETMAP_DICT
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
|
||||||
# path to neofs-cli executable
|
# path to neofs-cli executable
|
||||||
|
|
|
@ -6,17 +6,17 @@
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
import re
|
|
||||||
import random
|
import random
|
||||||
|
import re
|
||||||
import uuid
|
import uuid
|
||||||
|
|
||||||
from common import NEOFS_ENDPOINT, ASSETS_DIR, NEOFS_NETMAP, WALLET_PASS
|
|
||||||
from cli_helpers import _cmd_run
|
|
||||||
import json_transformers
|
|
||||||
from data_formatters import dict_to_attrs
|
|
||||||
|
|
||||||
from robot.api.deco import keyword
|
|
||||||
from robot.api import logger
|
from robot.api import logger
|
||||||
|
from robot.api.deco import keyword
|
||||||
|
|
||||||
|
import json_transformers
|
||||||
|
from cli_helpers import _cmd_run
|
||||||
|
from common import NEOFS_ENDPOINT, ASSETS_DIR, NEOFS_NETMAP, WALLET_PASS
|
||||||
|
from data_formatters import dict_to_attrs
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ NEOFS_CLI_EXEC = os.getenv('NEOFS_CLI_EXEC', 'neofs-cli')
|
||||||
@keyword('Get object')
|
@keyword('Get object')
|
||||||
def get_object(wallet: str, cid: str, oid: str, bearer_token: str = "",
|
def get_object(wallet: str, cid: str, oid: str, bearer_token: str = "",
|
||||||
write_object: str = "", endpoint: str = "", options: str = ""):
|
write_object: str = "", endpoint: str = "", options: str = ""):
|
||||||
'''
|
"""
|
||||||
GET from NeoFS.
|
GET from NeoFS.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
|
@ -40,7 +40,7 @@ def get_object(wallet: str, cid: str, oid: str, bearer_token: str="",
|
||||||
options (optional, str): any options which `neofs-cli object get` accepts
|
options (optional, str): any options which `neofs-cli object get` accepts
|
||||||
Returns:
|
Returns:
|
||||||
(str): path to downloaded file
|
(str): path to downloaded file
|
||||||
'''
|
"""
|
||||||
|
|
||||||
if not write_object:
|
if not write_object:
|
||||||
write_object = str(uuid.uuid4())
|
write_object = str(uuid.uuid4())
|
||||||
|
@ -63,7 +63,7 @@ def get_object(wallet: str, cid: str, oid: str, bearer_token: str="",
|
||||||
@keyword('Get Range Hash')
|
@keyword('Get Range Hash')
|
||||||
def get_range_hash(wallet: str, cid: str, oid: str, bearer_token: str, range_cut: str,
|
def get_range_hash(wallet: str, cid: str, oid: str, bearer_token: str, range_cut: str,
|
||||||
options: str = ""):
|
options: str = ""):
|
||||||
'''
|
"""
|
||||||
GETRANGEHASH of given Object.
|
GETRANGEHASH of given Object.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
|
@ -76,7 +76,7 @@ def get_range_hash(wallet: str, cid: str, oid: str, bearer_token: str, range_cut
|
||||||
options (optional, str): any options which `neofs-cli object hash` accepts
|
options (optional, str): any options which `neofs-cli object hash` accepts
|
||||||
Returns:
|
Returns:
|
||||||
None
|
None
|
||||||
'''
|
"""
|
||||||
cmd = (
|
cmd = (
|
||||||
f'{NEOFS_CLI_EXEC} --rpc-endpoint {NEOFS_ENDPOINT} --wallet {wallet} '
|
f'{NEOFS_CLI_EXEC} --rpc-endpoint {NEOFS_ENDPOINT} --wallet {wallet} '
|
||||||
f'object hash --cid {cid} --oid {oid} --range {range_cut} --config {WALLET_PASS} '
|
f'object hash --cid {cid} --oid {oid} --range {range_cut} --config {WALLET_PASS} '
|
||||||
|
@ -91,7 +91,7 @@ def get_range_hash(wallet: str, cid: str, oid: str, bearer_token: str, range_cut
|
||||||
@keyword('Put object')
|
@keyword('Put object')
|
||||||
def put_object(wallet: str, path: str, cid: str, bearer: str = "", user_headers: dict = {},
|
def put_object(wallet: str, path: str, cid: str, bearer: str = "", user_headers: dict = {},
|
||||||
endpoint: str = "", options: str = ""):
|
endpoint: str = "", options: str = ""):
|
||||||
'''
|
"""
|
||||||
PUT of given file.
|
PUT of given file.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
|
@ -104,7 +104,7 @@ def put_object(wallet: str, path: str, cid: str, bearer: str="", user_headers: d
|
||||||
options (optional, str): any options which `neofs-cli object put` accepts
|
options (optional, str): any options which `neofs-cli object put` accepts
|
||||||
Returns:
|
Returns:
|
||||||
(str): ID of uploaded Object
|
(str): ID of uploaded Object
|
||||||
'''
|
"""
|
||||||
if not endpoint:
|
if not endpoint:
|
||||||
endpoint = random.sample(NEOFS_NETMAP, 1)[0]
|
endpoint = random.sample(NEOFS_NETMAP, 1)[0]
|
||||||
cmd = (
|
cmd = (
|
||||||
|
@ -122,7 +122,7 @@ def put_object(wallet: str, path: str, cid: str, bearer: str="", user_headers: d
|
||||||
|
|
||||||
@keyword('Delete object')
|
@keyword('Delete object')
|
||||||
def delete_object(wallet: str, cid: str, oid: str, bearer: str = "", options: str = ""):
|
def delete_object(wallet: str, cid: str, oid: str, bearer: str = "", options: str = ""):
|
||||||
'''
|
"""
|
||||||
DELETE an Object.
|
DELETE an Object.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
|
@ -133,7 +133,7 @@ def delete_object(wallet: str, cid: str, oid: str, bearer: str="", options: str=
|
||||||
options (optional, str): any options which `neofs-cli object delete` accepts
|
options (optional, str): any options which `neofs-cli object delete` accepts
|
||||||
Returns:
|
Returns:
|
||||||
(str): Tombstone ID
|
(str): Tombstone ID
|
||||||
'''
|
"""
|
||||||
cmd = (
|
cmd = (
|
||||||
f'{NEOFS_CLI_EXEC} --rpc-endpoint {NEOFS_ENDPOINT} --wallet {wallet} '
|
f'{NEOFS_CLI_EXEC} --rpc-endpoint {NEOFS_ENDPOINT} --wallet {wallet} '
|
||||||
f'object delete --cid {cid} --oid {oid} {options} --config {WALLET_PASS} '
|
f'object delete --cid {cid} --oid {oid} {options} --config {WALLET_PASS} '
|
||||||
|
@ -150,19 +150,20 @@ def delete_object(wallet: str, cid: str, oid: str, bearer: str="", options: str=
|
||||||
@keyword('Get Range')
|
@keyword('Get Range')
|
||||||
def get_range(wallet: str, cid: str, oid: str, file_path: str, bearer: str, range_cut: str,
|
def get_range(wallet: str, cid: str, oid: str, file_path: str, bearer: str, range_cut: str,
|
||||||
options: str = ""):
|
options: str = ""):
|
||||||
'''
|
"""
|
||||||
GETRANGE an Object.
|
GETRANGE an Object.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
wallet (str): wallet on whose behalf GETRANGE is done
|
wallet (str): wallet on whose behalf GETRANGE is done
|
||||||
cid (str): ID of Container where we get the Object from
|
cid (str): ID of Container where we get the Object from
|
||||||
oid (str): ID of Object we are going to request
|
oid (str): ID of Object we are going to request
|
||||||
|
file_path (str): file path
|
||||||
range_cut (str): range to take data from in the form offset:length
|
range_cut (str): range to take data from in the form offset:length
|
||||||
bearer (optional, str): path to Bearer Token file, appends to `--bearer` key
|
bearer (optional, str): path to Bearer Token file, appends to `--bearer` key
|
||||||
options (optional, str): any options which `neofs-cli object range` accepts
|
options (optional, str): any options which `neofs-cli object range` accepts
|
||||||
Returns:
|
Returns:
|
||||||
(void)
|
(void)
|
||||||
'''
|
"""
|
||||||
range_file = f"{ASSETS_DIR}/{uuid.uuid4()}"
|
range_file = f"{ASSETS_DIR}/{uuid.uuid4()}"
|
||||||
cmd = (
|
cmd = (
|
||||||
f'{NEOFS_CLI_EXEC} --rpc-endpoint {NEOFS_ENDPOINT} --wallet {wallet} '
|
f'{NEOFS_CLI_EXEC} --rpc-endpoint {NEOFS_ENDPOINT} --wallet {wallet} '
|
||||||
|
@ -180,7 +181,7 @@ def get_range(wallet: str, cid: str, oid: str, file_path: str, bearer: str, rang
|
||||||
@keyword('Search object')
|
@keyword('Search object')
|
||||||
def search_object(wallet: str, cid: str, keys: str = "", bearer: str = "", filters: dict = {},
|
def search_object(wallet: str, cid: str, keys: str = "", bearer: str = "", filters: dict = {},
|
||||||
expected_objects_list=[]):
|
expected_objects_list=[]):
|
||||||
'''
|
"""
|
||||||
SEARCH an Object.
|
SEARCH an Object.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
|
@ -193,7 +194,7 @@ def search_object(wallet: str, cid: str, keys: str="", bearer: str="", filters:
|
||||||
expected_objects_list (optional, list): a list of ObjectIDs to compare found Objects with
|
expected_objects_list (optional, list): a list of ObjectIDs to compare found Objects with
|
||||||
Returns:
|
Returns:
|
||||||
(list): list of found ObjectIDs
|
(list): list of found ObjectIDs
|
||||||
'''
|
"""
|
||||||
filters_result = ""
|
filters_result = ""
|
||||||
if filters:
|
if filters:
|
||||||
filters_result += "--filters "
|
filters_result += "--filters "
|
||||||
|
@ -224,7 +225,7 @@ def search_object(wallet: str, cid: str, keys: str="", bearer: str="", filters:
|
||||||
def head_object(wallet: str, cid: str, oid: str, bearer_token: str = "",
|
def head_object(wallet: str, cid: str, oid: str, bearer_token: str = "",
|
||||||
options: str = "", endpoint: str = "", json_output: bool = True,
|
options: str = "", endpoint: str = "", json_output: bool = True,
|
||||||
is_raw: bool = False, is_direct: bool = False):
|
is_raw: bool = False, is_direct: bool = False):
|
||||||
'''
|
"""
|
||||||
HEAD an Object.
|
HEAD an Object.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
|
@ -245,7 +246,7 @@ def head_object(wallet: str, cid: str, oid: str, bearer_token: str="",
|
||||||
(dict): HEAD response in JSON format
|
(dict): HEAD response in JSON format
|
||||||
or
|
or
|
||||||
(str): HEAD response as a plain text
|
(str): HEAD response as a plain text
|
||||||
'''
|
"""
|
||||||
cmd = (
|
cmd = (
|
||||||
f'{NEOFS_CLI_EXEC} --rpc-endpoint {endpoint if endpoint else NEOFS_ENDPOINT} '
|
f'{NEOFS_CLI_EXEC} --rpc-endpoint {endpoint if endpoint else NEOFS_ENDPOINT} '
|
||||||
f'--wallet {wallet} --config {WALLET_PASS} '
|
f'--wallet {wallet} --config {WALLET_PASS} '
|
||||||
|
|
|
@ -8,11 +8,11 @@
|
||||||
import random
|
import random
|
||||||
|
|
||||||
import docker
|
import docker
|
||||||
|
|
||||||
from robot.api.deco import keyword
|
from robot.api.deco import keyword
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
|
||||||
|
|
||||||
@keyword('Stop Nodes')
|
@keyword('Stop Nodes')
|
||||||
def stop_nodes(number: int, nodes: list):
|
def stop_nodes(number: int, nodes: list):
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -1,16 +1,15 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
import os
|
|
||||||
import pexpect
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from robot.api.deco import keyword
|
import pexpect
|
||||||
from robot.api import logger
|
|
||||||
from neo3 import wallet
|
from neo3 import wallet
|
||||||
|
from robot.api import logger
|
||||||
|
from robot.api.deco import keyword
|
||||||
|
|
||||||
from common import *
|
|
||||||
import rpc_client
|
|
||||||
import contract
|
import contract
|
||||||
|
import rpc_client
|
||||||
|
from common import *
|
||||||
from wrappers import run_sh_with_passwd_contract
|
from wrappers import run_sh_with_passwd_contract
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
|
|
@ -6,12 +6,12 @@ import uuid
|
||||||
|
|
||||||
import boto3
|
import boto3
|
||||||
import botocore
|
import botocore
|
||||||
from cli_helpers import _run_with_passwd
|
|
||||||
|
|
||||||
from common import GATE_PUB_KEY, NEOFS_ENDPOINT, S3_GATE
|
|
||||||
import urllib3
|
import urllib3
|
||||||
from robot.api.deco import keyword
|
|
||||||
from robot.api import logger
|
from robot.api import logger
|
||||||
|
from robot.api.deco import keyword
|
||||||
|
|
||||||
|
from cli_helpers import _run_with_passwd
|
||||||
|
from common import GATE_PUB_KEY, NEOFS_ENDPOINT, S3_GATE
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
# Disabling warnings on self-signed certificate which the
|
# Disabling warnings on self-signed certificate which the
|
||||||
|
@ -24,6 +24,7 @@ CREDENTIALS_CREATE_TIMEOUT = '30s'
|
||||||
|
|
||||||
NEOFS_EXEC = os.getenv('NEOFS_EXEC', 'neofs-authmate')
|
NEOFS_EXEC = os.getenv('NEOFS_EXEC', 'neofs-authmate')
|
||||||
|
|
||||||
|
|
||||||
@keyword('Init S3 Credentials')
|
@keyword('Init S3 Credentials')
|
||||||
def init_s3_credentials(wallet):
|
def init_s3_credentials(wallet):
|
||||||
bucket = str(uuid.uuid4())
|
bucket = str(uuid.uuid4())
|
||||||
|
@ -179,7 +180,6 @@ def put_object_s3(s3_client, bucket, filepath):
|
||||||
|
|
||||||
@keyword('Head object S3')
|
@keyword('Head object S3')
|
||||||
def head_object_s3(s3_client, bucket, object_key):
|
def head_object_s3(s3_client, bucket, object_key):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
response = s3_client.head_object(Bucket=bucket, Key=object_key)
|
response = s3_client.head_object(Bucket=bucket, Key=object_key)
|
||||||
logger.info(f"S3 Head object result: {response}")
|
logger.info(f"S3 Head object result: {response}")
|
||||||
|
|
|
@ -10,12 +10,12 @@ import os
|
||||||
import uuid
|
import uuid
|
||||||
|
|
||||||
from neo3 import wallet
|
from neo3 import wallet
|
||||||
from common import WALLET_PASS, ASSETS_DIR
|
|
||||||
from cli_helpers import _cmd_run
|
|
||||||
import json_transformers
|
|
||||||
|
|
||||||
from robot.api.deco import keyword
|
|
||||||
from robot.api import logger
|
from robot.api import logger
|
||||||
|
from robot.api.deco import keyword
|
||||||
|
|
||||||
|
import json_transformers
|
||||||
|
from cli_helpers import _cmd_run
|
||||||
|
from common import WALLET_PASS, ASSETS_DIR
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
|
||||||
|
@ -68,8 +68,7 @@ def generate_session_token(owner: str, session_wallet: str, cid: str='') -> str:
|
||||||
"verb": "PUT",
|
"verb": "PUT",
|
||||||
"wildcard": cid != '',
|
"wildcard": cid != '',
|
||||||
**({"containerID":
|
**({"containerID":
|
||||||
{"value":
|
{"value": f"{base64.b64encode(cid.encode('utf-8')).decode('utf-8')}"}
|
||||||
f"{base64.b64encode(cid.encode('utf-8')).decode('utf-8')}"}
|
|
||||||
} if cid != '' else {}
|
} if cid != '' else {}
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,11 +5,11 @@
|
||||||
It contains wrappers for `neofs-cli storagegroup` verbs.
|
It contains wrappers for `neofs-cli storagegroup` verbs.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from cli_helpers import _cmd_run
|
|
||||||
|
|
||||||
from common import NEOFS_CLI_EXEC, NEOFS_ENDPOINT, WALLET_PASS
|
|
||||||
from robot.api.deco import keyword
|
from robot.api.deco import keyword
|
||||||
|
|
||||||
|
from cli_helpers import _cmd_run
|
||||||
|
from common import NEOFS_CLI_EXEC, NEOFS_ENDPOINT, WALLET_PASS
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,12 +5,12 @@
|
||||||
that storage policies are kept.
|
that storage policies are kept.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
from common import NEOFS_NETMAP
|
from robot.api import logger
|
||||||
|
from robot.api.deco import keyword
|
||||||
|
|
||||||
import complex_object_actions
|
import complex_object_actions
|
||||||
import neofs_verbs
|
import neofs_verbs
|
||||||
|
from common import NEOFS_NETMAP
|
||||||
from robot.api.deco import keyword
|
|
||||||
from robot.api import logger
|
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
|
||||||
|
|
|
@ -1,20 +1,21 @@
|
||||||
#!/usr/bin/python3.8
|
#!/usr/bin/python3.8
|
||||||
|
|
||||||
|
import hashlib
|
||||||
import os
|
import os
|
||||||
import tarfile
|
import tarfile
|
||||||
import uuid
|
import uuid
|
||||||
import hashlib
|
|
||||||
import docker
|
|
||||||
|
|
||||||
from common import SIMPLE_OBJ_SIZE, ASSETS_DIR
|
import docker
|
||||||
from cli_helpers import _cmd_run
|
|
||||||
from robot.api.deco import keyword
|
|
||||||
from robot.api import logger
|
from robot.api import logger
|
||||||
|
from robot.api.deco import keyword
|
||||||
from robot.libraries.BuiltIn import BuiltIn
|
from robot.libraries.BuiltIn import BuiltIn
|
||||||
|
|
||||||
|
from cli_helpers import _cmd_run
|
||||||
|
from common import SIMPLE_OBJ_SIZE, ASSETS_DIR
|
||||||
|
|
||||||
ROBOT_AUTO_KEYWORDS = False
|
ROBOT_AUTO_KEYWORDS = False
|
||||||
|
|
||||||
|
|
||||||
@keyword('Generate file')
|
@keyword('Generate file')
|
||||||
def generate_file_and_file_hash(size: int) -> str:
|
def generate_file_and_file_hash(size: int) -> str:
|
||||||
"""
|
"""
|
||||||
|
@ -67,6 +68,7 @@ def get_container_logs(testcase_name: str) -> None:
|
||||||
os.remove(file_name)
|
os.remove(file_name)
|
||||||
tar.close()
|
tar.close()
|
||||||
|
|
||||||
|
|
||||||
@keyword('Make Up')
|
@keyword('Make Up')
|
||||||
def make_up(services: list = [], config_dict: dict = {}):
|
def make_up(services: list = [], config_dict: dict = {}):
|
||||||
test_path = os.getcwd()
|
test_path = os.getcwd()
|
||||||
|
@ -87,6 +89,7 @@ def make_up(services: list=[], config_dict: dict={}):
|
||||||
|
|
||||||
os.chdir(test_path)
|
os.chdir(test_path)
|
||||||
|
|
||||||
|
|
||||||
@keyword('Make Down')
|
@keyword('Make Down')
|
||||||
def make_down(services: list = []):
|
def make_down(services: list = []):
|
||||||
test_path = os.getcwd()
|
test_path = os.getcwd()
|
||||||
|
|
|
@ -43,22 +43,27 @@ COMMON_PLACEMENT_RULE = "REP 2 IN X CBF 1 SELECT 4 FROM * AS X"
|
||||||
|
|
||||||
ASSETS_DIR = os.getenv("ASSETS_DIR", "TemporaryDir/")
|
ASSETS_DIR = os.getenv("ASSETS_DIR", "TemporaryDir/")
|
||||||
|
|
||||||
MORPH_MAGIC = os.environ["MORPH_MAGIC"]
|
MORPH_MAGIC = os.getenv("MORPH_MAGIC")
|
||||||
GATE_PUB_KEY = '0313b1ac3a8076e155a7e797b24f0b650cccad5941ea59d7cfd51a024a8b2a06bf'
|
GATE_PUB_KEY = '0313b1ac3a8076e155a7e797b24f0b650cccad5941ea59d7cfd51a024a8b2a06bf'
|
||||||
|
|
||||||
NEOFS_NETMAP_DICT = {'s01': {'rpc': 's01.neofs.devenv:8080',
|
STORAGE_NODE_1 = os.getenv('DATA_NODE_1', 's01.neofs.devenv:8080')
|
||||||
|
STORAGE_NODE_2 = os.getenv('DATA_NODE_2', 's02.neofs.devenv:8080')
|
||||||
|
STORAGE_NODE_3 = os.getenv('DATA_NODE_3', 's03.neofs.devenv:8080')
|
||||||
|
STORAGE_NODE_4 = os.getenv('DATA_NODE_4', 's04.neofs.devenv:8080')
|
||||||
|
|
||||||
|
NEOFS_NETMAP_DICT = {'s01': {'rpc': STORAGE_NODE_1,
|
||||||
'control': 's01.neofs.devenv:8081',
|
'control': 's01.neofs.devenv:8081',
|
||||||
'wif': 'Kwk6k2eC3L3QuPvD8aiaNyoSXgQ2YL1bwS5CP1oKoA9waeAze97s',
|
'wif': 'Kwk6k2eC3L3QuPvD8aiaNyoSXgQ2YL1bwS5CP1oKoA9waeAze97s',
|
||||||
'UN-LOCODE': 'RU MOW'},
|
'UN-LOCODE': 'RU MOW'},
|
||||||
's02': {'rpc': 's02.neofs.devenv:8080',
|
's02': {'rpc': STORAGE_NODE_2,
|
||||||
'control': 's02.neofs.devenv:8081',
|
'control': 's02.neofs.devenv:8081',
|
||||||
'wif': 'L1NdHdnrTNGQZH1fJSrdUZJyeYFHvaQSSHZHxhK3udiGFdr5YaZ6',
|
'wif': 'L1NdHdnrTNGQZH1fJSrdUZJyeYFHvaQSSHZHxhK3udiGFdr5YaZ6',
|
||||||
'UN-LOCODE': 'RU LED'},
|
'UN-LOCODE': 'RU LED'},
|
||||||
's03': {'rpc': 's03.neofs.devenv:8080',
|
's03': {'rpc': STORAGE_NODE_3,
|
||||||
'control': 's03.neofs.devenv:8081',
|
'control': 's03.neofs.devenv:8081',
|
||||||
'wif': 'KzN38k39af6ACWJjK8YrnARWo86ddcc1EuBWz7xFEdcELcP3ZTym',
|
'wif': 'KzN38k39af6ACWJjK8YrnARWo86ddcc1EuBWz7xFEdcELcP3ZTym',
|
||||||
'UN-LOCODE': 'SE STO'},
|
'UN-LOCODE': 'SE STO'},
|
||||||
's04': {'rpc': 's04.neofs.devenv:8080',
|
's04': {'rpc': STORAGE_NODE_4,
|
||||||
'control': 's04.neofs.devenv:8081',
|
'control': 's04.neofs.devenv:8081',
|
||||||
'wif': 'Kzk1Z3dowAqfNyjqeYKWenZMduFV3NAKgXg9K1sA4jRKYxEc8HEW',
|
'wif': 'Kzk1Z3dowAqfNyjqeYKWenZMduFV3NAKgXg9K1sA4jRKYxEc8HEW',
|
||||||
'UN-LOCODE': 'FI HEL'}
|
'UN-LOCODE': 'FI HEL'}
|
||||||
|
|
Loading…
Reference in a new issue