forked from TrueCloudLab/frostfs-testcases
74 lines
3 KiB
Python
74 lines
3 KiB
Python
import logging
|
|
|
|
import allure
|
|
import pytest
|
|
import yaml
|
|
from common import ASSETS_DIR, FREE_STORAGE, NEOFS_CLI_EXEC, NEOFS_ENDPOINT, WALLET_CONFIG
|
|
from neofs_testlib.cli import NeofsCli
|
|
from python_keywords.payment_neogo import _address_from_wallet
|
|
from wallet import init_wallet
|
|
|
|
logger = logging.getLogger("NeoLogger")
|
|
DEPOSIT_AMOUNT = 30
|
|
|
|
|
|
@pytest.mark.payments
|
|
@pytest.mark.skipif(FREE_STORAGE, reason="Test only works on public network with paid storage")
|
|
class TestBalanceAccounting:
|
|
@pytest.fixture(autouse=True)
|
|
def prepare_two_wallets(self, prepare_wallet_and_deposit):
|
|
self.user_wallet = prepare_wallet_and_deposit
|
|
self.address = _address_from_wallet(self.user_wallet, "")
|
|
_, self.another_address, _ = init_wallet(ASSETS_DIR)
|
|
|
|
@allure.title("Test balance request with wallet and address")
|
|
def test_balance_wallet_address(self, client_shell):
|
|
cli = NeofsCli(client_shell, NEOFS_CLI_EXEC, WALLET_CONFIG)
|
|
output = cli.accounting.balance(
|
|
wallet=self.user_wallet,
|
|
rpc_endpoint=NEOFS_ENDPOINT,
|
|
address=self.address,
|
|
)
|
|
logger.info(f"Out wallet+address: {output}")
|
|
assert int(output.stdout.rstrip()) == DEPOSIT_AMOUNT
|
|
|
|
@allure.title("Test balance request with wallet only")
|
|
def test_balance_wallet(self, client_shell):
|
|
cli = NeofsCli(client_shell, NEOFS_CLI_EXEC, WALLET_CONFIG)
|
|
output = cli.accounting.balance(wallet=self.user_wallet, rpc_endpoint=NEOFS_ENDPOINT)
|
|
logger.info(f"Out wallet: {output}")
|
|
assert int(output.stdout.rstrip()) == DEPOSIT_AMOUNT
|
|
|
|
@allure.title("Test balance request with wallet and wrong address")
|
|
def test_balance_wrong_address(self, client_shell):
|
|
with pytest.raises(Exception, match="address option must be specified and valid"):
|
|
cli = NeofsCli(client_shell, NEOFS_CLI_EXEC, WALLET_CONFIG)
|
|
cli.accounting.balance(
|
|
wallet=self.user_wallet,
|
|
rpc_endpoint=NEOFS_ENDPOINT,
|
|
address=self.another_address,
|
|
)
|
|
|
|
@allure.title("Test balance request with config file")
|
|
def test_balance_api(self, client_shell):
|
|
config_file = self.write_api_config(endpoint=NEOFS_ENDPOINT, wallet=self.user_wallet)
|
|
logger.info(f"YAML: {config_file}")
|
|
cli = NeofsCli(client_shell, NEOFS_CLI_EXEC, WALLET_CONFIG)
|
|
output = cli.accounting.balance()
|
|
logger.info(f"Out api: {output.stdout}")
|
|
assert int(output.stdout.rstrip()) == DEPOSIT_AMOUNT
|
|
|
|
@staticmethod
|
|
@allure.step("Write YAML config")
|
|
def write_api_config(endpoint: str, wallet: str) -> str:
|
|
with open(WALLET_CONFIG) as file:
|
|
wallet_config = yaml.load(file, Loader=yaml.FullLoader)
|
|
api_config = {
|
|
**wallet_config,
|
|
"rpc-endpoint": endpoint,
|
|
"wallet": wallet,
|
|
}
|
|
api_config_file = f"{ASSETS_DIR}/config.yaml"
|
|
with open(api_config_file, "w") as file:
|
|
yaml.dump(api_config, file)
|
|
return api_config_file
|