mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-21 23:29:47 +00:00
check for either 400 or 416 response code for invalid range test
Signed-off-by: Vasu Kulkarni <vasu@redhat.com>
This commit is contained in:
parent
5138dd451d
commit
e208a74a05
1 changed files with 8 additions and 3 deletions
|
@ -5351,9 +5351,14 @@ def test_multipart_copy_invalid_range():
|
||||||
bucket, key = _create_key_with_random_content('source', size=5)
|
bucket, key = _create_key_with_random_content('source', size=5)
|
||||||
upload = bucket.initiate_multipart_upload('dest')
|
upload = bucket.initiate_multipart_upload('dest')
|
||||||
e = assert_raises(boto.exception.S3ResponseError, copy_part, bucket.name, key.name, bucket, 'dest', upload.id, 0, 0, 21)
|
e = assert_raises(boto.exception.S3ResponseError, copy_part, bucket.name, key.name, bucket, 'dest', upload.id, 0, 0, 21)
|
||||||
eq(e.status, 400)
|
valid_status = [400, 416]
|
||||||
eq(e.reason, 'Bad Request')
|
if not e.status in valid_status:
|
||||||
eq(e.error_code, 'InvalidArgument')
|
raise AssertionError("Invalid response " + str(status))
|
||||||
|
valid_reason = ['Bad Request', 'Requested Range Not Satisfiable']
|
||||||
|
if not e.reason in valid_reason:
|
||||||
|
raise AssertionError("Invalid reason " + e.reason )
|
||||||
|
# no standard error code defined
|
||||||
|
# eq(e.error_code, 'InvalidArgument')
|
||||||
|
|
||||||
@attr(resource='object')
|
@attr(resource='object')
|
||||||
@attr(method='put')
|
@attr(method='put')
|
||||||
|
|
Loading…
Reference in a new issue