~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/HTTPTestUtil.py

  • Committer: James Westby
  • Date: 2007-05-14 20:42:47 UTC
  • mto: (2491.1.1 jam-integration)
  • mto: This revision was merged to the branch mainline in revision 2492.
  • Revision ID: jw+debian@jameswestby.net-20070514204247-mcxwep2on9g5p30w
Update with comments from review, thanks to John and Aaron.

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
 
 
178
165
class NoRangeRequestHandler(TestingHTTPRequestHandler):
179
166
    """Ignore range requests without notice"""
180
167