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