mirror of
https://github.com/ceph/s3-tests.git
synced 2025-04-01 03:46:41 +00:00
s3: mark sigv2 tests with fails_on_rgw
Signed-off-by: Casey Bodley <cbodley@redhat.com>
This commit is contained in:
parent
88daca5095
commit
e786aa4f42
2 changed files with 6 additions and 0 deletions
|
@ -504,12 +504,14 @@ def test_bucket_create_bad_authorization_invalid_aws2():
|
||||||
assert error_code == 'InvalidArgument'
|
assert error_code == 'InvalidArgument'
|
||||||
|
|
||||||
@pytest.mark.auth_aws2
|
@pytest.mark.auth_aws2
|
||||||
|
@pytest.mark.fails_on_rgw
|
||||||
def test_bucket_create_bad_ua_empty_aws2():
|
def test_bucket_create_bad_ua_empty_aws2():
|
||||||
v2_client = get_v2_client()
|
v2_client = get_v2_client()
|
||||||
headers = {'User-Agent': ''}
|
headers = {'User-Agent': ''}
|
||||||
_add_header_create_bucket(headers, v2_client)
|
_add_header_create_bucket(headers, v2_client)
|
||||||
|
|
||||||
@pytest.mark.auth_aws2
|
@pytest.mark.auth_aws2
|
||||||
|
@pytest.mark.fails_on_rgw
|
||||||
def test_bucket_create_bad_ua_none_aws2():
|
def test_bucket_create_bad_ua_none_aws2():
|
||||||
v2_client = get_v2_client()
|
v2_client = get_v2_client()
|
||||||
remove = 'User-Agent'
|
remove = 'User-Agent'
|
||||||
|
|
|
@ -6917,12 +6917,14 @@ def test_cors_presigned_get_object_tenant():
|
||||||
method='get_object',
|
method='get_object',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@pytest.mark.fails_on_rgw
|
||||||
def test_cors_presigned_get_object_v2():
|
def test_cors_presigned_get_object_v2():
|
||||||
_test_cors_options_presigned_method(
|
_test_cors_options_presigned_method(
|
||||||
client=get_v2_client(),
|
client=get_v2_client(),
|
||||||
method='get_object',
|
method='get_object',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@pytest.mark.fails_on_rgw
|
||||||
def test_cors_presigned_get_object_tenant_v2():
|
def test_cors_presigned_get_object_tenant_v2():
|
||||||
_test_cors_options_presigned_method(
|
_test_cors_options_presigned_method(
|
||||||
client=get_v2_tenant_client(),
|
client=get_v2_tenant_client(),
|
||||||
|
@ -6942,12 +6944,14 @@ def test_cors_presigned_put_object_with_acl():
|
||||||
cannedACL='private',
|
cannedACL='private',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@pytest.mark.fails_on_rgw
|
||||||
def test_cors_presigned_put_object_v2():
|
def test_cors_presigned_put_object_v2():
|
||||||
_test_cors_options_presigned_method(
|
_test_cors_options_presigned_method(
|
||||||
client=get_v2_client(),
|
client=get_v2_client(),
|
||||||
method='put_object',
|
method='put_object',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@pytest.mark.fails_on_rgw
|
||||||
def test_cors_presigned_put_object_tenant_v2():
|
def test_cors_presigned_put_object_tenant_v2():
|
||||||
_test_cors_options_presigned_method(
|
_test_cors_options_presigned_method(
|
||||||
client=get_v2_tenant_client(),
|
client=get_v2_tenant_client(),
|
||||||
|
|
Loading…
Add table
Reference in a new issue