forked from TrueCloudLab/frostfs-testcases
a56734ed93
Signed-off-by: anastasia prasolova <anastasia@nspcc.ru>
23 lines
938 B
Text
23 lines
938 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} ${BEARER}=${EMPTY} ${WALLET_CFG}=${WALLET_CONFIG}
|
|
|
|
${LINK_OID} = Get Link Object ${WALLET} ${CID} ${LARGE_OID}
|
|
... bearer_token=${BEARER}
|
|
... wallet_config=${WALLET_CFG}
|
|
&{LINK_HEADER} = Head Object ${WALLET} ${CID} ${LINK_OID}
|
|
... is_raw=True bearer_token=${BEARER}
|
|
... wallet_config=${WALLET_CFG}
|
|
|
|
[Return] ${LINK_HEADER.header.split.children}
|