Omit Content-Length on chunked transfer

Content-Length and Transfer-Encoding conflict according to the HTTP
spec. This fixes bug 981332.

This also adds the ability to test both the sendfile-present and
sendfile-absent codepaths; the sendfile-present test will be skipped on
sendfile-absent platforms.

Change-Id: Ibb017b4a43d89ffdb6b868648296603cfec7780d
This commit is contained in:
Mike Lundy 2012-04-13 19:53:16 -07:00
parent a9fb22483d
commit 223fbee49a
3 changed files with 43 additions and 8 deletions

View File

@ -506,12 +506,17 @@ class BaseClient(object):
elif _filelike(body) or self._iterable(body):
c.putrequest(method, path)
use_sendfile = self._sendable(body)
# According to HTTP/1.1, Content-Length and Transfer-Encoding
# conflict.
for header, value in headers.items():
c.putheader(header, value)
if use_sendfile or header.lower() != 'content-length':
c.putheader(header, value)
iter = self.image_iterator(c, headers, body)
if self._sendable(body):
if use_sendfile:
# send actual file without copying into userspace
_sendbody(c, iter)
else:

View File

@ -56,7 +56,7 @@ def stub_out_registry_and_store_server(stubs, base_dir):
def close(self):
return True
def request(self, method, url, body=None, headers={}):
def request(self, method, url, body=None, headers=None):
self.req = webob.Request.blank("/" + url.lstrip("/"))
self.req.method = method
if headers:
@ -107,6 +107,8 @@ def stub_out_registry_and_store_server(stubs, base_dir):
def __init__(self, *args, **kwargs):
self.sock = FakeSocket()
self.stub_force_sendfile = kwargs.get('stub_force_sendfile',
SENDFILE_SUPPORTED)
def connect(self):
return True
@ -120,7 +122,7 @@ def stub_out_registry_and_store_server(stubs, base_dir):
def putrequest(self, method, url):
self.req = webob.Request.blank(self._clean_url(url))
if SENDFILE_SUPPORTED:
if self.stub_force_sendfile:
fake_sendfile = FakeSendFile(self.req)
stubs.Set(sendfile, 'sendfile', fake_sendfile.sendfile)
self.req.method = method
@ -129,7 +131,10 @@ def stub_out_registry_and_store_server(stubs, base_dir):
self.req.headers[key] = value
def endheaders(self):
pass
hl = [i.lower() for i in self.req.headers.keys()]
assert not ('content-length' in hl and
'transfer-encoding' in hl), \
'Content-Length and Transfer-Encoding are mutually exclusive'
def send(self, data):
# send() is called during chunked-transfer encoding, and
@ -137,7 +142,7 @@ def stub_out_registry_and_store_server(stubs, base_dir):
# only write the actual data in tests.
self.req.body += data.split("\r\n")[1]
def request(self, method, url, body=None, headers={}):
def request(self, method, url, body=None, headers=None):
self.req = webob.Request.blank(self._clean_url(url))
self.req.method = method
if headers:
@ -185,8 +190,21 @@ def stub_out_registry_and_store_server(stubs, base_dir):
for i in self.source.app_iter:
yield i
def fake_sendable(self, body):
force = getattr(self, 'stub_force_sendfile', None)
if force is None:
return self._stub_orig_sendable(body)
else:
if force:
assert glance.common.client.SENDFILE_SUPPORTED
return force
stubs.Set(glance.common.client.BaseClient, 'get_connection_type',
fake_get_connection_type)
setattr(glance.common.client.BaseClient, '_stub_orig_sendable',
glance.common.client.BaseClient._sendable)
stubs.Set(glance.common.client.BaseClient, '_sendable',
fake_sendable)
stubs.Set(glance.common.client.ImageBodyIterator, '__iter__',
fake_image_iter)
@ -209,7 +227,7 @@ def stub_out_registry_server(stubs, **kwargs):
def close(self):
return True
def request(self, method, url, body=None, headers={}):
def request(self, method, url, body=None, headers=None):
self.req = webob.Request.blank("/" + url.lstrip("/"))
self.req.method = method
if headers:

View File

@ -21,6 +21,7 @@ import tempfile
import unittest
from glance import client
from glance.common import client as base_client
from glance.common import exception
from glance.common import utils
from glance.registry.db import api as db_api
@ -28,6 +29,7 @@ from glance.registry.db import models as db_models
from glance.registry import client as rclient
from glance.registry import context as rcontext
from glance.tests.unit import base
from glance.tests import utils as test_utils
CONF = {'sql_connection': 'sqlite://'}
@ -1834,7 +1836,7 @@ class TestClient(base.IsolatedUnitTest):
for k, v in fixture.items():
self.assertEquals(v, new_meta[k])
def test_add_image_with_image_data_as_file(self):
def add_image_with_image_data_as_file(self, sendfile):
"""Tests can add image by passing image data as file"""
fixture = {'name': 'fake public image',
'is_public': True,
@ -1844,6 +1846,8 @@ class TestClient(base.IsolatedUnitTest):
'properties': {'distro': 'Ubuntu 10.04 LTS'},
}
self.client.stub_force_sendfile = sendfile
image_data_fixture = r"chunk00000remainder"
tmp_image_filepath = '/tmp/rubbish-image'
@ -1871,6 +1875,14 @@ class TestClient(base.IsolatedUnitTest):
for k, v in fixture.items():
self.assertEquals(v, new_meta[k])
@test_utils.skip_if(not base_client.SENDFILE_SUPPORTED,
'sendfile not supported')
def test_add_image_with_image_data_as_file_with_sendfile(self):
self.add_image_with_image_data_as_file(sendfile=True)
def test_add_image_with_image_data_as_file_without_sendfile(self):
self.add_image_with_image_data_as_file(sendfile=False)
def _add_image_as_iterable(self):
fixture = {'name': 'fake public image',
'is_public': True,