/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
5557.1.7 by John Arbash Meinel
Merge in the bzr.dev 5582
1
# Copyright (C) 2005-2011 Canonical Ltd
1540.3.24 by Martin Pool
Add new protocol 'http+pycurl' that always uses PyCurl.
2
#
1540.3.15 by Martin Pool
[merge] large merge to sync with bzr.dev
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.
1540.3.24 by Martin Pool
Add new protocol 'http+pycurl' that always uses PyCurl.
7
#
1540.3.15 by Martin Pool
[merge] large merge to sync with bzr.dev
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.
1540.3.24 by Martin Pool
Add new protocol 'http+pycurl' that always uses PyCurl.
12
#
1540.3.15 by Martin Pool
[merge] large merge to sync with bzr.dev
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
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1185.16.68 by Martin Pool
- http url fixes suggested by Robey Pointer, and tests
16
3111.1.30 by Vincent Ladeuil
Update NEWS. Some cosmetic changes.
17
"""Tests for HTTP implementations.
3111.1.10 by Vincent Ladeuil
Finish http parameterization, 24 auth tests failing for pycurl (not
18
3111.1.30 by Vincent Ladeuil
Update NEWS. Some cosmetic changes.
19
This module defines a load_tests() method that parametrize tests classes for
20
transport implementation, http protocol versions and authentication schemes.
3111.1.10 by Vincent Ladeuil
Finish http parameterization, 24 auth tests failing for pycurl (not
21
"""
1540.3.3 by Martin Pool
Review updates of pycurl transport
22
1540.3.22 by Martin Pool
[patch] Add TestCase.assertIsInstance
23
# TODO: Should be renamed to bzrlib.transport.http.tests?
2167.3.5 by v.ladeuil+lp at free
Tests for proxies, covering #74759.
24
# TODO: What about renaming to bzrlib.tests.transport.http ?
1540.3.22 by Martin Pool
[patch] Add TestCase.assertIsInstance
25
3111.1.4 by Vincent Ladeuil
Select the server depending on the request handler protocol. Add tests.
26
import httplib
3111.1.20 by Vincent Ladeuil
Make all the test pass. Looks like we are HTTP/1.1 compliant.
27
import SimpleHTTPServer
2000.2.2 by John Arbash Meinel
Update the urllib.has test.
28
import socket
2420.1.20 by Vincent Ladeuil
Fix test failure on pqm.
29
import sys
2018.2.9 by Andrew Bennetts
(Andrew Bennetts, Robert Collins) Add test_http.RecordingServer, and use it to
30
import threading
2000.2.2 by John Arbash Meinel
Update the urllib.has test.
31
1553.1.2 by James Henstridge
Add a test to make sure the user-agent header is being sent correctly.
32
import bzrlib
2164.2.22 by Vincent Ladeuil
Take Aaron's review comments into account.
33
from bzrlib import (
3606.4.1 by Andrew Bennetts
Fix NotImplementedError when probing for smart protocol via HTTP.
34
    bzrdir,
5652.1.6 by Vincent Ladeuil
thread is already a python module, avoid confusion and use cethread instead.
35
    cethread,
2900.2.6 by Vincent Ladeuil
Make http aware of authentication config.
36
    config,
5957.2.3 by Vincent Ladeuil
Mask credentials in the -Dhttp logging
37
    debug,
2164.2.22 by Vincent Ladeuil
Take Aaron's review comments into account.
38
    errors,
39
    osutils,
3606.4.1 by Andrew Bennetts
Fix NotImplementedError when probing for smart protocol via HTTP.
40
    remote as _mod_remote,
3052.3.2 by Vincent Ladeuil
Add tests and fix trivial bugs and other typos.
41
    tests,
5957.2.3 by Vincent Ladeuil
Mask credentials in the -Dhttp logging
42
    trace,
3111.1.10 by Vincent Ladeuil
Finish http parameterization, 24 auth tests failing for pycurl (not
43
    transport,
2363.4.12 by Vincent Ladeuil
Take jam's review comments into account. Fix typos, give better
44
    ui,
3995.2.2 by Martin Pool
Cope with read_bundle_from_url deprecation in test_http
45
    )
3102.1.1 by Vincent Ladeuil
Rename bzrlib/test/HTTPTestUtils.py to bzrlib/tests/http_utils.py and fix
46
from bzrlib.tests import (
4913.2.11 by John Arbash Meinel
Convert a bunch more features over to ModuleAvailableFeature
47
    features,
3111.1.4 by Vincent Ladeuil
Select the server depending on the request handler protocol. Add tests.
48
    http_server,
3111.1.7 by Vincent Ladeuil
Further refactoring.
49
    http_utils,
5247.2.5 by Vincent Ladeuil
Some cleanups.
50
    test_server,
3102.1.1 by Vincent Ladeuil
Rename bzrlib/test/HTTPTestUtils.py to bzrlib/tests/http_utils.py and fix
51
    )
5462.3.15 by Martin Pool
Turn variations into scenario lists
52
from bzrlib.tests.scenarios import (
5462.3.21 by Martin Pool
Rename to load_tests_apply_scenarios
53
    load_tests_apply_scenarios,
5462.3.15 by Martin Pool
Turn variations into scenario lists
54
    multiply_scenarios,
5462.3.2 by Martin Pool
Split variations code to bzrlib.tests.variations
55
    )
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
56
from bzrlib.transport import (
57
    http,
58
    remote,
59
    )
2004.3.3 by vila
Better (but still incomplete) design for bogus servers.
60
from bzrlib.transport.http import (
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
61
    _urllib,
2164.2.29 by Vincent Ladeuil
Test the http redirection at the request level even if it's not
62
    _urllib2_wrappers,
2004.3.3 by vila
Better (but still incomplete) design for bogus servers.
63
    )
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
64
65
4913.2.11 by John Arbash Meinel
Convert a bunch more features over to ModuleAvailableFeature
66
if features.pycurl.available():
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
67
    from bzrlib.transport.http._pycurl import PyCurlTransport
68
69
5462.3.21 by Martin Pool
Rename to load_tests_apply_scenarios
70
load_tests = load_tests_apply_scenarios
5462.3.15 by Martin Pool
Turn variations into scenario lists
71
72
73
def vary_by_http_client_implementation():
5462.3.1 by Martin Pool
Split out generation of scenario lists into TestVariations
74
    """Test the two libraries we can use, pycurl and urllib."""
5462.3.15 by Martin Pool
Turn variations into scenario lists
75
    transport_scenarios = [
76
        ('urllib', dict(_transport=_urllib.HttpTransport_urllib,
77
                        _server=http_server.HttpServer_urllib,
78
                        _url_protocol='http+urllib',)),
79
        ]
80
    if features.pycurl.available():
81
        transport_scenarios.append(
82
            ('pycurl', dict(_transport=PyCurlTransport,
83
                            _server=http_server.HttpServer_PyCurl,
84
                            _url_protocol='http+pycurl',)))
85
    return transport_scenarios
86
87
88
def vary_by_http_protocol_version():
5462.3.1 by Martin Pool
Split out generation of scenario lists into TestVariations
89
    """Test on http/1.0 and 1.1"""
5462.3.15 by Martin Pool
Turn variations into scenario lists
90
    return [
91
        ('HTTP/1.0',  dict(_protocol_version='HTTP/1.0')),
92
        ('HTTP/1.1',  dict(_protocol_version='HTTP/1.1')),
93
        ]
94
95
5957.2.1 by Vincent Ladeuil
Tweak the http Authorization tests to make some parts easier to reuse (parametrization mostly).
96
def vary_by_http_auth_scheme():
97
    scenarios = [
98
        ('basic', dict(_auth_server=http_utils.HTTPBasicAuthServer)),
99
        ('digest', dict(_auth_server=http_utils.HTTPDigestAuthServer)),
100
        ('basicdigest',
101
            dict(_auth_server=http_utils.HTTPBasicAndDigestAuthServer)),
102
        ]
103
    # Add some attributes common to all scenarios
104
    for scenario_id, scenario_dict in scenarios:
5957.2.3 by Vincent Ladeuil
Mask credentials in the -Dhttp logging
105
        scenario_dict.update(_auth_header='Authorization',
106
                             _username_prompt_prefix='',
5957.2.1 by Vincent Ladeuil
Tweak the http Authorization tests to make some parts easier to reuse (parametrization mostly).
107
                             _password_prompt_prefix='')
108
    return scenarios
109
110
5462.3.15 by Martin Pool
Turn variations into scenario lists
111
def vary_by_http_proxy_auth_scheme():
5957.2.1 by Vincent Ladeuil
Tweak the http Authorization tests to make some parts easier to reuse (parametrization mostly).
112
    scenarios = [
5957.2.3 by Vincent Ladeuil
Mask credentials in the -Dhttp logging
113
        ('proxy-basic', dict(_auth_server=http_utils.ProxyBasicAuthServer)),
114
        ('proxy-digest', dict(_auth_server=http_utils.ProxyDigestAuthServer)),
115
        ('proxy-basicdigest',
5462.3.15 by Martin Pool
Turn variations into scenario lists
116
            dict(_auth_server=http_utils.ProxyBasicAndDigestAuthServer)),
117
        ]
5957.2.1 by Vincent Ladeuil
Tweak the http Authorization tests to make some parts easier to reuse (parametrization mostly).
118
    # Add some attributes common to all scenarios
119
    for scenario_id, scenario_dict in scenarios:
5957.2.3 by Vincent Ladeuil
Mask credentials in the -Dhttp logging
120
        scenario_dict.update(_auth_header='Proxy-Authorization',
121
                             _username_prompt_prefix='Proxy ',
5957.2.1 by Vincent Ladeuil
Tweak the http Authorization tests to make some parts easier to reuse (parametrization mostly).
122
                             _password_prompt_prefix='Proxy ')
123
    return scenarios
5462.3.15 by Martin Pool
Turn variations into scenario lists
124
125
126
def vary_by_http_activity():
127
    activity_scenarios = [
128
        ('urllib,http', dict(_activity_server=ActivityHTTPServer,
129
                            _transport=_urllib.HttpTransport_urllib,)),
130
        ]
131
    if tests.HTTPSServerFeature.available():
132
        activity_scenarios.append(
133
            ('urllib,https', dict(_activity_server=ActivityHTTPSServer,
134
                                _transport=_urllib.HttpTransport_urllib,)),)
135
    if features.pycurl.available():
136
        activity_scenarios.append(
137
            ('pycurl,http', dict(_activity_server=ActivityHTTPServer,
138
                                _transport=PyCurlTransport,)),)
5462.3.1 by Martin Pool
Split out generation of scenario lists into TestVariations
139
        if tests.HTTPSServerFeature.available():
5462.3.15 by Martin Pool
Turn variations into scenario lists
140
            from bzrlib.tests import (
141
                ssl_certs,
142
                )
143
            # FIXME: Until we have a better way to handle self-signed
144
            # certificates (like allowing them in a test specific
145
            # authentication.conf for example), we need some specialized pycurl
146
            # transport for tests.
147
            class HTTPS_pycurl_transport(PyCurlTransport):
148
149
                def __init__(self, base, _from_transport=None):
150
                    super(HTTPS_pycurl_transport, self).__init__(
151
                        base, _from_transport)
152
                    self.cabundle = str(ssl_certs.build_path('ca.crt'))
153
154
            activity_scenarios.append(
155
                ('pycurl,https', dict(_activity_server=ActivityHTTPSServer,
156
                                    _transport=HTTPS_pycurl_transport,)),)
157
    return activity_scenarios
5462.3.1 by Martin Pool
Split out generation of scenario lists into TestVariations
158
159
2018.2.9 by Andrew Bennetts
(Andrew Bennetts, Robert Collins) Add test_http.RecordingServer, and use it to
160
class FakeManager(object):
1786.1.8 by John Arbash Meinel
[merge] Johan Rydberg test updates
161
1185.40.20 by Robey Pointer
allow user:pass@ info in http urls to be used for auth; this should be easily expandable later to use auth config files
162
    def __init__(self):
163
        self.credentials = []
2004.3.1 by vila
Test ConnectionError exceptions.
164
1185.40.20 by Robey Pointer
allow user:pass@ info in http urls to be used for auth; this should be easily expandable later to use auth config files
165
    def add_password(self, realm, host, username, password):
166
        self.credentials.append([realm, host, username, password])
167
1553.1.2 by James Henstridge
Add a test to make sure the user-agent header is being sent correctly.
168
3111.1.29 by Vincent Ladeuil
Cancel RecordingServer move, that was useless.
169
class RecordingServer(object):
170
    """A fake HTTP server.
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
171
3111.1.29 by Vincent Ladeuil
Cancel RecordingServer move, that was useless.
172
    It records the bytes sent to it, and replies with a 200.
173
    """
174
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
175
    def __init__(self, expect_body_tail=None, scheme=''):
3111.1.29 by Vincent Ladeuil
Cancel RecordingServer move, that was useless.
176
        """Constructor.
177
178
        :type expect_body_tail: str
179
        :param expect_body_tail: a reply won't be sent until this string is
180
            received.
181
        """
182
        self._expect_body_tail = expect_body_tail
183
        self.host = None
184
        self.port = None
185
        self.received_bytes = ''
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
186
        self.scheme = scheme
187
188
    def get_url(self):
189
        return '%s://%s:%s/' % (self.scheme, self.host, self.port)
3111.1.29 by Vincent Ladeuil
Cancel RecordingServer move, that was useless.
190
4934.3.3 by Martin Pool
Rename Server.setUp to Server.start_server
191
    def start_server(self):
3111.1.29 by Vincent Ladeuil
Cancel RecordingServer move, that was useless.
192
        self._sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
193
        self._sock.bind(('127.0.0.1', 0))
194
        self.host, self.port = self._sock.getsockname()
195
        self._ready = threading.Event()
5652.1.1 by Vincent Ladeuil
Split ThreadWithException out of the tests hierarchy.
196
        self._thread = test_server.TestThread(
5652.1.2 by Vincent Ladeuil
Use clearer names.
197
            sync_event=self._ready, target=self._accept_read_and_reply)
3111.1.29 by Vincent Ladeuil
Cancel RecordingServer move, that was useless.
198
        self._thread.start()
4731.2.9 by Vincent Ladeuil
Implement a new -Ethreads to better track the leaks.
199
        if 'threads' in tests.selftest_debug_flags:
5247.5.29 by Vincent Ladeuil
Fixed as per jam's review.
200
            sys.stderr.write('Thread started: %s\n' % (self._thread.ident,))
4731.2.4 by Vincent Ladeuil
No more leaks in http tests.
201
        self._ready.wait()
3111.1.29 by Vincent Ladeuil
Cancel RecordingServer move, that was useless.
202
203
    def _accept_read_and_reply(self):
204
        self._sock.listen(1)
205
        self._ready.set()
5247.2.5 by Vincent Ladeuil
Some cleanups.
206
        conn, address = self._sock.accept()
207
        if self._expect_body_tail is not None:
208
            while not self.received_bytes.endswith(self._expect_body_tail):
209
                self.received_bytes += conn.recv(4096)
210
            conn.sendall('HTTP/1.1 200 OK\r\n')
4731.2.4 by Vincent Ladeuil
No more leaks in http tests.
211
        try:
3111.1.29 by Vincent Ladeuil
Cancel RecordingServer move, that was useless.
212
            self._sock.close()
213
        except socket.error:
214
            # The client may have already closed the socket.
215
            pass
216
4934.3.1 by Martin Pool
Rename Server.tearDown to .stop_server
217
    def stop_server(self):
3111.1.29 by Vincent Ladeuil
Cancel RecordingServer move, that was useless.
218
        try:
4731.2.4 by Vincent Ladeuil
No more leaks in http tests.
219
            # Issue a fake connection to wake up the server and allow it to
220
            # finish quickly
5247.3.7 by Vincent Ladeuil
Provide connect_socket (socket.create_connection) for pythons older than 2.6.
221
            fake_conn = osutils.connect_socket((self.host, self.port))
4731.2.4 by Vincent Ladeuil
No more leaks in http tests.
222
            fake_conn.close()
3111.1.29 by Vincent Ladeuil
Cancel RecordingServer move, that was useless.
223
        except socket.error:
224
            # We might have already closed it.  We don't care.
225
            pass
226
        self.host = None
227
        self.port = None
4731.2.4 by Vincent Ladeuil
No more leaks in http tests.
228
        self._thread.join()
4731.2.9 by Vincent Ladeuil
Implement a new -Ethreads to better track the leaks.
229
        if 'threads' in tests.selftest_debug_flags:
5247.5.29 by Vincent Ladeuil
Fixed as per jam's review.
230
            sys.stderr.write('Thread  joined: %s\n' % (self._thread.ident,))
3111.1.29 by Vincent Ladeuil
Cancel RecordingServer move, that was useless.
231
232
4050.2.2 by Vincent Ladeuil
Ensures all auth handlers correctly parse all auth headers.
233
class TestAuthHeader(tests.TestCase):
234
4284.1.1 by Vincent Ladeuil
Fix wrong realm extraction in http basic authentication (reported
235
    def parse_header(self, header, auth_handler_class=None):
236
        if auth_handler_class is None:
237
            auth_handler_class = _urllib2_wrappers.AbstractAuthHandler
238
        self.auth_handler =  auth_handler_class()
239
        return self.auth_handler._parse_auth_header(header)
4050.2.2 by Vincent Ladeuil
Ensures all auth handlers correctly parse all auth headers.
240
241
    def test_empty_header(self):
242
        scheme, remainder = self.parse_header('')
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
243
        self.assertEqual('', scheme)
4050.2.2 by Vincent Ladeuil
Ensures all auth handlers correctly parse all auth headers.
244
        self.assertIs(None, remainder)
245
246
    def test_negotiate_header(self):
247
        scheme, remainder = self.parse_header('Negotiate')
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
248
        self.assertEqual('negotiate', scheme)
4050.2.2 by Vincent Ladeuil
Ensures all auth handlers correctly parse all auth headers.
249
        self.assertIs(None, remainder)
250
251
    def test_basic_header(self):
252
        scheme, remainder = self.parse_header(
253
            'Basic realm="Thou should not pass"')
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
254
        self.assertEqual('basic', scheme)
255
        self.assertEqual('realm="Thou should not pass"', remainder)
4050.2.2 by Vincent Ladeuil
Ensures all auth handlers correctly parse all auth headers.
256
4284.1.1 by Vincent Ladeuil
Fix wrong realm extraction in http basic authentication (reported
257
    def test_basic_extract_realm(self):
258
        scheme, remainder = self.parse_header(
259
            'Basic realm="Thou should not pass"',
260
            _urllib2_wrappers.BasicAuthHandler)
261
        match, realm = self.auth_handler.extract_realm(remainder)
262
        self.assertTrue(match is not None)
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
263
        self.assertEqual('Thou should not pass', realm)
4284.1.1 by Vincent Ladeuil
Fix wrong realm extraction in http basic authentication (reported
264
4050.2.2 by Vincent Ladeuil
Ensures all auth handlers correctly parse all auth headers.
265
    def test_digest_header(self):
266
        scheme, remainder = self.parse_header(
267
            'Digest realm="Thou should not pass"')
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
268
        self.assertEqual('digest', scheme)
269
        self.assertEqual('realm="Thou should not pass"', remainder)
4050.2.2 by Vincent Ladeuil
Ensures all auth handlers correctly parse all auth headers.
270
271
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
272
class TestHTTPRangeParsing(tests.TestCase):
273
274
    def setUp(self):
275
        super(TestHTTPRangeParsing, self).setUp()
276
        # We focus on range  parsing here and ignore everything else
277
        class RequestHandler(http_server.TestingHTTPRequestHandler):
278
            def setup(self): pass
279
            def handle(self): pass
280
            def finish(self): pass
281
5705.1.2 by Vincent Ladeuil
Fix spurious space and add a test.
282
        self.req_handler = RequestHandler(None, None, None)
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
283
284
    def assertRanges(self, ranges, header, file_size):
285
        self.assertEquals(ranges,
286
                          self.req_handler._parse_ranges(header, file_size))
287
288
    def test_simple_range(self):
289
        self.assertRanges([(0,2)], 'bytes=0-2', 12)
290
291
    def test_tail(self):
292
        self.assertRanges([(8, 11)], 'bytes=-4', 12)
293
294
    def test_tail_bigger_than_file(self):
295
        self.assertRanges([(0, 11)], 'bytes=-99', 12)
296
297
    def test_range_without_end(self):
298
        self.assertRanges([(4, 11)], 'bytes=4-', 12)
299
300
    def test_invalid_ranges(self):
301
        self.assertRanges(None, 'bytes=12-22', 12)
302
        self.assertRanges(None, 'bytes=1-3,12-22', 12)
5705.1.2 by Vincent Ladeuil
Fix spurious space and add a test.
303
        self.assertRanges(None, 'bytes=-', 12)
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
304
305
3111.1.4 by Vincent Ladeuil
Select the server depending on the request handler protocol. Add tests.
306
class TestHTTPServer(tests.TestCase):
307
    """Test the HTTP servers implementations."""
308
309
    def test_invalid_protocol(self):
310
        class BogusRequestHandler(http_server.TestingHTTPRequestHandler):
311
312
            protocol_version = 'HTTP/0.1'
313
5247.3.15 by Vincent Ladeuil
All http tests passing, https failing.
314
        self.assertRaises(httplib.UnknownProtocol,
315
                          http_server.HttpServer, BogusRequestHandler)
3111.1.4 by Vincent Ladeuil
Select the server depending on the request handler protocol. Add tests.
316
3111.1.17 by Vincent Ladeuil
Add tests for the protocol version parameter.
317
    def test_force_invalid_protocol(self):
5247.3.15 by Vincent Ladeuil
All http tests passing, https failing.
318
        self.assertRaises(httplib.UnknownProtocol,
319
                          http_server.HttpServer, protocol_version='HTTP/0.1')
3111.1.17 by Vincent Ladeuil
Add tests for the protocol version parameter.
320
3111.1.4 by Vincent Ladeuil
Select the server depending on the request handler protocol. Add tests.
321
    def test_server_start_and_stop(self):
322
        server = http_server.HttpServer()
5247.2.4 by Vincent Ladeuil
Add an event to ThreadWithException that can be shared with the calling thread.
323
        self.addCleanup(server.stop_server)
4934.3.3 by Martin Pool
Rename Server.setUp to Server.start_server
324
        server.start_server()
5247.3.15 by Vincent Ladeuil
All http tests passing, https failing.
325
        self.assertTrue(server.server is not None)
326
        self.assertTrue(server.server.serving is not None)
5247.6.7 by Vincent Ladeuil
Merge propagate-exceptions into http-leaks resolving conflicts
327
        self.assertTrue(server.server.serving)
3111.1.4 by Vincent Ladeuil
Select the server depending on the request handler protocol. Add tests.
328
329
    def test_create_http_server_one_zero(self):
330
        class RequestHandlerOneZero(http_server.TestingHTTPRequestHandler):
331
332
            protocol_version = 'HTTP/1.0'
333
334
        server = http_server.HttpServer(RequestHandlerOneZero)
4659.1.2 by Robert Collins
Refactor creation and shutdown of test servers to use a common helper,
335
        self.start_server(server)
5247.3.15 by Vincent Ladeuil
All http tests passing, https failing.
336
        self.assertIsInstance(server.server, http_server.TestingHTTPServer)
3111.1.4 by Vincent Ladeuil
Select the server depending on the request handler protocol. Add tests.
337
338
    def test_create_http_server_one_one(self):
339
        class RequestHandlerOneOne(http_server.TestingHTTPRequestHandler):
340
341
            protocol_version = 'HTTP/1.1'
342
343
        server = http_server.HttpServer(RequestHandlerOneOne)
4659.1.2 by Robert Collins
Refactor creation and shutdown of test servers to use a common helper,
344
        self.start_server(server)
5247.3.15 by Vincent Ladeuil
All http tests passing, https failing.
345
        self.assertIsInstance(server.server,
3111.1.17 by Vincent Ladeuil
Add tests for the protocol version parameter.
346
                              http_server.TestingThreadingHTTPServer)
347
348
    def test_create_http_server_force_one_one(self):
349
        class RequestHandlerOneZero(http_server.TestingHTTPRequestHandler):
350
351
            protocol_version = 'HTTP/1.0'
352
353
        server = http_server.HttpServer(RequestHandlerOneZero,
354
                                        protocol_version='HTTP/1.1')
4659.1.2 by Robert Collins
Refactor creation and shutdown of test servers to use a common helper,
355
        self.start_server(server)
5247.3.15 by Vincent Ladeuil
All http tests passing, https failing.
356
        self.assertIsInstance(server.server,
3111.1.17 by Vincent Ladeuil
Add tests for the protocol version parameter.
357
                              http_server.TestingThreadingHTTPServer)
358
359
    def test_create_http_server_force_one_zero(self):
360
        class RequestHandlerOneOne(http_server.TestingHTTPRequestHandler):
361
362
            protocol_version = 'HTTP/1.1'
363
364
        server = http_server.HttpServer(RequestHandlerOneOne,
365
                                        protocol_version='HTTP/1.0')
4659.1.2 by Robert Collins
Refactor creation and shutdown of test servers to use a common helper,
366
        self.start_server(server)
5247.3.15 by Vincent Ladeuil
All http tests passing, https failing.
367
        self.assertIsInstance(server.server,
3111.1.17 by Vincent Ladeuil
Add tests for the protocol version parameter.
368
                              http_server.TestingHTTPServer)
3111.1.4 by Vincent Ladeuil
Select the server depending on the request handler protocol. Add tests.
369
370
2294.3.1 by Vincent Ladeuil
Fix #85305 by issuing an exception instead of a traceback.
371
class TestWithTransport_pycurl(object):
372
    """Test case to inherit from if pycurl is present"""
373
374
    def _get_pycurl_maybe(self):
4913.2.11 by John Arbash Meinel
Convert a bunch more features over to ModuleAvailableFeature
375
        self.requireFeature(features.pycurl)
376
        return PyCurlTransport
2294.3.1 by Vincent Ladeuil
Fix #85305 by issuing an exception instead of a traceback.
377
378
    _transport = property(_get_pycurl_maybe)
379
380
3052.3.2 by Vincent Ladeuil
Add tests and fix trivial bugs and other typos.
381
class TestHttpUrls(tests.TestCase):
1786.1.8 by John Arbash Meinel
[merge] Johan Rydberg test updates
382
2294.3.1 by Vincent Ladeuil
Fix #85305 by issuing an exception instead of a traceback.
383
    # TODO: This should be moved to authorization tests once they
384
    # are written.
2004.1.40 by v.ladeuil+lp at free
Fix the race condition again and correct some small typos to be in
385
1185.40.20 by Robey Pointer
allow user:pass@ info in http urls to be used for auth; this should be easily expandable later to use auth config files
386
    def test_url_parsing(self):
387
        f = FakeManager()
3111.1.20 by Vincent Ladeuil
Make all the test pass. Looks like we are HTTP/1.1 compliant.
388
        url = http.extract_auth('http://example.com', f)
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
389
        self.assertEqual('http://example.com', url)
390
        self.assertEqual(0, len(f.credentials))
3111.1.30 by Vincent Ladeuil
Update NEWS. Some cosmetic changes.
391
        url = http.extract_auth(
4988.4.2 by Martin Pool
Change url to canonical.com or wiki, plus some doc improvements in passing
392
            'http://user:pass@example.com/bzr/bzr.dev', f)
393
        self.assertEqual('http://example.com/bzr/bzr.dev', url)
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
394
        self.assertEqual(1, len(f.credentials))
4988.4.2 by Martin Pool
Change url to canonical.com or wiki, plus some doc improvements in passing
395
        self.assertEqual([None, 'example.com', 'user', 'pass'],
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
396
                         f.credentials[0])
2004.3.1 by vila
Test ConnectionError exceptions.
397
2294.3.1 by Vincent Ladeuil
Fix #85305 by issuing an exception instead of a traceback.
398
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
399
class TestHttpTransportUrls(tests.TestCase):
400
    """Test the http urls."""
401
5462.3.15 by Martin Pool
Turn variations into scenario lists
402
    scenarios = vary_by_http_client_implementation()
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
403
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
404
    def test_abs_url(self):
405
        """Construction of absolute http URLs"""
5560.2.1 by Vincent Ladeuil
Fix the remaining references to http://bazaar-vcs.org (except the explicitly historical ones).
406
        t = self._transport('http://example.com/bzr/bzr.dev/')
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
407
        eq = self.assertEqualDiff
5560.2.1 by Vincent Ladeuil
Fix the remaining references to http://bazaar-vcs.org (except the explicitly historical ones).
408
        eq(t.abspath('.'), 'http://example.com/bzr/bzr.dev')
409
        eq(t.abspath('foo/bar'), 'http://example.com/bzr/bzr.dev/foo/bar')
410
        eq(t.abspath('.bzr'), 'http://example.com/bzr/bzr.dev/.bzr')
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
411
        eq(t.abspath('.bzr/1//2/./3'),
5560.2.1 by Vincent Ladeuil
Fix the remaining references to http://bazaar-vcs.org (except the explicitly historical ones).
412
           'http://example.com/bzr/bzr.dev/.bzr/1/2/3')
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
413
414
    def test_invalid_http_urls(self):
415
        """Trap invalid construction of urls"""
5560.2.1 by Vincent Ladeuil
Fix the remaining references to http://bazaar-vcs.org (except the explicitly historical ones).
416
        self._transport('http://example.com/bzr/bzr.dev/')
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
417
        self.assertRaises(errors.InvalidURL,
418
                          self._transport,
5560.2.1 by Vincent Ladeuil
Fix the remaining references to http://bazaar-vcs.org (except the explicitly historical ones).
419
                          'http://http://example.com/bzr/bzr.dev/')
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
420
421
    def test_http_root_urls(self):
422
        """Construction of URLs from server root"""
5560.2.1 by Vincent Ladeuil
Fix the remaining references to http://bazaar-vcs.org (except the explicitly historical ones).
423
        t = self._transport('http://example.com/')
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
424
        eq = self.assertEqualDiff
425
        eq(t.abspath('.bzr/tree-version'),
5560.2.1 by Vincent Ladeuil
Fix the remaining references to http://bazaar-vcs.org (except the explicitly historical ones).
426
           'http://example.com/.bzr/tree-version')
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
427
428
    def test_http_impl_urls(self):
429
        """There are servers which ask for particular clients to connect"""
430
        server = self._server()
4934.3.3 by Martin Pool
Rename Server.setUp to Server.start_server
431
        server.start_server()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
432
        try:
433
            url = server.get_url()
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
434
            self.assertTrue(url.startswith('%s://' % self._url_protocol))
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
435
        finally:
4934.3.1 by Martin Pool
Rename Server.tearDown to .stop_server
436
            server.stop_server()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
437
438
3111.1.9 by Vincent Ladeuil
Most refactoring regarding parameterization for urllib/pycurl and custom
439
class TestHttps_pycurl(TestWithTransport_pycurl, tests.TestCase):
2294.3.1 by Vincent Ladeuil
Fix #85305 by issuing an exception instead of a traceback.
440
441
    # TODO: This should really be moved into another pycurl
442
    # specific test. When https tests will be implemented, take
443
    # this one into account.
444
    def test_pycurl_without_https_support(self):
445
        """Test that pycurl without SSL do not fail with a traceback.
446
447
        For the purpose of the test, we force pycurl to ignore
448
        https by supplying a fake version_info that do not
449
        support it.
450
        """
4913.2.13 by John Arbash Meinel
Finish the pycurl feature.
451
        self.requireFeature(features.pycurl)
4926.1.1 by Vincent Ladeuil
Fix ModuleFeature() side-effect.
452
        # Import the module locally now that we now it's available.
453
        pycurl = features.pycurl.module
3111.1.14 by Vincent Ladeuil
Fix test leakage.
454
4985.1.5 by Vincent Ladeuil
Deploying the new overrideAttr facility further reduces the complexity
455
        self.overrideAttr(pycurl, 'version_info',
456
                          # Fake the pycurl version_info This was taken from
457
                          # a windows pycurl without SSL (thanks to bialix)
458
                          lambda : (2,
459
                                    '7.13.2',
460
                                    462082,
461
                                    'i386-pc-win32',
462
                                    2576,
463
                                    None,
464
                                    0,
465
                                    None,
466
                                    ('ftp', 'gopher', 'telnet',
467
                                     'dict', 'ldap', 'http', 'file'),
468
                                    None,
469
                                    0,
470
                                    None))
4926.1.1 by Vincent Ladeuil
Fix ModuleFeature() side-effect.
471
        self.assertRaises(errors.DependencyNotPresent, self._transport,
472
                          'https://launchpad.net')
2294.3.1 by Vincent Ladeuil
Fix #85305 by issuing an exception instead of a traceback.
473
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
474
475
class TestHTTPConnections(http_utils.TestCaseWithWebserver):
476
    """Test the http connections."""
477
5462.3.15 by Martin Pool
Turn variations into scenario lists
478
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
479
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
480
        vary_by_http_protocol_version(),
481
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
482
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
483
    def setUp(self):
484
        http_utils.TestCaseWithWebserver.setUp(self)
485
        self.build_tree(['foo/', 'foo/bar'], line_endings='binary',
486
                        transport=self.get_transport())
487
488
    def test_http_has(self):
489
        server = self.get_readonly_server()
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
490
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
491
        self.assertEqual(t.has('foo/bar'), True)
492
        self.assertEqual(len(server.logs), 1)
493
        self.assertContainsRe(server.logs[0],
494
            r'"HEAD /foo/bar HTTP/1.." (200|302) - "-" "bzr/')
495
496
    def test_http_has_not_found(self):
497
        server = self.get_readonly_server()
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
498
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
499
        self.assertEqual(t.has('not-found'), False)
500
        self.assertContainsRe(server.logs[1],
501
            r'"HEAD /not-found HTTP/1.." 404 - "-" "bzr/')
502
503
    def test_http_get(self):
504
        server = self.get_readonly_server()
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
505
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
506
        fp = t.get('foo/bar')
507
        self.assertEqualDiff(
508
            fp.read(),
509
            'contents of foo/bar\n')
510
        self.assertEqual(len(server.logs), 1)
511
        self.assertTrue(server.logs[0].find(
512
            '"GET /foo/bar HTTP/1.1" 200 - "-" "bzr/%s'
513
            % bzrlib.__version__) > -1)
514
515
    def test_has_on_bogus_host(self):
516
        # Get a free address and don't 'accept' on it, so that we
517
        # can be sure there is no http handler there, but set a
518
        # reasonable timeout to not slow down tests too much.
519
        default_timeout = socket.getdefaulttimeout()
520
        try:
521
            socket.setdefaulttimeout(2)
522
            s = socket.socket()
523
            s.bind(('localhost', 0))
524
            t = self._transport('http://%s:%s/' % s.getsockname())
525
            self.assertRaises(errors.ConnectionError, t.has, 'foo/bar')
526
        finally:
527
            socket.setdefaulttimeout(default_timeout)
528
529
530
class TestHttpTransportRegistration(tests.TestCase):
531
    """Test registrations of various http implementations"""
532
5462.3.15 by Martin Pool
Turn variations into scenario lists
533
    scenarios = vary_by_http_client_implementation()
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
534
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
535
    def test_http_registered(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
536
        t = transport.get_transport('%s://foo.com/' % self._url_protocol)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
537
        self.assertIsInstance(t, transport.Transport)
538
        self.assertIsInstance(t, self._transport)
539
540
541
class TestPost(tests.TestCase):
542
5462.3.15 by Martin Pool
Turn variations into scenario lists
543
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
544
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
545
        vary_by_http_protocol_version(),
546
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
547
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
548
    def test_post_body_is_received(self):
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
549
        server = RecordingServer(expect_body_tail='end-of-body',
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
550
                                 scheme=self._url_protocol)
4659.1.2 by Robert Collins
Refactor creation and shutdown of test servers to use a common helper,
551
        self.start_server(server)
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
552
        url = server.get_url()
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
553
        # FIXME: needs a cleanup -- vila 20100611
554
        http_transport = transport.get_transport(url)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
555
        code, response = http_transport._post('abc def end-of-body')
556
        self.assertTrue(
557
            server.received_bytes.startswith('POST /.bzr/smart HTTP/1.'))
558
        self.assertTrue('content-length: 19\r' in server.received_bytes.lower())
5514.1.1 by Vincent Ladeuil
Correctly set the Content-Type header when POSTing.
559
        self.assertTrue('content-type: application/octet-stream\r'
560
                        in server.received_bytes.lower())
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
561
        # The transport should not be assuming that the server can accept
562
        # chunked encoding the first time it connects, because HTTP/1.1, so we
563
        # check for the literal string.
564
        self.assertTrue(
565
            server.received_bytes.endswith('\r\n\r\nabc def end-of-body'))
566
567
3052.3.2 by Vincent Ladeuil
Add tests and fix trivial bugs and other typos.
568
class TestRangeHeader(tests.TestCase):
1786.1.28 by John Arbash Meinel
Update and add tests for the HttpTransportBase.range_header
569
    """Test range_header method"""
570
571
    def check_header(self, value, ranges=[], tail=0):
2520.2.1 by Vincent Ladeuil
First step to fix #115209 use _coalesce_offsets like other transports.
572
        offsets = [ (start, end - start + 1) for start, end in ranges]
3111.1.10 by Vincent Ladeuil
Finish http parameterization, 24 auth tests failing for pycurl (not
573
        coalesce = transport.Transport._coalesce_offsets
2520.2.1 by Vincent Ladeuil
First step to fix #115209 use _coalesce_offsets like other transports.
574
        coalesced = list(coalesce(offsets, limit=0, fudge_factor=0))
3111.1.20 by Vincent Ladeuil
Make all the test pass. Looks like we are HTTP/1.1 compliant.
575
        range_header = http.HttpTransportBase._range_header
2520.2.1 by Vincent Ladeuil
First step to fix #115209 use _coalesce_offsets like other transports.
576
        self.assertEqual(value, range_header(coalesced, tail))
1786.1.28 by John Arbash Meinel
Update and add tests for the HttpTransportBase.range_header
577
578
    def test_range_header_single(self):
2520.2.1 by Vincent Ladeuil
First step to fix #115209 use _coalesce_offsets like other transports.
579
        self.check_header('0-9', ranges=[(0,9)])
580
        self.check_header('100-109', ranges=[(100,109)])
1786.1.28 by John Arbash Meinel
Update and add tests for the HttpTransportBase.range_header
581
582
    def test_range_header_tail(self):
1786.1.36 by John Arbash Meinel
pycurl expects us to just set the range of bytes, not including bytes=
583
        self.check_header('-10', tail=10)
584
        self.check_header('-50', tail=50)
1786.1.28 by John Arbash Meinel
Update and add tests for the HttpTransportBase.range_header
585
586
    def test_range_header_multi(self):
1786.1.36 by John Arbash Meinel
pycurl expects us to just set the range of bytes, not including bytes=
587
        self.check_header('0-9,100-200,300-5000',
1786.1.28 by John Arbash Meinel
Update and add tests for the HttpTransportBase.range_header
588
                          ranges=[(0,9), (100, 200), (300,5000)])
589
590
    def test_range_header_mixed(self):
1786.1.36 by John Arbash Meinel
pycurl expects us to just set the range of bytes, not including bytes=
591
        self.check_header('0-9,300-5000,-50',
1786.1.28 by John Arbash Meinel
Update and add tests for the HttpTransportBase.range_header
592
                          ranges=[(0,9), (300,5000)],
593
                          tail=50)
2018.2.9 by Andrew Bennetts
(Andrew Bennetts, Robert Collins) Add test_http.RecordingServer, and use it to
594
2004.1.15 by v.ladeuil+lp at free
Better design for bogus servers. Both urllib and pycurl pass tests.
595
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
596
class TestSpecificRequestHandler(http_utils.TestCaseWithWebserver):
597
    """Tests a specific request handler.
598
3111.1.31 by Vincent Ladeuil
Review feeback.
599
    Daughter classes are expected to override _req_handler_class
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
600
    """
601
5462.3.15 by Martin Pool
Turn variations into scenario lists
602
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
603
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
604
        vary_by_http_protocol_version(),
605
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
606
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
607
    # Provide a useful default
608
    _req_handler_class = http_server.TestingHTTPRequestHandler
609
610
    def create_transport_readonly_server(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
611
        server = http_server.HttpServer(self._req_handler_class,
612
                                        protocol_version=self._protocol_version)
613
        server._url_protocol = self._url_protocol
614
        return server
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
615
3111.1.20 by Vincent Ladeuil
Make all the test pass. Looks like we are HTTP/1.1 compliant.
616
    def _testing_pycurl(self):
4913.2.11 by John Arbash Meinel
Convert a bunch more features over to ModuleAvailableFeature
617
        # TODO: This is duplicated for lots of the classes in this file
618
        return (features.pycurl.available()
619
                and self._transport == PyCurlTransport)
3111.1.20 by Vincent Ladeuil
Make all the test pass. Looks like we are HTTP/1.1 compliant.
620
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
621
622
class WallRequestHandler(http_server.TestingHTTPRequestHandler):
623
    """Whatever request comes in, close the connection"""
624
4731.2.3 by Vincent Ladeuil
Reduce the leaking http tests from ~200 to ~5.
625
    def _handle_one_request(self):
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
626
        """Handle a single HTTP request, by abruptly closing the connection"""
627
        self.close_connection = 1
628
629
630
class TestWallServer(TestSpecificRequestHandler):
631
    """Tests exceptions during the connection phase"""
632
633
    _req_handler_class = WallRequestHandler
634
635
    def test_http_has(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
636
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
637
        # Unfortunately httplib (see HTTPResponse._read_status
638
        # for details) make no distinction between a closed
639
        # socket and badly formatted status line, so we can't
640
        # just test for ConnectionError, we have to test
4628.1.2 by Vincent Ladeuil
More complete fix.
641
        # InvalidHttpResponse too. And pycurl may raise ConnectionReset
642
        # instead of ConnectionError too.
643
        self.assertRaises(( errors.ConnectionError, errors.ConnectionReset,
644
                            errors.InvalidHttpResponse),
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
645
                          t.has, 'foo/bar')
646
647
    def test_http_get(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
648
        t = self.get_readonly_transport()
4628.1.2 by Vincent Ladeuil
More complete fix.
649
        self.assertRaises((errors.ConnectionError, errors.ConnectionReset,
650
                           errors.InvalidHttpResponse),
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
651
                          t.get, 'foo/bar')
652
653
654
class BadStatusRequestHandler(http_server.TestingHTTPRequestHandler):
655
    """Whatever request comes in, returns a bad status"""
656
657
    def parse_request(self):
658
        """Fakes handling a single HTTP request, returns a bad status"""
659
        ignored = http_server.TestingHTTPRequestHandler.parse_request(self)
3111.1.20 by Vincent Ladeuil
Make all the test pass. Looks like we are HTTP/1.1 compliant.
660
        self.send_response(0, "Bad status")
661
        self.close_connection = 1
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
662
        return False
663
664
665
class TestBadStatusServer(TestSpecificRequestHandler):
666
    """Tests bad status from server."""
667
668
    _req_handler_class = BadStatusRequestHandler
669
670
    def test_http_has(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
671
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
672
        self.assertRaises(errors.InvalidHttpResponse, t.has, 'foo/bar')
673
674
    def test_http_get(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
675
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
676
        self.assertRaises(errors.InvalidHttpResponse, t.get, 'foo/bar')
677
678
679
class InvalidStatusRequestHandler(http_server.TestingHTTPRequestHandler):
3111.1.20 by Vincent Ladeuil
Make all the test pass. Looks like we are HTTP/1.1 compliant.
680
    """Whatever request comes in, returns an invalid status"""
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
681
682
    def parse_request(self):
683
        """Fakes handling a single HTTP request, returns a bad status"""
684
        ignored = http_server.TestingHTTPRequestHandler.parse_request(self)
685
        self.wfile.write("Invalid status line\r\n")
5247.6.6 by Vincent Ladeuil
Closing the connection is what pycurl was waiting for.
686
        # If we don't close the connection pycurl will hang. Since this is a
687
        # stress test we don't *have* to respect the protocol, but we don't
688
        # have to sabotage it too much either.
689
        self.close_connection = True
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
690
        return False
691
692
693
class TestInvalidStatusServer(TestBadStatusServer):
694
    """Tests invalid status from server.
695
696
    Both implementations raises the same error as for a bad status.
697
    """
698
699
    _req_handler_class = InvalidStatusRequestHandler
700
701
702
class BadProtocolRequestHandler(http_server.TestingHTTPRequestHandler):
703
    """Whatever request comes in, returns a bad protocol version"""
704
705
    def parse_request(self):
706
        """Fakes handling a single HTTP request, returns a bad status"""
707
        ignored = http_server.TestingHTTPRequestHandler.parse_request(self)
708
        # Returns an invalid protocol version, but curl just
709
        # ignores it and those cannot be tested.
710
        self.wfile.write("%s %d %s\r\n" % ('HTTP/0.0',
711
                                           404,
712
                                           'Look at my protocol version'))
713
        return False
714
715
716
class TestBadProtocolServer(TestSpecificRequestHandler):
717
    """Tests bad protocol from server."""
718
719
    _req_handler_class = BadProtocolRequestHandler
720
721
    def setUp(self):
4913.2.11 by John Arbash Meinel
Convert a bunch more features over to ModuleAvailableFeature
722
        if self._testing_pycurl():
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
723
            raise tests.TestNotApplicable(
724
                "pycurl doesn't check the protocol version")
725
        super(TestBadProtocolServer, self).setUp()
726
727
    def test_http_has(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
728
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
729
        self.assertRaises(errors.InvalidHttpResponse, t.has, 'foo/bar')
730
731
    def test_http_get(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
732
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
733
        self.assertRaises(errors.InvalidHttpResponse, t.get, 'foo/bar')
734
735
736
class ForbiddenRequestHandler(http_server.TestingHTTPRequestHandler):
737
    """Whatever request comes in, returns a 403 code"""
738
739
    def parse_request(self):
740
        """Handle a single HTTP request, by replying we cannot handle it"""
741
        ignored = http_server.TestingHTTPRequestHandler.parse_request(self)
742
        self.send_error(403)
743
        return False
744
745
746
class TestForbiddenServer(TestSpecificRequestHandler):
747
    """Tests forbidden server"""
748
749
    _req_handler_class = ForbiddenRequestHandler
750
751
    def test_http_has(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
752
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
753
        self.assertRaises(errors.TransportError, t.has, 'foo/bar')
754
755
    def test_http_get(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
756
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
757
        self.assertRaises(errors.TransportError, t.get, 'foo/bar')
758
759
3052.3.2 by Vincent Ladeuil
Add tests and fix trivial bugs and other typos.
760
class TestRecordingServer(tests.TestCase):
2018.2.9 by Andrew Bennetts
(Andrew Bennetts, Robert Collins) Add test_http.RecordingServer, and use it to
761
762
    def test_create(self):
3111.1.29 by Vincent Ladeuil
Cancel RecordingServer move, that was useless.
763
        server = RecordingServer(expect_body_tail=None)
2018.2.9 by Andrew Bennetts
(Andrew Bennetts, Robert Collins) Add test_http.RecordingServer, and use it to
764
        self.assertEqual('', server.received_bytes)
765
        self.assertEqual(None, server.host)
766
        self.assertEqual(None, server.port)
767
4934.3.1 by Martin Pool
Rename Server.tearDown to .stop_server
768
    def test_setUp_and_stop(self):
3111.1.29 by Vincent Ladeuil
Cancel RecordingServer move, that was useless.
769
        server = RecordingServer(expect_body_tail=None)
4934.3.3 by Martin Pool
Rename Server.setUp to Server.start_server
770
        server.start_server()
2018.2.9 by Andrew Bennetts
(Andrew Bennetts, Robert Collins) Add test_http.RecordingServer, and use it to
771
        try:
772
            self.assertNotEqual(None, server.host)
773
            self.assertNotEqual(None, server.port)
774
        finally:
4934.3.1 by Martin Pool
Rename Server.tearDown to .stop_server
775
            server.stop_server()
2018.2.9 by Andrew Bennetts
(Andrew Bennetts, Robert Collins) Add test_http.RecordingServer, and use it to
776
        self.assertEqual(None, server.host)
777
        self.assertEqual(None, server.port)
778
779
    def test_send_receive_bytes(self):
4691.2.1 by Robert Collins
Add stronger test isolation by interception BzrDir.open and checking the thing being opened is known to the test suite.
780
        server = RecordingServer(expect_body_tail='c', scheme='http')
4659.1.2 by Robert Collins
Refactor creation and shutdown of test servers to use a common helper,
781
        self.start_server(server)
2018.2.9 by Andrew Bennetts
(Andrew Bennetts, Robert Collins) Add test_http.RecordingServer, and use it to
782
        sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
783
        sock.connect((server.host, server.port))
5011.3.11 by Andrew Bennetts
Consolidate changes, try to minimise unnecessary changes and tidy up those that kept.
784
        sock.sendall('abc')
785
        self.assertEqual('HTTP/1.1 200 OK\r\n',
786
                         osutils.recv_all(sock, 4096))
2018.2.9 by Andrew Bennetts
(Andrew Bennetts, Robert Collins) Add test_http.RecordingServer, and use it to
787
        self.assertEqual('abc', server.received_bytes)
2004.1.29 by v.ladeuil+lp at free
New tests for http range requests handling.
788
789
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
790
class TestRangeRequestServer(TestSpecificRequestHandler):
791
    """Tests readv requests against server.
792
793
    We test against default "normal" server.
794
    """
795
796
    def setUp(self):
797
        super(TestRangeRequestServer, self).setUp()
798
        self.build_tree_contents([('a', '0123456789')],)
799
800
    def test_readv(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
801
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
802
        l = list(t.readv('a', ((0, 1), (1, 1), (3, 2), (9, 1))))
803
        self.assertEqual(l[0], (0, '0'))
804
        self.assertEqual(l[1], (1, '1'))
805
        self.assertEqual(l[2], (3, '34'))
806
        self.assertEqual(l[3], (9, '9'))
807
808
    def test_readv_out_of_order(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
809
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
810
        l = list(t.readv('a', ((1, 1), (9, 1), (0, 1), (3, 2))))
811
        self.assertEqual(l[0], (1, '1'))
812
        self.assertEqual(l[1], (9, '9'))
813
        self.assertEqual(l[2], (0, '0'))
814
        self.assertEqual(l[3], (3, '34'))
815
816
    def test_readv_invalid_ranges(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
817
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
818
819
        # This is intentionally reading off the end of the file
820
        # since we are sure that it cannot get there
821
        self.assertListRaises((errors.InvalidRange, errors.ShortReadvError,),
822
                              t.readv, 'a', [(1,1), (8,10)])
823
824
        # This is trying to seek past the end of the file, it should
825
        # also raise a special error
826
        self.assertListRaises((errors.InvalidRange, errors.ShortReadvError,),
827
                              t.readv, 'a', [(12,2)])
828
829
    def test_readv_multiple_get_requests(self):
830
        server = self.get_readonly_server()
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
831
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
832
        # force transport to issue multiple requests
833
        t._max_readv_combine = 1
834
        t._max_get_ranges = 1
835
        l = list(t.readv('a', ((0, 1), (1, 1), (3, 2), (9, 1))))
836
        self.assertEqual(l[0], (0, '0'))
837
        self.assertEqual(l[1], (1, '1'))
838
        self.assertEqual(l[2], (3, '34'))
839
        self.assertEqual(l[3], (9, '9'))
840
        # The server should have issued 4 requests
841
        self.assertEqual(4, server.GET_request_nb)
842
843
    def test_readv_get_max_size(self):
844
        server = self.get_readonly_server()
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
845
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
846
        # force transport to issue multiple requests by limiting the number of
847
        # bytes by request. Note that this apply to coalesced offsets only, a
3111.1.28 by Vincent Ladeuil
Fix the multi-ranges http server and add tests.
848
        # single range will keep its size even if bigger than the limit.
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
849
        t._get_max_size = 2
850
        l = list(t.readv('a', ((0, 1), (1, 1), (2, 4), (6, 4))))
851
        self.assertEqual(l[0], (0, '0'))
852
        self.assertEqual(l[1], (1, '1'))
853
        self.assertEqual(l[2], (2, '2345'))
854
        self.assertEqual(l[3], (6, '6789'))
855
        # The server should have issued 3 requests
856
        self.assertEqual(3, server.GET_request_nb)
857
3111.1.28 by Vincent Ladeuil
Fix the multi-ranges http server and add tests.
858
    def test_complete_readv_leave_pipe_clean(self):
859
        server = self.get_readonly_server()
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
860
        t = self.get_readonly_transport()
3111.1.28 by Vincent Ladeuil
Fix the multi-ranges http server and add tests.
861
        # force transport to issue multiple requests
862
        t._get_max_size = 2
5462.3.16 by Martin Pool
pyflakes cleanups
863
        list(t.readv('a', ((0, 1), (1, 1), (2, 4), (6, 4))))
3111.1.28 by Vincent Ladeuil
Fix the multi-ranges http server and add tests.
864
        # The server should have issued 3 requests
865
        self.assertEqual(3, server.GET_request_nb)
866
        self.assertEqual('0123456789', t.get_bytes('a'))
867
        self.assertEqual(4, server.GET_request_nb)
868
869
    def test_incomplete_readv_leave_pipe_clean(self):
870
        server = self.get_readonly_server()
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
871
        t = self.get_readonly_transport()
3111.1.28 by Vincent Ladeuil
Fix the multi-ranges http server and add tests.
872
        # force transport to issue multiple requests
873
        t._get_max_size = 2
874
        # Don't collapse readv results into a list so that we leave unread
875
        # bytes on the socket
876
        ireadv = iter(t.readv('a', ((0, 1), (1, 1), (2, 4), (6, 4))))
877
        self.assertEqual((0, '0'), ireadv.next())
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
878
        # The server should have issued one request so far
3111.1.28 by Vincent Ladeuil
Fix the multi-ranges http server and add tests.
879
        self.assertEqual(1, server.GET_request_nb)
880
        self.assertEqual('0123456789', t.get_bytes('a'))
881
        # get_bytes issued an additional request, the readv pending ones are
882
        # lost
883
        self.assertEqual(2, server.GET_request_nb)
884
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
885
886
class SingleRangeRequestHandler(http_server.TestingHTTPRequestHandler):
887
    """Always reply to range request as if they were single.
888
889
    Don't be explicit about it, just to annoy the clients.
890
    """
891
892
    def get_multiple_ranges(self, file, file_size, ranges):
893
        """Answer as if it was a single range request and ignores the rest"""
894
        (start, end) = ranges[0]
895
        return self.get_single_range(file, file_size, start, end)
896
897
898
class TestSingleRangeRequestServer(TestRangeRequestServer):
899
    """Test readv against a server which accept only single range requests"""
900
901
    _req_handler_class = SingleRangeRequestHandler
902
903
904
class SingleOnlyRangeRequestHandler(http_server.TestingHTTPRequestHandler):
905
    """Only reply to simple range requests, errors out on multiple"""
906
907
    def get_multiple_ranges(self, file, file_size, ranges):
908
        """Refuses the multiple ranges request"""
909
        if len(ranges) > 1:
910
            file.close()
911
            self.send_error(416, "Requested range not satisfiable")
912
            return
913
        (start, end) = ranges[0]
914
        return self.get_single_range(file, file_size, start, end)
915
916
917
class TestSingleOnlyRangeRequestServer(TestRangeRequestServer):
918
    """Test readv against a server which only accept single range requests"""
919
920
    _req_handler_class = SingleOnlyRangeRequestHandler
921
922
923
class NoRangeRequestHandler(http_server.TestingHTTPRequestHandler):
924
    """Ignore range requests without notice"""
925
926
    def do_GET(self):
927
        # Update the statistics
928
        self.server.test_case_server.GET_request_nb += 1
929
        # Just bypass the range handling done by TestingHTTPRequestHandler
930
        return SimpleHTTPServer.SimpleHTTPRequestHandler.do_GET(self)
931
932
933
class TestNoRangeRequestServer(TestRangeRequestServer):
934
    """Test readv against a server which do not accept range requests"""
935
936
    _req_handler_class = NoRangeRequestHandler
937
938
3111.1.28 by Vincent Ladeuil
Fix the multi-ranges http server and add tests.
939
class MultipleRangeWithoutContentLengthRequestHandler(
940
    http_server.TestingHTTPRequestHandler):
941
    """Reply to multiple range requests without content length header."""
942
943
    def get_multiple_ranges(self, file, file_size, ranges):
944
        self.send_response(206)
945
        self.send_header('Accept-Ranges', 'bytes')
5462.3.16 by Martin Pool
pyflakes cleanups
946
        # XXX: this is strange; the 'random' name below seems undefined and
5462.3.19 by Martin Pool
Mention bug 658773 in comment
947
        # yet the tests pass -- mbp 2010-10-11 bug 658773
3111.1.28 by Vincent Ladeuil
Fix the multi-ranges http server and add tests.
948
        boundary = "%d" % random.randint(0,0x7FFFFFFF)
949
        self.send_header("Content-Type",
950
                         "multipart/byteranges; boundary=%s" % boundary)
951
        self.end_headers()
952
        for (start, end) in ranges:
953
            self.wfile.write("--%s\r\n" % boundary)
954
            self.send_header("Content-type", 'application/octet-stream')
955
            self.send_header("Content-Range", "bytes %d-%d/%d" % (start,
956
                                                                  end,
957
                                                                  file_size))
958
            self.end_headers()
959
            self.send_range_content(file, start, end - start + 1)
960
        # Final boundary
961
        self.wfile.write("--%s\r\n" % boundary)
962
963
964
class TestMultipleRangeWithoutContentLengthServer(TestRangeRequestServer):
965
966
    _req_handler_class = MultipleRangeWithoutContentLengthRequestHandler
967
3146.3.2 by Vincent Ladeuil
Fix #179368 by keeping the current range hint on ShortReadvErrors.
968
969
class TruncatedMultipleRangeRequestHandler(
970
    http_server.TestingHTTPRequestHandler):
971
    """Reply to multiple range requests truncating the last ones.
972
973
    This server generates responses whose Content-Length describes all the
974
    ranges, but fail to include the last ones leading to client short reads.
975
    This has been observed randomly with lighttpd (bug #179368).
976
    """
977
978
    _truncated_ranges = 2
979
980
    def get_multiple_ranges(self, file, file_size, ranges):
981
        self.send_response(206)
982
        self.send_header('Accept-Ranges', 'bytes')
983
        boundary = 'tagada'
984
        self.send_header('Content-Type',
985
                         'multipart/byteranges; boundary=%s' % boundary)
986
        boundary_line = '--%s\r\n' % boundary
987
        # Calculate the Content-Length
988
        content_length = 0
989
        for (start, end) in ranges:
990
            content_length += len(boundary_line)
991
            content_length += self._header_line_length(
992
                'Content-type', 'application/octet-stream')
993
            content_length += self._header_line_length(
994
                'Content-Range', 'bytes %d-%d/%d' % (start, end, file_size))
995
            content_length += len('\r\n') # end headers
996
            content_length += end - start # + 1
997
        content_length += len(boundary_line)
998
        self.send_header('Content-length', content_length)
999
        self.end_headers()
1000
1001
        # Send the multipart body
1002
        cur = 0
1003
        for (start, end) in ranges:
1004
            self.wfile.write(boundary_line)
1005
            self.send_header('Content-type', 'application/octet-stream')
1006
            self.send_header('Content-Range', 'bytes %d-%d/%d'
1007
                             % (start, end, file_size))
1008
            self.end_headers()
1009
            if cur + self._truncated_ranges >= len(ranges):
1010
                # Abruptly ends the response and close the connection
1011
                self.close_connection = 1
1012
                return
1013
            self.send_range_content(file, start, end - start + 1)
1014
            cur += 1
5504.4.1 by Vincent Ladeuil
Fix http test spurious failures and get rid of some useless messages in log.
1015
        # Final boundary
3146.3.2 by Vincent Ladeuil
Fix #179368 by keeping the current range hint on ShortReadvErrors.
1016
        self.wfile.write(boundary_line)
1017
1018
1019
class TestTruncatedMultipleRangeServer(TestSpecificRequestHandler):
1020
1021
    _req_handler_class = TruncatedMultipleRangeRequestHandler
1022
1023
    def setUp(self):
1024
        super(TestTruncatedMultipleRangeServer, self).setUp()
1025
        self.build_tree_contents([('a', '0123456789')],)
1026
1027
    def test_readv_with_short_reads(self):
1028
        server = self.get_readonly_server()
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1029
        t = self.get_readonly_transport()
3146.3.2 by Vincent Ladeuil
Fix #179368 by keeping the current range hint on ShortReadvErrors.
1030
        # Force separate ranges for each offset
1031
        t._bytes_to_read_before_seek = 0
1032
        ireadv = iter(t.readv('a', ((0, 1), (2, 1), (4, 2), (9, 1))))
1033
        self.assertEqual((0, '0'), ireadv.next())
1034
        self.assertEqual((2, '2'), ireadv.next())
1035
        if not self._testing_pycurl():
1036
            # Only one request have been issued so far (except for pycurl that
1037
            # try to read the whole response at once)
1038
            self.assertEqual(1, server.GET_request_nb)
1039
        self.assertEqual((4, '45'), ireadv.next())
1040
        self.assertEqual((9, '9'), ireadv.next())
1041
        # Both implementations issue 3 requests but:
1042
        # - urllib does two multiple (4 ranges, then 2 ranges) then a single
1043
        #   range,
1044
        # - pycurl does two multiple (4 ranges, 4 ranges) then a single range
1045
        self.assertEqual(3, server.GET_request_nb)
1046
        # Finally the client have tried a single range request and stays in
1047
        # that mode
1048
        self.assertEqual('single', t._range_hint)
1049
5504.4.1 by Vincent Ladeuil
Fix http test spurious failures and get rid of some useless messages in log.
1050
5609.52.1 by Martin Pool
Cope with buggy squids interrupting the response before a mime multipart boundary
1051
class TruncatedBeforeBoundaryRequestHandler(
1052
    http_server.TestingHTTPRequestHandler):
1053
    """Truncation before a boundary, like in bug 198646"""
1054
1055
    _truncated_ranges = 1
1056
1057
    def get_multiple_ranges(self, file, file_size, ranges):
1058
        self.send_response(206)
1059
        self.send_header('Accept-Ranges', 'bytes')
1060
        boundary = 'tagada'
1061
        self.send_header('Content-Type',
1062
                         'multipart/byteranges; boundary=%s' % boundary)
1063
        boundary_line = '--%s\r\n' % boundary
1064
        # Calculate the Content-Length
1065
        content_length = 0
1066
        for (start, end) in ranges:
1067
            content_length += len(boundary_line)
1068
            content_length += self._header_line_length(
1069
                'Content-type', 'application/octet-stream')
1070
            content_length += self._header_line_length(
1071
                'Content-Range', 'bytes %d-%d/%d' % (start, end, file_size))
1072
            content_length += len('\r\n') # end headers
1073
            content_length += end - start # + 1
1074
        content_length += len(boundary_line)
1075
        self.send_header('Content-length', content_length)
1076
        self.end_headers()
1077
1078
        # Send the multipart body
1079
        cur = 0
1080
        for (start, end) in ranges:
1081
            if cur + self._truncated_ranges >= len(ranges):
1082
                # Abruptly ends the response and close the connection
1083
                self.close_connection = 1
1084
                return
1085
            self.wfile.write(boundary_line)
1086
            self.send_header('Content-type', 'application/octet-stream')
1087
            self.send_header('Content-Range', 'bytes %d-%d/%d'
1088
                             % (start, end, file_size))
1089
            self.end_headers()
1090
            self.send_range_content(file, start, end - start + 1)
1091
            cur += 1
1092
        # Final boundary
1093
        self.wfile.write(boundary_line)
1094
1095
1096
class TestTruncatedBeforeBoundary(TestSpecificRequestHandler):
1097
    """Tests the case of bug 198646, disconnecting before a boundary."""
1098
1099
    _req_handler_class = TruncatedBeforeBoundaryRequestHandler
1100
1101
    def setUp(self):
1102
        super(TestTruncatedBeforeBoundary, self).setUp()
1103
        self.build_tree_contents([('a', '0123456789')],)
1104
1105
    def test_readv_with_short_reads(self):
1106
        server = self.get_readonly_server()
1107
        t = self.get_readonly_transport()
1108
        # Force separate ranges for each offset
1109
        t._bytes_to_read_before_seek = 0
1110
        ireadv = iter(t.readv('a', ((0, 1), (2, 1), (4, 2), (9, 1))))
1111
        self.assertEqual((0, '0'), ireadv.next())
1112
        self.assertEqual((2, '2'), ireadv.next())
1113
        self.assertEqual((4, '45'), ireadv.next())
1114
        self.assertEqual((9, '9'), ireadv.next())
1115
1116
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1117
class LimitedRangeRequestHandler(http_server.TestingHTTPRequestHandler):
1118
    """Errors out when range specifiers exceed the limit"""
1119
1120
    def get_multiple_ranges(self, file, file_size, ranges):
1121
        """Refuses the multiple ranges request"""
1122
        tcs = self.server.test_case_server
1123
        if tcs.range_limit is not None and len(ranges) > tcs.range_limit:
1124
            file.close()
1125
            # Emulate apache behavior
1126
            self.send_error(400, "Bad Request")
1127
            return
1128
        return http_server.TestingHTTPRequestHandler.get_multiple_ranges(
1129
            self, file, file_size, ranges)
1130
1131
1132
class LimitedRangeHTTPServer(http_server.HttpServer):
1133
    """An HttpServer erroring out on requests with too much range specifiers"""
1134
1135
    def __init__(self, request_handler=LimitedRangeRequestHandler,
1136
                 protocol_version=None,
1137
                 range_limit=None):
1138
        http_server.HttpServer.__init__(self, request_handler,
1139
                                        protocol_version=protocol_version)
1140
        self.range_limit = range_limit
1141
1142
1143
class TestLimitedRangeRequestServer(http_utils.TestCaseWithWebserver):
1144
    """Tests readv requests against a server erroring out on too much ranges."""
1145
5462.3.15 by Martin Pool
Turn variations into scenario lists
1146
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1147
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1148
        vary_by_http_protocol_version(),
1149
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1150
3111.1.22 by Vincent Ladeuil
Rework TestingHTTPServer classes, fix test bug.
1151
    # Requests with more range specifiers will error out
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1152
    range_limit = 3
1153
1154
    def create_transport_readonly_server(self):
1155
        return LimitedRangeHTTPServer(range_limit=self.range_limit,
1156
                                      protocol_version=self._protocol_version)
1157
1158
    def setUp(self):
1159
        http_utils.TestCaseWithWebserver.setUp(self)
1160
        # We need to manipulate ranges that correspond to real chunks in the
1161
        # response, so we build a content appropriately.
1162
        filler = ''.join(['abcdefghij' for x in range(102)])
1163
        content = ''.join(['%04d' % v + filler for v in range(16)])
1164
        self.build_tree_contents([('a', content)],)
1165
1166
    def test_few_ranges(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1167
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1168
        l = list(t.readv('a', ((0, 4), (1024, 4), )))
1169
        self.assertEqual(l[0], (0, '0000'))
1170
        self.assertEqual(l[1], (1024, '0001'))
1171
        self.assertEqual(1, self.get_readonly_server().GET_request_nb)
1172
1173
    def test_more_ranges(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1174
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1175
        l = list(t.readv('a', ((0, 4), (1024, 4), (4096, 4), (8192, 4))))
1176
        self.assertEqual(l[0], (0, '0000'))
1177
        self.assertEqual(l[1], (1024, '0001'))
1178
        self.assertEqual(l[2], (4096, '0004'))
1179
        self.assertEqual(l[3], (8192, '0008'))
1180
        # The server will refuse to serve the first request (too much ranges),
3199.1.2 by Vincent Ladeuil
Fix two more leaked log files.
1181
        # a second request will succeed.
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1182
        self.assertEqual(2, self.get_readonly_server().GET_request_nb)
1183
1184
3052.3.2 by Vincent Ladeuil
Add tests and fix trivial bugs and other typos.
1185
class TestHttpProxyWhiteBox(tests.TestCase):
2298.7.1 by Vincent Ladeuil
Fix bug #87765: proxy env variables without scheme should cause
1186
    """Whitebox test proxy http authorization.
1187
2420.1.3 by Vincent Ladeuil
Implement http proxy basic authentication.
1188
    Only the urllib implementation is tested here.
2298.7.1 by Vincent Ladeuil
Fix bug #87765: proxy env variables without scheme should cause
1189
    """
2273.2.2 by v.ladeuil+lp at free
Really fix bug #83954, with tests.
1190
1191
    def _proxied_request(self):
3111.1.20 by Vincent Ladeuil
Make all the test pass. Looks like we are HTTP/1.1 compliant.
1192
        handler = _urllib2_wrappers.ProxyHandler()
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1193
        request = _urllib2_wrappers.Request('GET', 'http://baz/buzzle')
2273.2.2 by v.ladeuil+lp at free
Really fix bug #83954, with tests.
1194
        handler.set_proxy(request, 'http')
1195
        return request
1196
5639.2.2 by Vincent Ladeuil
Add tests and comments to clarify the feature.
1197
    def assertEvaluateProxyBypass(self, expected, host, no_proxy):
1198
        handler = _urllib2_wrappers.ProxyHandler()
1199
        self.assertEquals(expected,
1200
                          handler.evaluate_proxy_bypass(host, no_proxy))
1201
2273.2.2 by v.ladeuil+lp at free
Really fix bug #83954, with tests.
1202
    def test_empty_user(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1203
        self.overrideEnv('http_proxy', 'http://bar.com')
2273.2.2 by v.ladeuil+lp at free
Really fix bug #83954, with tests.
1204
        request = self._proxied_request()
1205
        self.assertFalse(request.headers.has_key('Proxy-authorization'))
1206
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1207
    def test_user_with_at(self):
1208
        self.overrideEnv('http_proxy',
1209
                         'http://username@domain:password@proxy_host:1234')
1210
        request = self._proxied_request()
1211
        self.assertFalse(request.headers.has_key('Proxy-authorization'))
1212
2298.7.1 by Vincent Ladeuil
Fix bug #87765: proxy env variables without scheme should cause
1213
    def test_invalid_proxy(self):
1214
        """A proxy env variable without scheme"""
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1215
        self.overrideEnv('http_proxy', 'host:1234')
2298.7.1 by Vincent Ladeuil
Fix bug #87765: proxy env variables without scheme should cause
1216
        self.assertRaises(errors.InvalidURL, self._proxied_request)
2273.2.2 by v.ladeuil+lp at free
Really fix bug #83954, with tests.
1217
5639.2.2 by Vincent Ladeuil
Add tests and comments to clarify the feature.
1218
    def test_evaluate_proxy_bypass_true(self):
1219
        """The host is not proxied"""
1220
        self.assertEvaluateProxyBypass(True, 'example.com', 'example.com')
1221
        self.assertEvaluateProxyBypass(True, 'bzr.example.com', '*example.com')
1222
1223
    def test_evaluate_proxy_bypass_false(self):
1224
        """The host is proxied"""
1225
        self.assertEvaluateProxyBypass(False, 'bzr.example.com', None)
1226
1227
    def test_evaluate_proxy_bypass_unknown(self):
1228
        """The host is not explicitly proxied"""
1229
        self.assertEvaluateProxyBypass(None, 'example.com', 'not.example.com')
1230
        self.assertEvaluateProxyBypass(None, 'bzr.example.com', 'example.com')
1231
1232
    def test_evaluate_proxy_bypass_empty_entries(self):
1233
        """Ignore empty entries"""
1234
        self.assertEvaluateProxyBypass(None, 'example.com', '')
1235
        self.assertEvaluateProxyBypass(None, 'example.com', ',')
1236
        self.assertEvaluateProxyBypass(None, 'example.com', 'foo,,bar')
5639.2.1 by Martin Pool
Empty entries in the ``NO_PROXY`` variable are no longer treated as matching every host.
1237
2273.2.2 by v.ladeuil+lp at free
Really fix bug #83954, with tests.
1238
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1239
class TestProxyHttpServer(http_utils.TestCaseWithTwoWebservers):
1240
    """Tests proxy server.
1241
1242
    Be aware that we do not setup a real proxy here. Instead, we
1243
    check that the *connection* goes through the proxy by serving
1244
    different content (the faked proxy server append '-proxied'
1245
    to the file names).
1246
    """
1247
5462.3.15 by Martin Pool
Turn variations into scenario lists
1248
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1249
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1250
        vary_by_http_protocol_version(),
1251
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1252
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1253
    # FIXME: We don't have an https server available, so we don't
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1254
    # test https connections. --vila toolongago
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1255
1256
    def setUp(self):
1257
        super(TestProxyHttpServer, self).setUp()
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1258
        self.transport_secondary_server = http_utils.ProxyServer
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1259
        self.build_tree_contents([('foo', 'contents of foo\n'),
1260
                                  ('foo-proxied', 'proxied contents of foo\n')])
1261
        # Let's setup some attributes for tests
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1262
        server = self.get_readonly_server()
1263
        self.server_host_port = '%s:%d' % (server.host, server.port)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1264
        if self._testing_pycurl():
1265
            # Oh my ! pycurl does not check for the port as part of
1266
            # no_proxy :-( So we just test the host part
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1267
            self.no_proxy_host = server.host
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1268
        else:
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1269
            self.no_proxy_host = self.server_host_port
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1270
        # The secondary server is the proxy
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1271
        self.proxy_url = self.get_secondary_url()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1272
1273
    def _testing_pycurl(self):
4913.2.11 by John Arbash Meinel
Convert a bunch more features over to ModuleAvailableFeature
1274
        # TODO: This is duplicated for lots of the classes in this file
1275
        return (features.pycurl.available()
1276
                and self._transport == PyCurlTransport)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1277
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1278
    def assertProxied(self):
1279
        t = self.get_readonly_transport()
1280
        self.assertEqual('proxied contents of foo\n', t.get('foo').read())
1281
1282
    def assertNotProxied(self):
1283
        t = self.get_readonly_transport()
1284
        self.assertEqual('contents of foo\n', t.get('foo').read())
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1285
1286
    def test_http_proxy(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1287
        self.overrideEnv('http_proxy', self.proxy_url)
1288
        self.assertProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1289
1290
    def test_HTTP_PROXY(self):
1291
        if self._testing_pycurl():
1292
            # pycurl does not check HTTP_PROXY for security reasons
1293
            # (for use in a CGI context that we do not care
1294
            # about. Should we ?)
1295
            raise tests.TestNotApplicable(
1296
                'pycurl does not check HTTP_PROXY for security reasons')
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1297
        self.overrideEnv('HTTP_PROXY', self.proxy_url)
1298
        self.assertProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1299
1300
    def test_all_proxy(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1301
        self.overrideEnv('all_proxy', self.proxy_url)
1302
        self.assertProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1303
1304
    def test_ALL_PROXY(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1305
        self.overrideEnv('ALL_PROXY', self.proxy_url)
1306
        self.assertProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1307
1308
    def test_http_proxy_with_no_proxy(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1309
        self.overrideEnv('no_proxy', self.no_proxy_host)
1310
        self.overrideEnv('http_proxy', self.proxy_url)
1311
        self.assertNotProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1312
1313
    def test_HTTP_PROXY_with_NO_PROXY(self):
1314
        if self._testing_pycurl():
1315
            raise tests.TestNotApplicable(
1316
                'pycurl does not check HTTP_PROXY for security reasons')
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1317
        self.overrideEnv('NO_PROXY', self.no_proxy_host)
1318
        self.overrideEnv('HTTP_PROXY', self.proxy_url)
1319
        self.assertNotProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1320
1321
    def test_all_proxy_with_no_proxy(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1322
        self.overrideEnv('no_proxy', self.no_proxy_host)
1323
        self.overrideEnv('all_proxy', self.proxy_url)
1324
        self.assertNotProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1325
1326
    def test_ALL_PROXY_with_NO_PROXY(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1327
        self.overrideEnv('NO_PROXY', self.no_proxy_host)
1328
        self.overrideEnv('ALL_PROXY', self.proxy_url)
1329
        self.assertNotProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1330
1331
    def test_http_proxy_without_scheme(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1332
        self.overrideEnv('http_proxy', self.server_host_port)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1333
        if self._testing_pycurl():
1334
            # pycurl *ignores* invalid proxy env variables. If that ever change
1335
            # in the future, this test will fail indicating that pycurl do not
1336
            # ignore anymore such variables.
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1337
            self.assertNotProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1338
        else:
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1339
            self.assertRaises(errors.InvalidURL, self.assertProxied)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1340
1341
1342
class TestRanges(http_utils.TestCaseWithWebserver):
1343
    """Test the Range header in GET methods."""
1344
5462.3.15 by Martin Pool
Turn variations into scenario lists
1345
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1346
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1347
        vary_by_http_protocol_version(),
1348
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1349
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1350
    def setUp(self):
1351
        http_utils.TestCaseWithWebserver.setUp(self)
1352
        self.build_tree_contents([('a', '0123456789')],)
1353
3111.1.22 by Vincent Ladeuil
Rework TestingHTTPServer classes, fix test bug.
1354
    def create_transport_readonly_server(self):
1355
        return http_server.HttpServer(protocol_version=self._protocol_version)
1356
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1357
    def _file_contents(self, relpath, ranges):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1358
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1359
        offsets = [ (start, end - start + 1) for start, end in ranges]
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1360
        coalesce = t._coalesce_offsets
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1361
        coalesced = list(coalesce(offsets, limit=0, fudge_factor=0))
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1362
        code, data = t._get(relpath, coalesced)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1363
        self.assertTrue(code in (200, 206),'_get returns: %d' % code)
1364
        for start, end in ranges:
1365
            data.seek(start)
1366
            yield data.read(end - start + 1)
1367
1368
    def _file_tail(self, relpath, tail_amount):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1369
        t = self.get_readonly_transport()
1370
        code, data = t._get(relpath, [], tail_amount)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1371
        self.assertTrue(code in (200, 206),'_get returns: %d' % code)
1372
        data.seek(-tail_amount, 2)
1373
        return data.read(tail_amount)
1374
1375
    def test_range_header(self):
1376
        # Valid ranges
1377
        map(self.assertEqual,['0', '234'],
1378
            list(self._file_contents('a', [(0,0), (2,4)])),)
1379
1380
    def test_range_header_tail(self):
1381
        self.assertEqual('789', self._file_tail('a', 3))
1382
1383
    def test_syntactically_invalid_range_header(self):
1384
        self.assertListRaises(errors.InvalidHttpRange,
1385
                          self._file_contents, 'a', [(4, 3)])
1386
1387
    def test_semantically_invalid_range_header(self):
1388
        self.assertListRaises(errors.InvalidHttpRange,
1389
                          self._file_contents, 'a', [(42, 128)])
1390
1391
1392
class TestHTTPRedirections(http_utils.TestCaseWithRedirectedWebserver):
1393
    """Test redirection between http servers."""
1394
5462.3.15 by Martin Pool
Turn variations into scenario lists
1395
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1396
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1397
        vary_by_http_protocol_version(),
1398
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1399
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1400
    def setUp(self):
1401
        super(TestHTTPRedirections, self).setUp()
1402
        self.build_tree_contents([('a', '0123456789'),
1403
                                  ('bundle',
1404
                                  '# Bazaar revision bundle v0.9\n#\n')
1405
                                  ],)
1406
1407
    def test_redirected(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1408
        self.assertRaises(errors.RedirectRequested,
1409
                          self.get_old_transport().get, 'a')
1410
        self.assertEqual('0123456789', self.get_new_transport().get('a').read())
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1411
1412
1413
class RedirectedRequest(_urllib2_wrappers.Request):
1414
    """Request following redirections. """
1415
1416
    init_orig = _urllib2_wrappers.Request.__init__
1417
1418
    def __init__(self, method, url, *args, **kwargs):
1419
        """Constructor.
1420
1421
        """
1422
        # Since the tests using this class will replace
1423
        # _urllib2_wrappers.Request, we can't just call the base class __init__
1424
        # or we'll loop.
4208.3.2 by Andrew Bennetts
Fix one test failure in test_http under Python 2.7a0.
1425
        RedirectedRequest.init_orig(self, method, url, *args, **kwargs)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1426
        self.follow_redirections = True
1427
1428
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
1429
def install_redirected_request(test):
4985.1.5 by Vincent Ladeuil
Deploying the new overrideAttr facility further reduces the complexity
1430
    test.overrideAttr(_urllib2_wrappers, 'Request', RedirectedRequest)
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
1431
1432
5247.2.26 by Vincent Ladeuil
Fix http redirection socket leaks.
1433
def cleanup_http_redirection_connections(test):
1434
    # Some sockets are opened but never seen by _urllib, so we trap them at
1435
    # the _urllib2_wrappers level to be able to clean them up.
1436
    def socket_disconnect(sock):
1437
        try:
1438
            sock.shutdown(socket.SHUT_RDWR)
1439
            sock.close()
1440
        except socket.error:
1441
            pass
1442
    def connect(connection):
1443
        test.http_connect_orig(connection)
1444
        test.addCleanup(socket_disconnect, connection.sock)
1445
    test.http_connect_orig = test.overrideAttr(
1446
        _urllib2_wrappers.HTTPConnection, 'connect', connect)
1447
    def connect(connection):
1448
        test.https_connect_orig(connection)
1449
        test.addCleanup(socket_disconnect, connection.sock)
1450
    test.https_connect_orig = test.overrideAttr(
1451
        _urllib2_wrappers.HTTPSConnection, 'connect', connect)
1452
1453
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1454
class TestHTTPSilentRedirections(http_utils.TestCaseWithRedirectedWebserver):
1455
    """Test redirections.
1456
1457
    http implementations do not redirect silently anymore (they
1458
    do not redirect at all in fact). The mechanism is still in
1459
    place at the _urllib2_wrappers.Request level and these tests
1460
    exercise it.
1461
1462
    For the pycurl implementation
1463
    the redirection have been deleted as we may deprecate pycurl
1464
    and I have no place to keep a working implementation.
1465
    -- vila 20070212
1466
    """
1467
5462.3.15 by Martin Pool
Turn variations into scenario lists
1468
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1469
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1470
        vary_by_http_protocol_version(),
1471
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1472
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1473
    def setUp(self):
4913.2.11 by John Arbash Meinel
Convert a bunch more features over to ModuleAvailableFeature
1474
        if (features.pycurl.available()
1475
            and self._transport == PyCurlTransport):
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1476
            raise tests.TestNotApplicable(
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1477
                "pycurl doesn't redirect silently anymore")
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1478
        super(TestHTTPSilentRedirections, self).setUp()
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
1479
        install_redirected_request(self)
5247.2.26 by Vincent Ladeuil
Fix http redirection socket leaks.
1480
        cleanup_http_redirection_connections(self)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1481
        self.build_tree_contents([('a','a'),
1482
                                  ('1/',),
1483
                                  ('1/a', 'redirected once'),
1484
                                  ('2/',),
1485
                                  ('2/a', 'redirected twice'),
1486
                                  ('3/',),
1487
                                  ('3/a', 'redirected thrice'),
1488
                                  ('4/',),
1489
                                  ('4/a', 'redirected 4 times'),
1490
                                  ('5/',),
1491
                                  ('5/a', 'redirected 5 times'),
1492
                                  ],)
1493
1494
    def test_one_redirection(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1495
        t = self.get_old_transport()
1496
        req = RedirectedRequest('GET', t._remote_path('a'))
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1497
        new_prefix = 'http://%s:%s' % (self.new_server.host,
1498
                                       self.new_server.port)
1499
        self.old_server.redirections = \
1500
            [('(.*)', r'%s/1\1' % (new_prefix), 301),]
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1501
        self.assertEqual('redirected once', t._perform(req).read())
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1502
1503
    def test_five_redirections(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1504
        t = self.get_old_transport()
1505
        req = RedirectedRequest('GET', t._remote_path('a'))
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1506
        old_prefix = 'http://%s:%s' % (self.old_server.host,
1507
                                       self.old_server.port)
1508
        new_prefix = 'http://%s:%s' % (self.new_server.host,
1509
                                       self.new_server.port)
3111.1.20 by Vincent Ladeuil
Make all the test pass. Looks like we are HTTP/1.1 compliant.
1510
        self.old_server.redirections = [
1511
            ('/1(.*)', r'%s/2\1' % (old_prefix), 302),
1512
            ('/2(.*)', r'%s/3\1' % (old_prefix), 303),
1513
            ('/3(.*)', r'%s/4\1' % (old_prefix), 307),
1514
            ('/4(.*)', r'%s/5\1' % (new_prefix), 301),
1515
            ('(/[^/]+)', r'%s/1\1' % (old_prefix), 301),
1516
            ]
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1517
        self.assertEqual('redirected 5 times', t._perform(req).read())
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1518
1519
1520
class TestDoCatchRedirections(http_utils.TestCaseWithRedirectedWebserver):
1521
    """Test transport.do_catching_redirections."""
1522
5462.3.15 by Martin Pool
Turn variations into scenario lists
1523
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1524
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1525
        vary_by_http_protocol_version(),
1526
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1527
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1528
    def setUp(self):
1529
        super(TestDoCatchRedirections, self).setUp()
1530
        self.build_tree_contents([('a', '0123456789'),],)
5247.2.26 by Vincent Ladeuil
Fix http redirection socket leaks.
1531
        cleanup_http_redirection_connections(self)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1532
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1533
        self.old_transport = self.get_old_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1534
5247.3.31 by Vincent Ladeuil
Cleanup some imports in http_utils.py.
1535
    def get_a(self, t):
1536
        return t.get('a')
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1537
1538
    def test_no_redirection(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1539
        t = self.get_new_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1540
1541
        # We use None for redirected so that we fail if redirected
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1542
        self.assertEqual('0123456789',
1543
                         transport.do_catching_redirections(
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1544
                self.get_a, t, None).read())
1545
1546
    def test_one_redirection(self):
1547
        self.redirections = 0
1548
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1549
        def redirected(t, exception, redirection_notice):
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1550
            self.redirections += 1
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1551
            redirected_t = t._redirected_to(exception.source, exception.target)
1552
            return redirected_t
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1553
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1554
        self.assertEqual('0123456789',
1555
                         transport.do_catching_redirections(
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1556
                self.get_a, self.old_transport, redirected).read())
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1557
        self.assertEqual(1, self.redirections)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1558
1559
    def test_redirection_loop(self):
1560
1561
        def redirected(transport, exception, redirection_notice):
1562
            # By using the redirected url as a base dir for the
1563
            # *old* transport, we create a loop: a => a/a =>
1564
            # a/a/a
1565
            return self.old_transport.clone(exception.target)
1566
1567
        self.assertRaises(errors.TooManyRedirections,
1568
                          transport.do_catching_redirections,
1569
                          self.get_a, self.old_transport, redirected)
1570
1571
5957.2.1 by Vincent Ladeuil
Tweak the http Authorization tests to make some parts easier to reuse (parametrization mostly).
1572
def _setup_authentication_config(**kwargs):
1573
    conf = config.AuthenticationConfig()
1574
    conf._get_config().update({'httptest': kwargs})
1575
    conf._save()
1576
1577
1578
class TestUrllib2AuthHandler(tests.TestCaseWithTransport):
1579
    """Unit tests for glue by which urllib2 asks us for authentication"""
1580
1581
    def test_get_user_password_without_port(self):
1582
        """We cope if urllib2 doesn't tell us the port.
1583
1584
        See https://bugs.launchpad.net/bzr/+bug/654684
1585
        """
1586
        user = 'joe'
1587
        password = 'foo'
1588
        _setup_authentication_config(scheme='http', host='localhost',
1589
                                     user=user, password=password)
1590
        handler = _urllib2_wrappers.HTTPAuthHandler()
1591
        got_pass = handler.get_user_password(dict(
1592
            user='joe',
1593
            protocol='http',
1594
            host='localhost',
1595
            path='/',
1596
            realm='Realm',
1597
            ))
1598
        self.assertEquals((user, password), got_pass)
1599
1600
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1601
class TestAuth(http_utils.TestCaseWithWebserver):
1602
    """Test authentication scheme"""
1603
5462.3.15 by Martin Pool
Turn variations into scenario lists
1604
    scenarios = multiply_scenarios(
1605
        vary_by_http_client_implementation(),
1606
        vary_by_http_protocol_version(),
1607
        vary_by_http_auth_scheme(),
1608
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1609
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1610
    def setUp(self):
1611
        super(TestAuth, self).setUp()
1612
        self.server = self.get_readonly_server()
1613
        self.build_tree_contents([('a', 'contents of a\n'),
1614
                                  ('b', 'contents of b\n'),])
1615
1616
    def create_transport_readonly_server(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1617
        server = self._auth_server(protocol_version=self._protocol_version)
1618
        server._url_protocol = self._url_protocol
1619
        return server
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1620
1621
    def _testing_pycurl(self):
4913.2.11 by John Arbash Meinel
Convert a bunch more features over to ModuleAvailableFeature
1622
        # TODO: This is duplicated for lots of the classes in this file
1623
        return (features.pycurl.available()
1624
                and self._transport == PyCurlTransport)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1625
3910.2.4 by Vincent Ladeuil
Fixed as per John's review.
1626
    def get_user_url(self, user, password):
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1627
        """Build an url embedding user and password"""
1628
        url = '%s://' % self.server._url_protocol
1629
        if user is not None:
1630
            url += user
1631
            if password is not None:
1632
                url += ':' + password
1633
            url += '@'
1634
        url += '%s:%s/' % (self.server.host, self.server.port)
1635
        return url
1636
3910.2.4 by Vincent Ladeuil
Fixed as per John's review.
1637
    def get_user_transport(self, user, password):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1638
        t = transport.get_transport(self.get_user_url(user, password))
1639
        return t
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1640
1641
    def test_no_user(self):
1642
        self.server.add_user('joe', 'foo')
3910.2.4 by Vincent Ladeuil
Fixed as per John's review.
1643
        t = self.get_user_transport(None, None)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1644
        self.assertRaises(errors.InvalidHttpResponse, t.get, 'a')
1645
        # Only one 'Authentication Required' error should occur
1646
        self.assertEqual(1, self.server.auth_required_errors)
1647
1648
    def test_empty_pass(self):
1649
        self.server.add_user('joe', '')
1650
        t = self.get_user_transport('joe', '')
1651
        self.assertEqual('contents of a\n', t.get('a').read())
1652
        # Only one 'Authentication Required' error should occur
1653
        self.assertEqual(1, self.server.auth_required_errors)
1654
1655
    def test_user_pass(self):
1656
        self.server.add_user('joe', 'foo')
1657
        t = self.get_user_transport('joe', 'foo')
1658
        self.assertEqual('contents of a\n', t.get('a').read())
1659
        # Only one 'Authentication Required' error should occur
1660
        self.assertEqual(1, self.server.auth_required_errors)
1661
1662
    def test_unknown_user(self):
1663
        self.server.add_user('joe', 'foo')
1664
        t = self.get_user_transport('bill', 'foo')
1665
        self.assertRaises(errors.InvalidHttpResponse, t.get, 'a')
1666
        # Two 'Authentication Required' errors should occur (the
1667
        # initial 'who are you' and 'I don't know you, who are
1668
        # you').
1669
        self.assertEqual(2, self.server.auth_required_errors)
1670
1671
    def test_wrong_pass(self):
1672
        self.server.add_user('joe', 'foo')
1673
        t = self.get_user_transport('joe', 'bar')
1674
        self.assertRaises(errors.InvalidHttpResponse, t.get, 'a')
1675
        # Two 'Authentication Required' errors should occur (the
1676
        # initial 'who are you' and 'this is not you, who are you')
1677
        self.assertEqual(2, self.server.auth_required_errors)
1678
4222.3.12 by Jelmer Vernooij
Check that the HTTP transport prompts for usernames.
1679
    def test_prompt_for_username(self):
1680
        if self._testing_pycurl():
1681
            raise tests.TestNotApplicable(
1682
                'pycurl cannot prompt, it handles auth by embedding'
1683
                ' user:pass in urls only')
1684
1685
        self.server.add_user('joe', 'foo')
1686
        t = self.get_user_transport(None, None)
1687
        stdout = tests.StringIOWrapper()
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
1688
        stderr = tests.StringIOWrapper()
1689
        ui.ui_factory = tests.TestUIFactory(stdin='joe\nfoo\n',
1690
                                            stdout=stdout, stderr=stderr)
4222.3.12 by Jelmer Vernooij
Check that the HTTP transport prompts for usernames.
1691
        self.assertEqual('contents of a\n',t.get('a').read())
1692
        # stdin should be empty
1693
        self.assertEqual('', ui.ui_factory.stdin.readline())
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
1694
        stderr.seek(0)
4222.3.12 by Jelmer Vernooij
Check that the HTTP transport prompts for usernames.
1695
        expected_prompt = self._expected_username_prompt(t._unqualified_scheme)
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1696
        self.assertEqual(expected_prompt, stderr.read(len(expected_prompt)))
1697
        self.assertEqual('', stdout.getvalue())
4222.3.12 by Jelmer Vernooij
Check that the HTTP transport prompts for usernames.
1698
        self._check_password_prompt(t._unqualified_scheme, 'joe',
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
1699
                                    stderr.readline())
4284.1.2 by Vincent Ladeuil
Delete spurious space.
1700
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1701
    def test_prompt_for_password(self):
1702
        if self._testing_pycurl():
1703
            raise tests.TestNotApplicable(
1704
                'pycurl cannot prompt, it handles auth by embedding'
1705
                ' user:pass in urls only')
1706
1707
        self.server.add_user('joe', 'foo')
1708
        t = self.get_user_transport('joe', None)
1709
        stdout = tests.StringIOWrapper()
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
1710
        stderr = tests.StringIOWrapper()
1711
        ui.ui_factory = tests.TestUIFactory(stdin='foo\n',
1712
                                            stdout=stdout, stderr=stderr)
1713
        self.assertEqual('contents of a\n', t.get('a').read())
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1714
        # stdin should be empty
1715
        self.assertEqual('', ui.ui_factory.stdin.readline())
1716
        self._check_password_prompt(t._unqualified_scheme, 'joe',
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
1717
                                    stderr.getvalue())
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1718
        self.assertEqual('', stdout.getvalue())
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1719
        # And we shouldn't prompt again for a different request
1720
        # against the same transport.
1721
        self.assertEqual('contents of b\n',t.get('b').read())
1722
        t2 = t.clone()
1723
        # And neither against a clone
1724
        self.assertEqual('contents of b\n',t2.get('b').read())
1725
        # Only one 'Authentication Required' error should occur
1726
        self.assertEqual(1, self.server.auth_required_errors)
1727
1728
    def _check_password_prompt(self, scheme, user, actual_prompt):
1729
        expected_prompt = (self._password_prompt_prefix
1730
                           + ("%s %s@%s:%d, Realm: '%s' password: "
1731
                              % (scheme.upper(),
1732
                                 user, self.server.host, self.server.port,
1733
                                 self.server.auth_realm)))
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1734
        self.assertEqual(expected_prompt, actual_prompt)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1735
4222.3.12 by Jelmer Vernooij
Check that the HTTP transport prompts for usernames.
1736
    def _expected_username_prompt(self, scheme):
1737
        return (self._username_prompt_prefix
1738
                + "%s %s:%d, Realm: '%s' username: " % (scheme.upper(),
1739
                                 self.server.host, self.server.port,
1740
                                 self.server.auth_realm))
1741
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1742
    def test_no_prompt_for_password_when_using_auth_config(self):
1743
        if self._testing_pycurl():
1744
            raise tests.TestNotApplicable(
1745
                'pycurl does not support authentication.conf'
1746
                ' since it cannot prompt')
1747
1748
        user =' joe'
1749
        password = 'foo'
1750
        stdin_content = 'bar\n'  # Not the right password
1751
        self.server.add_user(user, password)
1752
        t = self.get_user_transport(user, None)
1753
        ui.ui_factory = tests.TestUIFactory(stdin=stdin_content,
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
1754
                                            stderr=tests.StringIOWrapper())
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1755
        # Create a minimal config file with the right password
5957.2.1 by Vincent Ladeuil
Tweak the http Authorization tests to make some parts easier to reuse (parametrization mostly).
1756
        _setup_authentication_config(scheme='http', port=self.server.port,
1757
                                     user=user, password=password)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1758
        # Issue a request to the server to connect
1759
        self.assertEqual('contents of a\n',t.get('a').read())
1760
        # stdin should have  been left untouched
1761
        self.assertEqual(stdin_content, ui.ui_factory.stdin.readline())
1762
        # Only one 'Authentication Required' error should occur
1763
        self.assertEqual(1, self.server.auth_required_errors)
1764
3111.1.26 by Vincent Ladeuil
Re-add a test lost in refactoring.
1765
    def test_changing_nonce(self):
4307.4.2 by Vincent Ladeuil
Handle servers proposing several authentication schemes.
1766
        if self._auth_server not in (http_utils.HTTPDigestAuthServer,
1767
                                     http_utils.ProxyDigestAuthServer):
1768
            raise tests.TestNotApplicable('HTTP/proxy auth digest only test')
3111.1.26 by Vincent Ladeuil
Re-add a test lost in refactoring.
1769
        if self._testing_pycurl():
1770
            raise tests.KnownFailure(
1771
                'pycurl does not handle a nonce change')
1772
        self.server.add_user('joe', 'foo')
1773
        t = self.get_user_transport('joe', 'foo')
1774
        self.assertEqual('contents of a\n', t.get('a').read())
1775
        self.assertEqual('contents of b\n', t.get('b').read())
1776
        # Only one 'Authentication Required' error should have
1777
        # occured so far
1778
        self.assertEqual(1, self.server.auth_required_errors)
1779
        # The server invalidates the current nonce
1780
        self.server.auth_nonce = self.server.auth_nonce + '. No, now!'
1781
        self.assertEqual('contents of a\n', t.get('a').read())
1782
        # Two 'Authentication Required' errors should occur (the
1783
        # initial 'who are you' and a second 'who are you' with the new nonce)
1784
        self.assertEqual(2, self.server.auth_required_errors)
1785
5484.2.1 by Martin Pool
Add failing test for AbstractAuthHandler and bug 654684
1786
    def test_user_from_auth_conf(self):
1787
        if self._testing_pycurl():
1788
            raise tests.TestNotApplicable(
1789
                'pycurl does not support authentication.conf')
1790
        user = 'joe'
1791
        password = 'foo'
1792
        self.server.add_user(user, password)
5957.2.1 by Vincent Ladeuil
Tweak the http Authorization tests to make some parts easier to reuse (parametrization mostly).
1793
        _setup_authentication_config(scheme='http', port=self.server.port,
1794
                                     user=user, password=password)
5484.2.1 by Martin Pool
Add failing test for AbstractAuthHandler and bug 654684
1795
        t = self.get_user_transport(None, None)
1796
        # Issue a request to the server to connect
1797
        self.assertEqual('contents of a\n', t.get('a').read())
1798
        # Only one 'Authentication Required' error should occur
1799
        self.assertEqual(1, self.server.auth_required_errors)
1800
5957.2.3 by Vincent Ladeuil
Mask credentials in the -Dhttp logging
1801
    def test_no_credential_leaks_in_log(self):
1802
        self.overrideAttr(debug, 'debug_flags', set(['http']))
1803
        user = 'joe'
1804
        password = 'very-sensitive-password'
1805
        self.server.add_user(user, password)
1806
        t = self.get_user_transport(user, password)
1807
        # Capture the debug calls to mutter
1808
        self.mutters = []
1809
        def mutter(*args):
1810
            lines = args[0] % args[1:]
1811
            # Some calls output multiple lines, just split them now since we
1812
            # care about a single one later.
1813
            self.mutters.extend(lines.splitlines())
1814
        self.overrideAttr(trace, 'mutter', mutter)
1815
        # Issue a request to the server to connect
1816
        self.assertEqual(True, t.has('a'))
1817
        # Only one 'Authentication Required' error should occur
1818
        self.assertEqual(1, self.server.auth_required_errors)
1819
        # Since the authentification succeeded, there should be a corresponding
1820
        # debug line
1821
        sent_auth_headers = [line for line in self.mutters
1822
                             if line.startswith('> %s' % (self._auth_header,))]
1823
        self.assertLength(1, sent_auth_headers)
1824
        self.assertStartsWith(sent_auth_headers[0],
1825
                              '> %s: <masked>' % (self._auth_header,))
1826
5484.2.1 by Martin Pool
Add failing test for AbstractAuthHandler and bug 654684
1827
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1828
class TestProxyAuth(TestAuth):
5957.2.1 by Vincent Ladeuil
Tweak the http Authorization tests to make some parts easier to reuse (parametrization mostly).
1829
    """Test proxy authentication schemes.
1830
1831
    This inherits from TestAuth to tweak the setUp and filter some failing
1832
    tests.
1833
    """
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1834
5462.3.15 by Martin Pool
Turn variations into scenario lists
1835
    scenarios = multiply_scenarios(
1836
        vary_by_http_client_implementation(),
1837
        vary_by_http_protocol_version(),
1838
        vary_by_http_proxy_auth_scheme(),
1839
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1840
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1841
    def setUp(self):
1842
        super(TestProxyAuth, self).setUp()
1843
        # Override the contents to avoid false positives
1844
        self.build_tree_contents([('a', 'not proxied contents of a\n'),
1845
                                  ('b', 'not proxied contents of b\n'),
1846
                                  ('a-proxied', 'contents of a\n'),
1847
                                  ('b-proxied', 'contents of b\n'),
1848
                                  ])
1849
3910.2.4 by Vincent Ladeuil
Fixed as per John's review.
1850
    def get_user_transport(self, user, password):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1851
        self.overrideEnv('all_proxy', self.get_user_url(user, password))
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1852
        return TestAuth.get_user_transport(self, user, password)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1853
1854
    def test_empty_pass(self):
1855
        if self._testing_pycurl():
1856
            import pycurl
1857
            if pycurl.version_info()[1] < '7.16.0':
1858
                raise tests.KnownFailure(
1859
                    'pycurl < 7.16.0 does not handle empty proxy passwords')
1860
        super(TestProxyAuth, self).test_empty_pass()
1861
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1862
1863
class SampleSocket(object):
1864
    """A socket-like object for use in testing the HTTP request handler."""
1865
1866
    def __init__(self, socket_read_content):
1867
        """Constructs a sample socket.
1868
1869
        :param socket_read_content: a byte sequence
1870
        """
1871
        # Use plain python StringIO so we can monkey-patch the close method to
1872
        # not discard the contents.
1873
        from StringIO import StringIO
1874
        self.readfile = StringIO(socket_read_content)
1875
        self.writefile = StringIO()
1876
        self.writefile.close = lambda: None
5247.3.18 by Vincent Ladeuil
Fix some fallouts from previous fixes, all tests passing (no more http leaks).
1877
        self.close = lambda: None
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1878
1879
    def makefile(self, mode='r', bufsize=None):
1880
        if 'r' in mode:
1881
            return self.readfile
1882
        else:
1883
            return self.writefile
1884
1885
1886
class SmartHTTPTunnellingTest(tests.TestCaseWithTransport):
1887
5462.3.15 by Martin Pool
Turn variations into scenario lists
1888
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1889
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1890
        vary_by_http_protocol_version(),
1891
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1892
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1893
    def setUp(self):
1894
        super(SmartHTTPTunnellingTest, self).setUp()
1895
        # We use the VFS layer as part of HTTP tunnelling tests.
5570.3.6 by Vincent Ladeuil
Get rid of all _captureVar() calls, no test failures, pfew.
1896
        self.overrideEnv('BZR_NO_SMART_VFS', None)
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1897
        self.transport_readonly_server = http_utils.HTTPServerWithSmarts
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1898
        self.http_server = self.get_readonly_server()
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1899
1900
    def create_transport_readonly_server(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1901
        server = http_utils.HTTPServerWithSmarts(
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1902
            protocol_version=self._protocol_version)
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1903
        server._url_protocol = self._url_protocol
1904
        return server
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1905
3606.4.1 by Andrew Bennetts
Fix NotImplementedError when probing for smart protocol via HTTP.
1906
    def test_open_bzrdir(self):
1907
        branch = self.make_branch('relpath')
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1908
        url = self.http_server.get_url() + 'relpath'
3606.4.1 by Andrew Bennetts
Fix NotImplementedError when probing for smart protocol via HTTP.
1909
        bd = bzrdir.BzrDir.open(url)
5247.2.28 by Vincent Ladeuil
Some more cleanups spotted on windows.
1910
        self.addCleanup(bd.transport.disconnect)
3606.4.1 by Andrew Bennetts
Fix NotImplementedError when probing for smart protocol via HTTP.
1911
        self.assertIsInstance(bd, _mod_remote.RemoteBzrDir)
1912
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1913
    def test_bulk_data(self):
1914
        # We should be able to send and receive bulk data in a single message.
1915
        # The 'readv' command in the smart protocol both sends and receives
1916
        # bulk data, so we use that.
1917
        self.build_tree(['data-file'])
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1918
        http_transport = transport.get_transport(self.http_server.get_url())
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1919
        medium = http_transport.get_smart_medium()
1920
        # Since we provide the medium, the url below will be mostly ignored
1921
        # during the test, as long as the path is '/'.
1922
        remote_transport = remote.RemoteTransport('bzr://fake_host/',
1923
                                                  medium=medium)
1924
        self.assertEqual(
1925
            [(0, "c")], list(remote_transport.readv("data-file", [(0,1)])))
1926
1927
    def test_http_send_smart_request(self):
1928
1929
        post_body = 'hello\n'
3245.4.59 by Andrew Bennetts
Various tweaks in response to Martin's review.
1930
        expected_reply_body = 'ok\x012\n'
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1931
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1932
        http_transport = transport.get_transport(self.http_server.get_url())
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1933
        medium = http_transport.get_smart_medium()
1934
        response = medium.send_http_smart_request(post_body)
1935
        reply_body = response.read()
1936
        self.assertEqual(expected_reply_body, reply_body)
1937
1938
    def test_smart_http_server_post_request_handler(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1939
        httpd = self.http_server.server
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1940
1941
        socket = SampleSocket(
1942
            'POST /.bzr/smart %s \r\n' % self._protocol_version
1943
            # HTTP/1.1 posts must have a Content-Length (but it doesn't hurt
1944
            # for 1.0)
1945
            + 'Content-Length: 6\r\n'
1946
            '\r\n'
1947
            'hello\n')
1948
        # Beware: the ('localhost', 80) below is the
1949
        # client_address parameter, but we don't have one because
1950
        # we have defined a socket which is not bound to an
1951
        # address. The test framework never uses this client
1952
        # address, so far...
1953
        request_handler = http_utils.SmartRequestHandler(socket,
1954
                                                         ('localhost', 80),
1955
                                                         httpd)
1956
        response = socket.writefile.getvalue()
1957
        self.assertStartsWith(response, '%s 200 ' % self._protocol_version)
1958
        # This includes the end of the HTTP headers, and all the body.
3245.4.59 by Andrew Bennetts
Various tweaks in response to Martin's review.
1959
        expected_end_of_response = '\r\n\r\nok\x012\n'
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1960
        self.assertEndsWith(response, expected_end_of_response)
1961
1962
3430.3.4 by Vincent Ladeuil
Of course we can write tests !
1963
class ForbiddenRequestHandler(http_server.TestingHTTPRequestHandler):
1964
    """No smart server here request handler."""
1965
1966
    def do_POST(self):
1967
        self.send_error(403, "Forbidden")
1968
1969
1970
class SmartClientAgainstNotSmartServer(TestSpecificRequestHandler):
1971
    """Test smart client behaviour against an http server without smarts."""
1972
1973
    _req_handler_class = ForbiddenRequestHandler
1974
1975
    def test_probe_smart_server(self):
1976
        """Test error handling against server refusing smart requests."""
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
1977
        t = self.get_readonly_transport()
3430.3.4 by Vincent Ladeuil
Of course we can write tests !
1978
        # No need to build a valid smart request here, the server will not even
1979
        # try to interpret it.
1980
        self.assertRaises(errors.SmartProtocolError,
5599.3.6 by John Arbash Meinel
Revert the medium check, since it isn't necessary, and vila is worried about confusing people.
1981
                          t.get_smart_medium().send_http_smart_request,
1982
                          'whatever')
3430.3.4 by Vincent Ladeuil
Of course we can write tests !
1983
5247.3.15 by Vincent Ladeuil
All http tests passing, https failing.
1984
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
1985
class Test_redirected_to(tests.TestCase):
1986
5462.3.15 by Martin Pool
Turn variations into scenario lists
1987
    scenarios = vary_by_http_client_implementation()
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1988
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
1989
    def test_redirected_to_subdir(self):
1990
        t = self._transport('http://www.example.com/foo')
3878.4.5 by Vincent Ladeuil
Don't use the exception as a parameter for _redirected_to.
1991
        r = t._redirected_to('http://www.example.com/foo',
1992
                             'http://www.example.com/foo/subdir')
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
1993
        self.assertIsInstance(r, type(t))
1994
        # Both transports share the some connection
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1995
        self.assertEqual(t._get_connection(), r._get_connection())
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
1996
3878.4.3 by Vincent Ladeuil
Fix bug #303959 by returning a transport based on the same url
1997
    def test_redirected_to_self_with_slash(self):
1998
        t = self._transport('http://www.example.com/foo')
3878.4.5 by Vincent Ladeuil
Don't use the exception as a parameter for _redirected_to.
1999
        r = t._redirected_to('http://www.example.com/foo',
2000
                             'http://www.example.com/foo/')
3878.4.3 by Vincent Ladeuil
Fix bug #303959 by returning a transport based on the same url
2001
        self.assertIsInstance(r, type(t))
2002
        # Both transports share the some connection (one can argue that we
2003
        # should return the exact same transport here, but that seems
2004
        # overkill).
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
2005
        self.assertEqual(t._get_connection(), r._get_connection())
3878.4.3 by Vincent Ladeuil
Fix bug #303959 by returning a transport based on the same url
2006
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
2007
    def test_redirected_to_host(self):
2008
        t = self._transport('http://www.example.com/foo')
3878.4.5 by Vincent Ladeuil
Don't use the exception as a parameter for _redirected_to.
2009
        r = t._redirected_to('http://www.example.com/foo',
2010
                             'http://foo.example.com/foo/subdir')
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
2011
        self.assertIsInstance(r, type(t))
2012
2013
    def test_redirected_to_same_host_sibling_protocol(self):
2014
        t = self._transport('http://www.example.com/foo')
3878.4.5 by Vincent Ladeuil
Don't use the exception as a parameter for _redirected_to.
2015
        r = t._redirected_to('http://www.example.com/foo',
2016
                             'https://www.example.com/foo')
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
2017
        self.assertIsInstance(r, type(t))
2018
2019
    def test_redirected_to_same_host_different_protocol(self):
2020
        t = self._transport('http://www.example.com/foo')
3878.4.5 by Vincent Ladeuil
Don't use the exception as a parameter for _redirected_to.
2021
        r = t._redirected_to('http://www.example.com/foo',
2022
                             'ftp://www.example.com/foo')
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
2023
        self.assertNotEquals(type(r), type(t))
2024
2025
    def test_redirected_to_different_host_same_user(self):
2026
        t = self._transport('http://joe@www.example.com/foo')
3878.4.5 by Vincent Ladeuil
Don't use the exception as a parameter for _redirected_to.
2027
        r = t._redirected_to('http://www.example.com/foo',
2028
                             'https://foo.example.com/foo')
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
2029
        self.assertIsInstance(r, type(t))
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
2030
        self.assertEqual(t._user, r._user)
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2031
2032
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2033
class PredefinedRequestHandler(http_server.TestingHTTPRequestHandler):
2034
    """Request handler for a unique and pre-defined request.
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2035
2036
    The only thing we care about here is how many bytes travel on the wire. But
2037
    since we want to measure it for a real http client, we have to send it
2038
    correct responses.
2039
2040
    We expect to receive a *single* request nothing more (and we won't even
2041
    check what request it is, we just measure the bytes read until an empty
2042
    line.
2043
    """
2044
4731.2.3 by Vincent Ladeuil
Reduce the leaking http tests from ~200 to ~5.
2045
    def _handle_one_request(self):
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2046
        tcs = self.server.test_case_server
2047
        requestline = self.rfile.readline()
2048
        headers = self.MessageClass(self.rfile, 0)
2049
        # We just read: the request, the headers, an empty line indicating the
2050
        # end of the headers.
2051
        bytes_read = len(requestline)
2052
        for line in headers.headers:
2053
            bytes_read += len(line)
2054
        bytes_read += len('\r\n')
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2055
        if requestline.startswith('POST'):
2056
            # The body should be a single line (or we don't know where it ends
2057
            # and we don't want to issue a blocking read)
2058
            body = self.rfile.readline()
2059
            bytes_read += len(body)
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2060
        tcs.bytes_read = bytes_read
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2061
2062
        # We set the bytes written *before* issuing the write, the client is
2063
        # supposed to consume every produced byte *before* checking that value.
3945.1.7 by Vincent Ladeuil
Test against https.
2064
2065
        # Doing the oppposite may lead to test failure: we may be interrupted
2066
        # after the write but before updating the value. The client can then
2067
        # continue and read the value *before* we can update it. And yes,
2068
        # this has been observed -- vila 20090129
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2069
        tcs.bytes_written = len(tcs.canned_response)
2070
        self.wfile.write(tcs.canned_response)
2071
2072
2073
class ActivityServerMixin(object):
2074
2075
    def __init__(self, protocol_version):
2076
        super(ActivityServerMixin, self).__init__(
2077
            request_handler=PredefinedRequestHandler,
2078
            protocol_version=protocol_version)
2079
        # Bytes read and written by the server
2080
        self.bytes_read = 0
2081
        self.bytes_written = 0
2082
        self.canned_response = None
2083
2084
2085
class ActivityHTTPServer(ActivityServerMixin, http_server.HttpServer):
2086
    pass
2087
2088
2089
if tests.HTTPSServerFeature.available():
2090
    from bzrlib.tests import https_server
2091
    class ActivityHTTPSServer(ActivityServerMixin, https_server.HTTPSServer):
2092
        pass
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2093
2094
4776.2.1 by Vincent Ladeuil
Support no activity report on http sockets.
2095
class TestActivityMixin(object):
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2096
    """Test socket activity reporting.
2097
2098
    We use a special purpose server to control the bytes sent and received and
2099
    be able to predict the activity on the client socket.
2100
    """
2101
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2102
    def setUp(self):
2103
        tests.TestCase.setUp(self)
2104
        self.server = self._activity_server(self._protocol_version)
4934.3.3 by Martin Pool
Rename Server.setUp to Server.start_server
2105
        self.server.start_server()
5901.1.1 by John Arbash Meinel
Re-apply the bits of TestCase that I wanted, on the new bzr.dev tip.
2106
        _activities = {} # Don't close over self and create a cycle
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2107
        def report_activity(t, bytes, direction):
5901.1.1 by John Arbash Meinel
Re-apply the bits of TestCase that I wanted, on the new bzr.dev tip.
2108
            count = _activities.get(direction, 0)
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2109
            count += bytes
5901.1.1 by John Arbash Meinel
Re-apply the bits of TestCase that I wanted, on the new bzr.dev tip.
2110
            _activities[direction] = count
2111
        self.activities = _activities
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2112
2113
        # We override at class level because constructors may propagate the
2114
        # bound method and render instance overriding ineffective (an
4031.3.1 by Frank Aspell
Fixing various typos
2115
        # alternative would be to define a specific ui factory instead...)
4986.2.6 by Martin Pool
Clean up test_http setUp methods
2116
        self.overrideAttr(self._transport, '_report_activity', report_activity)
2117
        self.addCleanup(self.server.stop_server)
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2118
2119
    def get_transport(self):
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
2120
        t = self._transport(self.server.get_url())
2121
        # FIXME: Needs cleanup -- vila 20100611
2122
        return t
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2123
2124
    def assertActivitiesMatch(self):
2125
        self.assertEqual(self.server.bytes_read,
2126
                         self.activities.get('write', 0), 'written bytes')
2127
        self.assertEqual(self.server.bytes_written,
2128
                         self.activities.get('read', 0), 'read bytes')
2129
2130
    def test_get(self):
2131
        self.server.canned_response = '''HTTP/1.1 200 OK\r
2132
Date: Tue, 11 Jul 2006 04:32:56 GMT\r
2133
Server: Apache/2.0.54 (Fedora)\r
2134
Last-Modified: Sun, 23 Apr 2006 19:35:20 GMT\r
2135
ETag: "56691-23-38e9ae00"\r
2136
Accept-Ranges: bytes\r
2137
Content-Length: 35\r
2138
Connection: close\r
2139
Content-Type: text/plain; charset=UTF-8\r
2140
\r
2141
Bazaar-NG meta directory, format 1
2142
'''
2143
        t = self.get_transport()
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2144
        self.assertEqual('Bazaar-NG meta directory, format 1\n',
2145
                         t.get('foo/bar').read())
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2146
        self.assertActivitiesMatch()
2147
2148
    def test_has(self):
2149
        self.server.canned_response = '''HTTP/1.1 200 OK\r
2150
Server: SimpleHTTP/0.6 Python/2.5.2\r
2151
Date: Thu, 29 Jan 2009 20:21:47 GMT\r
2152
Content-type: application/octet-stream\r
2153
Content-Length: 20\r
2154
Last-Modified: Thu, 29 Jan 2009 20:21:47 GMT\r
2155
\r
2156
'''
2157
        t = self.get_transport()
2158
        self.assertTrue(t.has('foo/bar'))
2159
        self.assertActivitiesMatch()
2160
2161
    def test_readv(self):
2162
        self.server.canned_response = '''HTTP/1.1 206 Partial Content\r
2163
Date: Tue, 11 Jul 2006 04:49:48 GMT\r
2164
Server: Apache/2.0.54 (Fedora)\r
2165
Last-Modified: Thu, 06 Jul 2006 20:22:05 GMT\r
2166
ETag: "238a3c-16ec2-805c5540"\r
2167
Accept-Ranges: bytes\r
2168
Content-Length: 1534\r
2169
Connection: close\r
2170
Content-Type: multipart/byteranges; boundary=418470f848b63279b\r
2171
\r
2172
\r
2173
--418470f848b63279b\r
2174
Content-type: text/plain; charset=UTF-8\r
2175
Content-range: bytes 0-254/93890\r
2176
\r
2177
mbp@sourcefrog.net-20050309040815-13242001617e4a06
2178
mbp@sourcefrog.net-20050309040929-eee0eb3e6d1e7627
2179
mbp@sourcefrog.net-20050309040957-6cad07f466bb0bb8
2180
mbp@sourcefrog.net-20050309041501-c840e09071de3b67
2181
mbp@sourcefrog.net-20050309044615-c24a3250be83220a
2182
\r
2183
--418470f848b63279b\r
2184
Content-type: text/plain; charset=UTF-8\r
2185
Content-range: bytes 1000-2049/93890\r
2186
\r
2187
40-fd4ec249b6b139ab
2188
mbp@sourcefrog.net-20050311063625-07858525021f270b
2189
mbp@sourcefrog.net-20050311231934-aa3776aff5200bb9
2190
mbp@sourcefrog.net-20050311231953-73aeb3a131c3699a
2191
mbp@sourcefrog.net-20050311232353-f5e33da490872c6a
2192
mbp@sourcefrog.net-20050312071639-0a8f59a34a024ff0
2193
mbp@sourcefrog.net-20050312073432-b2c16a55e0d6e9fb
2194
mbp@sourcefrog.net-20050312073831-a47c3335ece1920f
2195
mbp@sourcefrog.net-20050312085412-13373aa129ccbad3
2196
mbp@sourcefrog.net-20050313052251-2bf004cb96b39933
2197
mbp@sourcefrog.net-20050313052856-3edd84094687cb11
2198
mbp@sourcefrog.net-20050313053233-e30a4f28aef48f9d
2199
mbp@sourcefrog.net-20050313053853-7c64085594ff3072
2200
mbp@sourcefrog.net-20050313054757-a86c3f5871069e22
2201
mbp@sourcefrog.net-20050313061422-418f1f73b94879b9
2202
mbp@sourcefrog.net-20050313120651-497bd231b19df600
2203
mbp@sourcefrog.net-20050314024931-eae0170ef25a5d1a
2204
mbp@sourcefrog.net-20050314025438-d52099f915fe65fc
2205
mbp@sourcefrog.net-20050314025539-637a636692c055cf
2206
mbp@sourcefrog.net-20050314025737-55eb441f430ab4ba
2207
mbp@sourcefrog.net-20050314025901-d74aa93bb7ee8f62
2208
mbp@source\r
2209
--418470f848b63279b--\r
2210
'''
2211
        t = self.get_transport()
2212
        # Remember that the request is ignored and that the ranges below
2213
        # doesn't have to match the canned response.
2214
        l = list(t.readv('/foo/bar', ((0, 255), (1000, 1050))))
2215
        self.assertEqual(2, len(l))
2216
        self.assertActivitiesMatch()
2217
2218
    def test_post(self):
2219
        self.server.canned_response = '''HTTP/1.1 200 OK\r
2220
Date: Tue, 11 Jul 2006 04:32:56 GMT\r
2221
Server: Apache/2.0.54 (Fedora)\r
2222
Last-Modified: Sun, 23 Apr 2006 19:35:20 GMT\r
2223
ETag: "56691-23-38e9ae00"\r
2224
Accept-Ranges: bytes\r
2225
Content-Length: 35\r
2226
Connection: close\r
2227
Content-Type: text/plain; charset=UTF-8\r
2228
\r
2229
lalala whatever as long as itsssss
2230
'''
2231
        t = self.get_transport()
2232
        # We must send a single line of body bytes, see
4731.2.3 by Vincent Ladeuil
Reduce the leaking http tests from ~200 to ~5.
2233
        # PredefinedRequestHandler._handle_one_request
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2234
        code, f = t._post('abc def end-of-body\n')
2235
        self.assertEqual('lalala whatever as long as itsssss\n', f.read())
2236
        self.assertActivitiesMatch()
4776.2.1 by Vincent Ladeuil
Support no activity report on http sockets.
2237
2238
2239
class TestActivity(tests.TestCase, TestActivityMixin):
2240
5462.3.15 by Martin Pool
Turn variations into scenario lists
2241
    scenarios = multiply_scenarios(
2242
        vary_by_http_activity(),
2243
        vary_by_http_protocol_version(),
2244
        )
5462.3.11 by Martin Pool
Delete test_http.load_tests, and just specify variations per test
2245
4776.2.1 by Vincent Ladeuil
Support no activity report on http sockets.
2246
    def setUp(self):
4986.2.6 by Martin Pool
Clean up test_http setUp methods
2247
        TestActivityMixin.setUp(self)
4776.2.1 by Vincent Ladeuil
Support no activity report on http sockets.
2248
2249
2250
class TestNoReportActivity(tests.TestCase, TestActivityMixin):
2251
4986.2.6 by Martin Pool
Clean up test_http setUp methods
2252
    # Unlike TestActivity, we are really testing ReportingFileSocket and
2253
    # ReportingSocket, so we don't need all the parametrization. Since
2254
    # ReportingFileSocket and ReportingSocket are wrappers, it's easier to
2255
    # test them through their use by the transport than directly (that's a
2256
    # bit less clean but far more simpler and effective).
2257
    _activity_server = ActivityHTTPServer
2258
    _protocol_version = 'HTTP/1.1'
2259
4776.2.1 by Vincent Ladeuil
Support no activity report on http sockets.
2260
    def setUp(self):
4986.2.6 by Martin Pool
Clean up test_http setUp methods
2261
        self._transport =_urllib.HttpTransport_urllib
2262
        TestActivityMixin.setUp(self)
4776.2.1 by Vincent Ladeuil
Support no activity report on http sockets.
2263
2264
    def assertActivitiesMatch(self):
2265
        # Nothing to check here
2266
        pass
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2267
2268
2269
class TestAuthOnRedirected(http_utils.TestCaseWithRedirectedWebserver):
2270
    """Test authentication on the redirected http server."""
2271
5462.3.15 by Martin Pool
Turn variations into scenario lists
2272
    scenarios = vary_by_http_protocol_version()
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
2273
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2274
    _auth_header = 'Authorization'
2275
    _password_prompt_prefix = ''
2276
    _username_prompt_prefix = ''
2277
    _auth_server = http_utils.HTTPBasicAuthServer
2278
    _transport = _urllib.HttpTransport_urllib
2279
2280
    def setUp(self):
2281
        super(TestAuthOnRedirected, self).setUp()
2282
        self.build_tree_contents([('a','a'),
2283
                                  ('1/',),
2284
                                  ('1/a', 'redirected once'),
2285
                                  ],)
2286
        new_prefix = 'http://%s:%s' % (self.new_server.host,
2287
                                       self.new_server.port)
2288
        self.old_server.redirections = [
2289
            ('(.*)', r'%s/1\1' % (new_prefix), 301),]
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
2290
        self.old_transport = self.get_old_transport()
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2291
        self.new_server.add_user('joe', 'foo')
5247.2.26 by Vincent Ladeuil
Fix http redirection socket leaks.
2292
        cleanup_http_redirection_connections(self)
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2293
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
2294
    def create_transport_readonly_server(self):
2295
        server = self._auth_server(protocol_version=self._protocol_version)
2296
        server._url_protocol = self._url_protocol
2297
        return server
2298
2299
    def get_a(self, t):
2300
        return t.get('a')
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2301
2302
    def test_auth_on_redirected_via_do_catching_redirections(self):
2303
        self.redirections = 0
2304
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
2305
        def redirected(t, exception, redirection_notice):
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2306
            self.redirections += 1
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
2307
            redirected_t = t._redirected_to(exception.source, exception.target)
5247.2.28 by Vincent Ladeuil
Some more cleanups spotted on windows.
2308
            self.addCleanup(redirected_t.disconnect)
5247.3.29 by Vincent Ladeuil
Fix a bunch of tests that were building transport objects explicitely instead of relying on self.get_transport() leading to many wrong http implementation objects being tested.
2309
            return redirected_t
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2310
2311
        stdout = tests.StringIOWrapper()
2312
        stderr = tests.StringIOWrapper()
2313
        ui.ui_factory = tests.TestUIFactory(stdin='joe\nfoo\n',
2314
                                            stdout=stdout, stderr=stderr)
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
2315
        self.assertEqual('redirected once',
2316
                         transport.do_catching_redirections(
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2317
                self.get_a, self.old_transport, redirected).read())
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
2318
        self.assertEqual(1, self.redirections)
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2319
        # stdin should be empty
2320
        self.assertEqual('', ui.ui_factory.stdin.readline())
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
2321
        # stdout should be empty, stderr will contains the prompts
2322
        self.assertEqual('', stdout.getvalue())
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2323
2324
    def test_auth_on_redirected_via_following_redirections(self):
2325
        self.new_server.add_user('joe', 'foo')
2326
        stdout = tests.StringIOWrapper()
2327
        stderr = tests.StringIOWrapper()
2328
        ui.ui_factory = tests.TestUIFactory(stdin='joe\nfoo\n',
2329
                                            stdout=stdout, stderr=stderr)
2330
        t = self.old_transport
2331
        req = RedirectedRequest('GET', t.abspath('a'))
2332
        new_prefix = 'http://%s:%s' % (self.new_server.host,
2333
                                       self.new_server.port)
2334
        self.old_server.redirections = [
2335
            ('(.*)', r'%s/1\1' % (new_prefix), 301),]
5247.2.28 by Vincent Ladeuil
Some more cleanups spotted on windows.
2336
        self.assertEqual('redirected once', t._perform(req).read())
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2337
        # stdin should be empty
2338
        self.assertEqual('', ui.ui_factory.stdin.readline())
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
2339
        # stdout should be empty, stderr will contains the prompts
2340
        self.assertEqual('', stdout.getvalue())
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2341