frostfs-testcases/robot/resources/lib/robot/complex_object_operations.robot
Elizaveta Chichindaeva 89a4c6daa7 [#424] neofs-cli: WIF replaced with wallets
Signed-off-by: Elizaveta Chichindaeva <elizaveta@nspcc.ru>
2022-04-27 17:38:15 +03:00

20 lines
607 B
Text

*** Settings ***
Variables common.py
Library neofs_verbs.py
Library complex_object_actions.py
*** Keywords ***
Get Object Parts By Link Object
[Documentation] The keyword accepts the ID of a Large Object, retrieves its split
... header and returns all Part Object IDs from Link Object.
[Arguments] ${WALLET} ${CID} ${LARGE_OID}
${LINK_OID} = Get Link Object ${WALLET} ${CID} ${LARGE_OID}
&{LINK_HEADER} = Head Object ${WALLET} ${CID} ${LINK_OID} is_raw=True
[Return] ${LINK_HEADER.header.split.children}