~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/HTTPTestUtil.py

  • Committer: John Arbash Meinel
  • Date: 2007-06-01 21:40:45 UTC
  • mfrom: (2501 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2503.
  • Revision ID: john@arbash-meinel.com-20070601214045-zalht5mx39yg11l6
[merge] bzr.dev 2501

Show diffs side-by-side

added added

removed removed

Lines of Context:
162
162
        return self.get_single_range(file, file_size, start, end)
163
163
 
164
164
 
 
165
class SingleOnlyRangeRequestHandler(TestingHTTPRequestHandler):
 
166
    """Only reply to simple range requests, errors out on multiple"""
 
167
 
 
168
    def get_multiple_ranges(self, file, file_size, ranges):
 
169
        """Refuses the multiple ranges request"""
 
170
        if len(ranges) > 1:
 
171
            file.close()
 
172
            self.send_error(416, "Requested range not satisfiable")
 
173
            return
 
174
        (start, end) = ranges[0]
 
175
        return self.get_single_range(file, file_size, start, end)
 
176
 
 
177
 
165
178
class NoRangeRequestHandler(TestingHTTPRequestHandler):
166
179
    """Ignore range requests without notice"""
167
180