1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
# Copyright (C) 2005, 2006 Canonical
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# FIXME: This test should be repeated for each available http client
# implementation; at the moment we have urllib and pycurl.
# TODO: Should be renamed to bzrlib.transport.http.tests?
import socket
import bzrlib
from bzrlib.errors import (DependencyNotPresent,
ConnectionError,
)
from bzrlib.tests import TestCase, TestSkipped
from bzrlib.transport import Transport
from bzrlib.transport.http import extract_auth, HttpTransportBase
from bzrlib.transport.http._urllib import HttpTransport_urllib
from bzrlib.tests.HTTPTestUtil import TestCaseWithWebserver
class FakeManager (object):
def __init__(self):
self.credentials = []
def add_password(self, realm, host, username, password):
self.credentials.append([realm, host, username, password])
class TestHttpUrls(TestCase):
def test_url_parsing(self):
f = FakeManager()
url = extract_auth('http://example.com', f)
self.assertEquals('http://example.com', url)
self.assertEquals(0, len(f.credentials))
url = extract_auth('http://user:pass@www.bazaar-vcs.org/bzr/bzr.dev', f)
self.assertEquals('http://www.bazaar-vcs.org/bzr/bzr.dev', url)
self.assertEquals(1, len(f.credentials))
self.assertEquals([None, 'www.bazaar-vcs.org', 'user', 'pass'], f.credentials[0])
def test_abs_url(self):
"""Construction of absolute http URLs"""
t = HttpTransport_urllib('http://bazaar-vcs.org/bzr/bzr.dev/')
eq = self.assertEqualDiff
eq(t.abspath('.'),
'http://bazaar-vcs.org/bzr/bzr.dev')
eq(t.abspath('foo/bar'),
'http://bazaar-vcs.org/bzr/bzr.dev/foo/bar')
eq(t.abspath('.bzr'),
'http://bazaar-vcs.org/bzr/bzr.dev/.bzr')
eq(t.abspath('.bzr/1//2/./3'),
'http://bazaar-vcs.org/bzr/bzr.dev/.bzr/1/2/3')
def test_invalid_http_urls(self):
"""Trap invalid construction of urls"""
t = HttpTransport_urllib('http://bazaar-vcs.org/bzr/bzr.dev/')
self.assertRaises(ValueError,
t.abspath,
'.bzr/')
self.assertRaises(ValueError,
t.abspath,
'/.bzr')
def test_http_root_urls(self):
"""Construction of URLs from server root"""
t = HttpTransport_urllib('http://bzr.ozlabs.org/')
eq = self.assertEqualDiff
eq(t.abspath('.bzr/tree-version'),
'http://bzr.ozlabs.org/.bzr/tree-version')
def test_http_impl_urls(self):
"""There are servers which ask for particular clients to connect"""
try:
from bzrlib.transport.http._pycurl import HttpServer_PyCurl
server = HttpServer_PyCurl()
try:
server.setUp()
url = server.get_url()
self.assertTrue(url.startswith('http+pycurl://'))
finally:
server.tearDown()
except DependencyNotPresent:
raise TestSkipped('pycurl not present')
class TestHttpMixins(object):
def _prep_tree(self):
self.build_tree(['xxx', 'foo/', 'foo/bar'], line_endings='binary',
transport=self.get_transport())
def test_http_has(self):
server = self.get_readonly_server()
t = self._transport(server.get_url())
self.assertEqual(t.has('foo/bar'), True)
self.assertEqual(len(server.logs), 1)
self.assertContainsRe(server.logs[0],
r'"HEAD /foo/bar HTTP/1.." (200|302) - "-" "bzr/')
def test_http_has_not_found(self):
server = self.get_readonly_server()
t = self._transport(server.get_url())
self.assertEqual(t.has('not-found'), False)
self.assertContainsRe(server.logs[1],
r'"HEAD /not-found HTTP/1.." 404 - "-" "bzr/')
def test_http_get(self):
server = self.get_readonly_server()
t = self._transport(server.get_url())
fp = t.get('foo/bar')
self.assertEqualDiff(
fp.read(),
'contents of foo/bar\n')
self.assertEqual(len(server.logs), 1)
self.assertTrue(server.logs[0].find(
'"GET /foo/bar HTTP/1.1" 200 - "-" "bzr/%s' % bzrlib.__version__) > -1)
class TestHttpConnections_urllib(TestCaseWithWebserver, TestHttpMixins):
_transport = HttpTransport_urllib
def setUp(self):
TestCaseWithWebserver.setUp(self)
self._prep_tree()
def test_has_on_bogus_host(self):
# Get a free address and don't 'accept' on it, so that we
# can be sure there is no http handler there, but set a
# reasonable timeout to not slow down tests too much.
default_timeout = socket.getdefaulttimeout()
try:
socket.setdefaulttimeout(2)
s = socket.socket()
s.bind(('localhost', 0))
t = self._transport('http://%s:%s/' % s.getsockname())
self.assertRaises(ConnectionError, t.has, 'foo/bar')
finally:
socket.setdefaulttimeout(default_timeout)
class TestHttpConnections_pycurl(TestCaseWithWebserver, TestHttpMixins):
def _get_pycurl_maybe(self):
try:
from bzrlib.transport.http._pycurl import PyCurlTransport
return PyCurlTransport
except DependencyNotPresent:
raise TestSkipped('pycurl not present')
_transport = property(_get_pycurl_maybe)
def setUp(self):
TestCaseWithWebserver.setUp(self)
self._prep_tree()
class TestHttpTransportRegistration(TestCase):
"""Test registrations of various http implementations"""
def test_http_registered(self):
import bzrlib.transport.http._urllib
from bzrlib.transport import get_transport
# urlllib should always be present
t = get_transport('http+urllib://bzr.google.com/')
self.assertIsInstance(t, Transport)
self.assertIsInstance(t, bzrlib.transport.http._urllib.HttpTransport_urllib)
class TestOffsets(TestCase):
"""Test offsets_to_ranges method"""
def test_offsets_to_ranges_simple(self):
to_range = HttpTransportBase.offsets_to_ranges
ranges = to_range([(10, 1)])
self.assertEqual([[10, 10]], ranges)
ranges = to_range([(0, 1), (1, 1)])
self.assertEqual([[0, 1]], ranges)
ranges = to_range([(1, 1), (0, 1)])
self.assertEqual([[0, 1]], ranges)
def test_offset_to_ranges_overlapped(self):
to_range = HttpTransportBase.offsets_to_ranges
ranges = to_range([(10, 1), (20, 2), (22, 5)])
self.assertEqual([[10, 10], [20, 26]], ranges)
ranges = to_range([(10, 1), (11, 2), (22, 5)])
self.assertEqual([[10, 12], [22, 26]], ranges)
class TestRangeHeader(TestCase):
"""Test range_header method"""
def check_header(self, value, ranges=[], tail=0):
range_header = HttpTransportBase.range_header
self.assertEqual(value, range_header(ranges, tail))
def test_range_header_single(self):
self.check_header('0-9', ranges=[[0,9]])
self.check_header('100-109', ranges=[[100,109]])
def test_range_header_tail(self):
self.check_header('-10', tail=10)
self.check_header('-50', tail=50)
def test_range_header_multi(self):
self.check_header('0-9,100-200,300-5000',
ranges=[(0,9), (100, 200), (300,5000)])
def test_range_header_mixed(self):
self.check_header('0-9,300-5000,-50',
ranges=[(0,9), (300,5000)],
tail=50)
|