forked from TrueCloudLab/s3-tests
sse: add 8MB default-encrypted upload
Signed-off-by: Casey Bodley <cbodley@redhat.com>
This commit is contained in:
parent
a441c10f97
commit
4b64d79c78
1 changed files with 11 additions and 0 deletions
|
@ -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')
|
||||
|
|
Loading…
Reference in a new issue