mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-21 20:06:37 +00:00
test(s3): promote 145 passing tests to implemented list (#2023)
This commit is contained in:
@@ -23,8 +23,14 @@
|
||||
# - SSE-KMS: KMS-related edge cases
|
||||
# - Bucket Policy: Multipart upload authorization, SSE condition keys
|
||||
# - Versioning: Concurrent multi-object delete
|
||||
# - ACL: Bucket and Object ACL
|
||||
# - Object Copy: Same/cross bucket, metadata, versioning
|
||||
# - POST Object: HTML form upload
|
||||
# - Raw requests: Authenticated and anonymous
|
||||
# - Conditional writes: If-Match/If-None-Match for PUT/Copy
|
||||
# - Atomic read/write: Concurrent read/write consistency
|
||||
#
|
||||
# Total: 231 tests
|
||||
# Total: 376 tests
|
||||
|
||||
test_basic_key_count
|
||||
test_bucket_create_naming_bad_short_one
|
||||
@@ -281,3 +287,172 @@ test_versioning_obj_suspend_versions
|
||||
|
||||
# Tenant and presigned tests
|
||||
test_object_presigned_put_object_with_acl_tenant
|
||||
|
||||
# ACL tests (bucket and object)
|
||||
test_access_bucket_private_object_private
|
||||
test_access_bucket_private_object_publicread
|
||||
test_access_bucket_private_object_publicreadwrite
|
||||
test_access_bucket_private_objectv2_private
|
||||
test_access_bucket_private_objectv2_publicread
|
||||
test_access_bucket_private_objectv2_publicreadwrite
|
||||
test_access_bucket_publicread_object_private
|
||||
test_access_bucket_publicread_object_publicread
|
||||
test_access_bucket_publicread_object_publicreadwrite
|
||||
test_access_bucket_publicreadwrite_object_private
|
||||
test_access_bucket_publicreadwrite_object_publicread
|
||||
test_access_bucket_publicreadwrite_object_publicreadwrite
|
||||
test_bucket_acl_canned
|
||||
test_bucket_acl_canned_authenticatedread
|
||||
test_bucket_acl_canned_during_create
|
||||
test_bucket_acl_canned_private_to_private
|
||||
test_bucket_acl_canned_publicreadwrite
|
||||
test_bucket_acl_default
|
||||
test_bucket_acl_grant_email
|
||||
test_bucket_acl_grant_email_not_exist
|
||||
test_bucket_acl_grant_nonexist_user
|
||||
test_bucket_acl_grant_userid_fullcontrol
|
||||
test_bucket_acl_grant_userid_read
|
||||
test_bucket_acl_grant_userid_readacp
|
||||
test_bucket_acl_grant_userid_write
|
||||
test_bucket_acl_grant_userid_writeacp
|
||||
test_bucket_acl_revoke_all
|
||||
test_bucket_concurrent_set_canned_acl
|
||||
test_object_acl
|
||||
test_object_acl_canned
|
||||
test_object_acl_canned_authenticatedread
|
||||
test_object_acl_canned_bucketownerfullcontrol
|
||||
test_object_acl_canned_bucketownerread
|
||||
test_object_acl_canned_during_create
|
||||
test_object_acl_canned_publicreadwrite
|
||||
test_object_acl_default
|
||||
test_object_acl_full_control_verify_attributes
|
||||
test_object_acl_full_control_verify_owner
|
||||
test_object_acl_read
|
||||
test_object_acl_readacp
|
||||
test_object_acl_write
|
||||
test_object_acl_writeacp
|
||||
test_object_anon_put
|
||||
test_object_anon_put_write_access
|
||||
test_put_bucket_acl_grant_group_read
|
||||
|
||||
# Bucket creation and naming
|
||||
test_bucket_create_exists
|
||||
test_bucket_create_naming_bad_ip
|
||||
test_bucket_create_naming_dns_long
|
||||
test_bucket_create_special_key_names
|
||||
test_bucket_recreate_not_overriding
|
||||
|
||||
# ListObjects / ListObjectsV2 additional tests
|
||||
test_bucket_list_delimiter_not_skip_special
|
||||
test_bucket_list_delimiter_prefix
|
||||
test_bucket_list_delimiter_prefix_underscore
|
||||
test_bucket_list_many
|
||||
test_bucket_list_maxkeys_one
|
||||
test_bucket_list_objects_anonymous
|
||||
test_bucket_list_objects_anonymous_fail
|
||||
test_bucket_list_unordered
|
||||
test_bucket_listv2_both_continuationtoken_startafter
|
||||
test_bucket_listv2_delimiter_prefix
|
||||
test_bucket_listv2_delimiter_prefix_underscore
|
||||
test_bucket_listv2_many
|
||||
test_bucket_listv2_maxkeys_one
|
||||
test_bucket_listv2_objects_anonymous
|
||||
test_bucket_listv2_objects_anonymous_fail
|
||||
test_bucket_listv2_unordered
|
||||
|
||||
# Object copy tests
|
||||
test_object_copy_16m
|
||||
test_object_copy_diff_bucket
|
||||
test_object_copy_not_owned_bucket
|
||||
test_object_copy_replacing_metadata
|
||||
test_object_copy_retaining_metadata
|
||||
test_object_copy_same_bucket
|
||||
test_object_copy_to_itself
|
||||
test_object_copy_to_itself_with_metadata
|
||||
test_object_copy_verify_contenttype
|
||||
test_object_copy_versioned_bucket
|
||||
test_object_copy_versioned_url_encoding
|
||||
test_object_copy_versioning_multipart_upload
|
||||
test_object_copy_zero_size
|
||||
|
||||
# Object content encoding
|
||||
test_object_content_encoding_aws_chunked
|
||||
|
||||
# Raw request tests
|
||||
test_object_raw_authenticated
|
||||
test_object_raw_authenticated_bucket_acl
|
||||
test_object_raw_authenticated_bucket_gone
|
||||
test_object_raw_authenticated_object_acl
|
||||
test_object_raw_authenticated_object_gone
|
||||
test_object_raw_get
|
||||
test_object_raw_get_bucket_acl
|
||||
test_object_raw_get_bucket_gone
|
||||
test_object_raw_get_object_acl
|
||||
test_object_raw_get_object_gone
|
||||
test_object_raw_get_x_amz_expires_out_range_zero
|
||||
test_object_raw_response_headers
|
||||
|
||||
# POST Object tests
|
||||
test_post_object_anonymous_request
|
||||
test_post_object_authenticated_no_content_type
|
||||
test_post_object_authenticated_request
|
||||
test_post_object_authenticated_request_bad_access_key
|
||||
test_post_object_case_insensitive_condition_fields
|
||||
test_post_object_condition_is_case_sensitive
|
||||
test_post_object_empty_conditions
|
||||
test_post_object_escaped_field_values
|
||||
test_post_object_expired_policy
|
||||
test_post_object_expires_is_case_sensitive
|
||||
test_post_object_ignored_header
|
||||
test_post_object_invalid_access_key
|
||||
test_post_object_invalid_content_length_argument
|
||||
test_post_object_invalid_signature
|
||||
test_post_object_missing_conditions_list
|
||||
test_post_object_missing_content_length_argument
|
||||
test_post_object_missing_expires_condition
|
||||
test_post_object_missing_signature
|
||||
test_post_object_no_key_specified
|
||||
test_post_object_set_invalid_success_code
|
||||
test_post_object_set_success_code
|
||||
test_post_object_upload_larger_than_chunk
|
||||
test_post_object_upload_size_below_minimum
|
||||
test_post_object_upload_size_limit_exceeded
|
||||
test_post_object_upload_size_rgw_chunk_size_bug
|
||||
test_post_object_user_specified_header
|
||||
|
||||
# Conditional GET additional tests
|
||||
test_get_object_ifmatch_failed
|
||||
test_get_object_ifmodifiedsince_failed
|
||||
test_get_object_ifnonematch_failed
|
||||
test_get_object_ifnonematch_good
|
||||
test_get_object_ifunmodifiedsince_good
|
||||
|
||||
# Conditional writes (If-Match/If-None-Match for PUT/COPY)
|
||||
test_put_object_ifmatch_failed
|
||||
test_put_object_ifmatch_good
|
||||
test_put_object_ifmatch_nonexisted_failed
|
||||
test_put_object_ifmatch_overwrite_existed_good
|
||||
test_put_object_ifnonmatch_failed
|
||||
test_put_object_ifnonmatch_good
|
||||
test_put_object_ifnonmatch_nonexisted_good
|
||||
test_put_object_ifnonmatch_overwrite_existed_failed
|
||||
|
||||
# Multipart copy tests
|
||||
test_multipart_copy_improper_range
|
||||
test_multipart_copy_small
|
||||
test_multipart_copy_special_names
|
||||
|
||||
# Authentication tests
|
||||
test_list_buckets_invalid_auth
|
||||
|
||||
# Atomic read/write tests
|
||||
test_atomic_read_1mb
|
||||
test_atomic_read_4mb
|
||||
test_atomic_read_8mb
|
||||
test_atomic_write_1mb
|
||||
test_atomic_write_4mb
|
||||
test_atomic_write_8mb
|
||||
test_atomic_dual_write_1mb
|
||||
test_atomic_dual_write_4mb
|
||||
test_atomic_dual_write_8mb
|
||||
test_atomic_multipart_upload_write
|
||||
|
||||
Reference in New Issue
Block a user