~bzr-pqm/bzr/bzr.dev

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
2164.2.29 by Vincent Ladeuil
Test the http redirection at the request level even if it's not
20
import re
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
21
import sha
2004.1.25 by v.ladeuil+lp at free
Shuffle http related test code. Hopefully it ends up at the right place :)
22
import socket
3111.1.7 by Vincent Ladeuil
Further refactoring.
23
import threading
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
3111.1.16 by Vincent Ladeuil
Fix more imports.
28
from bzrlib import (
3376.2.4 by Martin Pool
Remove every assert statement from bzrlib!
29
    errors,
3111.1.16 by Vincent Ladeuil
Fix more imports.
30
    tests,
31
    )
3245.4.24 by Andrew Bennetts
Consistently raise errors from the server as ErrorFromSmartServer exceptions.
32
from bzrlib.smart import medium, protocol
3111.1.16 by Vincent Ladeuil
Fix more imports.
33
from bzrlib.tests import http_server
3606.4.1 by Andrew Bennetts
Fix NotImplementedError when probing for smart protocol via HTTP.
34
from bzrlib.transport import (
35
    chroot,
36
    get_transport,
37
    )
3111.1.16 by Vincent Ladeuil
Fix more imports.
38
39
40
class HTTPServerWithSmarts(http_server.HttpServer):
2004.1.28 by v.ladeuil+lp at free
Merge bzr.dev. Including http modifications by "smart" related code
41
    """HTTPServerWithSmarts extends the HttpServer with POST methods that will
42
    trigger a smart server to execute with a transport rooted at the rootdir of
43
    the HTTP server.
44
    """
45
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
46
    def __init__(self, protocol_version=None):
47
        http_server.HttpServer.__init__(self, SmartRequestHandler,
48
                                        protocol_version=protocol_version)
3111.1.16 by Vincent Ladeuil
Fix more imports.
49
50
51
class SmartRequestHandler(http_server.TestingHTTPRequestHandler):
3606.4.1 by Andrew Bennetts
Fix NotImplementedError when probing for smart protocol via HTTP.
52
    """Extend TestingHTTPRequestHandler to support smart client POSTs.
53
    
54
    XXX: This duplicates a fair bit of the logic in bzrlib.transport.http.wsgi.
55
    """
2004.1.28 by v.ladeuil+lp at free
Merge bzr.dev. Including http modifications by "smart" related code
56
57
    def do_POST(self):
58
        """Hand the request off to a smart server instance."""
3606.4.1 by Andrew Bennetts
Fix NotImplementedError when probing for smart protocol via HTTP.
59
        backing = get_transport(self.server.test_case_server._home_dir)
60
        chroot_server = chroot.ChrootServer(backing)
61
        chroot_server.setUp()
62
        try:
63
            t = get_transport(chroot_server.get_url())
64
            self.do_POST_inner(t)
65
        finally:
66
            chroot_server.tearDown()
67
68
    def do_POST_inner(self, chrooted_transport):
2004.1.28 by v.ladeuil+lp at free
Merge bzr.dev. Including http modifications by "smart" related code
69
        self.send_response(200)
70
        self.send_header("Content-type", "application/octet-stream")
3606.4.1 by Andrew Bennetts
Fix NotImplementedError when probing for smart protocol via HTTP.
71
        if not self.path.endswith('.bzr/smart'):
72
            raise AssertionError(
73
                'POST to path not ending in .bzr/smart: %r' % (self.path,))
74
        t = chrooted_transport.clone(self.path[:-len('.bzr/smart')])
3245.4.24 by Andrew Bennetts
Consistently raise errors from the server as ErrorFromSmartServer exceptions.
75
        # if this fails, we should return 400 bad request, but failure is
76
        # failure for now - RBC 20060919
77
        data_length = int(self.headers['Content-Length'])
2004.1.28 by v.ladeuil+lp at free
Merge bzr.dev. Including http modifications by "smart" related code
78
        # TODO: We might like to support streaming responses.  1.0 allows no
79
        # Content-length in this case, so for integrity we should perform our
80
        # own chunking within the stream.
81
        # 1.1 allows chunked responses, and in this case we could chunk using
82
        # the HTTP chunking as this will allow HTTP persistence safely, even if
83
        # we have to stop early due to error, but we would also have to use the
84
        # HTTP trailer facility which may not be widely available.
3245.4.24 by Andrew Bennetts
Consistently raise errors from the server as ErrorFromSmartServer exceptions.
85
        request_bytes = self.rfile.read(data_length)
86
        protocol_factory, unused_bytes = medium._get_protocol_factory_for_bytes(
87
            request_bytes)
2004.1.28 by v.ladeuil+lp at free
Merge bzr.dev. Including http modifications by "smart" related code
88
        out_buffer = StringIO()
3245.4.24 by Andrew Bennetts
Consistently raise errors from the server as ErrorFromSmartServer exceptions.
89
        smart_protocol_request = protocol_factory(t, out_buffer.write, '/')
2004.1.28 by v.ladeuil+lp at free
Merge bzr.dev. Including http modifications by "smart" related code
90
        # Perhaps there should be a SmartServerHTTPMedium that takes care of
91
        # feeding the bytes in the http request to the smart_protocol_request,
92
        # but for now it's simpler to just feed the bytes directly.
3245.4.24 by Andrew Bennetts
Consistently raise errors from the server as ErrorFromSmartServer exceptions.
93
        smart_protocol_request.accept_bytes(unused_bytes)
3376.2.4 by Martin Pool
Remove every assert statement from bzrlib!
94
        if not (smart_protocol_request.next_read_size() == 0):
95
            raise errors.SmartProtocolError(
96
                "not finished reading, but all data sent to protocol.")
2004.1.28 by v.ladeuil+lp at free
Merge bzr.dev. Including http modifications by "smart" related code
97
        self.send_header("Content-Length", str(len(out_buffer.getvalue())))
98
        self.end_headers()
99
        self.wfile.write(out_buffer.getvalue())
100
101
3111.1.16 by Vincent Ladeuil
Fix more imports.
102
class TestCaseWithWebserver(tests.TestCaseWithTransport):
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.
103
    """A support class that provides readonly urls that are http://.
104
2004.3.3 by vila
Better (but still incomplete) design for bogus servers.
105
    This is done by forcing the readonly server to be an http
106
    one. This will currently fail if the primary transport is not
107
    backed by regular disk files.
1185.1.18 by Robert Collins
Lalo Martins remotebranch patch
108
    """
109
    def setUp(self):
1530.1.14 by Robert Collins
Remove duplicate web server from HTTPTestUtil.
110
        super(TestCaseWithWebserver, self).setUp()
3111.1.16 by Vincent Ladeuil
Fix more imports.
111
        self.transport_readonly_server = http_server.HttpServer
2167.3.5 by v.ladeuil+lp at free
Tests for proxies, covering #74759.
112
113
114
class TestCaseWithTwoWebservers(TestCaseWithWebserver):
2164.2.13 by v.ladeuil+lp at free
Add tests for redirection. Preserve transport decorations.
115
    """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.
116
2164.2.25 by Vincent Ladeuil
Fix typos noticed by Aaron.
117
    We set up two webservers to allows various tests involving
2167.3.5 by v.ladeuil+lp at free
Tests for proxies, covering #74759.
118
    proxies or redirections from one server to the other.
119
    """
120
    def setUp(self):
121
        super(TestCaseWithTwoWebservers, self).setUp()
3111.1.16 by Vincent Ladeuil
Fix more imports.
122
        self.transport_secondary_server = http_server.HttpServer
2167.3.5 by v.ladeuil+lp at free
Tests for proxies, covering #74759.
123
        self.__secondary_server = None
124
125
    def create_transport_secondary_server(self):
126
        """Create a transport server from class defined at init.
127
128
        This is mostly a hook for daughter classes.
129
        """
130
        return self.transport_secondary_server()
131
132
    def get_secondary_server(self):
133
        """Get the server instance for the secondary transport."""
134
        if self.__secondary_server is None:
135
            self.__secondary_server = self.create_transport_secondary_server()
136
            self.__secondary_server.setUp()
137
            self.addCleanup(self.__secondary_server.tearDown)
138
        return self.__secondary_server
139
140
3111.1.16 by Vincent Ladeuil
Fix more imports.
141
class ProxyServer(http_server.HttpServer):
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
142
    """A proxy test server for http transports."""
143
144
    proxy_requests = True
2213.1.1 by v.ladeuil+lp at free
Workaround SimpleHTTPRequestHandler.translate_path limitation in
145
2167.3.5 by v.ladeuil+lp at free
Tests for proxies, covering #74759.
146
3111.1.16 by Vincent Ladeuil
Fix more imports.
147
class RedirectRequestHandler(http_server.TestingHTTPRequestHandler):
2164.2.13 by v.ladeuil+lp at free
Add tests for redirection. Preserve transport decorations.
148
    """Redirect all request to the specified server"""
149
150
    def parse_request(self):
151
        """Redirect a single HTTP request to another host"""
3111.1.16 by Vincent Ladeuil
Fix more imports.
152
        valid = http_server.TestingHTTPRequestHandler.parse_request(self)
2164.2.13 by v.ladeuil+lp at free
Add tests for redirection. Preserve transport decorations.
153
        if valid:
2164.2.29 by Vincent Ladeuil
Test the http redirection at the request level even if it's not
154
            tcs = self.server.test_case_server
155
            code, target = tcs.is_redirected(self.path)
156
            if code is not None and target is not None:
157
                # Redirect as instructed
158
                self.send_response(code)
2164.2.16 by Vincent Ladeuil
Add tests.
159
                self.send_header('Location', target)
3111.1.20 by Vincent Ladeuil
Make all the test pass. Looks like we are HTTP/1.1 compliant.
160
                # We do not send a body
161
                self.send_header('Content-Length', '0')
2164.2.16 by Vincent Ladeuil
Add tests.
162
                self.end_headers()
163
                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
164
            else:
165
                # We leave the parent class serve the request
166
                pass
2164.2.13 by v.ladeuil+lp at free
Add tests for redirection. Preserve transport decorations.
167
        return valid
168
169
3111.1.16 by Vincent Ladeuil
Fix more imports.
170
class HTTPServerRedirecting(http_server.HttpServer):
2164.2.13 by v.ladeuil+lp at free
Add tests for redirection. Preserve transport decorations.
171
    """An HttpServer redirecting to another server """
172
3111.1.18 by Vincent Ladeuil
Test parametrization for protocol versions achieved. Tests are failing :)
173
    def __init__(self, request_handler=RedirectRequestHandler,
174
                 protocol_version=None):
175
        http_server.HttpServer.__init__(self, request_handler,
176
                                        protocol_version=protocol_version)
2164.2.29 by Vincent Ladeuil
Test the http redirection at the request level even if it's not
177
        # redirections is a list of tuples (source, target, code)
178
        # - source is a regexp for the paths requested
179
        # - target is a replacement for re.sub describing where
180
        #   the request will be redirected
181
        # - code is the http error code associated to the
182
        #   redirection (301 permanent, 302 temporarry, etc
183
        self.redirections = []
184
185
    def redirect_to(self, host, port):
186
        """Redirect all requests to a specific host:port"""
187
        self.redirections = [('(.*)',
188
                              r'http://%s:%s\1' % (host, port) ,
189
                              301)]
190
191
    def is_redirected(self, path):
192
        """Is the path redirected by this server.
193
194
        :param path: the requested relative path
195
196
        :returns: a tuple (code, target) if a matching
197
             redirection is found, (None, None) otherwise.
198
        """
199
        code = None
200
        target = None
201
        for (rsource, rtarget, rcode) in self.redirections:
202
            target, match = re.subn(rsource, rtarget, path)
203
            if match:
204
                code = rcode
205
                break # The first match wins
206
            else:
207
                target = None
208
        return code, target
2164.2.13 by v.ladeuil+lp at free
Add tests for redirection. Preserve transport decorations.
209
2167.3.5 by v.ladeuil+lp at free
Tests for proxies, covering #74759.
210
2164.2.22 by Vincent Ladeuil
Take Aaron's review comments into account.
211
class TestCaseWithRedirectedWebserver(TestCaseWithTwoWebservers):
212
   """A support class providing redirections from one server to another.
213
2164.2.25 by Vincent Ladeuil
Fix typos noticed by Aaron.
214
   We set up two webservers to allows various tests involving
2164.2.22 by Vincent Ladeuil
Take Aaron's review comments into account.
215
   redirections.
216
   The 'old' server is redirected to the 'new' server.
217
   """
218
219
   def create_transport_secondary_server(self):
220
       """Create the secondary server redirecting to the primary server"""
221
       new = self.get_readonly_server()
222
       redirecting = HTTPServerRedirecting()
223
       redirecting.redirect_to(new.host, new.port)
224
       return redirecting
225
226
   def setUp(self):
227
       super(TestCaseWithRedirectedWebserver, self).setUp()
228
       # The redirections will point to the new server
229
       self.new_server = self.get_readonly_server()
230
       # The requests to the old server will be redirected
231
       self.old_server = self.get_secondary_server()
232
233
3111.1.16 by Vincent Ladeuil
Fix more imports.
234
class AuthRequestHandler(http_server.TestingHTTPRequestHandler):
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
235
    """Requires an authentication to process requests.
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
236
237
    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.
238
    only use one authentication scheme (implemented by daughter
239
    classes).
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
240
    """
2363.4.8 by Vincent Ladeuil
Implement a basic auth HTTP server, rewrite tests accordingly.
241
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
242
    # The following attributes should be defined in the server
2420.1.10 by Vincent Ladeuil
Doc fixes.
243
    # - auth_header_sent: the header name sent to require auth
244
    # - auth_header_recv: the header received containing auth
245
    # - 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.
246
2363.4.8 by Vincent Ladeuil
Implement a basic auth HTTP server, rewrite tests accordingly.
247
    def do_GET(self):
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
248
        if self.authorized():
3111.1.16 by Vincent Ladeuil
Fix more imports.
249
            return http_server.TestingHTTPRequestHandler.do_GET(self)
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
250
        else:
251
            # Note that we must update test_case_server *before*
252
            # sending the error or the client may try to read it
253
            # before we have sent the whole error back.
254
            tcs = self.server.test_case_server
255
            tcs.auth_required_errors += 1
256
            self.send_response(tcs.auth_error_code)
257
            self.send_header_auth_reqed()
3111.1.20 by Vincent Ladeuil
Make all the test pass. Looks like we are HTTP/1.1 compliant.
258
            # We do not send a body
259
            self.send_header('Content-Length', '0')
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
260
            self.end_headers()
261
            return
2363.4.8 by Vincent Ladeuil
Implement a basic auth HTTP server, rewrite tests accordingly.
262
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
263
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
264
class BasicAuthRequestHandler(AuthRequestHandler):
265
    """Implements the basic authentication of a request"""
266
267
    def authorized(self):
268
        tcs = self.server.test_case_server
269
        if tcs.auth_scheme != 'basic':
270
            return False
271
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
272
        auth_header = self.headers.get(tcs.auth_header_recv, None)
273
        if auth_header:
274
            scheme, raw_auth = auth_header.split(' ', 1)
275
            if scheme.lower() == tcs.auth_scheme:
276
                user, password = raw_auth.decode('base64').split(':')
277
                return tcs.authorized(user, password)
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
278
279
        return False
280
281
    def send_header_auth_reqed(self):
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
282
        tcs = self.server.test_case_server
283
        self.send_header(tcs.auth_header_sent,
284
                         'Basic realm="%s"' % tcs.auth_realm)
285
286
2420.1.19 by Vincent Ladeuil
Cosmetic changes.
287
# FIXME: We could send an Authentication-Info header too when
288
# the authentication is succesful
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
289
290
class DigestAuthRequestHandler(AuthRequestHandler):
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
291
    """Implements the digest authentication of a request.
292
293
    We need persistence for some attributes and that can't be
294
    achieved here since we get instantiated for each request. We
295
    rely on the DigestAuthServer to take care of them.
296
    """
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
297
298
    def authorized(self):
299
        tcs = self.server.test_case_server
300
        if tcs.auth_scheme != 'digest':
301
            return False
302
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
303
        auth_header = self.headers.get(tcs.auth_header_recv, None)
304
        if auth_header is None:
305
            return False
306
        scheme, auth = auth_header.split(None, 1)
307
        if scheme.lower() == tcs.auth_scheme:
308
            auth_dict = urllib2.parse_keqv_list(urllib2.parse_http_list(auth))
309
310
            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.
311
312
        return False
313
314
    def send_header_auth_reqed(self):
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
315
        tcs = self.server.test_case_server
316
        header = 'Digest realm="%s", ' % tcs.auth_realm
2545.2.1 by Vincent Ladeuil
Fix 121889 by working around urllib2 bug.
317
        header += 'nonce="%s", algorithm="%s", qop="auth"' % (tcs.auth_nonce,
318
                                                              'MD5')
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
319
        self.send_header(tcs.auth_header_sent,header)
320
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
321
3111.1.16 by Vincent Ladeuil
Fix more imports.
322
class AuthServer(http_server.HttpServer):
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
323
    """Extends HttpServer with a dictionary of passwords.
324
325
    This is used as a base class for various schemes which should
326
    all use or redefined the associated AuthRequestHandler.
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
327
328
    Note that no users are defined by default, so add_user should
329
    be called before issuing the first request.
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
330
    """
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
331
332
    # The following attributes should be set dy daughter classes
333
    # and are used by AuthRequestHandler.
334
    auth_header_sent = None
335
    auth_header_recv = None
336
    auth_error_code = None
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
337
    auth_realm = "Thou should not pass"
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
338
3111.1.18 by Vincent Ladeuil
Test parametrization for protocol versions achieved. Tests are failing :)
339
    def __init__(self, request_handler, auth_scheme,
340
                 protocol_version=None):
341
        http_server.HttpServer.__init__(self, request_handler,
342
                                        protocol_version=protocol_version)
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
343
        self.auth_scheme = auth_scheme
2363.4.8 by Vincent Ladeuil
Implement a basic auth HTTP server, rewrite tests accordingly.
344
        self.password_of = {}
2420.1.4 by Vincent Ladeuil
Add test checking the number of roundtrips due to 401 or 407 errors.
345
        self.auth_required_errors = 0
2363.4.8 by Vincent Ladeuil
Implement a basic auth HTTP server, rewrite tests accordingly.
346
347
    def add_user(self, user, password):
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
348
        """Declare a user with an associated password.
349
350
        password can be empty, use an empty string ('') in that
351
        case, not None.
352
        """
2363.4.8 by Vincent Ladeuil
Implement a basic auth HTTP server, rewrite tests accordingly.
353
        self.password_of[user] = password
354
355
    def authorized(self, user, password):
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
356
        """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
357
        expected_password = self.password_of.get(user, None)
358
        return expected_password is not None and password == expected_password
359
360
2420.1.19 by Vincent Ladeuil
Cosmetic changes.
361
# FIXME: There is some code duplication with
2900.2.5 by Vincent Ladeuil
ake ftp aware of authentication config.
362
# _urllib2_wrappers.py.DigestAuthHandler. If that duplication
2420.1.19 by Vincent Ladeuil
Cosmetic changes.
363
# grows, it may require a refactoring. Also, we don't implement
364
# SHA algorithm nor MD5-sess here, but that does not seem worth
365
# it.
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
366
class DigestAuthServer(AuthServer):
367
    """A digest authentication server"""
368
2420.1.16 by Vincent Ladeuil
Handle nonce changes. Fix a nasty bug breaking the auth parameters sharing.
369
    auth_nonce = 'now!'
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
370
3111.1.18 by Vincent Ladeuil
Test parametrization for protocol versions achieved. Tests are failing :)
371
    def __init__(self, request_handler, auth_scheme,
372
                 protocol_version=None):
373
        AuthServer.__init__(self, request_handler, auth_scheme,
374
                            protocol_version=protocol_version)
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
375
376
    def digest_authorized(self, auth, command):
2420.1.16 by Vincent Ladeuil
Handle nonce changes. Fix a nasty bug breaking the auth parameters sharing.
377
        nonce = auth['nonce']
378
        if nonce != self.auth_nonce:
379
            return False
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
380
        realm = auth['realm']
381
        if realm != self.auth_realm:
382
            return False
383
        user = auth['username']
384
        if not self.password_of.has_key(user):
385
            return False
386
        algorithm= auth['algorithm']
387
        if algorithm != 'MD5':
388
            return False
389
        qop = auth['qop']
390
        if qop != 'auth':
391
            return False
392
393
        password = self.password_of[user]
394
395
        # Recalculate the response_digest to compare with the one
396
        # sent by the client
397
        A1 = '%s:%s:%s' % (user, realm, password)
398
        A2 = '%s:%s' % (command, auth['uri'])
399
400
        H = lambda x: md5.new(x).hexdigest()
401
        KD = lambda secret, data: H("%s:%s" % (secret, data))
402
403
        nonce_count = int(auth['nc'], 16)
404
405
        ncvalue = '%08x' % nonce_count
406
407
        cnonce = auth['cnonce']
408
        noncebit = '%s:%s:%s:%s:%s' % (nonce, ncvalue, cnonce, qop, H(A2))
409
        response_digest = KD(H(A1), noncebit)
410
411
        return response_digest == auth['response']
412
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
413
class HTTPAuthServer(AuthServer):
414
    """An HTTP server requiring authentication"""
415
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
416
    def init_http_auth(self):
417
        self.auth_header_sent = 'WWW-Authenticate'
418
        self.auth_header_recv = 'Authorization'
419
        self.auth_error_code = 401
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
420
421
422
class ProxyAuthServer(AuthServer):
423
    """A proxy server requiring authentication"""
424
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
425
    def init_proxy_auth(self):
426
        self.proxy_requests = True
427
        self.auth_header_sent = 'Proxy-Authenticate'
428
        self.auth_header_recv = 'Proxy-Authorization'
429
        self.auth_error_code = 407
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
430
431
432
class HTTPBasicAuthServer(HTTPAuthServer):
433
    """An HTTP server requiring basic authentication"""
434
3111.1.18 by Vincent Ladeuil
Test parametrization for protocol versions achieved. Tests are failing :)
435
    def __init__(self, protocol_version=None):
436
        HTTPAuthServer.__init__(self, BasicAuthRequestHandler, 'basic',
437
                                protocol_version=protocol_version)
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
438
        self.init_http_auth()
439
440
441
class HTTPDigestAuthServer(DigestAuthServer, HTTPAuthServer):
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
442
    """An HTTP server requiring digest authentication"""
443
3111.1.18 by Vincent Ladeuil
Test parametrization for protocol versions achieved. Tests are failing :)
444
    def __init__(self, protocol_version=None):
445
        DigestAuthServer.__init__(self, DigestAuthRequestHandler, 'digest',
446
                                  protocol_version=protocol_version)
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
447
        self.init_http_auth()
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
448
449
450
class ProxyBasicAuthServer(ProxyAuthServer):
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
451
    """A proxy server requiring basic authentication"""
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
452
3111.1.18 by Vincent Ladeuil
Test parametrization for protocol versions achieved. Tests are failing :)
453
    def __init__(self, protocol_version=None):
454
        ProxyAuthServer.__init__(self, BasicAuthRequestHandler, 'basic',
455
                                 protocol_version=protocol_version)
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
456
        self.init_proxy_auth()
457
458
459
class ProxyDigestAuthServer(DigestAuthServer, ProxyAuthServer):
460
    """A proxy server requiring basic authentication"""
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
461
3111.1.18 by Vincent Ladeuil
Test parametrization for protocol versions achieved. Tests are failing :)
462
    def __init__(self, protocol_version=None):
463
        ProxyAuthServer.__init__(self, DigestAuthRequestHandler, 'digest',
464
                                 protocol_version=protocol_version)
2420.1.11 by Vincent Ladeuil
Implement digest authentication. Test suite passes. Tested against apache-2.x.
465
        self.init_proxy_auth()
2420.1.9 by Vincent Ladeuil
Refactor proxy and auth test classes. Tests failing for digest auth.
466
467