From 4b64d79c786da57e5795675a338f977d6dd835b5 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Thu, 16 Dec 2021 14:54:01 -0500 Subject: [PATCH] sse: add 8MB default-encrypted upload Signed-off-by: Casey Bodley --- s3tests_boto3/functional/test_s3.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/s3tests_boto3/functional/test_s3.py b/s3tests_boto3/functional/test_s3.py index db9f697..2bf38d3 100644 --- a/s3tests_boto3/functional/test_s3.py +++ b/s3tests_boto3/functional/test_s3.py @@ -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')