2020-07-14 00:05:22 +00:00
|
|
|
*** Settings ***
|
2021-12-09 10:58:51 +00:00
|
|
|
Variables common.py
|
2020-07-14 00:05:22 +00:00
|
|
|
|
2022-05-24 15:00:26 +00:00
|
|
|
Library container.py
|
2022-05-26 09:44:13 +00:00
|
|
|
Library storage_policy.py
|
2022-05-20 11:18:14 +00:00
|
|
|
Library utility_keywords.py
|
2021-06-01 12:07:31 +00:00
|
|
|
|
2021-09-27 20:41:21 +00:00
|
|
|
Resource payment_operations.robot
|
|
|
|
Resource setup_teardown.robot
|
2022-06-06 13:47:13 +00:00
|
|
|
Resource verbs.robot
|
2020-07-14 00:05:22 +00:00
|
|
|
|
|
|
|
*** Test cases ***
|
|
|
|
NeoFS Simple Object Operations
|
|
|
|
[Documentation] Testcase to validate NeoFS operations with simple object.
|
2022-03-15 11:58:59 +00:00
|
|
|
[Tags] Object
|
2021-04-06 14:18:48 +00:00
|
|
|
[Timeout] 10 min
|
2020-07-14 00:05:22 +00:00
|
|
|
|
2021-04-26 10:30:40 +00:00
|
|
|
|
2022-06-06 13:47:13 +00:00
|
|
|
${WALLET} ${_} ${_} = Prepare Wallet And Deposit
|
2022-05-24 15:00:26 +00:00
|
|
|
${CID} = Create container ${WALLET}
|
2020-11-27 00:33:11 +00:00
|
|
|
|
2022-06-06 13:47:13 +00:00
|
|
|
${OID} =
|
|
|
|
... Run All Verbs Except Delete And Expect Success
|
|
|
|
... ${WALLET} ${CID} Simple
|
2020-07-14 00:05:22 +00:00
|
|
|
|
2022-06-06 13:47:13 +00:00
|
|
|
${COPIES} = Get Simple Object Copies ${WALLET} ${CID} ${OID}
|
2022-05-26 09:44:13 +00:00
|
|
|
Should Be Equal As Numbers 2 ${COPIES}
|
2021-04-26 10:30:40 +00:00
|
|
|
|
2022-06-06 13:47:13 +00:00
|
|
|
Delete Object And Validate Tombstone
|
|
|
|
... ${WALLET} ${CID} ${OID}
|
2020-11-27 00:33:11 +00:00
|
|
|
|
2020-12-02 23:08:05 +00:00
|
|
|
|