~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_http_response.py

  • Committer: Martin Pool
  • Date: 2005-07-22 22:37:53 UTC
  • Revision ID: mbp@sourcefrog.net-20050722223753-7dced4e32d3ce21d
- add the start of a test for inventory file-id matching

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 by Canonical Ltd
2
 
#
3
 
# This program is free software; you can redistribute it and/or modify
4
 
# it under the terms of the GNU General Public License as published by
5
 
# the Free Software Foundation; either version 2 of the License, or
6
 
# (at your option) any later version.
7
 
#
8
 
# This program is distributed in the hope that it will be useful,
9
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
# GNU General Public License for more details.
12
 
#
13
 
# You should have received a copy of the GNU General Public License
14
 
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
 
 
17
 
"""Tests from HTTP response parsing."""
18
 
 
19
 
from cStringIO import StringIO
20
 
import mimetools
21
 
 
22
 
from bzrlib import errors
23
 
from bzrlib.transport import http
24
 
from bzrlib.transport.http import response
25
 
from bzrlib.tests import TestCase
26
 
 
27
 
 
28
 
class TestResponseRange(TestCase):
29
 
    """Test the ResponseRange class."""
30
 
 
31
 
    def test_cmp(self):
32
 
        RR = response.ResponseRange
33
 
        r1 = RR(0, 10, 0)
34
 
        r2 = RR(15, 20, 10)
35
 
        self.assertTrue(r1 < r2)
36
 
        self.assertFalse(r1 > r2)
37
 
        self.assertTrue(r1 < 5)
38
 
        self.assertFalse(r2 < 5)
39
 
 
40
 
        self.assertEqual(RR(0, 10, 5), RR(0, 10, 5))
41
 
        self.assertNotEqual(RR(0, 10, 5), RR(0, 8, 5))
42
 
        self.assertNotEqual(RR(0, 10, 5), RR(0, 10, 6))
43
 
 
44
 
    def test_sort_list(self):
45
 
        """Ensure longer ranges are sorted after shorter ones"""
46
 
        RR = response.ResponseRange
47
 
        lst = [RR(3, 8, 0), 5, RR(3, 7, 0), 6]
48
 
        lst.sort()
49
 
        self.assertEqual([RR(3,7,0), RR(3,8,0), 5, 6], lst)
50
 
 
51
 
 
52
 
class TestRangeFile(TestCase):
53
 
    """Test RangeFile."""
54
 
 
55
 
    def setUp(self):
56
 
        content = "abcdefghijklmnopqrstuvwxyz"
57
 
        self.fp = response.RangeFile('foo', StringIO(content))
58
 
        self.fp._add_range(0,  9,   0)
59
 
        self.fp._add_range(20, 29, 10)
60
 
        self.fp._add_range(30, 39, 15)
61
 
 
62
 
    def test_valid_accesses(self):
63
 
        """Test so that valid accesses work to the file."""
64
 
        self.fp.seek(0, 0)
65
 
        self.assertEquals(self.fp.read(3), 'abc')
66
 
        self.assertEquals(self.fp.read(3), 'def')
67
 
        self.assertEquals(self.fp.tell(), 6)
68
 
        self.fp.seek(20, 0)
69
 
        self.assertEquals(self.fp.read(3), 'klm')
70
 
        self.assertEquals(self.fp.read(2), 'no')
71
 
        self.assertEquals(self.fp.tell(), 25)
72
 
        # should wrap over to 30-39 entity
73
 
        self.assertEquals(self.fp.read(3), 'pqr')
74
 
        self.fp.seek(3)
75
 
        self.assertEquals(self.fp.read(3), 'def')
76
 
        self.assertEquals(self.fp.tell(), 6)
77
 
 
78
 
    def test_invalid_accesses(self):
79
 
        """Test so that invalid accesses trigger errors."""
80
 
        self.fp.seek(9)
81
 
        self.assertRaises(errors.InvalidRange, self.fp.read, 2)
82
 
        self.fp.seek(39)
83
 
        self.assertRaises(errors.InvalidRange, self.fp.read, 2)
84
 
        self.fp.seek(19)
85
 
        self.assertRaises(errors.InvalidRange, self.fp.read, 2)
86
 
 
87
 
    def test__finish_ranges(self):
88
 
        """Test that after RangeFile._finish_ranges the list is sorted."""
89
 
        self.fp._add_range(1, 2, 3)
90
 
        self.fp._add_range(8, 9, 10)
91
 
        self.fp._add_range(3, 4, 5)
92
 
 
93
 
        # TODO: jam 20060706 If we switch to inserting
94
 
        #       in sorted order, remove this test
95
 
        self.assertNotEqual(self.fp._ranges, sorted(self.fp._ranges))
96
 
 
97
 
        self.fp._finish_ranges()
98
 
        self.assertEqual(self.fp._ranges, sorted(self.fp._ranges))
99
 
 
100
 
    def test_seek_and_tell(self):
101
 
        # Check for seeking before start
102
 
        self.fp.seek(-2, 0)
103
 
        self.assertEqual(0, self.fp.tell())
104
 
 
105
 
        self.fp.seek(5, 0)
106
 
        self.assertEqual(5, self.fp.tell())
107
 
 
108
 
        self.fp.seek(-2, 1)
109
 
        self.assertEqual(3, self.fp.tell())
110
 
 
111
 
        # TODO: jam 20060706 following tests will fail if this 
112
 
        #       is not true, and would be difficult to debug
113
 
        #       but it is a layering violation
114
 
        self.assertEqual(39, self.fp._len)
115
 
 
116
 
        self.fp.seek(0, 2)
117
 
        self.assertEqual(39, self.fp.tell())
118
 
 
119
 
        self.fp.seek(-10, 2)
120
 
        self.assertEqual(29, self.fp.tell())
121
 
 
122
 
        self.assertRaises(ValueError, self.fp.seek, 0, 4)
123
 
        self.assertRaises(ValueError, self.fp.seek, 0, -1)
124
 
 
125
 
 
126
 
class TestRegexes(TestCase):
127
 
 
128
 
    def assertRegexMatches(self, groups, text):
129
 
        """Check that the regex matches and returns the right values"""
130
 
        m = self.regex.match(text)
131
 
        self.assertNotEqual(None, m, "text %s did not match regex" % (text,))
132
 
 
133
 
        self.assertEqual(groups, m.groups())
134
 
 
135
 
    def test_range_re(self):
136
 
        """Test that we match valid ranges."""
137
 
        self.regex = response.HttpRangeResponse._CONTENT_RANGE_RE
138
 
        self.assertRegexMatches(('bytes', '1', '10', '11'),
139
 
                           'bytes 1-10/11')
140
 
        self.assertRegexMatches(('bytes', '1', '10', '11'),
141
 
                           '\tbytes  1-10/11   ')
142
 
        self.assertRegexMatches(('bytes', '2123', '4242', '1231'),
143
 
                           '\tbytes  2123-4242/1231   ')
144
 
        self.assertRegexMatches(('chars', '1', '2', '3'),
145
 
                           ' chars 1-2/3')
146
 
 
147
 
    def test_content_type_re(self):
148
 
        self.regex = response.HttpMultipartRangeResponse._CONTENT_TYPE_RE
149
 
        self.assertRegexMatches(('xxyyzz',),
150
 
                                'multipart/byteranges; boundary = xxyyzz')
151
 
        self.assertRegexMatches(('xxyyzz',),
152
 
                                'multipart/byteranges;boundary=xxyyzz')
153
 
        self.assertRegexMatches(('xx yy zz',),
154
 
                                ' multipart/byteranges ; boundary= xx yy zz ')
155
 
        self.assertEqual(None,
156
 
                self.regex.match('multipart byteranges;boundary=xx'))
157
 
 
158
 
 
159
 
simple_data = """
160
 
--xxyyzz\r
161
 
foo\r
162
 
Content-range: bytes 1-10/20\r
163
 
\r
164
 
1234567890
165
 
--xxyyzz\r
166
 
Content-Range: bytes 21-30/20\r
167
 
bar\r
168
 
\r
169
 
abcdefghij
170
 
--xxyyzz\r
171
 
content-range: bytes 41-50/20\r
172
 
\r
173
 
zyxwvutsrq
174
 
--xxyyzz\r
175
 
content-range: bytes 51-60/20\r
176
 
\r
177
 
xxyyzz fbd
178
 
"""
179
 
 
180
 
 
181
 
class TestHelpers(TestCase):
182
 
    """Test the helper functions"""
183
 
 
184
 
    def test__parse_range(self):
185
 
        """Test that _parse_range acts reasonably."""
186
 
        content = StringIO('')
187
 
        parse_range = response.HttpRangeResponse._parse_range
188
 
        self.assertEqual((1,2), parse_range('bytes 1-2/3'))
189
 
        self.assertEqual((10,20), parse_range('bytes 10-20/2'))
190
 
 
191
 
        self.assertRaises(errors.InvalidHttpRange, parse_range, 'char 1-3/2')
192
 
        self.assertRaises(errors.InvalidHttpRange, parse_range, 'bytes a-3/2')
193
 
 
194
 
        try:
195
 
            parse_range('bytes x-10/3', path='http://foo/bar')
196
 
        except errors.InvalidHttpRange, e:
197
 
            self.assertContainsRe(str(e), 'http://foo/bar')
198
 
            self.assertContainsRe(str(e), 'bytes x-10/3')
199
 
        else:
200
 
            self.fail('Did not raise InvalidHttpRange')
201
 
 
202
 
    def test__parse_boundary_simple(self):
203
 
        """Test that _parse_boundary handles Content-type properly"""
204
 
        parse_boundary = response.HttpMultipartRangeResponse._parse_boundary
205
 
        m = parse_boundary(' multipart/byteranges; boundary=xxyyzz')
206
 
        self.assertNotEqual(None, m)
207
 
        # Check that the returned regex is capable of splitting simple_data
208
 
        matches = list(m.finditer(simple_data))
209
 
        self.assertEqual(4, len(matches))
210
 
 
211
 
        # match.group() should be the content-range entry
212
 
        # and match.end() should be the start of the content
213
 
        self.assertEqual(' bytes 1-10/20', matches[0].group(1))
214
 
        self.assertEqual(simple_data.find('1234567890'), matches[0].end())
215
 
        self.assertEqual(' bytes 21-30/20', matches[1].group(1))
216
 
        self.assertEqual(simple_data.find('abcdefghij'), matches[1].end())
217
 
        self.assertEqual(' bytes 41-50/20', matches[2].group(1))
218
 
        self.assertEqual(simple_data.find('zyxwvutsrq'), matches[2].end())
219
 
        self.assertEqual(' bytes 51-60/20', matches[3].group(1))
220
 
        self.assertEqual(simple_data.find('xxyyzz fbd'), matches[3].end())
221
 
 
222
 
    def test__parse_boundary_invalid(self):
223
 
        parse_boundary = response.HttpMultipartRangeResponse._parse_boundary
224
 
        try:
225
 
            parse_boundary(' multipart/bytes;boundary=xxyyzz',
226
 
                           path='http://foo/bar')
227
 
        except errors.InvalidHttpContentType, e:
228
 
            self.assertContainsRe(str(e), 'http://foo/bar')
229
 
            self.assertContainsRe(str(e), 'multipart/bytes;boundary=xxyyzz')
230
 
        else:
231
 
            self.fail('Did not raise InvalidHttpContentType')
232
 
 
233
 
 
234
 
class TestHttpRangeResponse(TestCase):
235
 
 
236
 
    def test_smoketest(self):
237
 
        """A basic test that HttpRangeResponse is reasonable."""
238
 
        content = StringIO('0123456789')
239
 
        f = response.HttpRangeResponse('http://foo', 'bytes 1-10/9', content)
240
 
        self.assertEqual([response.ResponseRange(1,10,0)], f._ranges)
241
 
 
242
 
        f.seek(0)
243
 
        self.assertRaises(errors.InvalidRange, f.read, 2)
244
 
        f.seek(1)
245
 
        self.assertEqual('012345', f.read(6))
246
 
 
247
 
    def test_invalid(self):
248
 
        try:
249
 
            f = response.HttpRangeResponse('http://foo', 'bytes x-10/9',
250
 
                                           StringIO('0123456789'))
251
 
        except errors.InvalidHttpRange, e:
252
 
            self.assertContainsRe(str(e), 'http://foo')
253
 
            self.assertContainsRe(str(e), 'bytes x-10/9')
254
 
        else:
255
 
            self.fail('Failed to raise InvalidHttpRange')
256
 
 
257
 
 
258
 
class TestHttpMultipartRangeResponse(TestCase):
259
 
    """Test the handling of multipart range responses"""
260
 
 
261
 
    def test_simple(self):
262
 
        content = StringIO(simple_data)
263
 
        multi = response.HttpMultipartRangeResponse('http://foo',
264
 
                    'multipart/byteranges; boundary = xxyyzz', content)
265
 
 
266
 
        self.assertEqual(4, len(multi._ranges))
267
 
 
268
 
        multi.seek(1)
269
 
        self.assertEqual('1234567890', multi.read(10))
270
 
        multi.seek(21)
271
 
        self.assertEqual('abcdefghij', multi.read(10))
272
 
        multi.seek(41)
273
 
        self.assertEqual('zyxwvutsrq', multi.read(10))
274
 
        multi.seek(51)
275
 
        self.assertEqual('xxyyzz fbd', multi.read(10))
276
 
        # TODO: jam 20060706 Currently RangeFile does not support
277
 
        #       reading across ranges. Consider adding it.
278
 
        multi.seek(41)
279
 
        # self.assertEqual('zyxwvutsrqxxyyzz fbd', multi.read(20))
280
 
        self.assertRaises(errors.InvalidRange, multi.read, 20)
281
 
 
282
 
        multi.seek(21)
283
 
        self.assertRaises(errors.InvalidRange, multi.read, 11)
284
 
        multi.seek(31)
285
 
        self.assertRaises(errors.InvalidRange, multi.read, 10)
286
 
 
287
 
    def test_invalid(self):
288
 
        content = StringIO('')
289
 
        try:
290
 
            response.HttpMultipartRangeResponse('http://foo',
291
 
                        'multipart/byte;boundary=invalid', content)
292
 
        except errors.InvalidHttpContentType, e:
293
 
            self.assertContainsRe(str(e), 'http://foo')
294
 
            self.assertContainsRe(str(e), 'multipart/byte;')
295
 
 
296
 
 
297
 
# Taken from real request responses
298
 
_full_text_response = (200, """HTTP/1.1 200 OK\r
299
 
Date: Tue, 11 Jul 2006 04:32:56 GMT\r
300
 
Server: Apache/2.0.54 (Fedora)\r
301
 
Last-Modified: Sun, 23 Apr 2006 19:35:20 GMT\r
302
 
ETag: "56691-23-38e9ae00"\r
303
 
Accept-Ranges: bytes\r
304
 
Content-Length: 35\r
305
 
Connection: close\r
306
 
Content-Type: text/plain; charset=UTF-8\r
307
 
\r
308
 
""", """Bazaar-NG meta directory, format 1
309
 
""")
310
 
 
311
 
 
312
 
_missing_response = (404, """HTTP/1.1 404 Not Found\r
313
 
Date: Tue, 11 Jul 2006 04:32:56 GMT\r
314
 
Server: Apache/2.0.54 (Fedora)\r
315
 
Content-Length: 336\r
316
 
Connection: close\r
317
 
Content-Type: text/html; charset=iso-8859-1\r
318
 
\r
319
 
""", """<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
320
 
<html><head>
321
 
<title>404 Not Found</title>
322
 
</head><body>
323
 
<h1>Not Found</h1>
324
 
<p>The requested URL /branches/bzr/jam-integration/.bzr/repository/format was not found on this server.</p>
325
 
<hr>
326
 
<address>Apache/2.0.54 (Fedora) Server at bzr.arbash-meinel.com Port 80</address>
327
 
</body></html>
328
 
""")
329
 
 
330
 
 
331
 
_single_range_response = (206, """HTTP/1.1 206 Partial Content\r
332
 
Date: Tue, 11 Jul 2006 04:45:22 GMT\r
333
 
Server: Apache/2.0.54 (Fedora)\r
334
 
Last-Modified: Thu, 06 Jul 2006 20:22:05 GMT\r
335
 
ETag: "238a3c-16ec2-805c5540"\r
336
 
Accept-Ranges: bytes\r
337
 
Content-Length: 100\r
338
 
Content-Range: bytes 100-199/93890\r
339
 
Connection: close\r
340
 
Content-Type: text/plain; charset=UTF-8\r
341
 
\r
342
 
""", """mbp@sourcefrog.net-20050309040815-13242001617e4a06
343
 
mbp@sourcefrog.net-20050309040929-eee0eb3e6d1e762""")
344
 
 
345
 
 
346
 
_multipart_range_response = (206, """HTTP/1.1 206 Partial Content\r
347
 
Date: Tue, 11 Jul 2006 04:49:48 GMT\r
348
 
Server: Apache/2.0.54 (Fedora)\r
349
 
Last-Modified: Thu, 06 Jul 2006 20:22:05 GMT\r
350
 
ETag: "238a3c-16ec2-805c5540"\r
351
 
Accept-Ranges: bytes\r
352
 
Content-Length: 1534\r
353
 
Connection: close\r
354
 
Content-Type: multipart/byteranges; boundary=418470f848b63279b\r
355
 
\r
356
 
\r""", """--418470f848b63279b\r
357
 
Content-type: text/plain; charset=UTF-8\r
358
 
Content-range: bytes 0-254/93890\r
359
 
\r
360
 
mbp@sourcefrog.net-20050309040815-13242001617e4a06
361
 
mbp@sourcefrog.net-20050309040929-eee0eb3e6d1e7627
362
 
mbp@sourcefrog.net-20050309040957-6cad07f466bb0bb8
363
 
mbp@sourcefrog.net-20050309041501-c840e09071de3b67
364
 
mbp@sourcefrog.net-20050309044615-c24a3250be83220a
365
 
\r
366
 
--418470f848b63279b\r
367
 
Content-type: text/plain; charset=UTF-8\r
368
 
Content-range: bytes 1000-2049/93890\r
369
 
\r
370
 
40-fd4ec249b6b139ab
371
 
mbp@sourcefrog.net-20050311063625-07858525021f270b
372
 
mbp@sourcefrog.net-20050311231934-aa3776aff5200bb9
373
 
mbp@sourcefrog.net-20050311231953-73aeb3a131c3699a
374
 
mbp@sourcefrog.net-20050311232353-f5e33da490872c6a
375
 
mbp@sourcefrog.net-20050312071639-0a8f59a34a024ff0
376
 
mbp@sourcefrog.net-20050312073432-b2c16a55e0d6e9fb
377
 
mbp@sourcefrog.net-20050312073831-a47c3335ece1920f
378
 
mbp@sourcefrog.net-20050312085412-13373aa129ccbad3
379
 
mbp@sourcefrog.net-20050313052251-2bf004cb96b39933
380
 
mbp@sourcefrog.net-20050313052856-3edd84094687cb11
381
 
mbp@sourcefrog.net-20050313053233-e30a4f28aef48f9d
382
 
mbp@sourcefrog.net-20050313053853-7c64085594ff3072
383
 
mbp@sourcefrog.net-20050313054757-a86c3f5871069e22
384
 
mbp@sourcefrog.net-20050313061422-418f1f73b94879b9
385
 
mbp@sourcefrog.net-20050313120651-497bd231b19df600
386
 
mbp@sourcefrog.net-20050314024931-eae0170ef25a5d1a
387
 
mbp@sourcefrog.net-20050314025438-d52099f915fe65fc
388
 
mbp@sourcefrog.net-20050314025539-637a636692c055cf
389
 
mbp@sourcefrog.net-20050314025737-55eb441f430ab4ba
390
 
mbp@sourcefrog.net-20050314025901-d74aa93bb7ee8f62
391
 
mbp@source\r
392
 
--418470f848b63279b--\r\n'
393
 
""")
394
 
 
395
 
 
396
 
# This is made up
397
 
_invalid_response = (444, """HTTP/1.1 444 Bad Response\r
398
 
Date: Tue, 11 Jul 2006 04:32:56 GMT\r
399
 
Connection: close\r
400
 
Content-Type: text/html; charset=iso-8859-1\r
401
 
\r
402
 
""", """<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
403
 
<html><head>
404
 
<title>404 Not Found</title>
405
 
</head><body>
406
 
<h1>Not Found</h1>
407
 
<p>I don't know what I'm doing</p>
408
 
<hr>
409
 
</body></html>
410
 
""")
411
 
 
412
 
 
413
 
# This should be in test_http.py, but the headers we
414
 
# want to parse are here
415
 
class TestExtractHeader(TestCase):
416
 
    
417
 
    def use_response(self, response):
418
 
        self.headers = http._extract_headers(StringIO(response[1]))
419
 
 
420
 
    def check_header(self, header, value):
421
 
        self.assertEqual(value, self.headers[header])
422
 
        
423
 
    def test_full_text(self):
424
 
        self.use_response(_full_text_response)
425
 
 
426
 
        self.check_header('Date', 'Tue, 11 Jul 2006 04:32:56 GMT')
427
 
        self.check_header('date', 'Tue, 11 Jul 2006 04:32:56 GMT')
428
 
        self.check_header('Content-Length', '35')
429
 
        self.check_header('Content-Type', 'text/plain; charset=UTF-8')
430
 
        self.check_header('content-type', 'text/plain; charset=UTF-8')
431
 
 
432
 
    def test_missing_response(self):
433
 
        self.use_response(_missing_response)
434
 
 
435
 
        self.check_header('Content-Length', '336')
436
 
        self.check_header('Content-Type', 'text/html; charset=iso-8859-1')
437
 
 
438
 
    def test_single_range(self):
439
 
        self.use_response(_single_range_response)
440
 
 
441
 
        self.check_header('Content-Length', '100')
442
 
        self.check_header('Content-Range', 'bytes 100-199/93890')
443
 
        self.check_header('Content-Type', 'text/plain; charset=UTF-8')
444
 
 
445
 
    def test_multi_range(self):
446
 
        self.use_response(_multipart_range_response)
447
 
 
448
 
        self.check_header('Content-Length', '1534')
449
 
        self.check_header('Content-Type',
450
 
                          'multipart/byteranges; boundary=418470f848b63279b')
451
 
 
452
 
 
453
 
 
454
 
def parse_response(response):
455
 
    """Turn one of the static HTTP responses into an in-flight response."""
456
 
    resp = StringIO(response)
457
 
    http_response = resp.readline()
458
 
    assert http_response.startswith('HTTP/1.1 ')
459
 
 
460
 
class TestHandleResponse(TestCase):
461
 
    
462
 
    def get_response(self, a_response):
463
 
        """Process a supplied response, and return the result."""
464
 
        headers = http._extract_headers(StringIO(a_response[1]))
465
 
        return response.handle_response('http://foo', a_response[0], headers,
466
 
                                        StringIO(a_response[2]))
467
 
 
468
 
    def test_full_text(self):
469
 
        out = self.get_response(_full_text_response)
470
 
        # It is a StringIO from the original data
471
 
        self.assertEqual(_full_text_response[2], out.read())
472
 
 
473
 
    def test_missing_response(self):
474
 
        self.assertRaises(errors.NoSuchFile,
475
 
            self.get_response, _missing_response)
476
 
 
477
 
    def test_single_range(self):
478
 
        out = self.get_response(_single_range_response)
479
 
        self.assertIsInstance(out, response.HttpRangeResponse)
480
 
 
481
 
        self.assertRaises(errors.InvalidRange, out.read, 20)
482
 
 
483
 
        out.seek(100)
484
 
        self.assertEqual(_single_range_response[2], out.read(100))
485
 
 
486
 
    def test_multi_range(self):
487
 
        out = self.get_response(_multipart_range_response)
488
 
        self.assertIsInstance(out, response.HttpMultipartRangeResponse)
489
 
 
490
 
        # Just make sure we can read the right contents
491
 
        out.seek(0)
492
 
        out.read(255)
493
 
 
494
 
        out.seek(1000)
495
 
        out.read(1050)
496
 
 
497
 
    def test_invalid_response(self):
498
 
        self.assertRaises(errors.InvalidHttpResponse,
499
 
            self.get_response, _invalid_response)
500
 
 
501
 
    def test_full_text_no_content_type(self):
502
 
        # We should not require Content-Type for a full response
503
 
        a_response = _full_text_response
504
 
        headers = http._extract_headers(StringIO(a_response[1]))
505
 
        del headers['Content-Type']
506
 
        out = response.handle_response('http://foo', a_response[0], headers,
507
 
                                        StringIO(a_response[2]))
508
 
        self.assertEqual(_full_text_response[2], out.read())
509
 
 
510
 
    def test_missing_no_content_type(self):
511
 
        # Without Content-Type we should still raise NoSuchFile on a 404
512
 
        a_response = _missing_response
513
 
        headers = http._extract_headers(StringIO(a_response[1]))
514
 
        del headers['Content-Type']
515
 
        self.assertRaises(errors.NoSuchFile,
516
 
            response.handle_response, 'http://missing', a_response[0], headers,
517
 
                                      StringIO(a_response[2]))
518
 
 
519
 
    def test_missing_content_type(self):
520
 
        a_response = _single_range_response
521
 
        headers = http._extract_headers(StringIO(a_response[1]))
522
 
        del headers['Content-Type']
523
 
        self.assertRaises(errors.InvalidHttpContentType,
524
 
            response.handle_response, 'http://nocontent', a_response[0],
525
 
                                      headers, StringIO(a_response[2]))
526
 
 
527
 
    def test_missing_content_range(self):
528
 
        a_response = _single_range_response
529
 
        headers = http._extract_headers(StringIO(a_response[1]))
530
 
        del headers['Content-Range']
531
 
        self.assertRaises(errors.InvalidHttpResponse,
532
 
            response.handle_response, 'http://nocontent', a_response[0],
533
 
                                      headers, StringIO(a_response[2]))