~bzr-pqm/bzr/bzr.dev

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
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1051
class LimitedRangeRequestHandler(http_server.TestingHTTPRequestHandler):
1052
    """Errors out when range specifiers exceed the limit"""
1053
1054
    def get_multiple_ranges(self, file, file_size, ranges):
1055
        """Refuses the multiple ranges request"""
1056
        tcs = self.server.test_case_server
1057
        if tcs.range_limit is not None and len(ranges) > tcs.range_limit:
1058
            file.close()
1059
            # Emulate apache behavior
1060
            self.send_error(400, "Bad Request")
1061
            return
1062
        return http_server.TestingHTTPRequestHandler.get_multiple_ranges(
1063
            self, file, file_size, ranges)
1064
1065
1066
class LimitedRangeHTTPServer(http_server.HttpServer):
1067
    """An HttpServer erroring out on requests with too much range specifiers"""
1068
1069
    def __init__(self, request_handler=LimitedRangeRequestHandler,
1070
                 protocol_version=None,
1071
                 range_limit=None):
1072
        http_server.HttpServer.__init__(self, request_handler,
1073
                                        protocol_version=protocol_version)
1074
        self.range_limit = range_limit
1075
1076
1077
class TestLimitedRangeRequestServer(http_utils.TestCaseWithWebserver):
1078
    """Tests readv requests against a server erroring out on too much ranges."""
1079
5462.3.15 by Martin Pool
Turn variations into scenario lists
1080
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1081
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1082
        vary_by_http_protocol_version(),
1083
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1084
3111.1.22 by Vincent Ladeuil
Rework TestingHTTPServer classes, fix test bug.
1085
    # Requests with more range specifiers will error out
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1086
    range_limit = 3
1087
1088
    def create_transport_readonly_server(self):
1089
        return LimitedRangeHTTPServer(range_limit=self.range_limit,
1090
                                      protocol_version=self._protocol_version)
1091
1092
    def setUp(self):
1093
        http_utils.TestCaseWithWebserver.setUp(self)
1094
        # We need to manipulate ranges that correspond to real chunks in the
1095
        # response, so we build a content appropriately.
1096
        filler = ''.join(['abcdefghij' for x in range(102)])
1097
        content = ''.join(['%04d' % v + filler for v in range(16)])
1098
        self.build_tree_contents([('a', content)],)
1099
1100
    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.
1101
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1102
        l = list(t.readv('a', ((0, 4), (1024, 4), )))
1103
        self.assertEqual(l[0], (0, '0000'))
1104
        self.assertEqual(l[1], (1024, '0001'))
1105
        self.assertEqual(1, self.get_readonly_server().GET_request_nb)
1106
1107
    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.
1108
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1109
        l = list(t.readv('a', ((0, 4), (1024, 4), (4096, 4), (8192, 4))))
1110
        self.assertEqual(l[0], (0, '0000'))
1111
        self.assertEqual(l[1], (1024, '0001'))
1112
        self.assertEqual(l[2], (4096, '0004'))
1113
        self.assertEqual(l[3], (8192, '0008'))
1114
        # The server will refuse to serve the first request (too much ranges),
3199.1.2 by Vincent Ladeuil
Fix two more leaked log files.
1115
        # a second request will succeed.
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1116
        self.assertEqual(2, self.get_readonly_server().GET_request_nb)
1117
1118
3052.3.2 by Vincent Ladeuil
Add tests and fix trivial bugs and other typos.
1119
class TestHttpProxyWhiteBox(tests.TestCase):
2298.7.1 by Vincent Ladeuil
Fix bug #87765: proxy env variables without scheme should cause
1120
    """Whitebox test proxy http authorization.
1121
2420.1.3 by Vincent Ladeuil
Implement http proxy basic authentication.
1122
    Only the urllib implementation is tested here.
2298.7.1 by Vincent Ladeuil
Fix bug #87765: proxy env variables without scheme should cause
1123
    """
2273.2.2 by v.ladeuil+lp at free
Really fix bug #83954, with tests.
1124
1125
    def _proxied_request(self):
3111.1.20 by Vincent Ladeuil
Make all the test pass. Looks like we are HTTP/1.1 compliant.
1126
        handler = _urllib2_wrappers.ProxyHandler()
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1127
        request = _urllib2_wrappers.Request('GET', 'http://baz/buzzle')
2273.2.2 by v.ladeuil+lp at free
Really fix bug #83954, with tests.
1128
        handler.set_proxy(request, 'http')
1129
        return request
1130
5639.2.2 by Vincent Ladeuil
Add tests and comments to clarify the feature.
1131
    def assertEvaluateProxyBypass(self, expected, host, no_proxy):
1132
        handler = _urllib2_wrappers.ProxyHandler()
1133
        self.assertEquals(expected,
1134
                          handler.evaluate_proxy_bypass(host, no_proxy))
1135
2273.2.2 by v.ladeuil+lp at free
Really fix bug #83954, with tests.
1136
    def test_empty_user(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1137
        self.overrideEnv('http_proxy', 'http://bar.com')
2273.2.2 by v.ladeuil+lp at free
Really fix bug #83954, with tests.
1138
        request = self._proxied_request()
1139
        self.assertFalse(request.headers.has_key('Proxy-authorization'))
1140
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1141
    def test_user_with_at(self):
1142
        self.overrideEnv('http_proxy',
1143
                         'http://username@domain:password@proxy_host:1234')
1144
        request = self._proxied_request()
1145
        self.assertFalse(request.headers.has_key('Proxy-authorization'))
1146
2298.7.1 by Vincent Ladeuil
Fix bug #87765: proxy env variables without scheme should cause
1147
    def test_invalid_proxy(self):
1148
        """A proxy env variable without scheme"""
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1149
        self.overrideEnv('http_proxy', 'host:1234')
2298.7.1 by Vincent Ladeuil
Fix bug #87765: proxy env variables without scheme should cause
1150
        self.assertRaises(errors.InvalidURL, self._proxied_request)
2273.2.2 by v.ladeuil+lp at free
Really fix bug #83954, with tests.
1151
5639.2.2 by Vincent Ladeuil
Add tests and comments to clarify the feature.
1152
    def test_evaluate_proxy_bypass_true(self):
1153
        """The host is not proxied"""
1154
        self.assertEvaluateProxyBypass(True, 'example.com', 'example.com')
1155
        self.assertEvaluateProxyBypass(True, 'bzr.example.com', '*example.com')
1156
1157
    def test_evaluate_proxy_bypass_false(self):
1158
        """The host is proxied"""
1159
        self.assertEvaluateProxyBypass(False, 'bzr.example.com', None)
1160
1161
    def test_evaluate_proxy_bypass_unknown(self):
1162
        """The host is not explicitly proxied"""
1163
        self.assertEvaluateProxyBypass(None, 'example.com', 'not.example.com')
1164
        self.assertEvaluateProxyBypass(None, 'bzr.example.com', 'example.com')
1165
1166
    def test_evaluate_proxy_bypass_empty_entries(self):
1167
        """Ignore empty entries"""
1168
        self.assertEvaluateProxyBypass(None, 'example.com', '')
1169
        self.assertEvaluateProxyBypass(None, 'example.com', ',')
1170
        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.
1171
2273.2.2 by v.ladeuil+lp at free
Really fix bug #83954, with tests.
1172
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1173
class TestProxyHttpServer(http_utils.TestCaseWithTwoWebservers):
1174
    """Tests proxy server.
1175
1176
    Be aware that we do not setup a real proxy here. Instead, we
1177
    check that the *connection* goes through the proxy by serving
1178
    different content (the faked proxy server append '-proxied'
1179
    to the file names).
1180
    """
1181
5462.3.15 by Martin Pool
Turn variations into scenario lists
1182
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1183
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1184
        vary_by_http_protocol_version(),
1185
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1186
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1187
    # 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.
1188
    # test https connections. --vila toolongago
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1189
1190
    def setUp(self):
1191
        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.
1192
        self.transport_secondary_server = http_utils.ProxyServer
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1193
        self.build_tree_contents([('foo', 'contents of foo\n'),
1194
                                  ('foo-proxied', 'proxied contents of foo\n')])
1195
        # 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.
1196
        server = self.get_readonly_server()
1197
        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.
1198
        if self._testing_pycurl():
1199
            # Oh my ! pycurl does not check for the port as part of
1200
            # 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.
1201
            self.no_proxy_host = server.host
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1202
        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.
1203
            self.no_proxy_host = self.server_host_port
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1204
        # 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.
1205
        self.proxy_url = self.get_secondary_url()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1206
1207
    def _testing_pycurl(self):
4913.2.11 by John Arbash Meinel
Convert a bunch more features over to ModuleAvailableFeature
1208
        # TODO: This is duplicated for lots of the classes in this file
1209
        return (features.pycurl.available()
1210
                and self._transport == PyCurlTransport)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1211
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1212
    def assertProxied(self):
1213
        t = self.get_readonly_transport()
1214
        self.assertEqual('proxied contents of foo\n', t.get('foo').read())
1215
1216
    def assertNotProxied(self):
1217
        t = self.get_readonly_transport()
1218
        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.
1219
1220
    def test_http_proxy(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1221
        self.overrideEnv('http_proxy', self.proxy_url)
1222
        self.assertProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1223
1224
    def test_HTTP_PROXY(self):
1225
        if self._testing_pycurl():
1226
            # pycurl does not check HTTP_PROXY for security reasons
1227
            # (for use in a CGI context that we do not care
1228
            # about. Should we ?)
1229
            raise tests.TestNotApplicable(
1230
                'pycurl does not check HTTP_PROXY for security reasons')
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1231
        self.overrideEnv('HTTP_PROXY', self.proxy_url)
1232
        self.assertProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1233
1234
    def test_all_proxy(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1235
        self.overrideEnv('all_proxy', self.proxy_url)
1236
        self.assertProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1237
1238
    def test_ALL_PROXY(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1239
        self.overrideEnv('ALL_PROXY', self.proxy_url)
1240
        self.assertProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1241
1242
    def test_http_proxy_with_no_proxy(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1243
        self.overrideEnv('no_proxy', self.no_proxy_host)
1244
        self.overrideEnv('http_proxy', self.proxy_url)
1245
        self.assertNotProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1246
1247
    def test_HTTP_PROXY_with_NO_PROXY(self):
1248
        if self._testing_pycurl():
1249
            raise tests.TestNotApplicable(
1250
                'pycurl does not check HTTP_PROXY for security reasons')
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1251
        self.overrideEnv('NO_PROXY', self.no_proxy_host)
1252
        self.overrideEnv('HTTP_PROXY', self.proxy_url)
1253
        self.assertNotProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1254
1255
    def test_all_proxy_with_no_proxy(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1256
        self.overrideEnv('no_proxy', self.no_proxy_host)
1257
        self.overrideEnv('all_proxy', self.proxy_url)
1258
        self.assertNotProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1259
1260
    def test_ALL_PROXY_with_NO_PROXY(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1261
        self.overrideEnv('NO_PROXY', self.no_proxy_host)
1262
        self.overrideEnv('ALL_PROXY', self.proxy_url)
1263
        self.assertNotProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1264
1265
    def test_http_proxy_without_scheme(self):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1266
        self.overrideEnv('http_proxy', self.server_host_port)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1267
        if self._testing_pycurl():
1268
            # pycurl *ignores* invalid proxy env variables. If that ever change
1269
            # in the future, this test will fail indicating that pycurl do not
1270
            # ignore anymore such variables.
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1271
            self.assertNotProxied()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1272
        else:
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1273
            self.assertRaises(errors.InvalidURL, self.assertProxied)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1274
1275
1276
class TestRanges(http_utils.TestCaseWithWebserver):
1277
    """Test the Range header in GET methods."""
1278
5462.3.15 by Martin Pool
Turn variations into scenario lists
1279
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1280
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1281
        vary_by_http_protocol_version(),
1282
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1283
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1284
    def setUp(self):
1285
        http_utils.TestCaseWithWebserver.setUp(self)
1286
        self.build_tree_contents([('a', '0123456789')],)
1287
3111.1.22 by Vincent Ladeuil
Rework TestingHTTPServer classes, fix test bug.
1288
    def create_transport_readonly_server(self):
1289
        return http_server.HttpServer(protocol_version=self._protocol_version)
1290
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1291
    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.
1292
        t = self.get_readonly_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1293
        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.
1294
        coalesce = t._coalesce_offsets
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1295
        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.
1296
        code, data = t._get(relpath, coalesced)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1297
        self.assertTrue(code in (200, 206),'_get returns: %d' % code)
1298
        for start, end in ranges:
1299
            data.seek(start)
1300
            yield data.read(end - start + 1)
1301
1302
    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.
1303
        t = self.get_readonly_transport()
1304
        code, data = t._get(relpath, [], tail_amount)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1305
        self.assertTrue(code in (200, 206),'_get returns: %d' % code)
1306
        data.seek(-tail_amount, 2)
1307
        return data.read(tail_amount)
1308
1309
    def test_range_header(self):
1310
        # Valid ranges
1311
        map(self.assertEqual,['0', '234'],
1312
            list(self._file_contents('a', [(0,0), (2,4)])),)
1313
1314
    def test_range_header_tail(self):
1315
        self.assertEqual('789', self._file_tail('a', 3))
1316
1317
    def test_syntactically_invalid_range_header(self):
1318
        self.assertListRaises(errors.InvalidHttpRange,
1319
                          self._file_contents, 'a', [(4, 3)])
1320
1321
    def test_semantically_invalid_range_header(self):
1322
        self.assertListRaises(errors.InvalidHttpRange,
1323
                          self._file_contents, 'a', [(42, 128)])
1324
1325
1326
class TestHTTPRedirections(http_utils.TestCaseWithRedirectedWebserver):
1327
    """Test redirection between http servers."""
1328
5462.3.15 by Martin Pool
Turn variations into scenario lists
1329
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1330
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1331
        vary_by_http_protocol_version(),
1332
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1333
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1334
    def setUp(self):
1335
        super(TestHTTPRedirections, self).setUp()
1336
        self.build_tree_contents([('a', '0123456789'),
1337
                                  ('bundle',
1338
                                  '# Bazaar revision bundle v0.9\n#\n')
1339
                                  ],)
1340
1341
    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.
1342
        self.assertRaises(errors.RedirectRequested,
1343
                          self.get_old_transport().get, 'a')
1344
        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.
1345
1346
1347
class RedirectedRequest(_urllib2_wrappers.Request):
1348
    """Request following redirections. """
1349
1350
    init_orig = _urllib2_wrappers.Request.__init__
1351
1352
    def __init__(self, method, url, *args, **kwargs):
1353
        """Constructor.
1354
1355
        """
1356
        # Since the tests using this class will replace
1357
        # _urllib2_wrappers.Request, we can't just call the base class __init__
1358
        # or we'll loop.
4208.3.2 by Andrew Bennetts
Fix one test failure in test_http under Python 2.7a0.
1359
        RedirectedRequest.init_orig(self, method, url, *args, **kwargs)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1360
        self.follow_redirections = True
1361
1362
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
1363
def install_redirected_request(test):
4985.1.5 by Vincent Ladeuil
Deploying the new overrideAttr facility further reduces the complexity
1364
    test.overrideAttr(_urllib2_wrappers, 'Request', RedirectedRequest)
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
1365
1366
5247.2.26 by Vincent Ladeuil
Fix http redirection socket leaks.
1367
def cleanup_http_redirection_connections(test):
1368
    # Some sockets are opened but never seen by _urllib, so we trap them at
1369
    # the _urllib2_wrappers level to be able to clean them up.
1370
    def socket_disconnect(sock):
1371
        try:
1372
            sock.shutdown(socket.SHUT_RDWR)
1373
            sock.close()
1374
        except socket.error:
1375
            pass
1376
    def connect(connection):
1377
        test.http_connect_orig(connection)
1378
        test.addCleanup(socket_disconnect, connection.sock)
1379
    test.http_connect_orig = test.overrideAttr(
1380
        _urllib2_wrappers.HTTPConnection, 'connect', connect)
1381
    def connect(connection):
1382
        test.https_connect_orig(connection)
1383
        test.addCleanup(socket_disconnect, connection.sock)
1384
    test.https_connect_orig = test.overrideAttr(
1385
        _urllib2_wrappers.HTTPSConnection, 'connect', connect)
1386
1387
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1388
class TestHTTPSilentRedirections(http_utils.TestCaseWithRedirectedWebserver):
1389
    """Test redirections.
1390
1391
    http implementations do not redirect silently anymore (they
1392
    do not redirect at all in fact). The mechanism is still in
1393
    place at the _urllib2_wrappers.Request level and these tests
1394
    exercise it.
1395
1396
    For the pycurl implementation
1397
    the redirection have been deleted as we may deprecate pycurl
1398
    and I have no place to keep a working implementation.
1399
    -- vila 20070212
1400
    """
1401
5462.3.15 by Martin Pool
Turn variations into scenario lists
1402
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1403
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1404
        vary_by_http_protocol_version(),
1405
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1406
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1407
    def setUp(self):
4913.2.11 by John Arbash Meinel
Convert a bunch more features over to ModuleAvailableFeature
1408
        if (features.pycurl.available()
1409
            and self._transport == PyCurlTransport):
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1410
            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.
1411
                "pycurl doesn't redirect silently anymore")
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1412
        super(TestHTTPSilentRedirections, self).setUp()
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
1413
        install_redirected_request(self)
5247.2.26 by Vincent Ladeuil
Fix http redirection socket leaks.
1414
        cleanup_http_redirection_connections(self)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1415
        self.build_tree_contents([('a','a'),
1416
                                  ('1/',),
1417
                                  ('1/a', 'redirected once'),
1418
                                  ('2/',),
1419
                                  ('2/a', 'redirected twice'),
1420
                                  ('3/',),
1421
                                  ('3/a', 'redirected thrice'),
1422
                                  ('4/',),
1423
                                  ('4/a', 'redirected 4 times'),
1424
                                  ('5/',),
1425
                                  ('5/a', 'redirected 5 times'),
1426
                                  ],)
1427
1428
    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.
1429
        t = self.get_old_transport()
1430
        req = RedirectedRequest('GET', t._remote_path('a'))
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1431
        new_prefix = 'http://%s:%s' % (self.new_server.host,
1432
                                       self.new_server.port)
1433
        self.old_server.redirections = \
1434
            [('(.*)', 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.
1435
        self.assertEqual('redirected once', t._perform(req).read())
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1436
1437
    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.
1438
        t = self.get_old_transport()
1439
        req = RedirectedRequest('GET', t._remote_path('a'))
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1440
        old_prefix = 'http://%s:%s' % (self.old_server.host,
1441
                                       self.old_server.port)
1442
        new_prefix = 'http://%s:%s' % (self.new_server.host,
1443
                                       self.new_server.port)
3111.1.20 by Vincent Ladeuil
Make all the test pass. Looks like we are HTTP/1.1 compliant.
1444
        self.old_server.redirections = [
1445
            ('/1(.*)', r'%s/2\1' % (old_prefix), 302),
1446
            ('/2(.*)', r'%s/3\1' % (old_prefix), 303),
1447
            ('/3(.*)', r'%s/4\1' % (old_prefix), 307),
1448
            ('/4(.*)', r'%s/5\1' % (new_prefix), 301),
1449
            ('(/[^/]+)', r'%s/1\1' % (old_prefix), 301),
1450
            ]
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.
1451
        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.
1452
1453
1454
class TestDoCatchRedirections(http_utils.TestCaseWithRedirectedWebserver):
1455
    """Test transport.do_catching_redirections."""
1456
5462.3.15 by Martin Pool
Turn variations into scenario lists
1457
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1458
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1459
        vary_by_http_protocol_version(),
1460
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1461
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1462
    def setUp(self):
1463
        super(TestDoCatchRedirections, self).setUp()
1464
        self.build_tree_contents([('a', '0123456789'),],)
5247.2.26 by Vincent Ladeuil
Fix http redirection socket leaks.
1465
        cleanup_http_redirection_connections(self)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1466
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.
1467
        self.old_transport = self.get_old_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1468
5247.3.31 by Vincent Ladeuil
Cleanup some imports in http_utils.py.
1469
    def get_a(self, t):
1470
        return t.get('a')
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1471
1472
    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.
1473
        t = self.get_new_transport()
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1474
1475
        # We use None for redirected so that we fail if redirected
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1476
        self.assertEqual('0123456789',
1477
                         transport.do_catching_redirections(
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1478
                self.get_a, t, None).read())
1479
1480
    def test_one_redirection(self):
1481
        self.redirections = 0
1482
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.
1483
        def redirected(t, exception, redirection_notice):
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1484
            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.
1485
            redirected_t = t._redirected_to(exception.source, exception.target)
1486
            return redirected_t
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1487
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1488
        self.assertEqual('0123456789',
1489
                         transport.do_catching_redirections(
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1490
                self.get_a, self.old_transport, redirected).read())
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1491
        self.assertEqual(1, self.redirections)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1492
1493
    def test_redirection_loop(self):
1494
1495
        def redirected(transport, exception, redirection_notice):
1496
            # By using the redirected url as a base dir for the
1497
            # *old* transport, we create a loop: a => a/a =>
1498
            # a/a/a
1499
            return self.old_transport.clone(exception.target)
1500
1501
        self.assertRaises(errors.TooManyRedirections,
1502
                          transport.do_catching_redirections,
1503
                          self.get_a, self.old_transport, redirected)
1504
1505
5957.2.1 by Vincent Ladeuil
Tweak the http Authorization tests to make some parts easier to reuse (parametrization mostly).
1506
def _setup_authentication_config(**kwargs):
1507
    conf = config.AuthenticationConfig()
1508
    conf._get_config().update({'httptest': kwargs})
1509
    conf._save()
1510
1511
1512
class TestUrllib2AuthHandler(tests.TestCaseWithTransport):
1513
    """Unit tests for glue by which urllib2 asks us for authentication"""
1514
1515
    def test_get_user_password_without_port(self):
1516
        """We cope if urllib2 doesn't tell us the port.
1517
1518
        See https://bugs.launchpad.net/bzr/+bug/654684
1519
        """
1520
        user = 'joe'
1521
        password = 'foo'
1522
        _setup_authentication_config(scheme='http', host='localhost',
1523
                                     user=user, password=password)
1524
        handler = _urllib2_wrappers.HTTPAuthHandler()
1525
        got_pass = handler.get_user_password(dict(
1526
            user='joe',
1527
            protocol='http',
1528
            host='localhost',
1529
            path='/',
1530
            realm='Realm',
1531
            ))
1532
        self.assertEquals((user, password), got_pass)
1533
1534
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1535
class TestAuth(http_utils.TestCaseWithWebserver):
1536
    """Test authentication scheme"""
1537
5462.3.15 by Martin Pool
Turn variations into scenario lists
1538
    scenarios = multiply_scenarios(
1539
        vary_by_http_client_implementation(),
1540
        vary_by_http_protocol_version(),
1541
        vary_by_http_auth_scheme(),
1542
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1543
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1544
    def setUp(self):
1545
        super(TestAuth, self).setUp()
1546
        self.server = self.get_readonly_server()
1547
        self.build_tree_contents([('a', 'contents of a\n'),
1548
                                  ('b', 'contents of b\n'),])
1549
1550
    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.
1551
        server = self._auth_server(protocol_version=self._protocol_version)
1552
        server._url_protocol = self._url_protocol
1553
        return server
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1554
1555
    def _testing_pycurl(self):
4913.2.11 by John Arbash Meinel
Convert a bunch more features over to ModuleAvailableFeature
1556
        # TODO: This is duplicated for lots of the classes in this file
1557
        return (features.pycurl.available()
1558
                and self._transport == PyCurlTransport)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1559
3910.2.4 by Vincent Ladeuil
Fixed as per John's review.
1560
    def get_user_url(self, user, password):
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1561
        """Build an url embedding user and password"""
1562
        url = '%s://' % self.server._url_protocol
1563
        if user is not None:
1564
            url += user
1565
            if password is not None:
1566
                url += ':' + password
1567
            url += '@'
1568
        url += '%s:%s/' % (self.server.host, self.server.port)
1569
        return url
1570
3910.2.4 by Vincent Ladeuil
Fixed as per John's review.
1571
    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.
1572
        t = transport.get_transport(self.get_user_url(user, password))
1573
        return t
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1574
1575
    def test_no_user(self):
1576
        self.server.add_user('joe', 'foo')
3910.2.4 by Vincent Ladeuil
Fixed as per John's review.
1577
        t = self.get_user_transport(None, None)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1578
        self.assertRaises(errors.InvalidHttpResponse, t.get, 'a')
1579
        # Only one 'Authentication Required' error should occur
1580
        self.assertEqual(1, self.server.auth_required_errors)
1581
1582
    def test_empty_pass(self):
1583
        self.server.add_user('joe', '')
1584
        t = self.get_user_transport('joe', '')
1585
        self.assertEqual('contents of a\n', t.get('a').read())
1586
        # Only one 'Authentication Required' error should occur
1587
        self.assertEqual(1, self.server.auth_required_errors)
1588
1589
    def test_user_pass(self):
1590
        self.server.add_user('joe', 'foo')
1591
        t = self.get_user_transport('joe', 'foo')
1592
        self.assertEqual('contents of a\n', t.get('a').read())
1593
        # Only one 'Authentication Required' error should occur
1594
        self.assertEqual(1, self.server.auth_required_errors)
1595
1596
    def test_unknown_user(self):
1597
        self.server.add_user('joe', 'foo')
1598
        t = self.get_user_transport('bill', 'foo')
1599
        self.assertRaises(errors.InvalidHttpResponse, t.get, 'a')
1600
        # Two 'Authentication Required' errors should occur (the
1601
        # initial 'who are you' and 'I don't know you, who are
1602
        # you').
1603
        self.assertEqual(2, self.server.auth_required_errors)
1604
1605
    def test_wrong_pass(self):
1606
        self.server.add_user('joe', 'foo')
1607
        t = self.get_user_transport('joe', 'bar')
1608
        self.assertRaises(errors.InvalidHttpResponse, t.get, 'a')
1609
        # Two 'Authentication Required' errors should occur (the
1610
        # initial 'who are you' and 'this is not you, who are you')
1611
        self.assertEqual(2, self.server.auth_required_errors)
1612
4222.3.12 by Jelmer Vernooij
Check that the HTTP transport prompts for usernames.
1613
    def test_prompt_for_username(self):
1614
        if self._testing_pycurl():
1615
            raise tests.TestNotApplicable(
1616
                'pycurl cannot prompt, it handles auth by embedding'
1617
                ' user:pass in urls only')
1618
1619
        self.server.add_user('joe', 'foo')
1620
        t = self.get_user_transport(None, None)
1621
        stdout = tests.StringIOWrapper()
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
1622
        stderr = tests.StringIOWrapper()
1623
        ui.ui_factory = tests.TestUIFactory(stdin='joe\nfoo\n',
1624
                                            stdout=stdout, stderr=stderr)
4222.3.12 by Jelmer Vernooij
Check that the HTTP transport prompts for usernames.
1625
        self.assertEqual('contents of a\n',t.get('a').read())
1626
        # stdin should be empty
1627
        self.assertEqual('', ui.ui_factory.stdin.readline())
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
1628
        stderr.seek(0)
4222.3.12 by Jelmer Vernooij
Check that the HTTP transport prompts for usernames.
1629
        expected_prompt = self._expected_username_prompt(t._unqualified_scheme)
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1630
        self.assertEqual(expected_prompt, stderr.read(len(expected_prompt)))
1631
        self.assertEqual('', stdout.getvalue())
4222.3.12 by Jelmer Vernooij
Check that the HTTP transport prompts for usernames.
1632
        self._check_password_prompt(t._unqualified_scheme, 'joe',
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
1633
                                    stderr.readline())
4284.1.2 by Vincent Ladeuil
Delete spurious space.
1634
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1635
    def test_prompt_for_password(self):
1636
        if self._testing_pycurl():
1637
            raise tests.TestNotApplicable(
1638
                'pycurl cannot prompt, it handles auth by embedding'
1639
                ' user:pass in urls only')
1640
1641
        self.server.add_user('joe', 'foo')
1642
        t = self.get_user_transport('joe', None)
1643
        stdout = tests.StringIOWrapper()
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
1644
        stderr = tests.StringIOWrapper()
1645
        ui.ui_factory = tests.TestUIFactory(stdin='foo\n',
1646
                                            stdout=stdout, stderr=stderr)
1647
        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.
1648
        # stdin should be empty
1649
        self.assertEqual('', ui.ui_factory.stdin.readline())
1650
        self._check_password_prompt(t._unqualified_scheme, 'joe',
4368.3.1 by Vincent Ladeuil
Use stderr for UI prompt to address bug #376582.
1651
                                    stderr.getvalue())
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1652
        self.assertEqual('', stdout.getvalue())
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1653
        # And we shouldn't prompt again for a different request
1654
        # against the same transport.
1655
        self.assertEqual('contents of b\n',t.get('b').read())
1656
        t2 = t.clone()
1657
        # And neither against a clone
1658
        self.assertEqual('contents of b\n',t2.get('b').read())
1659
        # Only one 'Authentication Required' error should occur
1660
        self.assertEqual(1, self.server.auth_required_errors)
1661
1662
    def _check_password_prompt(self, scheme, user, actual_prompt):
1663
        expected_prompt = (self._password_prompt_prefix
1664
                           + ("%s %s@%s:%d, Realm: '%s' password: "
1665
                              % (scheme.upper(),
1666
                                 user, self.server.host, self.server.port,
1667
                                 self.server.auth_realm)))
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1668
        self.assertEqual(expected_prompt, actual_prompt)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1669
4222.3.12 by Jelmer Vernooij
Check that the HTTP transport prompts for usernames.
1670
    def _expected_username_prompt(self, scheme):
1671
        return (self._username_prompt_prefix
1672
                + "%s %s:%d, Realm: '%s' username: " % (scheme.upper(),
1673
                                 self.server.host, self.server.port,
1674
                                 self.server.auth_realm))
1675
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1676
    def test_no_prompt_for_password_when_using_auth_config(self):
1677
        if self._testing_pycurl():
1678
            raise tests.TestNotApplicable(
1679
                'pycurl does not support authentication.conf'
1680
                ' since it cannot prompt')
1681
1682
        user =' joe'
1683
        password = 'foo'
1684
        stdin_content = 'bar\n'  # Not the right password
1685
        self.server.add_user(user, password)
1686
        t = self.get_user_transport(user, None)
1687
        ui.ui_factory = tests.TestUIFactory(stdin=stdin_content,
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
1688
                                            stderr=tests.StringIOWrapper())
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1689
        # 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).
1690
        _setup_authentication_config(scheme='http', port=self.server.port,
1691
                                     user=user, password=password)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1692
        # Issue a request to the server to connect
1693
        self.assertEqual('contents of a\n',t.get('a').read())
1694
        # stdin should have  been left untouched
1695
        self.assertEqual(stdin_content, ui.ui_factory.stdin.readline())
1696
        # Only one 'Authentication Required' error should occur
1697
        self.assertEqual(1, self.server.auth_required_errors)
1698
3111.1.26 by Vincent Ladeuil
Re-add a test lost in refactoring.
1699
    def test_changing_nonce(self):
4307.4.2 by Vincent Ladeuil
Handle servers proposing several authentication schemes.
1700
        if self._auth_server not in (http_utils.HTTPDigestAuthServer,
1701
                                     http_utils.ProxyDigestAuthServer):
1702
            raise tests.TestNotApplicable('HTTP/proxy auth digest only test')
3111.1.26 by Vincent Ladeuil
Re-add a test lost in refactoring.
1703
        if self._testing_pycurl():
1704
            raise tests.KnownFailure(
1705
                'pycurl does not handle a nonce change')
1706
        self.server.add_user('joe', 'foo')
1707
        t = self.get_user_transport('joe', 'foo')
1708
        self.assertEqual('contents of a\n', t.get('a').read())
1709
        self.assertEqual('contents of b\n', t.get('b').read())
1710
        # Only one 'Authentication Required' error should have
1711
        # occured so far
1712
        self.assertEqual(1, self.server.auth_required_errors)
1713
        # The server invalidates the current nonce
1714
        self.server.auth_nonce = self.server.auth_nonce + '. No, now!'
1715
        self.assertEqual('contents of a\n', t.get('a').read())
1716
        # Two 'Authentication Required' errors should occur (the
1717
        # initial 'who are you' and a second 'who are you' with the new nonce)
1718
        self.assertEqual(2, self.server.auth_required_errors)
1719
5484.2.1 by Martin Pool
Add failing test for AbstractAuthHandler and bug 654684
1720
    def test_user_from_auth_conf(self):
1721
        if self._testing_pycurl():
1722
            raise tests.TestNotApplicable(
1723
                'pycurl does not support authentication.conf')
1724
        user = 'joe'
1725
        password = 'foo'
1726
        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).
1727
        _setup_authentication_config(scheme='http', port=self.server.port,
1728
                                     user=user, password=password)
5484.2.1 by Martin Pool
Add failing test for AbstractAuthHandler and bug 654684
1729
        t = self.get_user_transport(None, None)
1730
        # Issue a request to the server to connect
1731
        self.assertEqual('contents of a\n', t.get('a').read())
1732
        # Only one 'Authentication Required' error should occur
1733
        self.assertEqual(1, self.server.auth_required_errors)
1734
5957.2.3 by Vincent Ladeuil
Mask credentials in the -Dhttp logging
1735
    def test_no_credential_leaks_in_log(self):
1736
        self.overrideAttr(debug, 'debug_flags', set(['http']))
1737
        user = 'joe'
1738
        password = 'very-sensitive-password'
1739
        self.server.add_user(user, password)
1740
        t = self.get_user_transport(user, password)
1741
        # Capture the debug calls to mutter
1742
        self.mutters = []
1743
        def mutter(*args):
1744
            lines = args[0] % args[1:]
1745
            # Some calls output multiple lines, just split them now since we
1746
            # care about a single one later.
1747
            self.mutters.extend(lines.splitlines())
1748
        self.overrideAttr(trace, 'mutter', mutter)
1749
        # Issue a request to the server to connect
1750
        self.assertEqual(True, t.has('a'))
1751
        # Only one 'Authentication Required' error should occur
1752
        self.assertEqual(1, self.server.auth_required_errors)
1753
        # Since the authentification succeeded, there should be a corresponding
1754
        # debug line
1755
        sent_auth_headers = [line for line in self.mutters
1756
                             if line.startswith('> %s' % (self._auth_header,))]
1757
        self.assertLength(1, sent_auth_headers)
1758
        self.assertStartsWith(sent_auth_headers[0],
1759
                              '> %s: <masked>' % (self._auth_header,))
1760
5484.2.1 by Martin Pool
Add failing test for AbstractAuthHandler and bug 654684
1761
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1762
class TestProxyAuth(TestAuth):
5957.2.1 by Vincent Ladeuil
Tweak the http Authorization tests to make some parts easier to reuse (parametrization mostly).
1763
    """Test proxy authentication schemes.
1764
1765
    This inherits from TestAuth to tweak the setUp and filter some failing
1766
    tests.
1767
    """
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1768
5462.3.15 by Martin Pool
Turn variations into scenario lists
1769
    scenarios = multiply_scenarios(
1770
        vary_by_http_client_implementation(),
1771
        vary_by_http_protocol_version(),
1772
        vary_by_http_proxy_auth_scheme(),
1773
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1774
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1775
    def setUp(self):
1776
        super(TestProxyAuth, self).setUp()
1777
        # Override the contents to avoid false positives
1778
        self.build_tree_contents([('a', 'not proxied contents of a\n'),
1779
                                  ('b', 'not proxied contents of b\n'),
1780
                                  ('a-proxied', 'contents of a\n'),
1781
                                  ('b-proxied', 'contents of b\n'),
1782
                                  ])
1783
3910.2.4 by Vincent Ladeuil
Fixed as per John's review.
1784
    def get_user_transport(self, user, password):
5570.3.10 by Vincent Ladeuil
Rework the http tests with overrideEnv.
1785
        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.
1786
        return TestAuth.get_user_transport(self, user, password)
3111.1.19 by Vincent Ladeuil
Merge back test_http_implementations.pc into test_http.py.
1787
1788
    def test_empty_pass(self):
1789
        if self._testing_pycurl():
1790
            import pycurl
1791
            if pycurl.version_info()[1] < '7.16.0':
1792
                raise tests.KnownFailure(
1793
                    'pycurl < 7.16.0 does not handle empty proxy passwords')
1794
        super(TestProxyAuth, self).test_empty_pass()
1795
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1796
1797
class SampleSocket(object):
1798
    """A socket-like object for use in testing the HTTP request handler."""
1799
1800
    def __init__(self, socket_read_content):
1801
        """Constructs a sample socket.
1802
1803
        :param socket_read_content: a byte sequence
1804
        """
1805
        # Use plain python StringIO so we can monkey-patch the close method to
1806
        # not discard the contents.
1807
        from StringIO import StringIO
1808
        self.readfile = StringIO(socket_read_content)
1809
        self.writefile = StringIO()
1810
        self.writefile.close = lambda: None
5247.3.18 by Vincent Ladeuil
Fix some fallouts from previous fixes, all tests passing (no more http leaks).
1811
        self.close = lambda: None
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1812
1813
    def makefile(self, mode='r', bufsize=None):
1814
        if 'r' in mode:
1815
            return self.readfile
1816
        else:
1817
            return self.writefile
1818
1819
1820
class SmartHTTPTunnellingTest(tests.TestCaseWithTransport):
1821
5462.3.15 by Martin Pool
Turn variations into scenario lists
1822
    scenarios = multiply_scenarios(
5705.1.1 by Vincent Ladeuil
Correctly parse partial range specifiers in the HTTP test server
1823
        vary_by_http_client_implementation(),
5462.3.15 by Martin Pool
Turn variations into scenario lists
1824
        vary_by_http_protocol_version(),
1825
        )
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1826
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1827
    def setUp(self):
1828
        super(SmartHTTPTunnellingTest, self).setUp()
1829
        # 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.
1830
        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.
1831
        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.
1832
        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.
1833
1834
    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.
1835
        server = http_utils.HTTPServerWithSmarts(
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1836
            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.
1837
        server._url_protocol = self._url_protocol
1838
        return server
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1839
3606.4.1 by Andrew Bennetts
Fix NotImplementedError when probing for smart protocol via HTTP.
1840
    def test_open_bzrdir(self):
1841
        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.
1842
        url = self.http_server.get_url() + 'relpath'
3606.4.1 by Andrew Bennetts
Fix NotImplementedError when probing for smart protocol via HTTP.
1843
        bd = bzrdir.BzrDir.open(url)
5247.2.28 by Vincent Ladeuil
Some more cleanups spotted on windows.
1844
        self.addCleanup(bd.transport.disconnect)
3606.4.1 by Andrew Bennetts
Fix NotImplementedError when probing for smart protocol via HTTP.
1845
        self.assertIsInstance(bd, _mod_remote.RemoteBzrDir)
1846
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1847
    def test_bulk_data(self):
1848
        # We should be able to send and receive bulk data in a single message.
1849
        # The 'readv' command in the smart protocol both sends and receives
1850
        # bulk data, so we use that.
1851
        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.
1852
        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.
1853
        medium = http_transport.get_smart_medium()
1854
        # Since we provide the medium, the url below will be mostly ignored
1855
        # during the test, as long as the path is '/'.
1856
        remote_transport = remote.RemoteTransport('bzr://fake_host/',
1857
                                                  medium=medium)
1858
        self.assertEqual(
1859
            [(0, "c")], list(remote_transport.readv("data-file", [(0,1)])))
1860
1861
    def test_http_send_smart_request(self):
1862
1863
        post_body = 'hello\n'
3245.4.59 by Andrew Bennetts
Various tweaks in response to Martin's review.
1864
        expected_reply_body = 'ok\x012\n'
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1865
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.
1866
        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.
1867
        medium = http_transport.get_smart_medium()
1868
        response = medium.send_http_smart_request(post_body)
1869
        reply_body = response.read()
1870
        self.assertEqual(expected_reply_body, reply_body)
1871
1872
    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.
1873
        httpd = self.http_server.server
3111.1.25 by Vincent Ladeuil
Fix the smart server failing test and use it against protocol combinations.
1874
1875
        socket = SampleSocket(
1876
            'POST /.bzr/smart %s \r\n' % self._protocol_version
1877
            # HTTP/1.1 posts must have a Content-Length (but it doesn't hurt
1878
            # for 1.0)
1879
            + 'Content-Length: 6\r\n'
1880
            '\r\n'
1881
            'hello\n')
1882
        # Beware: the ('localhost', 80) below is the
1883
        # client_address parameter, but we don't have one because
1884
        # we have defined a socket which is not bound to an
1885
        # address. The test framework never uses this client
1886
        # address, so far...
1887
        request_handler = http_utils.SmartRequestHandler(socket,
1888
                                                         ('localhost', 80),
1889
                                                         httpd)
1890
        response = socket.writefile.getvalue()
1891
        self.assertStartsWith(response, '%s 200 ' % self._protocol_version)
1892
        # 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.
1893
        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.
1894
        self.assertEndsWith(response, expected_end_of_response)
1895
1896
3430.3.4 by Vincent Ladeuil
Of course we can write tests !
1897
class ForbiddenRequestHandler(http_server.TestingHTTPRequestHandler):
1898
    """No smart server here request handler."""
1899
1900
    def do_POST(self):
1901
        self.send_error(403, "Forbidden")
1902
1903
1904
class SmartClientAgainstNotSmartServer(TestSpecificRequestHandler):
1905
    """Test smart client behaviour against an http server without smarts."""
1906
1907
    _req_handler_class = ForbiddenRequestHandler
1908
1909
    def test_probe_smart_server(self):
1910
        """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.
1911
        t = self.get_readonly_transport()
3430.3.4 by Vincent Ladeuil
Of course we can write tests !
1912
        # No need to build a valid smart request here, the server will not even
1913
        # try to interpret it.
1914
        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.
1915
                          t.get_smart_medium().send_http_smart_request,
1916
                          'whatever')
3430.3.4 by Vincent Ladeuil
Of course we can write tests !
1917
5247.3.15 by Vincent Ladeuil
All http tests passing, https failing.
1918
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
1919
class Test_redirected_to(tests.TestCase):
1920
5462.3.15 by Martin Pool
Turn variations into scenario lists
1921
    scenarios = vary_by_http_client_implementation()
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
1922
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
1923
    def test_redirected_to_subdir(self):
1924
        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.
1925
        r = t._redirected_to('http://www.example.com/foo',
1926
                             'http://www.example.com/foo/subdir')
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
1927
        self.assertIsInstance(r, type(t))
1928
        # Both transports share the some connection
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1929
        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.
1930
3878.4.3 by Vincent Ladeuil
Fix bug #303959 by returning a transport based on the same url
1931
    def test_redirected_to_self_with_slash(self):
1932
        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.
1933
        r = t._redirected_to('http://www.example.com/foo',
1934
                             'http://www.example.com/foo/')
3878.4.3 by Vincent Ladeuil
Fix bug #303959 by returning a transport based on the same url
1935
        self.assertIsInstance(r, type(t))
1936
        # Both transports share the some connection (one can argue that we
1937
        # should return the exact same transport here, but that seems
1938
        # overkill).
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1939
        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
1940
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
1941
    def test_redirected_to_host(self):
1942
        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.
1943
        r = t._redirected_to('http://www.example.com/foo',
1944
                             'http://foo.example.com/foo/subdir')
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
1945
        self.assertIsInstance(r, type(t))
1946
1947
    def test_redirected_to_same_host_sibling_protocol(self):
1948
        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.
1949
        r = t._redirected_to('http://www.example.com/foo',
1950
                             'https://www.example.com/foo')
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
1951
        self.assertIsInstance(r, type(t))
1952
1953
    def test_redirected_to_same_host_different_protocol(self):
1954
        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.
1955
        r = t._redirected_to('http://www.example.com/foo',
1956
                             'ftp://www.example.com/foo')
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
1957
        self.assertNotEquals(type(r), type(t))
1958
1959
    def test_redirected_to_different_host_same_user(self):
1960
        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.
1961
        r = t._redirected_to('http://www.example.com/foo',
1962
                             'https://foo.example.com/foo')
3878.4.2 by Vincent Ladeuil
Fix bug #265070 by providing a finer sieve for accepted redirections.
1963
        self.assertIsInstance(r, type(t))
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
1964
        self.assertEqual(t._user, r._user)
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
1965
1966
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
1967
class PredefinedRequestHandler(http_server.TestingHTTPRequestHandler):
1968
    """Request handler for a unique and pre-defined request.
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
1969
1970
    The only thing we care about here is how many bytes travel on the wire. But
1971
    since we want to measure it for a real http client, we have to send it
1972
    correct responses.
1973
1974
    We expect to receive a *single* request nothing more (and we won't even
1975
    check what request it is, we just measure the bytes read until an empty
1976
    line.
1977
    """
1978
4731.2.3 by Vincent Ladeuil
Reduce the leaking http tests from ~200 to ~5.
1979
    def _handle_one_request(self):
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
1980
        tcs = self.server.test_case_server
1981
        requestline = self.rfile.readline()
1982
        headers = self.MessageClass(self.rfile, 0)
1983
        # We just read: the request, the headers, an empty line indicating the
1984
        # end of the headers.
1985
        bytes_read = len(requestline)
1986
        for line in headers.headers:
1987
            bytes_read += len(line)
1988
        bytes_read += len('\r\n')
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
1989
        if requestline.startswith('POST'):
1990
            # The body should be a single line (or we don't know where it ends
1991
            # and we don't want to issue a blocking read)
1992
            body = self.rfile.readline()
1993
            bytes_read += len(body)
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
1994
        tcs.bytes_read = bytes_read
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
1995
1996
        # We set the bytes written *before* issuing the write, the client is
1997
        # supposed to consume every produced byte *before* checking that value.
3945.1.7 by Vincent Ladeuil
Test against https.
1998
1999
        # Doing the oppposite may lead to test failure: we may be interrupted
2000
        # after the write but before updating the value. The client can then
2001
        # continue and read the value *before* we can update it. And yes,
2002
        # this has been observed -- vila 20090129
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2003
        tcs.bytes_written = len(tcs.canned_response)
2004
        self.wfile.write(tcs.canned_response)
2005
2006
2007
class ActivityServerMixin(object):
2008
2009
    def __init__(self, protocol_version):
2010
        super(ActivityServerMixin, self).__init__(
2011
            request_handler=PredefinedRequestHandler,
2012
            protocol_version=protocol_version)
2013
        # Bytes read and written by the server
2014
        self.bytes_read = 0
2015
        self.bytes_written = 0
2016
        self.canned_response = None
2017
2018
2019
class ActivityHTTPServer(ActivityServerMixin, http_server.HttpServer):
2020
    pass
2021
2022
2023
if tests.HTTPSServerFeature.available():
2024
    from bzrlib.tests import https_server
2025
    class ActivityHTTPSServer(ActivityServerMixin, https_server.HTTPSServer):
2026
        pass
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2027
2028
4776.2.1 by Vincent Ladeuil
Support no activity report on http sockets.
2029
class TestActivityMixin(object):
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2030
    """Test socket activity reporting.
2031
2032
    We use a special purpose server to control the bytes sent and received and
2033
    be able to predict the activity on the client socket.
2034
    """
2035
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2036
    def setUp(self):
2037
        tests.TestCase.setUp(self)
2038
        self.server = self._activity_server(self._protocol_version)
4934.3.3 by Martin Pool
Rename Server.setUp to Server.start_server
2039
        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.
2040
        _activities = {} # Don't close over self and create a cycle
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2041
        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.
2042
            count = _activities.get(direction, 0)
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2043
            count += bytes
5901.1.1 by John Arbash Meinel
Re-apply the bits of TestCase that I wanted, on the new bzr.dev tip.
2044
            _activities[direction] = count
2045
        self.activities = _activities
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2046
2047
        # We override at class level because constructors may propagate the
2048
        # bound method and render instance overriding ineffective (an
4031.3.1 by Frank Aspell
Fixing various typos
2049
        # alternative would be to define a specific ui factory instead...)
4986.2.6 by Martin Pool
Clean up test_http setUp methods
2050
        self.overrideAttr(self._transport, '_report_activity', report_activity)
2051
        self.addCleanup(self.server.stop_server)
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2052
2053
    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.
2054
        t = self._transport(self.server.get_url())
2055
        # FIXME: Needs cleanup -- vila 20100611
2056
        return t
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2057
2058
    def assertActivitiesMatch(self):
2059
        self.assertEqual(self.server.bytes_read,
2060
                         self.activities.get('write', 0), 'written bytes')
2061
        self.assertEqual(self.server.bytes_written,
2062
                         self.activities.get('read', 0), 'read bytes')
2063
2064
    def test_get(self):
2065
        self.server.canned_response = '''HTTP/1.1 200 OK\r
2066
Date: Tue, 11 Jul 2006 04:32:56 GMT\r
2067
Server: Apache/2.0.54 (Fedora)\r
2068
Last-Modified: Sun, 23 Apr 2006 19:35:20 GMT\r
2069
ETag: "56691-23-38e9ae00"\r
2070
Accept-Ranges: bytes\r
2071
Content-Length: 35\r
2072
Connection: close\r
2073
Content-Type: text/plain; charset=UTF-8\r
2074
\r
2075
Bazaar-NG meta directory, format 1
2076
'''
2077
        t = self.get_transport()
3945.1.5 by Vincent Ladeuil
Start implementing http activity reporting at socket level.
2078
        self.assertEqual('Bazaar-NG meta directory, format 1\n',
2079
                         t.get('foo/bar').read())
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2080
        self.assertActivitiesMatch()
2081
2082
    def test_has(self):
2083
        self.server.canned_response = '''HTTP/1.1 200 OK\r
2084
Server: SimpleHTTP/0.6 Python/2.5.2\r
2085
Date: Thu, 29 Jan 2009 20:21:47 GMT\r
2086
Content-type: application/octet-stream\r
2087
Content-Length: 20\r
2088
Last-Modified: Thu, 29 Jan 2009 20:21:47 GMT\r
2089
\r
2090
'''
2091
        t = self.get_transport()
2092
        self.assertTrue(t.has('foo/bar'))
2093
        self.assertActivitiesMatch()
2094
2095
    def test_readv(self):
2096
        self.server.canned_response = '''HTTP/1.1 206 Partial Content\r
2097
Date: Tue, 11 Jul 2006 04:49:48 GMT\r
2098
Server: Apache/2.0.54 (Fedora)\r
2099
Last-Modified: Thu, 06 Jul 2006 20:22:05 GMT\r
2100
ETag: "238a3c-16ec2-805c5540"\r
2101
Accept-Ranges: bytes\r
2102
Content-Length: 1534\r
2103
Connection: close\r
2104
Content-Type: multipart/byteranges; boundary=418470f848b63279b\r
2105
\r
2106
\r
2107
--418470f848b63279b\r
2108
Content-type: text/plain; charset=UTF-8\r
2109
Content-range: bytes 0-254/93890\r
2110
\r
2111
mbp@sourcefrog.net-20050309040815-13242001617e4a06
2112
mbp@sourcefrog.net-20050309040929-eee0eb3e6d1e7627
2113
mbp@sourcefrog.net-20050309040957-6cad07f466bb0bb8
2114
mbp@sourcefrog.net-20050309041501-c840e09071de3b67
2115
mbp@sourcefrog.net-20050309044615-c24a3250be83220a
2116
\r
2117
--418470f848b63279b\r
2118
Content-type: text/plain; charset=UTF-8\r
2119
Content-range: bytes 1000-2049/93890\r
2120
\r
2121
40-fd4ec249b6b139ab
2122
mbp@sourcefrog.net-20050311063625-07858525021f270b
2123
mbp@sourcefrog.net-20050311231934-aa3776aff5200bb9
2124
mbp@sourcefrog.net-20050311231953-73aeb3a131c3699a
2125
mbp@sourcefrog.net-20050311232353-f5e33da490872c6a
2126
mbp@sourcefrog.net-20050312071639-0a8f59a34a024ff0
2127
mbp@sourcefrog.net-20050312073432-b2c16a55e0d6e9fb
2128
mbp@sourcefrog.net-20050312073831-a47c3335ece1920f
2129
mbp@sourcefrog.net-20050312085412-13373aa129ccbad3
2130
mbp@sourcefrog.net-20050313052251-2bf004cb96b39933
2131
mbp@sourcefrog.net-20050313052856-3edd84094687cb11
2132
mbp@sourcefrog.net-20050313053233-e30a4f28aef48f9d
2133
mbp@sourcefrog.net-20050313053853-7c64085594ff3072
2134
mbp@sourcefrog.net-20050313054757-a86c3f5871069e22
2135
mbp@sourcefrog.net-20050313061422-418f1f73b94879b9
2136
mbp@sourcefrog.net-20050313120651-497bd231b19df600
2137
mbp@sourcefrog.net-20050314024931-eae0170ef25a5d1a
2138
mbp@sourcefrog.net-20050314025438-d52099f915fe65fc
2139
mbp@sourcefrog.net-20050314025539-637a636692c055cf
2140
mbp@sourcefrog.net-20050314025737-55eb441f430ab4ba
2141
mbp@sourcefrog.net-20050314025901-d74aa93bb7ee8f62
2142
mbp@source\r
2143
--418470f848b63279b--\r
2144
'''
2145
        t = self.get_transport()
2146
        # Remember that the request is ignored and that the ranges below
2147
        # doesn't have to match the canned response.
2148
        l = list(t.readv('/foo/bar', ((0, 255), (1000, 1050))))
2149
        self.assertEqual(2, len(l))
2150
        self.assertActivitiesMatch()
2151
2152
    def test_post(self):
2153
        self.server.canned_response = '''HTTP/1.1 200 OK\r
2154
Date: Tue, 11 Jul 2006 04:32:56 GMT\r
2155
Server: Apache/2.0.54 (Fedora)\r
2156
Last-Modified: Sun, 23 Apr 2006 19:35:20 GMT\r
2157
ETag: "56691-23-38e9ae00"\r
2158
Accept-Ranges: bytes\r
2159
Content-Length: 35\r
2160
Connection: close\r
2161
Content-Type: text/plain; charset=UTF-8\r
2162
\r
2163
lalala whatever as long as itsssss
2164
'''
2165
        t = self.get_transport()
2166
        # 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.
2167
        # PredefinedRequestHandler._handle_one_request
3945.1.8 by Vincent Ladeuil
Add more tests, fix pycurl double handling, revert previous tracking.
2168
        code, f = t._post('abc def end-of-body\n')
2169
        self.assertEqual('lalala whatever as long as itsssss\n', f.read())
2170
        self.assertActivitiesMatch()
4776.2.1 by Vincent Ladeuil
Support no activity report on http sockets.
2171
2172
2173
class TestActivity(tests.TestCase, TestActivityMixin):
2174
5462.3.15 by Martin Pool
Turn variations into scenario lists
2175
    scenarios = multiply_scenarios(
2176
        vary_by_http_activity(),
2177
        vary_by_http_protocol_version(),
2178
        )
5462.3.11 by Martin Pool
Delete test_http.load_tests, and just specify variations per test
2179
4776.2.1 by Vincent Ladeuil
Support no activity report on http sockets.
2180
    def setUp(self):
4986.2.6 by Martin Pool
Clean up test_http setUp methods
2181
        TestActivityMixin.setUp(self)
4776.2.1 by Vincent Ladeuil
Support no activity report on http sockets.
2182
2183
2184
class TestNoReportActivity(tests.TestCase, TestActivityMixin):
2185
4986.2.6 by Martin Pool
Clean up test_http setUp methods
2186
    # Unlike TestActivity, we are really testing ReportingFileSocket and
2187
    # ReportingSocket, so we don't need all the parametrization. Since
2188
    # ReportingFileSocket and ReportingSocket are wrappers, it's easier to
2189
    # test them through their use by the transport than directly (that's a
2190
    # bit less clean but far more simpler and effective).
2191
    _activity_server = ActivityHTTPServer
2192
    _protocol_version = 'HTTP/1.1'
2193
4776.2.1 by Vincent Ladeuil
Support no activity report on http sockets.
2194
    def setUp(self):
4986.2.6 by Martin Pool
Clean up test_http setUp methods
2195
        self._transport =_urllib.HttpTransport_urllib
2196
        TestActivityMixin.setUp(self)
4776.2.1 by Vincent Ladeuil
Support no activity report on http sockets.
2197
2198
    def assertActivitiesMatch(self):
2199
        # Nothing to check here
2200
        pass
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2201
2202
2203
class TestAuthOnRedirected(http_utils.TestCaseWithRedirectedWebserver):
2204
    """Test authentication on the redirected http server."""
2205
5462.3.15 by Martin Pool
Turn variations into scenario lists
2206
    scenarios = vary_by_http_protocol_version()
5462.3.9 by Martin Pool
List variations within the test classes, rather than in load_tests
2207
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2208
    _auth_header = 'Authorization'
2209
    _password_prompt_prefix = ''
2210
    _username_prompt_prefix = ''
2211
    _auth_server = http_utils.HTTPBasicAuthServer
2212
    _transport = _urllib.HttpTransport_urllib
2213
2214
    def setUp(self):
2215
        super(TestAuthOnRedirected, self).setUp()
2216
        self.build_tree_contents([('a','a'),
2217
                                  ('1/',),
2218
                                  ('1/a', 'redirected once'),
2219
                                  ],)
2220
        new_prefix = 'http://%s:%s' % (self.new_server.host,
2221
                                       self.new_server.port)
2222
        self.old_server.redirections = [
2223
            ('(.*)', 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.
2224
        self.old_transport = self.get_old_transport()
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2225
        self.new_server.add_user('joe', 'foo')
5247.2.26 by Vincent Ladeuil
Fix http redirection socket leaks.
2226
        cleanup_http_redirection_connections(self)
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2227
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.
2228
    def create_transport_readonly_server(self):
2229
        server = self._auth_server(protocol_version=self._protocol_version)
2230
        server._url_protocol = self._url_protocol
2231
        return server
2232
2233
    def get_a(self, t):
2234
        return t.get('a')
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2235
2236
    def test_auth_on_redirected_via_do_catching_redirections(self):
2237
        self.redirections = 0
2238
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.
2239
        def redirected(t, exception, redirection_notice):
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2240
            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.
2241
            redirected_t = t._redirected_to(exception.source, exception.target)
5247.2.28 by Vincent Ladeuil
Some more cleanups spotted on windows.
2242
            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.
2243
            return redirected_t
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2244
2245
        stdout = tests.StringIOWrapper()
2246
        stderr = tests.StringIOWrapper()
2247
        ui.ui_factory = tests.TestUIFactory(stdin='joe\nfoo\n',
2248
                                            stdout=stdout, stderr=stderr)
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
2249
        self.assertEqual('redirected once',
2250
                         transport.do_catching_redirections(
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2251
                self.get_a, self.old_transport, redirected).read())
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
2252
        self.assertEqual(1, self.redirections)
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2253
        # stdin should be empty
2254
        self.assertEqual('', ui.ui_factory.stdin.readline())
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
2255
        # stdout should be empty, stderr will contains the prompts
2256
        self.assertEqual('', stdout.getvalue())
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2257
2258
    def test_auth_on_redirected_via_following_redirections(self):
2259
        self.new_server.add_user('joe', 'foo')
2260
        stdout = tests.StringIOWrapper()
2261
        stderr = tests.StringIOWrapper()
2262
        ui.ui_factory = tests.TestUIFactory(stdin='joe\nfoo\n',
2263
                                            stdout=stdout, stderr=stderr)
2264
        t = self.old_transport
2265
        req = RedirectedRequest('GET', t.abspath('a'))
2266
        new_prefix = 'http://%s:%s' % (self.new_server.host,
2267
                                       self.new_server.port)
2268
        self.old_server.redirections = [
2269
            ('(.*)', r'%s/1\1' % (new_prefix), 301),]
5247.2.28 by Vincent Ladeuil
Some more cleanups spotted on windows.
2270
        self.assertEqual('redirected once', t._perform(req).read())
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2271
        # stdin should be empty
2272
        self.assertEqual('', ui.ui_factory.stdin.readline())
4795.4.6 by Vincent Ladeuil
Fixed as per John's review.
2273
        # stdout should be empty, stderr will contains the prompts
2274
        self.assertEqual('', stdout.getvalue())
4795.4.5 by Vincent Ladeuil
Make sure all redirection code paths can handle authentication.
2275