2021-02-08 05:05:17 +00:00
|
|
|
*** Settings ***
|
|
|
|
|
|
|
|
Variables ../../../variables/common.py
|
|
|
|
|
|
|
|
Library Collections
|
2021-09-10 12:44:40 +00:00
|
|
|
Library neofs.py
|
|
|
|
Library acl.py
|
|
|
|
Library payment_neogo.py
|
|
|
|
|
|
|
|
Resource ../../../variables/eacl_tables.robot
|
2021-02-08 05:05:17 +00:00
|
|
|
Resource common_steps_acl_bearer.robot
|
2021-06-01 12:07:31 +00:00
|
|
|
Resource ../${RESOURCES}/payment_operations.robot
|
2021-06-01 12:07:31 +00:00
|
|
|
Resource ../${RESOURCES}/setup_teardown.robot
|
2021-02-08 05:05:17 +00:00
|
|
|
|
|
|
|
*** Test cases ***
|
|
|
|
BearerToken Operations for Inaccessible Container
|
|
|
|
[Documentation] Testcase to validate NeoFS operations with BearerToken for Inaccessible Container.
|
2021-09-10 12:44:40 +00:00
|
|
|
[Tags] ACL NeoFSCLI BearerToken
|
2021-02-08 05:05:17 +00:00
|
|
|
[Timeout] 20 min
|
|
|
|
|
2021-06-01 12:07:31 +00:00
|
|
|
[Setup] Setup
|
2021-04-26 10:30:40 +00:00
|
|
|
|
2021-09-08 17:31:52 +00:00
|
|
|
${WALLET} ${ADDR} ${USER_KEY} = Prepare Wallet And Deposit
|
|
|
|
Prepare eACL Role rules
|
2021-04-26 10:30:40 +00:00
|
|
|
|
2021-02-08 05:05:17 +00:00
|
|
|
Log Check Bearer token with simple object
|
2021-09-08 17:31:52 +00:00
|
|
|
${FILE_S} = Generate file ${SIMPLE_OBJ_SIZE}
|
|
|
|
Check Container Inaccessible and Allow All Bearer ${USER_KEY} ${FILE_S}
|
2021-02-08 05:05:17 +00:00
|
|
|
|
|
|
|
Log Check Bearer token with complex object
|
2021-09-08 17:31:52 +00:00
|
|
|
${FILE_S} = Generate file ${COMPLEX_OBJ_SIZE}
|
|
|
|
Check Container Inaccessible and Allow All Bearer ${USER_KEY} ${FILE_S}
|
2021-02-08 05:05:17 +00:00
|
|
|
|
2021-06-01 12:07:31 +00:00
|
|
|
[Teardown] Teardown acl_bearer_inaccessible
|
2021-04-26 10:30:40 +00:00
|
|
|
|
2021-02-08 05:05:17 +00:00
|
|
|
*** Keywords ***
|
|
|
|
|
|
|
|
Check Container Inaccessible and Allow All Bearer
|
2021-09-08 17:31:52 +00:00
|
|
|
[Arguments] ${USER_KEY} ${FILE_S}
|
|
|
|
|
|
|
|
${CID} = Create Container Inaccessible ${USER_KEY}
|
2021-09-10 12:44:40 +00:00
|
|
|
|
|
|
|
Run Keyword And Expect Error *
|
|
|
|
... Put object ${USER_KEY} ${FILE_S} ${CID} ${EMPTY} ${FILE_USR_HEADER}
|
|
|
|
Run Keyword And Expect Error *
|
|
|
|
... Get object ${USER_KEY} ${CID} ${S_OID_USER} ${EMPTY} local_file_eacl
|
|
|
|
Run Keyword And Expect Error *
|
|
|
|
... Search object ${USER_KEY} ${CID} ${EMPTY} ${EMPTY} ${FILE_USR_HEADER}
|
|
|
|
Run Keyword And Expect Error *
|
|
|
|
... Head object ${USER_KEY} ${CID} ${S_OID_USER} ${EMPTY}
|
|
|
|
Run Keyword And Expect Error *
|
|
|
|
... Get Range ${USER_KEY} ${CID} ${S_OID_USER} s_get_range ${EMPTY} 0:256
|
|
|
|
Run Keyword And Expect Error *
|
|
|
|
... Delete object ${USER_KEY} ${CID} ${S_OID_USER} ${EMPTY}
|
|
|
|
|
|
|
|
${rule1} = Create Dictionary Operation=PUT Access=ALLOW Role=USER
|
|
|
|
${rule2} = Create Dictionary Operation=SEARCH Access=ALLOW Role=USER
|
|
|
|
${eACL_gen} = Create List ${rule1} ${rule2}
|
|
|
|
|
|
|
|
${EACL_TOKEN} = Form BearerToken File ${USER_KEY} ${CID} ${eACL_gen}
|
|
|
|
|
|
|
|
Run Keyword And Expect Error *
|
|
|
|
... Put object ${USER_KEY} ${FILE_S} ${CID} ${EACL_TOKEN} ${FILE_USR_HEADER}
|
|
|
|
Run Keyword And Expect Error *
|
|
|
|
... Search object ${USER_KEY} ${CID} ${EMPTY} ${EACL_TOKEN} ${FILE_USR_HEADER}
|