2021-04-02 14:29:41 +00:00
|
|
|
*** Settings ***
|
2021-12-09 10:58:51 +00:00
|
|
|
Variables common.py
|
2021-04-02 14:29:41 +00:00
|
|
|
|
2021-09-20 14:17:15 +00:00
|
|
|
Library neofs.py
|
|
|
|
Library payment_neogo.py
|
2021-06-24 13:51:59 +00:00
|
|
|
|
|
|
|
Resource common_steps_acl_extended.robot
|
2021-12-09 10:58:51 +00:00
|
|
|
Resource payment_operations.robot
|
|
|
|
Resource setup_teardown.robot
|
|
|
|
Resource eacl_tables.robot
|
2021-04-26 10:30:40 +00:00
|
|
|
|
2021-04-02 14:29:41 +00:00
|
|
|
*** Test cases ***
|
|
|
|
Extended ACL Operations
|
|
|
|
[Documentation] Testcase to validate NeoFS operations with extended ACL with Other group key.
|
|
|
|
[Tags] ACL eACL NeoFS NeoCLI
|
|
|
|
[Timeout] 20 min
|
|
|
|
|
2021-06-01 12:07:31 +00:00
|
|
|
[Setup] Setup
|
2021-04-26 10:30:40 +00:00
|
|
|
|
2022-02-01 13:42:41 +00:00
|
|
|
${WALLET} ${_} ${_} = Prepare Wallet And Deposit
|
|
|
|
${WALLET_OTH} ${_} ${_} = Prepare Wallet And Deposit
|
2021-04-02 14:29:41 +00:00
|
|
|
|
|
|
|
Log Check extended ACL with simple object
|
2022-02-01 13:42:41 +00:00
|
|
|
${FILE_S} = Generate file of bytes ${SIMPLE_OBJ_SIZE}
|
|
|
|
Check eACL Deny and Allow All Other ${WALLET} ${WALLET_OTH}
|
2021-04-02 14:29:41 +00:00
|
|
|
|
|
|
|
Log Check extended ACL with complex object
|
2022-02-01 13:42:41 +00:00
|
|
|
${FILE_S} = Generate file of bytes ${COMPLEX_OBJ_SIZE}
|
|
|
|
Check eACL Deny and Allow All Other ${WALLET} ${WALLET_OTH}
|
2021-04-02 14:29:41 +00:00
|
|
|
|
2021-06-01 12:07:31 +00:00
|
|
|
[Teardown] Teardown acl_extended_actions_other
|
2021-04-26 10:30:40 +00:00
|
|
|
|
|
|
|
|
2021-04-02 14:29:41 +00:00
|
|
|
*** Keywords ***
|
|
|
|
|
|
|
|
Check eACL Deny and Allow All Other
|
2022-02-01 13:42:41 +00:00
|
|
|
[Arguments] ${WALLET} ${WALLET_OTH}
|
|
|
|
Check eACL Deny and Allow All ${WALLET_OTH} ${EACL_DENY_ALL_OTHERS} ${EACL_ALLOW_ALL_OTHERS} ${WALLET}
|