54 lines
2.2 KiB
Python
54 lines
2.2 KiB
Python
import os
|
|
|
|
import yaml
|
|
|
|
CONTAINER_WAIT_INTERVAL = "1m"
|
|
|
|
SIMPLE_OBJECT_SIZE = os.getenv("SIMPLE_OBJECT_SIZE", "1000")
|
|
COMPLEX_OBJECT_CHUNKS_COUNT = os.getenv("COMPLEX_OBJECT_CHUNKS_COUNT", "3")
|
|
COMPLEX_OBJECT_TAIL_SIZE = os.getenv("COMPLEX_OBJECT_TAIL_SIZE", "1000")
|
|
|
|
MAINNET_BLOCK_TIME = os.getenv("MAINNET_BLOCK_TIME", "1s")
|
|
MAINNET_TIMEOUT = os.getenv("MAINNET_TIMEOUT", "1min")
|
|
MORPH_BLOCK_TIME = os.getenv("MORPH_BLOCK_TIME", "1s")
|
|
FROSTFS_CONTRACT_CACHE_TIMEOUT = os.getenv("FROSTFS_CONTRACT_CACHE_TIMEOUT", "30s")
|
|
|
|
# Time interval that allows a GC pass on storage node (this includes GC sleep interval
|
|
# of 1min plus 15 seconds for GC pass itself)
|
|
STORAGE_GC_TIME = os.getenv("STORAGE_GC_TIME", "75s")
|
|
|
|
GAS_HASH = os.getenv("GAS_HASH", "0xd2a4cff31913016155e38e474a2c06d08be276cf")
|
|
|
|
FROSTFS_CONTRACT = os.getenv("FROSTFS_IR_CONTRACTS_FROSTFS")
|
|
|
|
ASSETS_DIR = os.getenv("ASSETS_DIR", "TemporaryDir")
|
|
DEVENV_PATH = os.getenv("DEVENV_PATH", os.path.join("..", "frostfs-dev-env"))
|
|
|
|
# Password of wallet owned by user on behalf of whom we are running tests
|
|
WALLET_PASS = os.getenv("WALLET_PASS", "")
|
|
|
|
|
|
# Paths to CLI executables on machine that runs tests
|
|
NEOGO_EXECUTABLE = os.getenv("NEOGO_EXECUTABLE", "neo-go")
|
|
FROSTFS_CLI_EXEC = os.getenv("FROSTFS_CLI_EXEC", "frostfs-cli")
|
|
FROSTFS_AUTHMATE_EXEC = os.getenv("FROSTFS_AUTHMATE_EXEC", "frostfs-authmate")
|
|
FROSTFS_ADM_EXEC = os.getenv("FROSTFS_ADM_EXEC", "frostfs-adm")
|
|
|
|
# Config for frostfs-adm utility. Optional if tests are running against devenv
|
|
FROSTFS_ADM_CONFIG_PATH = os.getenv("FROSTFS_ADM_CONFIG_PATH")
|
|
|
|
FREE_STORAGE = os.getenv("FREE_STORAGE", "false").lower() == "true"
|
|
BIN_VERSIONS_FILE = os.getenv("BIN_VERSIONS_FILE")
|
|
|
|
HOSTING_CONFIG_FILE = os.getenv("HOSTING_CONFIG_FILE", ".devenv.hosting.yaml")
|
|
STORAGE_NODE_SERVICE_NAME_REGEX = r"s\d\d"
|
|
HTTP_GATE_SERVICE_NAME_REGEX = r"http-gate\d\d"
|
|
S3_GATE_SERVICE_NAME_REGEX = r"s3-gate\d\d"
|
|
|
|
CLI_DEFAULT_TIMEOUT = os.getenv("CLI_DEFAULT_TIMEOUT", None)
|
|
|
|
# Generate wallet configs
|
|
# TODO: we should move all info about wallet configs to fixtures
|
|
WALLET_CONFIG = os.path.join(os.getcwd(), "wallet_config.yml")
|
|
with open(WALLET_CONFIG, "w") as file:
|
|
yaml.dump({"password": WALLET_PASS}, file)
|