mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-21 11:51:06 +00:00
rgw/s3_boto3: Added http status code verification for DeleteBucketTagging
case. Updated test_set_bucket_tagging test for verifying the http status code for DeleteBucketTagging case. Related CEPH PR: https://github.com/ceph/ceph/pull/47262 Signed-off-by: Shriya Deshmukh <shriya.deshmukh@seagate.com>
This commit is contained in:
parent
a3100af70a
commit
c8fc8cd7c8
1 changed files with 3 additions and 1 deletions
|
@ -7759,7 +7759,9 @@ def test_set_bucket_tagging():
|
|||
eq(response['TagSet'][0]['Key'], 'Hello')
|
||||
eq(response['TagSet'][0]['Value'], 'World')
|
||||
|
||||
client.delete_bucket_tagging(Bucket=bucket_name)
|
||||
response = client.delete_bucket_tagging(Bucket=bucket_name)
|
||||
eq(response['ResponseMetadata']['HTTPStatusCode'], 204)
|
||||
|
||||
e = assert_raises(ClientError, client.get_bucket_tagging, Bucket=bucket_name)
|
||||
status, error_code = _get_status_and_error_code(e.response)
|
||||
eq(status, 404)
|
||||
|
|
Loading…
Reference in a new issue