1
# Copyright (C) 2005 Canonical Ltd
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.
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.
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
17
from cStringIO import StringIO
19
from SimpleHTTPServer import SimpleHTTPRequestHandler
24
from bzrlib import smart
25
import bzrlib.smart.request
26
from bzrlib.tests import TestCaseWithTransport
27
from bzrlib.tests.HttpServer import (
29
TestingHTTPRequestHandler,
31
from bzrlib.transport import (
36
class WallRequestHandler(TestingHTTPRequestHandler):
37
"""Whatever request comes in, close the connection"""
39
def handle_one_request(self):
40
"""Handle a single HTTP request, by abruptly closing the connection"""
41
self.close_connection = 1
44
class BadStatusRequestHandler(TestingHTTPRequestHandler):
45
"""Whatever request comes in, returns a bad status"""
47
def parse_request(self):
48
"""Fakes handling a single HTTP request, returns a bad status"""
49
ignored = TestingHTTPRequestHandler.parse_request(self)
51
self.send_response(0, "Bad status")
53
except socket.error, e:
54
# We don't want to pollute the test results with
55
# spurious server errors while test succeed. In our
56
# case, it may occur that the test has already read
57
# the 'Bad Status' and closed the socket while we are
58
# still trying to send some headers... So the test is
59
# ok, but if we raise the exception, the output is
60
# dirty. So we don't raise, but we close the
61
# connection, just to be safe :)
62
spurious = [errno.EPIPE,
66
if (len(e.args) > 0) and (e.args[0] in spurious):
67
self.close_connection = 1
74
class InvalidStatusRequestHandler(TestingHTTPRequestHandler):
75
"""Whatever request comes in, returns am invalid status"""
77
def parse_request(self):
78
"""Fakes handling a single HTTP request, returns a bad status"""
79
ignored = TestingHTTPRequestHandler.parse_request(self)
80
self.wfile.write("Invalid status line\r\n")
84
class BadProtocolRequestHandler(TestingHTTPRequestHandler):
85
"""Whatever request comes in, returns a bad protocol version"""
87
def parse_request(self):
88
"""Fakes handling a single HTTP request, returns a bad status"""
89
ignored = TestingHTTPRequestHandler.parse_request(self)
90
# Returns an invalid protocol version, but curl just
91
# ignores it and those cannot be tested.
92
self.wfile.write("%s %d %s\r\n" % ('HTTP/0.0',
94
'Look at my protocol version'))
98
class ForbiddenRequestHandler(TestingHTTPRequestHandler):
99
"""Whatever request comes in, returns a 403 code"""
101
def parse_request(self):
102
"""Handle a single HTTP request, by replying we cannot handle it"""
103
ignored = TestingHTTPRequestHandler.parse_request(self)
108
class HTTPServerWithSmarts(HttpServer):
109
"""HTTPServerWithSmarts extends the HttpServer with POST methods that will
110
trigger a smart server to execute with a transport rooted at the rootdir of
115
HttpServer.__init__(self, SmartRequestHandler)
118
class SmartRequestHandler(TestingHTTPRequestHandler):
119
"""Extend TestingHTTPRequestHandler to support smart client POSTs."""
122
"""Hand the request off to a smart server instance."""
123
self.send_response(200)
124
self.send_header("Content-type", "application/octet-stream")
125
transport = get_transport(self.server.test_case_server._home_dir)
126
# TODO: We might like to support streaming responses. 1.0 allows no
127
# Content-length in this case, so for integrity we should perform our
128
# own chunking within the stream.
129
# 1.1 allows chunked responses, and in this case we could chunk using
130
# the HTTP chunking as this will allow HTTP persistence safely, even if
131
# we have to stop early due to error, but we would also have to use the
132
# HTTP trailer facility which may not be widely available.
133
out_buffer = StringIO()
134
smart_protocol_request = smart.protocol.SmartServerRequestProtocolOne(
135
transport, out_buffer.write)
136
# if this fails, we should return 400 bad request, but failure is
137
# failure for now - RBC 20060919
138
data_length = int(self.headers['Content-Length'])
139
# Perhaps there should be a SmartServerHTTPMedium that takes care of
140
# feeding the bytes in the http request to the smart_protocol_request,
141
# but for now it's simpler to just feed the bytes directly.
142
smart_protocol_request.accept_bytes(self.rfile.read(data_length))
143
assert smart_protocol_request.next_read_size() == 0, (
144
"not finished reading, but all data sent to protocol.")
145
self.send_header("Content-Length", str(len(out_buffer.getvalue())))
147
self.wfile.write(out_buffer.getvalue())
150
class SingleRangeRequestHandler(TestingHTTPRequestHandler):
151
"""Always reply to range request as if they were single.
153
Don't be explicit about it, just to annoy the clients.
156
def get_multiple_ranges(self, file, file_size, ranges):
157
"""Answer as if it was a single range request and ignores the rest"""
158
(start, end) = ranges[0]
159
return self.get_single_range(file, file_size, start, end)
162
class NoRangeRequestHandler(TestingHTTPRequestHandler):
163
"""Ignore range requests without notice"""
165
# Just bypass the range handling done by TestingHTTPRequestHandler
166
do_GET = SimpleHTTPRequestHandler.do_GET
169
class TestCaseWithWebserver(TestCaseWithTransport):
170
"""A support class that provides readonly urls that are http://.
172
This is done by forcing the readonly server to be an http
173
one. This will currently fail if the primary transport is not
174
backed by regular disk files.
177
super(TestCaseWithWebserver, self).setUp()
178
self.transport_readonly_server = HttpServer
181
class TestCaseWithTwoWebservers(TestCaseWithWebserver):
182
"""A support class providing readonly urls on two servers that are http://.
184
We set up two webservers to allows various tests involving
185
proxies or redirections from one server to the other.
188
super(TestCaseWithTwoWebservers, self).setUp()
189
self.transport_secondary_server = HttpServer
190
self.__secondary_server = None
192
def create_transport_secondary_server(self):
193
"""Create a transport server from class defined at init.
195
This is mostly a hook for daughter classes.
197
return self.transport_secondary_server()
199
def get_secondary_server(self):
200
"""Get the server instance for the secondary transport."""
201
if self.__secondary_server is None:
202
self.__secondary_server = self.create_transport_secondary_server()
203
self.__secondary_server.setUp()
204
self.addCleanup(self.__secondary_server.tearDown)
205
return self.__secondary_server
208
class FakeProxyRequestHandler(TestingHTTPRequestHandler):
209
"""Append a '-proxied' suffix to file served"""
211
def translate_path(self, path):
212
# We need to act as a proxy and accept absolute urls,
213
# which SimpleHTTPRequestHandler (grand parent) is not
214
# ready for. So we just drop the protocol://host:port
215
# part in front of the request-url (because we know we
216
# would not forward the request to *another* proxy).
218
# So we do what SimpleHTTPRequestHandler.translate_path
219
# do beginning with python 2.4.3: abandon query
220
# parameters, scheme, host port, etc (which ensure we
221
# provide the right behaviour on all python versions).
222
path = urlparse.urlparse(path)[2]
223
# And now, we can apply *our* trick to proxy files
224
self.path += '-proxied'
225
# An finally we leave our mother class do whatever it
226
# wants with the path
227
return TestingHTTPRequestHandler.translate_path(self, path)
230
class RedirectRequestHandler(TestingHTTPRequestHandler):
231
"""Redirect all request to the specified server"""
233
def parse_request(self):
234
"""Redirect a single HTTP request to another host"""
235
valid = TestingHTTPRequestHandler.parse_request(self)
237
tcs = self.server.test_case_server
238
code, target = tcs.is_redirected(self.path)
239
if code is not None and target is not None:
240
# Redirect as instructed
241
self.send_response(code)
242
self.send_header('Location', target)
244
return False # The job is done
246
# We leave the parent class serve the request
251
class HTTPServerRedirecting(HttpServer):
252
"""An HttpServer redirecting to another server """
254
def __init__(self, request_handler=RedirectRequestHandler):
255
HttpServer.__init__(self, request_handler)
256
# redirections is a list of tuples (source, target, code)
257
# - source is a regexp for the paths requested
258
# - target is a replacement for re.sub describing where
259
# the request will be redirected
260
# - code is the http error code associated to the
261
# redirection (301 permanent, 302 temporarry, etc
262
self.redirections = []
264
def redirect_to(self, host, port):
265
"""Redirect all requests to a specific host:port"""
266
self.redirections = [('(.*)',
267
r'http://%s:%s\1' % (host, port) ,
270
def is_redirected(self, path):
271
"""Is the path redirected by this server.
273
:param path: the requested relative path
275
:returns: a tuple (code, target) if a matching
276
redirection is found, (None, None) otherwise.
280
for (rsource, rtarget, rcode) in self.redirections:
281
target, match = re.subn(rsource, rtarget, path)
284
break # The first match wins
290
class TestCaseWithRedirectedWebserver(TestCaseWithTwoWebservers):
291
"""A support class providing redirections from one server to another.
293
We set up two webservers to allows various tests involving
295
The 'old' server is redirected to the 'new' server.
298
def create_transport_secondary_server(self):
299
"""Create the secondary server redirecting to the primary server"""
300
new = self.get_readonly_server()
301
redirecting = HTTPServerRedirecting()
302
redirecting.redirect_to(new.host, new.port)
306
super(TestCaseWithRedirectedWebserver, self).setUp()
307
# The redirections will point to the new server
308
self.new_server = self.get_readonly_server()
309
# The requests to the old server will be redirected
310
self.old_server = self.get_secondary_server()