2021-04-26 17:48:43 +00:00
|
|
|
*** Settings ***
|
|
|
|
Variables ../../../variables/common.py
|
|
|
|
|
|
|
|
*** Variables ***
|
2021-02-08 05:05:17 +00:00
|
|
|
${FILE_USR_HEADER} = key1=1,key2=abc
|
|
|
|
${FILE_USR_HEADER_DEL} = key1=del,key2=del
|
|
|
|
${FILE_OTH_HEADER} = key1=oth,key2=oth
|
|
|
|
${RULE_FOR_ALL} = REP 2 IN X CBF 1 SELECT 4 FROM * AS X
|
|
|
|
|
|
|
|
|
|
|
|
*** Keywords ***
|
|
|
|
|
2021-06-01 12:07:31 +00:00
|
|
|
Generate eACL Keys
|
2021-02-08 05:05:17 +00:00
|
|
|
${EACL_KEY_GEN} = Form WIF from String 782676b81a35c5f07325ec523e8521ee4946b6e5d4c6cd652dd0c3ba51ce03de
|
2021-06-01 12:07:31 +00:00
|
|
|
Set Global Variable ${EACL_KEY} ${EACL_KEY_GEN}
|
|
|
|
Set Global Variable ${SYSTEM_KEY} ${NEOFS_IR_WIF}
|
2021-02-08 05:05:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
Create Container Public
|
|
|
|
Log Create Public Container
|
2021-05-04 09:27:43 +00:00
|
|
|
${PUBLIC_CID_GEN} = Create container ${USER_KEY} 0x0FFFFFFF ${COMMON_PLACEMENT_RULE}
|
2021-04-26 17:48:43 +00:00
|
|
|
[Return] ${PUBLIC_CID_GEN}
|
2021-02-08 05:05:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
Create Container Inaccessible
|
|
|
|
Log Create Inaccessible Container
|
2021-05-04 09:27:43 +00:00
|
|
|
${PUBLIC_CID_GEN} = Create container ${USER_KEY} 0x40000000 ${COMMON_PLACEMENT_RULE}
|
2021-02-08 05:05:17 +00:00
|
|
|
[Return] ${PUBLIC_CID_GEN}
|
|
|
|
|
|
|
|
|
|
|
|
Generate file
|
|
|
|
[Arguments] ${SIZE}
|
2021-04-26 17:48:43 +00:00
|
|
|
|
2021-02-08 05:05:17 +00:00
|
|
|
${FILE_S_GEN} = Generate file of bytes ${SIZE}
|
|
|
|
Set Global Variable ${FILE_S} ${FILE_S_GEN}
|
2021-04-26 17:48:43 +00:00
|
|
|
|
2021-02-08 05:05:17 +00:00
|
|
|
|
|
|
|
Prepare eACL Role rules
|
|
|
|
Log Set eACL for different Role cases
|
|
|
|
|
|
|
|
# eACL rules for all operations and similar permissions
|
|
|
|
@{Roles} = Create List OTHERS USER SYSTEM
|
|
|
|
FOR ${role} IN @{Roles}
|
2021-04-26 17:48:43 +00:00
|
|
|
${rule1} = Create Dictionary Operation=GET Access=DENY Role=${role}
|
|
|
|
${rule2} = Create Dictionary Operation=HEAD Access=DENY Role=${role}
|
|
|
|
${rule3} = Create Dictionary Operation=PUT Access=DENY Role=${role}
|
|
|
|
${rule4} = Create Dictionary Operation=DELETE Access=DENY Role=${role}
|
2021-02-08 05:05:17 +00:00
|
|
|
${rule5} = Create Dictionary Operation=SEARCH Access=DENY Role=${role}
|
|
|
|
${rule6} = Create Dictionary Operation=GETRANGE Access=DENY Role=${role}
|
|
|
|
${rule7} = Create Dictionary Operation=GETRANGEHASH Access=DENY Role=${role}
|
|
|
|
|
|
|
|
${eACL_gen} = Create List ${rule1} ${rule2} ${rule3} ${rule4} ${rule5} ${rule6} ${rule7}
|
|
|
|
Form eACL json common file gen_eacl_deny_all_${role} ${eACL_gen}
|
|
|
|
Set Global Variable ${EACL_DENY_ALL_${role}} gen_eacl_deny_all_${role}
|
2021-04-26 17:48:43 +00:00
|
|
|
END
|