forked from TrueCloudLab/frostfs-testcases
19f9d97328
Signed-off-by: anastasia prasolova <anastasia@nspcc.ru>
72 lines
2.9 KiB
Text
72 lines
2.9 KiB
Text
*** Settings ***
|
|
Variables ../../../../variables/common.py
|
|
|
|
Library Collections
|
|
Library Process
|
|
Library String
|
|
Library contract_keywords.py
|
|
Library cli_keywords.py
|
|
Library utility_keywords.py
|
|
|
|
Resource setup_teardown.robot
|
|
Resource payment_operations.robot
|
|
|
|
*** Variables ***
|
|
${DEPOSIT_AMOUNT} = ${10}
|
|
|
|
*** Test cases ***
|
|
CLI Accounting Balance Test
|
|
[Documentation] neofs-cli accounting balance test
|
|
[Tags] NeoFSCLI Accounting
|
|
[Timeout] 10 min
|
|
|
|
[Setup] Setup
|
|
|
|
${WALLET} ${ADDR} ${WIF} = Prepare Wallet And Deposit ${DEPOSIT_AMOUNT}
|
|
|
|
# Getting balance with WIF
|
|
${OUTPUT} = Run Process neofs-cli accounting balance -r ${NEOFS_ENDPOINT} --wif ${WIF}
|
|
... shell=True
|
|
Should Be Equal As Numbers ${OUTPUT.stdout} ${DEPOSIT_AMOUNT}
|
|
|
|
# Getting balance with wallet and address
|
|
${OUTPUT} = Run Process And Enter Empty Password
|
|
... neofs-cli accounting balance -r ${NEOFS_ENDPOINT} --address ${ADDR} --wallet ${WALLET}
|
|
Should Be Equal As Numbers ${OUTPUT} ${DEPOSIT_AMOUNT}
|
|
|
|
# Getting balance with wallet only
|
|
${OUTPUT} = Run Process And Enter Empty Password
|
|
... neofs-cli accounting balance -r ${NEOFS_ENDPOINT} --wallet ${WALLET}
|
|
Should Be Equal As Numbers ${OUTPUT} ${DEPOSIT_AMOUNT}
|
|
|
|
# Getting balance with wallet and wrong address
|
|
${ANOTHER_WALLET} ${ANOTHER_ADDR} ${ANOTHER_WIF} = Init Wallet With Address ${ASSETS_DIR}
|
|
${OUTPUT} = Run Process neofs-cli accounting balance -r ${NEOFS_ENDPOINT} --address ${ANOTHER_ADDR} --wallet ${WALLET}
|
|
... shell=True
|
|
Should Be Equal As Strings ${OUTPUT.stderr} --address option must be specified and valid
|
|
Should Be Equal As Numbers ${OUTPUT.rc} 1
|
|
|
|
# Getting balance with control API
|
|
${CONFIG_PATH} = Write Control API Config ${NEOFS_ENDPOINT} ${WIF}
|
|
${OUTPUT} = Run Process neofs-cli accounting balance --config ${CONFIG_PATH}
|
|
... shell=True
|
|
Should Be Equal As Numbers ${OUTPUT.stdout} ${DEPOSIT_AMOUNT}
|
|
|
|
# Getting balance with binary key
|
|
${KEY_PATH} = WIF To Binary ${WIF}
|
|
${OUTPUT} = Run Process neofs-cli accounting balance -r ${NEOFS_ENDPOINT} --binary-key ${KEY_PATH}
|
|
... shell=True
|
|
Should Be Equal As Numbers ${OUTPUT.stdout} ${DEPOSIT_AMOUNT}
|
|
|
|
[Teardown] Teardown cli_accounting_balance
|
|
|
|
*** Keywords ***
|
|
|
|
Write Control API Config
|
|
[Documentation] Write YAML config for requesting NeoFS Control API via CLI
|
|
[Arguments] ${ENDPOINT} ${WIF}
|
|
|
|
Set Local Variable ${PATH} ${ASSETS_DIR}/config.yaml
|
|
Create File ${PATH} rpc: ${ENDPOINT}\nwif: ${WIF}
|
|
|
|
[Return] ${PATH}
|