s3: add v2 signature presigned put_object tests

Signed-off-by: Casey Bodley <cbodley@redhat.com>
(cherry picked from commit 999d39d4db)
This commit is contained in:
Casey Bodley 2024-09-25 11:29:01 -04:00
parent 11e3b77811
commit a139a18b27

View file

@ -6896,6 +6896,18 @@ def test_cors_presigned_put_object_with_acl():
cannedACL='private', 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(): def test_cors_presigned_put_object_tenant():
_test_cors_options_presigned_method( _test_cors_options_presigned_method(
client=get_tenant_client(), client=get_tenant_client(),