~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/HTTPTestUtil.py

  • Committer: Robert Collins
  • Date: 2007-06-04 00:51:54 UTC
  • mfrom: (2504 +trunk)
  • mto: (2507.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 2505.
  • Revision ID: robertc@robertcollins.net-20070604005154-yvx2q8jnwiprw6du
Merge bzr.dev

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