sse: add 8MB default-encrypted upload

Signed-off-by: Casey Bodley <cbodley@redhat.com>
This commit is contained in:
Casey Bodley 2021-12-16 14:54:01 -05:00 committed by Ali Maredia
parent a441c10f97
commit 4b64d79c78

View file

@ -13565,6 +13565,17 @@ def test_sse_s3_default_upload_1kb():
def test_sse_s3_default_upload_1mb():
_test_sse_s3_default_upload(1024*1024)
@attr(resource='object')
@attr(method='put')
@attr(operation='Test 8MB upload to SSE-S3 default-encrypted bucket')
@attr(assertion='success')
@attr('encryption')
@attr('bucket-encryption')
@attr('sse-s3')
def test_sse_s3_default_upload_8mb():
_test_sse_s3_default_upload(8*1024*1024)
@attr(resource='object')
@attr(method='head')
@attr(operation='Test head operation on SSE-S3 default-encrypted object')