Fixed typo in test_s3_delete_versioning case assertion #47
No reviewers
Labels
No labels
P0
P1
P2
P3
good first issue
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No milestone
No project
No assignees
4 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-testcases#47
Loading…
Reference in a new issue
No description provided.
Delete branch "ylukoyan/frostfs-testcases:typo"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -316,3 +316,3 @@
}
assert obj_versions == {version_id_2}, f"Object should have versions: {version_id_2}"
assert "DeleteMarkers" not in delete_obj.keys(), "Delete markers not found"
assert "DeleteMarker" not in delete_obj.keys(), "Delete markers should not be created"
There is no
DeleteMarker
field in DeleteObject response, Delete Marker is returned asVersionId
field.https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteObject.html
According to https://docs.aws.amazon.com/AmazonS3/latest/API/API_ListObjectVersions.html
DeleteMarkers
may be returned in List_Object_Version call.And it is in the test results:
Could you please clarify?
Clarified in DM
Please clarify test flow