/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
2052.3.2 by John Arbash Meinel
Change Copyright .. by Canonical to Copyright ... Canonical
1
# Copyright (C) 2005 Canonical Ltd
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
2
#
1185.1.18 by Robert Collins
Lalo Martins remotebranch patch
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.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
7
#
1185.1.18 by Robert Collins
Lalo Martins remotebranch patch
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.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
12
#
1185.1.18 by Robert Collins
Lalo Martins remotebranch patch
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
16
2004.1.28 by v.ladeuil+lp at free
Merge bzr.dev. Including http modifications by "smart" related code
17
from cStringIO import StringIO
2004.1.25 by v.ladeuil+lp at free
Shuffle http related test code. Hopefully it ends up at the right place :)
18
import errno
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
19
import md5
2004.1.29 by v.ladeuil+lp at free
New tests for http range requests handling.
20
from SimpleHTTPServer import SimpleHTTPRequestHandler
2164.2.29 by Vincent Ladeuil
Test the http redirection at the request level even if it's not
21
import re
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
22
import sha
2004.1.25 by v.ladeuil+lp at free
Shuffle http related test code. Hopefully it ends up at the right place :)
23
import socket
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
24
import time
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
25
import urllib2
2213.1.1 by v.ladeuil+lp at free
Workaround SimpleHTTPRequestHandler.translate_path limitation in
26
import urlparse
1530.1.14 by Robert Collins
Remove duplicate web server from HTTPTestUtil.
27
2018.5.150 by Andrew Bennetts
Tidy imports in HTTPTestUtil.py
28
from bzrlib.smart import protocol
1534.4.50 by Robert Collins
Got the bzrdir api straightened out, plenty of refactoring to use it pending, but the api is up and running.
29
from bzrlib.tests import TestCaseWithTransport
2004.1.25 by v.ladeuil+lp at free
Shuffle http related test code. Hopefully it ends up at the right place :)
30
from bzrlib.tests.HttpServer import (
31
    HttpServer,
32
    TestingHTTPRequestHandler,
33
    )
2004.1.28 by v.ladeuil+lp at free
Merge bzr.dev. Including http modifications by "smart" related code
34
from bzrlib.transport import (
35
    get_transport,
36
    )
2004.1.25 by v.ladeuil+lp at free
Shuffle http related test code. Hopefully it ends up at the right place :)
37
38
39
class WallRequestHandler(TestingHTTPRequestHandler):
40
    """Whatever request comes in, close the connection"""
41
42
    def handle_one_request(self):
43
        """Handle a single HTTP request, by abruptly closing the connection"""
44
        self.close_connection = 1
45
46
47
class BadStatusRequestHandler(TestingHTTPRequestHandler):
48
    """Whatever request comes in, returns a bad status"""
49
50
    def parse_request(self):
51
        """Fakes handling a single HTTP request, returns a bad status"""
52
        ignored = TestingHTTPRequestHandler.parse_request(self)
53
        try:
54
            self.send_response(0, "Bad status")
55
            self.end_headers()
56
        except socket.error, e:
2158.2.1 by v.ladeuil+lp at free
Windows tests cleanup.
57
            # We don't want to pollute the test results with
58
            # spurious server errors while test succeed. In our
2188.1.1 by Aaron Bentley
Windows tests cleanup. (Vincent Ladeuil)
59
            # case, it may occur that the test has already read
2158.2.1 by v.ladeuil+lp at free
Windows tests cleanup.
60
            # the 'Bad Status' and closed the socket while we are
61
            # still trying to send some headers... So the test is
2188.1.1 by Aaron Bentley
Windows tests cleanup. (Vincent Ladeuil)
62
            # ok, but if we raise the exception, the output is
2158.2.1 by v.ladeuil+lp at free
Windows tests cleanup.
63
            # dirty. So we don't raise, but we close the
64
            # connection, just to be safe :)
65
            spurious = [errno.EPIPE,
66
                        errno.ECONNRESET,
67
                        errno.ECONNABORTED,
68
                        ]
69
            if (len(e.args) > 0) and (e.args[0] in spurious):
2004.1.25 by v.ladeuil+lp at free
Shuffle http related test code. Hopefully it ends up at the right place :)
70
                self.close_connection = 1
71
                pass
72
            else:
73
                raise
74
        return False
75
76
77
class InvalidStatusRequestHandler(TestingHTTPRequestHandler):
78
    """Whatever request comes in, returns am invalid status"""
79
80
    def parse_request(self):
81
        """Fakes handling a single HTTP request, returns a bad status"""
82
        ignored = TestingHTTPRequestHandler.parse_request(self)
83
        self.wfile.write("Invalid status line\r\n")
84
        return False
85
86
87
class BadProtocolRequestHandler(TestingHTTPRequestHandler):
88
    """Whatever request comes in, returns a bad protocol version"""
89
90
    def parse_request(self):
91
        """Fakes handling a single HTTP request, returns a bad status"""
92
        ignored = TestingHTTPRequestHandler.parse_request(self)
93
        # Returns an invalid protocol version, but curl just
94
        # ignores it and those cannot be tested.
95
        self.wfile.write("%s %d %s\r\n" % ('HTTP/0.0',
96
                                           404,
97
                                           'Look at my protocol version'))
98
        return False
1534.4.50 by Robert Collins
Got the bzrdir api straightened out, plenty of refactoring to use it pending, but the api is up and running.
99
100
2004.1.27 by v.ladeuil+lp at free
Fix bug #57644 by issuing an explicit error message.
101
class ForbiddenRequestHandler(TestingHTTPRequestHandler):
102
    """Whatever request comes in, returns a 403 code"""
103
104
    def parse_request(self):
105
        """Handle a single HTTP request, by replying we cannot handle it"""
106
        ignored = TestingHTTPRequestHandler.parse_request(self)
107
        self.send_error(403)
108
        return False
109
110
2004.1.28 by v.ladeuil+lp at free
Merge bzr.dev. Including http modifications by "smart" related code
111
class HTTPServerWithSmarts(HttpServer):
112
    """HTTPServerWithSmarts extends the HttpServer with POST methods that will
113
    trigger a smart server to execute with a transport rooted at the rootdir of
114
    the HTTP server.
115
    """
116
117
    def __init__(self):
118
        HttpServer.__init__(self, SmartRequestHandler)
119
120
121
class SmartRequestHandler(TestingHTTPRequestHandler):
122
    """Extend TestingHTTPRequestHandler to support smart client POSTs."""
123
124
    def do_POST(self):
125
        """Hand the request off to a smart server instance."""
126
        self.send_response(200)
127
        self.send_header("Content-type", "application/octet-stream")
2164.2.28 by Vincent Ladeuil
TestingHTTPServer.test_case_server renamed from test_case to avoid confusions.
128
        transport = get_transport(self.server.test_case_server._home_dir)
2004.1.28 by v.ladeuil+lp at free
Merge bzr.dev. Including http modifications by "smart" related code
129
        # TODO: We might like to support streaming responses.  1.0 allows no
130
        # Content-length in this case, so for integrity we should perform our
131
        # own chunking within the stream.
132
        # 1.1 allows chunked responses, and in this case we could chunk using
133
        # the HTTP chunking as this will allow HTTP persistence safely, even if
134
        # we have to stop early due to error, but we would also have to use the
135
        # HTTP trailer facility which may not be widely available.
136
        out_buffer = StringIO()
2018.5.150 by Andrew Bennetts
Tidy imports in HTTPTestUtil.py
137
        smart_protocol_request = protocol.SmartServerRequestProtocolOne(
2004.1.28 by v.ladeuil+lp at free
Merge bzr.dev. Including http modifications by "smart" related code
138
                transport, out_buffer.write)
139
        # if this fails, we should return 400 bad request, but failure is
140
        # failure for now - RBC 20060919
141
        data_length = int(self.headers['Content-Length'])
142
        # Perhaps there should be a SmartServerHTTPMedium that takes care of
143
        # feeding the bytes in the http request to the smart_protocol_request,
144
        # but for now it's simpler to just feed the bytes directly.
145
        smart_protocol_request.accept_bytes(self.rfile.read(data_length))
146
        assert smart_protocol_request.next_read_size() == 0, (
147
            "not finished reading, but all data sent to protocol.")
148
        self.send_header("Content-Length", str(len(out_buffer.getvalue())))
149
        self.end_headers()
150
        self.wfile.write(out_buffer.getvalue())
151
152
2520.2.2 by Vincent Ladeuil
Fix #115209 by issuing a single range request on 400: Bad Request
153
class LimitedRangeRequestHandler(TestingHTTPRequestHandler):
154
    """Errors out when range specifiers exceed the limit"""
155
156
    def get_multiple_ranges(self, file, file_size, ranges):
157
        """Refuses the multiple ranges request"""
158
        tcs = self.server.test_case_server
159
        #import pdb; pdb.set_trace()
160
        if tcs.range_limit is not None and len(ranges) > tcs.range_limit:
161
            file.close()
162
            # Emulate apache behavior
163
            self.send_error(400, "Bad Request")
164
            return
165
        return TestingHTTPRequestHandler.get_multiple_ranges(self, file,
166
                                                             file_size, ranges)
167
168
    def do_GET(self):
169
        tcs = self.server.test_case_server
170
        tcs.GET_request_nb += 1
171
        return TestingHTTPRequestHandler.do_GET(self)
172
173
174
class LimitedRangeHTTPServer(HttpServer):
175
    """An HttpServer erroring out on requests with too much range specifiers"""
176
177
    def __init__(self, request_handler=LimitedRangeRequestHandler,
178
                 range_limit=None):
179
        HttpServer.__init__(self, request_handler)
180
        self.range_limit = range_limit
181
        self.GET_request_nb = 0
182
183
2004.1.29 by v.ladeuil+lp at free
New tests for http range requests handling.
184
class SingleRangeRequestHandler(TestingHTTPRequestHandler):
185
    """Always reply to range request as if they were single.
186
187
    Don't be explicit about it, just to annoy the clients.
188
    """
189
190
    def get_multiple_ranges(self, file, file_size, ranges):
191
        """Answer as if it was a single range request and ignores the rest"""
192
        (start, end) = ranges[0]
193
        return self.get_single_range(file, file_size, start, end)
194
195
2481.3.1 by Vincent Ladeuil
Fix bug #112719 by using the right range header.
196
class SingleOnlyRangeRequestHandler(TestingHTTPRequestHandler):
197
    """Only reply to simple range requests, errors out on multiple"""
198
199
    def get_multiple_ranges(self, file, file_size, ranges):
200
        """Refuses the multiple ranges request"""
201
        if len(ranges) > 1:
202
            file.close()
203
            self.send_error(416, "Requested range not satisfiable")
204
            return
205
        (start, end) = ranges[0]
206
        return self.get_single_range(file, file_size, start, end)
207
208
2004.1.29 by v.ladeuil+lp at free
New tests for http range requests handling.
209
class NoRangeRequestHandler(TestingHTTPRequestHandler):
210
    """Ignore range requests without notice"""
211
212
    # Just bypass the range handling done by TestingHTTPRequestHandler
213
    do_GET = SimpleHTTPRequestHandler.do_GET
214
215
1534.4.50 by Robert Collins
Got the bzrdir api straightened out, plenty of refactoring to use it pending, but the api is up and running.
216
class TestCaseWithWebserver(TestCaseWithTransport):
217
    """A support class that provides readonly urls that are http://.
218
2004.3.3 by vila
Better (but still incomplete) design for bogus servers.
219
    This is done by forcing the readonly server to be an http
220
    one. This will currently fail if the primary transport is not
221
    backed by regular disk files.
1185.1.18 by Robert Collins
Lalo Martins remotebranch patch
222
    """
223
    def setUp(self):
1530.1.14 by Robert Collins
Remove duplicate web server from HTTPTestUtil.
224
        super(TestCaseWithWebserver, self).setUp()
2004.1.25 by v.ladeuil+lp at free
Shuffle http related test code. Hopefully it ends up at the right place :)
225
        self.transport_readonly_server = HttpServer
2167.3.5 by v.ladeuil+lp at free
Tests for proxies, covering #74759.
226
227
228
class TestCaseWithTwoWebservers(TestCaseWithWebserver):
2164.2.13 by v.ladeuil+lp at free
Add tests for redirection. Preserve transport decorations.
229
    """A support class providing readonly urls on two servers that are http://.
2167.3.5 by v.ladeuil+lp at free
Tests for proxies, covering #74759.
230
2164.2.25 by Vincent Ladeuil
Fix typos noticed by Aaron.
231
    We set up two webservers to allows various tests involving
2167.3.5 by v.ladeuil+lp at free
Tests for proxies, covering #74759.
232
    proxies or redirections from one server to the other.
233
    """
234
    def setUp(self):
235
        super(TestCaseWithTwoWebservers, self).setUp()
236
        self.transport_secondary_server = HttpServer
237
        self.__secondary_server = None
238
239
    def create_transport_secondary_server(self):
240
        """Create a transport server from class defined at init.
241
242
        This is mostly a hook for daughter classes.
243
        """
244
        return self.transport_secondary_server()
245
246
    def get_secondary_server(self):
247
        """Get the server instance for the secondary transport."""
248
        if self.__secondary_server is None:
249
            self.__secondary_server = self.create_transport_secondary_server()
250
            self.__secondary_server.setUp()
251
            self.addCleanup(self.__secondary_server.tearDown)
252
        return self.__secondary_server
253
254
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
255
class ProxyServer(HttpServer):
256
    """A proxy test server for http transports."""
257
258
    proxy_requests = True
2213.1.1 by v.ladeuil+lp at free
Workaround SimpleHTTPRequestHandler.translate_path limitation in
259
2167.3.5 by v.ladeuil+lp at free
Tests for proxies, covering #74759.
260
2164.2.13 by v.ladeuil+lp at free
Add tests for redirection. Preserve transport decorations.
261
class RedirectRequestHandler(TestingHTTPRequestHandler):
262
    """Redirect all request to the specified server"""
263
264
    def parse_request(self):
265
        """Redirect a single HTTP request to another host"""
266
        valid = TestingHTTPRequestHandler.parse_request(self)
267
        if valid:
2164.2.29 by Vincent Ladeuil
Test the http redirection at the request level even if it's not
268
            tcs = self.server.test_case_server
269
            code, target = tcs.is_redirected(self.path)
270
            if code is not None and target is not None:
271
                # Redirect as instructed
272
                self.send_response(code)
2164.2.16 by Vincent Ladeuil
Add tests.
273
                self.send_header('Location', target)
274
                self.end_headers()
275
                return False # The job is done
2164.2.29 by Vincent Ladeuil
Test the http redirection at the request level even if it's not
276
            else:
277
                # We leave the parent class serve the request
278
                pass
2164.2.13 by v.ladeuil+lp at free
Add tests for redirection. Preserve transport decorations.
279
        return valid
280
281
282
class HTTPServerRedirecting(HttpServer):
283
    """An HttpServer redirecting to another server """
284
2164.2.16 by Vincent Ladeuil
Add tests.
285
    def __init__(self, request_handler=RedirectRequestHandler):
2164.2.13 by v.ladeuil+lp at free
Add tests for redirection. Preserve transport decorations.
286
        HttpServer.__init__(self, request_handler)
2164.2.29 by Vincent Ladeuil
Test the http redirection at the request level even if it's not
287
        # redirections is a list of tuples (source, target, code)
288
        # - source is a regexp for the paths requested
289
        # - target is a replacement for re.sub describing where
290
        #   the request will be redirected
291
        # - code is the http error code associated to the
292
        #   redirection (301 permanent, 302 temporarry, etc
293
        self.redirections = []
294
295
    def redirect_to(self, host, port):
296
        """Redirect all requests to a specific host:port"""
297
        self.redirections = [('(.*)',
298
                              r'http://%s:%s\1' % (host, port) ,
299
                              301)]
300
301
    def is_redirected(self, path):
302
        """Is the path redirected by this server.
303
304
        :param path: the requested relative path
305
306
        :returns: a tuple (code, target) if a matching
307
             redirection is found, (None, None) otherwise.
308
        """
309
        code = None
310
        target = None
311
        for (rsource, rtarget, rcode) in self.redirections:
312
            target, match = re.subn(rsource, rtarget, path)
313
            if match:
314
                code = rcode
315
                break # The first match wins
316
            else:
317
                target = None
318
        return code, target
2164.2.13 by v.ladeuil+lp at free
Add tests for redirection. Preserve transport decorations.
319
2167.3.5 by v.ladeuil+lp at free
Tests for proxies, covering #74759.
320
2164.2.22 by Vincent Ladeuil
Take Aaron's review comments into account.
321
class TestCaseWithRedirectedWebserver(TestCaseWithTwoWebservers):
322
   """A support class providing redirections from one server to another.
323
2164.2.25 by Vincent Ladeuil
Fix typos noticed by Aaron.
324
   We set up two webservers to allows various tests involving
2164.2.22 by Vincent Ladeuil
Take Aaron's review comments into account.
325
   redirections.
326
   The 'old' server is redirected to the 'new' server.
327
   """
328
329
   def create_transport_secondary_server(self):
330
       """Create the secondary server redirecting to the primary server"""
331
       new = self.get_readonly_server()
332
       redirecting = HTTPServerRedirecting()
333
       redirecting.redirect_to(new.host, new.port)
334
       return redirecting
335
336
   def setUp(self):
337
       super(TestCaseWithRedirectedWebserver, self).setUp()
338
       # The redirections will point to the new server
339
       self.new_server = self.get_readonly_server()
340
       # The requests to the old server will be redirected
341
       self.old_server = self.get_secondary_server()
342
343
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
344
class AuthRequestHandler(TestingHTTPRequestHandler):
345
    """Requires an authentication to process requests.
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
346
347
    This is intended to be used with a server that always and
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
348
    only use one authentication scheme (implemented by daughter
349
    classes).
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
350
    """
2363.4.8 by Vincent Ladeuil
Implement a basic auth HTTP server, rewrite tests accordingly.
351
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
352
    # The following attributes should be defined in the server
2420.1.10 by Vincent Ladeuil
Doc fixes.
353
    # - auth_header_sent: the header name sent to require auth
354
    # - auth_header_recv: the header received containing auth
355
    # - auth_error_code: the error code to indicate auth required
2420.1.2 by Vincent Ladeuil
Define tests for http proxy basic authentication. They fail.
356
2363.4.8 by Vincent Ladeuil
Implement a basic auth HTTP server, rewrite tests accordingly.
357
    def do_GET(self):
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
358
        if self.authorized():
359
            return TestingHTTPRequestHandler.do_GET(self)
360
        else:
361
            # Note that we must update test_case_server *before*
362
            # sending the error or the client may try to read it
363
            # before we have sent the whole error back.
364
            tcs = self.server.test_case_server
365
            tcs.auth_required_errors += 1
366
            self.send_response(tcs.auth_error_code)
367
            self.send_header_auth_reqed()
368
            self.end_headers()
369
            return
2363.4.8 by Vincent Ladeuil
Implement a basic auth HTTP server, rewrite tests accordingly.
370
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
371
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
372
class BasicAuthRequestHandler(AuthRequestHandler):
373
    """Implements the basic authentication of a request"""
374
375
    def authorized(self):
376
        tcs = self.server.test_case_server
377
        if tcs.auth_scheme != 'basic':
378
            return False
379
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
380
        auth_header = self.headers.get(tcs.auth_header_recv, None)
381
        if auth_header:
382
            scheme, raw_auth = auth_header.split(' ', 1)
383
            if scheme.lower() == tcs.auth_scheme:
384
                user, password = raw_auth.decode('base64').split(':')
385
                return tcs.authorized(user, password)
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
386
387
        return False
388
389
    def send_header_auth_reqed(self):
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
390
        tcs = self.server.test_case_server
391
        self.send_header(tcs.auth_header_sent,
392
                         'Basic realm="%s"' % tcs.auth_realm)
393
394
2420.1.19 by Vincent Ladeuil
Cosmetic changes.
395
# FIXME: We could send an Authentication-Info header too when
396
# the authentication is succesful
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
397
398
class DigestAuthRequestHandler(AuthRequestHandler):
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
399
    """Implements the digest authentication of a request.
400
401
    We need persistence for some attributes and that can't be
402
    achieved here since we get instantiated for each request. We
403
    rely on the DigestAuthServer to take care of them.
404
    """
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
405
406
    def authorized(self):
407
        tcs = self.server.test_case_server
408
        if tcs.auth_scheme != 'digest':
409
            return False
410
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
411
        auth_header = self.headers.get(tcs.auth_header_recv, None)
412
        if auth_header is None:
413
            return False
414
        scheme, auth = auth_header.split(None, 1)
415
        if scheme.lower() == tcs.auth_scheme:
416
            auth_dict = urllib2.parse_keqv_list(urllib2.parse_http_list(auth))
417
418
            return tcs.digest_authorized(auth_dict, self.command)
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
419
420
        return False
421
422
    def send_header_auth_reqed(self):
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
423
        tcs = self.server.test_case_server
424
        header = 'Digest realm="%s", ' % tcs.auth_realm
425
        header += 'nonce="%s", algorithm=%s, qop=auth' % (tcs.auth_nonce, 'MD5')
426
        self.send_header(tcs.auth_header_sent,header)
427
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
428
429
class AuthServer(HttpServer):
430
    """Extends HttpServer with a dictionary of passwords.
431
432
    This is used as a base class for various schemes which should
433
    all use or redefined the associated AuthRequestHandler.
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
434
435
    Note that no users are defined by default, so add_user should
436
    be called before issuing the first request.
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
437
    """
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
438
439
    # The following attributes should be set dy daughter classes
440
    # and are used by AuthRequestHandler.
441
    auth_header_sent = None
442
    auth_header_recv = None
443
    auth_error_code = None
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
444
    auth_realm = "Thou should not pass"
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
445
446
    def __init__(self, request_handler, auth_scheme):
2363.4.8 by Vincent Ladeuil
Implement a basic auth HTTP server, rewrite tests accordingly.
447
        HttpServer.__init__(self, request_handler)
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
448
        self.auth_scheme = auth_scheme
2363.4.8 by Vincent Ladeuil
Implement a basic auth HTTP server, rewrite tests accordingly.
449
        self.password_of = {}
2420.1.4 by Vincent Ladeuil
Add test checking the number of roundtrips due to 401 or 407 errors.
450
        self.auth_required_errors = 0
2363.4.8 by Vincent Ladeuil
Implement a basic auth HTTP server, rewrite tests accordingly.
451
452
    def add_user(self, user, password):
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
453
        """Declare a user with an associated password.
454
455
        password can be empty, use an empty string ('') in that
456
        case, not None.
457
        """
2363.4.8 by Vincent Ladeuil
Implement a basic auth HTTP server, rewrite tests accordingly.
458
        self.password_of[user] = password
459
460
    def authorized(self, user, password):
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
461
        """Check that the given user provided the right password"""
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
462
        expected_password = self.password_of.get(user, None)
463
        return expected_password is not None and password == expected_password
464
465
2420.1.19 by Vincent Ladeuil
Cosmetic changes.
466
# FIXME: There is some code duplication with
467
# _urllib2_wrappers.py.DigestAuthHandler. If that duplciation
468
# grows, it may require a refactoring. Also, we don't implement
469
# SHA algorithm nor MD5-sess here, but that does not seem worth
470
# it.
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
471
class DigestAuthServer(AuthServer):
472
    """A digest authentication server"""
473
2420.1.16 by Vincent Ladeuil
Handle nonce changes. Fix a nasty bug breaking the auth parameters sharing.
474
    auth_nonce = 'now!'
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
475
476
    def __init__(self, request_handler, auth_scheme):
477
        AuthServer.__init__(self, request_handler, auth_scheme)
478
479
    def digest_authorized(self, auth, command):
2420.1.16 by Vincent Ladeuil
Handle nonce changes. Fix a nasty bug breaking the auth parameters sharing.
480
        nonce = auth['nonce']
481
        if nonce != self.auth_nonce:
482
            return False
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
483
        realm = auth['realm']
484
        if realm != self.auth_realm:
485
            return False
486
        user = auth['username']
487
        if not self.password_of.has_key(user):
488
            return False
489
        algorithm= auth['algorithm']
490
        if algorithm != 'MD5':
491
            return False
492
        qop = auth['qop']
493
        if qop != 'auth':
494
            return False
495
496
        password = self.password_of[user]
497
498
        # Recalculate the response_digest to compare with the one
499
        # sent by the client
500
        A1 = '%s:%s:%s' % (user, realm, password)
501
        A2 = '%s:%s' % (command, auth['uri'])
502
503
        H = lambda x: md5.new(x).hexdigest()
504
        KD = lambda secret, data: H("%s:%s" % (secret, data))
505
506
        nonce_count = int(auth['nc'], 16)
507
508
        ncvalue = '%08x' % nonce_count
509
510
        cnonce = auth['cnonce']
511
        noncebit = '%s:%s:%s:%s:%s' % (nonce, ncvalue, cnonce, qop, H(A2))
512
        response_digest = KD(H(A1), noncebit)
513
514
        return response_digest == auth['response']
515
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
516
class HTTPAuthServer(AuthServer):
517
    """An HTTP server requiring authentication"""
518
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
519
    def init_http_auth(self):
520
        self.auth_header_sent = 'WWW-Authenticate'
521
        self.auth_header_recv = 'Authorization'
522
        self.auth_error_code = 401
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
523
524
525
class ProxyAuthServer(AuthServer):
526
    """A proxy server requiring authentication"""
527
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
528
    def init_proxy_auth(self):
529
        self.proxy_requests = True
530
        self.auth_header_sent = 'Proxy-Authenticate'
531
        self.auth_header_recv = 'Proxy-Authorization'
532
        self.auth_error_code = 407
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
533
534
535
class HTTPBasicAuthServer(HTTPAuthServer):
536
    """An HTTP server requiring basic authentication"""
537
538
    def __init__(self):
539
        HTTPAuthServer.__init__(self, BasicAuthRequestHandler, 'basic')
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
540
        self.init_http_auth()
541
542
543
class HTTPDigestAuthServer(DigestAuthServer, HTTPAuthServer):
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
544
    """An HTTP server requiring digest authentication"""
545
546
    def __init__(self):
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
547
        DigestAuthServer.__init__(self, DigestAuthRequestHandler, 'digest')
548
        self.init_http_auth()
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
549
550
551
class ProxyBasicAuthServer(ProxyAuthServer):
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
552
    """A proxy server requiring basic authentication"""
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
553
554
    def __init__(self):
555
        ProxyAuthServer.__init__(self, BasicAuthRequestHandler, 'basic')
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
556
        self.init_proxy_auth()
557
558
559
class ProxyDigestAuthServer(DigestAuthServer, ProxyAuthServer):
560
    """A proxy server requiring basic authentication"""
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
561
562
    def __init__(self):
563
        ProxyAuthServer.__init__(self, DigestAuthRequestHandler, 'digest')
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
564
        self.init_proxy_auth()
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
565
566