~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/HTTPTestUtil.py

  • Committer: Vincent Ladeuil
  • Date: 2007-06-10 11:07:10 UTC
  • mfrom: (2485.9.2 bzr.connection.sharing)
  • mto: This revision was merged to the branch mainline in revision 2646.
  • Revision ID: v.ladeuil+lp@free.fr-20070610110710-2xi9ditvln347qpj
merge after bzr bind (why did I have to do that ?)

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