mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-22 09:29:43 +00:00
remove contentlength zero header test
This test effectively tells the server that this request will contain no data and any data in the body should be interpreted to be part of the next request. By luck, we close the tcp connection beforehand so we don't see this additional data. However, the issues caused here would not be at the rgw/dho level.
This commit is contained in:
parent
230ec11852
commit
adcfe6f681
1 changed files with 0 additions and 11 deletions
|
@ -255,17 +255,6 @@ def test_object_create_bad_contentlength_negative():
|
||||||
eq(e.error_code, None)
|
eq(e.error_code, None)
|
||||||
|
|
||||||
|
|
||||||
@nose.with_setup(teardown=_clear_custom_headers)
|
|
||||||
@attr('fails_on_dho')
|
|
||||||
def test_object_create_bad_contentlength_zero():
|
|
||||||
key = _setup_bad_object({'Content-Length': 0})
|
|
||||||
|
|
||||||
e = assert_raises(boto.exception.S3ResponseError, key.set_contents_from_string, 'bar')
|
|
||||||
eq(e.status, 400)
|
|
||||||
eq(e.reason, 'Bad Request')
|
|
||||||
eq(e.error_code, 'BadDigest')
|
|
||||||
|
|
||||||
|
|
||||||
@nose.with_setup(teardown=_clear_custom_headers)
|
@nose.with_setup(teardown=_clear_custom_headers)
|
||||||
def test_object_create_bad_contentlength_none():
|
def test_object_create_bad_contentlength_none():
|
||||||
key = _setup_bad_object(remove=('Content-Length',))
|
key = _setup_bad_object(remove=('Content-Length',))
|
||||||
|
|
Loading…
Reference in a new issue