s3: mark sigv2 tests with fails_on_rgw

Signed-off-by: Casey Bodley <cbodley@redhat.com>
This commit is contained in:
Casey Bodley 2025-01-22 11:16:13 -05:00
parent 88daca5095
commit e786aa4f42
2 changed files with 6 additions and 0 deletions

View file

@ -504,12 +504,14 @@ def test_bucket_create_bad_authorization_invalid_aws2():
assert error_code == 'InvalidArgument'
@pytest.mark.auth_aws2
@pytest.mark.fails_on_rgw
def test_bucket_create_bad_ua_empty_aws2():
v2_client = get_v2_client()
headers = {'User-Agent': ''}
_add_header_create_bucket(headers, v2_client)
@pytest.mark.auth_aws2
@pytest.mark.fails_on_rgw
def test_bucket_create_bad_ua_none_aws2():
v2_client = get_v2_client()
remove = 'User-Agent'

View file

@ -6917,12 +6917,14 @@ def test_cors_presigned_get_object_tenant():
method='get_object',
)
@pytest.mark.fails_on_rgw
def test_cors_presigned_get_object_v2():
_test_cors_options_presigned_method(
client=get_v2_client(),
method='get_object',
)
@pytest.mark.fails_on_rgw
def test_cors_presigned_get_object_tenant_v2():
_test_cors_options_presigned_method(
client=get_v2_tenant_client(),
@ -6942,12 +6944,14 @@ def test_cors_presigned_put_object_with_acl():
cannedACL='private',
)
@pytest.mark.fails_on_rgw
def test_cors_presigned_put_object_v2():
_test_cors_options_presigned_method(
client=get_v2_client(),
method='put_object',
)
@pytest.mark.fails_on_rgw
def test_cors_presigned_put_object_tenant_v2():
_test_cors_options_presigned_method(
client=get_v2_tenant_client(),