Skip to content

Commit

Permalink
Merge pull request #589 from tobias-urdin/v2-presigned-get
Browse files Browse the repository at this point in the history
Add v2 signature presigned get_object tests
  • Loading branch information
cbodley authored Oct 4, 2024
2 parents aa82bd1 + 999d39d commit cba8047
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
11 changes: 11 additions & 0 deletions s3tests_boto3/functional/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,17 @@ def get_tenant_client(client_config=None):
config=client_config)
return client

def get_v2_tenant_client():
client_config = Config(signature_version='s3')
client = boto3.client(service_name='s3',
aws_access_key_id=config.tenant_access_key,
aws_secret_access_key=config.tenant_secret_key,
endpoint_url=config.default_endpoint,
use_ssl=config.default_is_secure,
verify=config.default_ssl_verify,
config=client_config)
return client

def get_tenant_iam_client():

client = boto3.client(service_name='iam',
Expand Down
25 changes: 25 additions & 0 deletions s3tests_boto3/functional/test_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
get_alt_email,
get_alt_client,
get_tenant_client,
get_v2_tenant_client,
get_tenant_iam_client,
get_tenant_name,
get_tenant_user_id,
Expand Down Expand Up @@ -6788,6 +6789,18 @@ def test_cors_presigned_get_object_tenant():
method='get_object',
)

def test_cors_presigned_get_object_v2():
_test_cors_options_presigned_method(
client=get_v2_client(),
method='get_object',
)

def test_cors_presigned_get_object_tenant_v2():
_test_cors_options_presigned_method(
client=get_v2_tenant_client(),
method='get_object',
)

def test_cors_presigned_put_object():
_test_cors_options_presigned_method(
client=get_client(),
Expand All @@ -6801,6 +6814,18 @@ def test_cors_presigned_put_object_with_acl():
cannedACL='private',
)

def test_cors_presigned_put_object_v2():
_test_cors_options_presigned_method(
client=get_v2_client(),
method='put_object',
)

def test_cors_presigned_put_object_tenant_v2():
_test_cors_options_presigned_method(
client=get_v2_tenant_client(),
method='put_object',
)

def test_cors_presigned_put_object_tenant():
_test_cors_options_presigned_method(
client=get_tenant_client(),
Expand Down

0 comments on commit cba8047

Please sign in to comment.