~bzr-pqm/bzr/bzr.dev

2018.18.12 by Martin Pool
small test cleanups
1
# Copyright (C) 2004, 2005, 2006, 2007 Canonical Ltd
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
2
#
907.1.48 by John Arbash Meinel
Updated LocalTransport by passing it through the transport_test suite, and got it to pass.
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
7
#
907.1.48 by John Arbash Meinel
Updated LocalTransport by passing it through the transport_test suite, and got it to pass.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
12
#
907.1.48 by John Arbash Meinel
Updated LocalTransport by passing it through the transport_test suite, and got it to pass.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
17
1185.11.22 by John Arbash Meinel
Major refactoring of testtransport.
18
from cStringIO import StringIO
1442.1.44 by Robert Collins
Many transport related tweaks:
19
2018.18.12 by Martin Pool
small test cleanups
20
import bzrlib
2018.18.4 by Martin Pool
Change Transport.local_abspath to raise NotLocalUrl, and test.
21
from bzrlib import (
22
    errors,
2804.4.1 by Alexander Belchenko
some win32-specific fixes for selftest
23
    osutils,
2018.18.4 by Martin Pool
Change Transport.local_abspath to raise NotLocalUrl, and test.
24
    urlutils,
25
    )
2892.1.1 by Andrew Bennetts
Fix bug 146715: bzr+ssh:// and sftp:// should not assume port-not-specified means port 22
26
from bzrlib.errors import (DependencyNotPresent,
2379.2.1 by Robert Collins
Rewritten chroot transport that prevents accidental chroot escapes when
27
                           FileExists,
28
                           InvalidURLJoin,
29
                           NoSuchFile,
30
                           PathNotChild,
2052.6.1 by Robert Collins
``Transport.get`` has had its interface made more clear for ease of use.
31
                           ReadError,
1843.1.1 by John Arbash Meinel
Update get_transport to raise a nicer error which includes dependency info
32
                           UnsupportedProtocol,
1540.3.8 by Martin Pool
Some support for falling back between transport implementations.
33
                           )
1558.10.2 by Robert Collins
Refactor the FakeNFS support into a TransportDecorator.
34
from bzrlib.tests import TestCase, TestCaseInTempDir
2745.5.3 by Robert Collins
* Move transport logging into a new transport class
35
from bzrlib.transport import (_clear_protocol_handlers,
36
                              _CoalescedOffset,
2485.8.19 by Vincent Ladeuil
Add a new ConnectedTransport class refactored from [s]ftp and http.
37
                              ConnectedTransport,
1864.5.9 by John Arbash Meinel
Switch to returning an object to make the api more understandable.
38
                              _get_protocol_handlers,
2241.2.2 by ghigo
Create the TransportList class
39
                              _set_protocol_handlers,
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
40
                              _get_transport_modules,
1534.4.9 by Robert Collins
Add a readonly decorator for transports.
41
                              get_transport,
2052.6.1 by Robert Collins
``Transport.get`` has had its interface made more clear for ease of use.
42
                              LateReadError,
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
43
                              register_lazy_transport,
2241.2.2 by ghigo
Create the TransportList class
44
                              register_transport_proto,
1540.3.8 by Martin Pool
Some support for falling back between transport implementations.
45
                              Transport,
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
46
                              )
2018.5.104 by Andrew Bennetts
Completely rework chrooted transports.
47
from bzrlib.transport.chroot import ChrootServer
1540.3.6 by Martin Pool
[merge] update from bzr.dev
48
from bzrlib.transport.memory import MemoryTransport
2245.6.1 by Alexander Belchenko
win32 UNC path: recursive cloning UNC path to root stops on //HOST, not on //
49
from bzrlib.transport.local import (LocalTransport,
2245.6.2 by Alexander Belchenko
Fix name of emulated Win32LocalTransport as Robert suggested.
50
                                    EmulatedWin32LocalTransport)
2811.1.1 by Andrew Bennetts
Cherrypick fix proposed for 0.90.
51
from bzrlib.transport.remote import (
52
    BZR_DEFAULT_PORT,
53
    RemoteTCPTransport
54
    )
1951.2.1 by Martin Pool
Change to using LocalURLServer for testing.
55
56
57
# TODO: Should possibly split transport-specific tests into their own files.
1185.58.2 by John Arbash Meinel
Added mode to the appropriate transport functions, and tests to make sure they work.
58
59
1185.58.3 by John Arbash Meinel
code cleanup
60
class TestTransport(TestCase):
61
    """Test the non transport-concrete class functionality."""
62
2241.3.1 by ghigo
uncomment test test__get_set_protocol_handlers
63
    def test__get_set_protocol_handlers(self):
64
        handlers = _get_protocol_handlers()
65
        self.assertNotEqual([], handlers.keys( ))
66
        try:
67
            _clear_protocol_handlers()
68
            self.assertEqual([], _get_protocol_handlers().keys())
69
        finally:
70
            _set_protocol_handlers(handlers)
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
71
72
    def test_get_transport_modules(self):
73
        handlers = _get_protocol_handlers()
2745.5.3 by Robert Collins
* Move transport logging into a new transport class
74
        # don't pollute the current handlers
75
        _clear_protocol_handlers()
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
76
        class SampleHandler(object):
77
            """I exist, isnt that enough?"""
78
        try:
2241.2.2 by ghigo
Create the TransportList class
79
            _clear_protocol_handlers()
80
            register_transport_proto('foo')
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
81
            register_lazy_transport('foo', 'bzrlib.tests.test_transport', 'TestTransport.SampleHandler')
2241.2.2 by ghigo
Create the TransportList class
82
            register_transport_proto('bar')
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
83
            register_lazy_transport('bar', 'bzrlib.tests.test_transport', 'TestTransport.SampleHandler')
2379.2.1 by Robert Collins
Rewritten chroot transport that prevents accidental chroot escapes when
84
            self.assertEqual([SampleHandler.__module__, 'bzrlib.transport.chroot'],
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
85
                             _get_transport_modules())
86
        finally:
87
            _set_protocol_handlers(handlers)
1540.3.8 by Martin Pool
Some support for falling back between transport implementations.
88
89
    def test_transport_dependency(self):
90
        """Transport with missing dependency causes no error"""
91
        saved_handlers = _get_protocol_handlers()
2745.5.3 by Robert Collins
* Move transport logging into a new transport class
92
        # don't pollute the current handlers
93
        _clear_protocol_handlers()
1540.3.8 by Martin Pool
Some support for falling back between transport implementations.
94
        try:
2241.2.2 by ghigo
Create the TransportList class
95
            register_transport_proto('foo')
1540.3.8 by Martin Pool
Some support for falling back between transport implementations.
96
            register_lazy_transport('foo', 'bzrlib.tests.test_transport',
97
                    'BadTransportHandler')
1843.1.1 by John Arbash Meinel
Update get_transport to raise a nicer error which includes dependency info
98
            try:
99
                get_transport('foo://fooserver/foo')
100
            except UnsupportedProtocol, e:
101
                e_str = str(e)
102
                self.assertEquals('Unsupported protocol'
103
                                  ' for url "foo://fooserver/foo":'
104
                                  ' Unable to import library "some_lib":'
105
                                  ' testing missing dependency', str(e))
106
            else:
107
                self.fail('Did not raise UnsupportedProtocol')
1540.3.8 by Martin Pool
Some support for falling back between transport implementations.
108
        finally:
1540.3.10 by Martin Pool
[broken] keep hooking pycurl into test framework
109
            # restore original values
110
            _set_protocol_handlers(saved_handlers)
111
            
112
    def test_transport_fallback(self):
113
        """Transport with missing dependency causes no error"""
114
        saved_handlers = _get_protocol_handlers()
115
        try:
2241.2.2 by ghigo
Create the TransportList class
116
            _clear_protocol_handlers()
117
            register_transport_proto('foo')
1540.3.10 by Martin Pool
[broken] keep hooking pycurl into test framework
118
            register_lazy_transport('foo', 'bzrlib.tests.test_transport',
119
                    'BackupTransportHandler')
120
            register_lazy_transport('foo', 'bzrlib.tests.test_transport',
121
                    'BadTransportHandler')
122
            t = get_transport('foo://fooserver/foo')
123
            self.assertTrue(isinstance(t, BackupTransportHandler))
124
        finally:
1540.3.8 by Martin Pool
Some support for falling back between transport implementations.
125
            _set_protocol_handlers(saved_handlers)
1864.5.1 by John Arbash Meinel
Change the readv combining algorithm for one that is easier to test.
126
2052.6.1 by Robert Collins
``Transport.get`` has had its interface made more clear for ease of use.
127
    def test_LateReadError(self):
128
        """The LateReadError helper should raise on read()."""
129
        a_file = LateReadError('a path')
130
        try:
131
            a_file.read()
132
        except ReadError, error:
133
            self.assertEqual('a path', error.path)
134
        self.assertRaises(ReadError, a_file.read, 40)
135
        a_file.close()
136
1996.3.20 by John Arbash Meinel
[merge] bzr.dev 2063
137
    def test__combine_paths(self):
138
        t = Transport('/')
139
        self.assertEqual('/home/sarah/project/foo',
140
                         t._combine_paths('/home/sarah', 'project/foo'))
141
        self.assertEqual('/etc',
142
                         t._combine_paths('/home/sarah', '../../etc'))
2070.3.2 by Andrew Bennetts
Merge from bzr.dev
143
        self.assertEqual('/etc',
144
                         t._combine_paths('/home/sarah', '../../../etc'))
145
        self.assertEqual('/etc',
146
                         t._combine_paths('/home/sarah', '/etc'))
1996.3.20 by John Arbash Meinel
[merge] bzr.dev 2063
147
2018.18.4 by Martin Pool
Change Transport.local_abspath to raise NotLocalUrl, and test.
148
    def test_local_abspath_non_local_transport(self):
149
        # the base implementation should throw
150
        t = MemoryTransport()
151
        e = self.assertRaises(errors.NotLocalUrl, t.local_abspath, 't')
152
        self.assertEqual('memory:///t is not a local path.', str(e))
153
1864.5.1 by John Arbash Meinel
Change the readv combining algorithm for one that is easier to test.
154
155
class TestCoalesceOffsets(TestCase):
156
    
1864.5.3 by John Arbash Meinel
Allow collapsing ranges even if they are just 'close'
157
    def check(self, expected, offsets, limit=0, fudge=0):
1864.5.1 by John Arbash Meinel
Change the readv combining algorithm for one that is easier to test.
158
        coalesce = Transport._coalesce_offsets
1864.5.9 by John Arbash Meinel
Switch to returning an object to make the api more understandable.
159
        exp = [_CoalescedOffset(*x) for x in expected]
160
        out = list(coalesce(offsets, limit=limit, fudge_factor=fudge))
161
        self.assertEqual(exp, out)
1864.5.1 by John Arbash Meinel
Change the readv combining algorithm for one that is easier to test.
162
163
    def test_coalesce_empty(self):
164
        self.check([], [])
165
166
    def test_coalesce_simple(self):
167
        self.check([(0, 10, [(0, 10)])], [(0, 10)])
168
169
    def test_coalesce_unrelated(self):
170
        self.check([(0, 10, [(0, 10)]),
171
                    (20, 10, [(0, 10)]),
172
                   ], [(0, 10), (20, 10)])
1530.1.11 by Robert Collins
Push the transport permutations list into each transport module allowing for automatic testing of new modules that are registered as transports.
173
            
1864.5.1 by John Arbash Meinel
Change the readv combining algorithm for one that is easier to test.
174
    def test_coalesce_unsorted(self):
175
        self.check([(20, 10, [(0, 10)]),
176
                    (0, 10, [(0, 10)]),
177
                   ], [(20, 10), (0, 10)])
178
179
    def test_coalesce_nearby(self):
180
        self.check([(0, 20, [(0, 10), (10, 10)])],
181
                   [(0, 10), (10, 10)])
182
183
    def test_coalesce_overlapped(self):
184
        self.check([(0, 15, [(0, 10), (5, 10)])],
185
                   [(0, 10), (5, 10)])
186
187
    def test_coalesce_limit(self):
188
        self.check([(10, 50, [(0, 10), (10, 10), (20, 10),
189
                              (30, 10), (40, 10)]),
190
                    (60, 50, [(0, 10), (10, 10), (20, 10),
191
                              (30, 10), (40, 10)]),
192
                   ], [(10, 10), (20, 10), (30, 10), (40, 10),
193
                       (50, 10), (60, 10), (70, 10), (80, 10),
194
                       (90, 10), (100, 10)],
195
                    limit=5)
196
197
    def test_coalesce_no_limit(self):
198
        self.check([(10, 100, [(0, 10), (10, 10), (20, 10),
199
                               (30, 10), (40, 10), (50, 10),
200
                               (60, 10), (70, 10), (80, 10),
201
                               (90, 10)]),
202
                   ], [(10, 10), (20, 10), (30, 10), (40, 10),
203
                       (50, 10), (60, 10), (70, 10), (80, 10),
204
                       (90, 10), (100, 10)])
205
1864.5.3 by John Arbash Meinel
Allow collapsing ranges even if they are just 'close'
206
    def test_coalesce_fudge(self):
207
        self.check([(10, 30, [(0, 10), (20, 10)]),
208
                    (100, 10, [(0, 10),]),
209
                   ], [(10, 10), (30, 10), (100, 10)],
210
                   fudge=10
211
                  )
212
1540.3.3 by Martin Pool
Review updates of pycurl transport
213
1442.1.44 by Robert Collins
Many transport related tweaks:
214
class TestMemoryTransport(TestCase):
215
216
    def test_get_transport(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
217
        MemoryTransport()
1442.1.44 by Robert Collins
Many transport related tweaks:
218
219
    def test_clone(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
220
        transport = MemoryTransport()
221
        self.assertTrue(isinstance(transport, MemoryTransport))
1910.15.3 by Andrew Bennetts
Make memory transport pass tests.
222
        self.assertEqual("memory:///", transport.clone("/").base)
1442.1.44 by Robert Collins
Many transport related tweaks:
223
224
    def test_abspath(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
225
        transport = MemoryTransport()
1685.1.42 by John Arbash Meinel
A couple more fixes to make sure memory:/// works correctly.
226
        self.assertEqual("memory:///relpath", transport.abspath('relpath'))
1442.1.44 by Robert Collins
Many transport related tweaks:
227
1910.15.1 by Andrew Bennetts
More tests for abspath and clone behaviour
228
    def test_abspath_of_root(self):
229
        transport = MemoryTransport()
230
        self.assertEqual("memory:///", transport.base)
231
        self.assertEqual("memory:///", transport.abspath('/'))
232
2070.3.1 by Andrew Bennetts
Fix memory_transport.abspath('/foo')
233
    def test_abspath_of_relpath_starting_at_root(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
234
        transport = MemoryTransport()
2070.3.1 by Andrew Bennetts
Fix memory_transport.abspath('/foo')
235
        self.assertEqual("memory:///foo", transport.abspath('/foo'))
1442.1.44 by Robert Collins
Many transport related tweaks:
236
237
    def test_append_and_get(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
238
        transport = MemoryTransport()
1955.3.16 by John Arbash Meinel
Switch over to Transport.append_bytes or append_files
239
        transport.append_bytes('path', 'content')
1442.1.44 by Robert Collins
Many transport related tweaks:
240
        self.assertEqual(transport.get('path').read(), 'content')
1955.3.16 by John Arbash Meinel
Switch over to Transport.append_bytes or append_files
241
        transport.append_file('path', StringIO('content'))
1442.1.44 by Robert Collins
Many transport related tweaks:
242
        self.assertEqual(transport.get('path').read(), 'contentcontent')
243
244
    def test_put_and_get(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
245
        transport = MemoryTransport()
1955.3.7 by John Arbash Meinel
Fix the deprecation warnings in the transport tests themselves
246
        transport.put_file('path', StringIO('content'))
1442.1.44 by Robert Collins
Many transport related tweaks:
247
        self.assertEqual(transport.get('path').read(), 'content')
1955.3.7 by John Arbash Meinel
Fix the deprecation warnings in the transport tests themselves
248
        transport.put_bytes('path', 'content')
1442.1.44 by Robert Collins
Many transport related tweaks:
249
        self.assertEqual(transport.get('path').read(), 'content')
250
251
    def test_append_without_dir_fails(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
252
        transport = MemoryTransport()
1442.1.44 by Robert Collins
Many transport related tweaks:
253
        self.assertRaises(NoSuchFile,
1955.3.16 by John Arbash Meinel
Switch over to Transport.append_bytes or append_files
254
                          transport.append_bytes, 'dir/path', 'content')
1442.1.44 by Robert Collins
Many transport related tweaks:
255
256
    def test_put_without_dir_fails(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
257
        transport = MemoryTransport()
1442.1.44 by Robert Collins
Many transport related tweaks:
258
        self.assertRaises(NoSuchFile,
1955.3.7 by John Arbash Meinel
Fix the deprecation warnings in the transport tests themselves
259
                          transport.put_file, 'dir/path', StringIO('content'))
1442.1.44 by Robert Collins
Many transport related tweaks:
260
261
    def test_get_missing(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
262
        transport = MemoryTransport()
1442.1.44 by Robert Collins
Many transport related tweaks:
263
        self.assertRaises(NoSuchFile, transport.get, 'foo')
264
265
    def test_has_missing(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
266
        transport = MemoryTransport()
1442.1.44 by Robert Collins
Many transport related tweaks:
267
        self.assertEquals(False, transport.has('foo'))
268
269
    def test_has_present(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
270
        transport = MemoryTransport()
1955.3.16 by John Arbash Meinel
Switch over to Transport.append_bytes or append_files
271
        transport.append_bytes('foo', 'content')
1442.1.44 by Robert Collins
Many transport related tweaks:
272
        self.assertEquals(True, transport.has('foo'))
273
2120.3.1 by John Arbash Meinel
Fix MemoryTransport.list_dir() implementation, and update tests
274
    def test_list_dir(self):
275
        transport = MemoryTransport()
276
        transport.put_bytes('foo', 'content')
277
        transport.mkdir('dir')
278
        transport.put_bytes('dir/subfoo', 'content')
279
        transport.put_bytes('dirlike', 'content')
280
281
        self.assertEquals(['dir', 'dirlike', 'foo'], sorted(transport.list_dir('.')))
282
        self.assertEquals(['subfoo'], sorted(transport.list_dir('dir')))
283
1442.1.44 by Robert Collins
Many transport related tweaks:
284
    def test_mkdir(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
285
        transport = MemoryTransport()
1442.1.44 by Robert Collins
Many transport related tweaks:
286
        transport.mkdir('dir')
1955.3.16 by John Arbash Meinel
Switch over to Transport.append_bytes or append_files
287
        transport.append_bytes('dir/path', 'content')
1442.1.44 by Robert Collins
Many transport related tweaks:
288
        self.assertEqual(transport.get('dir/path').read(), 'content')
289
290
    def test_mkdir_missing_parent(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
291
        transport = MemoryTransport()
1442.1.44 by Robert Collins
Many transport related tweaks:
292
        self.assertRaises(NoSuchFile,
293
                          transport.mkdir, 'dir/dir')
294
295
    def test_mkdir_twice(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
296
        transport = MemoryTransport()
1442.1.44 by Robert Collins
Many transport related tweaks:
297
        transport.mkdir('dir')
298
        self.assertRaises(FileExists, transport.mkdir, 'dir')
1530.1.5 by Robert Collins
Reinstate Memory parameter tests.
299
300
    def test_parameters(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
301
        transport = MemoryTransport()
1530.1.5 by Robert Collins
Reinstate Memory parameter tests.
302
        self.assertEqual(True, transport.listable())
303
        self.assertEqual(False, transport.is_readonly())
1442.1.44 by Robert Collins
Many transport related tweaks:
304
305
    def test_iter_files_recursive(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
306
        transport = MemoryTransport()
1442.1.44 by Robert Collins
Many transport related tweaks:
307
        transport.mkdir('dir')
1955.3.7 by John Arbash Meinel
Fix the deprecation warnings in the transport tests themselves
308
        transport.put_bytes('dir/foo', 'content')
309
        transport.put_bytes('dir/bar', 'content')
310
        transport.put_bytes('bar', 'content')
1442.1.44 by Robert Collins
Many transport related tweaks:
311
        paths = set(transport.iter_files_recursive())
312
        self.assertEqual(set(['dir/foo', 'dir/bar', 'bar']), paths)
313
314
    def test_stat(self):
1540.3.6 by Martin Pool
[merge] update from bzr.dev
315
        transport = MemoryTransport()
1955.3.7 by John Arbash Meinel
Fix the deprecation warnings in the transport tests themselves
316
        transport.put_bytes('foo', 'content')
317
        transport.put_bytes('bar', 'phowar')
1442.1.44 by Robert Collins
Many transport related tweaks:
318
        self.assertEqual(7, transport.stat('foo').st_size)
319
        self.assertEqual(6, transport.stat('bar').st_size)
1185.35.31 by Aaron Bentley
Throw ConnectionError instead of NoSuchFile except when we get a 404
320
2070.5.1 by Andrew Bennetts
Add ChrootTransportDecorator.
321
322
class ChrootDecoratorTransportTest(TestCase):
323
    """Chroot decoration specific tests."""
324
2018.5.54 by Andrew Bennetts
Fix ChrootTransportDecorator's abspath method to be consistent with its clone
325
    def test_abspath(self):
326
        # The abspath is always relative to the chroot_url.
2018.5.104 by Andrew Bennetts
Completely rework chrooted transports.
327
        server = ChrootServer(get_transport('memory:///foo/bar/'))
328
        server.setUp()
329
        transport = get_transport(server.get_url())
330
        self.assertEqual(server.get_url(), transport.abspath('/'))
2018.5.54 by Andrew Bennetts
Fix ChrootTransportDecorator's abspath method to be consistent with its clone
331
332
        subdir_transport = transport.clone('subdir')
2018.5.104 by Andrew Bennetts
Completely rework chrooted transports.
333
        self.assertEqual(server.get_url(), subdir_transport.abspath('/'))
334
        server.tearDown()
2379.2.1 by Robert Collins
Rewritten chroot transport that prevents accidental chroot escapes when
335
336
    def test_clone(self):
2018.5.104 by Andrew Bennetts
Completely rework chrooted transports.
337
        server = ChrootServer(get_transport('memory:///foo/bar/'))
338
        server.setUp()
339
        transport = get_transport(server.get_url())
2018.5.42 by Robert Collins
Various hopefully improvements, but wsgi is broken, handing over to spiv :).
340
        # relpath from root and root path are the same
341
        relpath_cloned = transport.clone('foo')
342
        abspath_cloned = transport.clone('/foo')
2018.5.104 by Andrew Bennetts
Completely rework chrooted transports.
343
        self.assertEqual(server, relpath_cloned.server)
344
        self.assertEqual(server, abspath_cloned.server)
345
        server.tearDown()
2018.5.46 by Andrew Bennetts
Fix ChrootTransportDecorator's clone to pass less surprising offsets to the decorated transport's clone.
346
    
2018.5.104 by Andrew Bennetts
Completely rework chrooted transports.
347
    def test_chroot_url_preserves_chroot(self):
348
        """Calling get_transport on a chroot transport's base should produce a
349
        transport with exactly the same behaviour as the original chroot
350
        transport.
351
352
        This is so that it is not possible to escape a chroot by doing::
353
            url = chroot_transport.base
354
            parent_url = urlutils.join(url, '..')
355
            new_transport = get_transport(parent_url)
356
        """
357
        server = ChrootServer(get_transport('memory:///path/subpath'))
358
        server.setUp()
359
        transport = get_transport(server.get_url())
360
        new_transport = get_transport(transport.base)
361
        self.assertEqual(transport.server, new_transport.server)
362
        self.assertEqual(transport.base, new_transport.base)
363
        server.tearDown()
364
        
365
    def test_urljoin_preserves_chroot(self):
366
        """Using urlutils.join(url, '..') on a chroot URL should not produce a
367
        URL that escapes the intended chroot.
368
369
        This is so that it is not possible to escape a chroot by doing::
370
            url = chroot_transport.base
371
            parent_url = urlutils.join(url, '..')
372
            new_transport = get_transport(parent_url)
373
        """
374
        server = ChrootServer(get_transport('memory:///path/'))
375
        server.setUp()
376
        transport = get_transport(server.get_url())
377
        self.assertRaises(
378
            InvalidURLJoin, urlutils.join, transport.base, '..')
379
        server.tearDown()
380
381
382
class ChrootServerTest(TestCase):
383
384
    def test_construct(self):
385
        backing_transport = MemoryTransport()
386
        server = ChrootServer(backing_transport)
387
        self.assertEqual(backing_transport, server.backing_transport)
388
389
    def test_setUp(self):
390
        backing_transport = MemoryTransport()
391
        server = ChrootServer(backing_transport)
392
        server.setUp()
2241.3.5 by ghigo
update to the latest bzr.dev
393
        self.assertTrue(server.scheme in _get_protocol_handlers().keys())
2018.5.104 by Andrew Bennetts
Completely rework chrooted transports.
394
395
    def test_tearDown(self):
396
        backing_transport = MemoryTransport()
397
        server = ChrootServer(backing_transport)
398
        server.setUp()
399
        server.tearDown()
2241.3.5 by ghigo
update to the latest bzr.dev
400
        self.assertFalse(server.scheme in _get_protocol_handlers().keys())
2018.5.104 by Andrew Bennetts
Completely rework chrooted transports.
401
402
    def test_get_url(self):
403
        backing_transport = MemoryTransport()
404
        server = ChrootServer(backing_transport)
405
        server.setUp()
406
        self.assertEqual('chroot-%d:///' % id(server), server.get_url())
407
        server.tearDown()
2018.5.53 by Andrew Bennetts
Small fix to urlutils.joinpath that was causing a misbehaviour in
408
2156.2.1 by v.ladeuil+lp at free
Make the tests windows compatible.
409
1534.4.9 by Robert Collins
Add a readonly decorator for transports.
410
class ReadonlyDecoratorTransportTest(TestCase):
411
    """Readonly decoration specific tests."""
412
413
    def test_local_parameters(self):
414
        import bzrlib.transport.readonly as readonly
415
        # connect to . in readonly mode
416
        transport = readonly.ReadonlyTransportDecorator('readonly+.')
417
        self.assertEqual(True, transport.listable())
418
        self.assertEqual(True, transport.is_readonly())
419
420
    def test_http_parameters(self):
2004.1.25 by v.ladeuil+lp at free
Shuffle http related test code. Hopefully it ends up at the right place :)
421
        from bzrlib.tests.HttpServer import HttpServer
1534.4.9 by Robert Collins
Add a readonly decorator for transports.
422
        import bzrlib.transport.readonly as readonly
423
        # connect to . via http which is not listable
424
        server = HttpServer()
425
        server.setUp()
426
        try:
427
            transport = get_transport('readonly+' + server.get_url())
428
            self.failUnless(isinstance(transport,
429
                                       readonly.ReadonlyTransportDecorator))
430
            self.assertEqual(False, transport.listable())
431
            self.assertEqual(True, transport.is_readonly())
432
        finally:
433
            server.tearDown()
1540.3.8 by Martin Pool
Some support for falling back between transport implementations.
434
435
1558.10.2 by Robert Collins
Refactor the FakeNFS support into a TransportDecorator.
436
class FakeNFSDecoratorTests(TestCaseInTempDir):
437
    """NFS decorator specific tests."""
438
439
    def get_nfs_transport(self, url):
440
        import bzrlib.transport.fakenfs as fakenfs
441
        # connect to url with nfs decoration
442
        return fakenfs.FakeNFSTransportDecorator('fakenfs+' + url)
443
444
    def test_local_parameters(self):
2701.1.1 by Martin Pool
Remove Transport.should_cache.
445
        # the listable and is_readonly parameters
1558.10.2 by Robert Collins
Refactor the FakeNFS support into a TransportDecorator.
446
        # are not changed by the fakenfs decorator
447
        transport = self.get_nfs_transport('.')
448
        self.assertEqual(True, transport.listable())
449
        self.assertEqual(False, transport.is_readonly())
450
451
    def test_http_parameters(self):
2701.1.1 by Martin Pool
Remove Transport.should_cache.
452
        # the listable and is_readonly parameters
1558.10.2 by Robert Collins
Refactor the FakeNFS support into a TransportDecorator.
453
        # are not changed by the fakenfs decorator
2004.1.25 by v.ladeuil+lp at free
Shuffle http related test code. Hopefully it ends up at the right place :)
454
        from bzrlib.tests.HttpServer import HttpServer
1558.10.2 by Robert Collins
Refactor the FakeNFS support into a TransportDecorator.
455
        # connect to . via http which is not listable
456
        server = HttpServer()
457
        server.setUp()
458
        try:
459
            transport = self.get_nfs_transport(server.get_url())
460
            self.assertIsInstance(
461
                transport, bzrlib.transport.fakenfs.FakeNFSTransportDecorator)
462
            self.assertEqual(False, transport.listable())
463
            self.assertEqual(True, transport.is_readonly())
464
        finally:
465
            server.tearDown()
466
467
    def test_fakenfs_server_default(self):
468
        # a FakeNFSServer() should bring up a local relpath server for itself
469
        import bzrlib.transport.fakenfs as fakenfs
470
        server = fakenfs.FakeNFSServer()
471
        server.setUp()
472
        try:
1951.2.1 by Martin Pool
Change to using LocalURLServer for testing.
473
            # the url should be decorated appropriately
1951.2.3 by Martin Pool
Localtransport cleanup review (john)
474
            self.assertStartsWith(server.get_url(), 'fakenfs+')
1558.10.2 by Robert Collins
Refactor the FakeNFS support into a TransportDecorator.
475
            # and we should be able to get a transport for it
476
            transport = get_transport(server.get_url())
477
            # which must be a FakeNFSTransportDecorator instance.
478
            self.assertIsInstance(
479
                transport, fakenfs.FakeNFSTransportDecorator)
480
        finally:
481
            server.tearDown()
482
483
    def test_fakenfs_rename_semantics(self):
484
        # a FakeNFS transport must mangle the way rename errors occur to
485
        # look like NFS problems.
486
        transport = self.get_nfs_transport('.')
487
        self.build_tree(['from/', 'from/foo', 'to/', 'to/bar'],
488
                        transport=transport)
2018.18.12 by Martin Pool
small test cleanups
489
        self.assertRaises(errors.ResourceBusy,
1558.10.2 by Robert Collins
Refactor the FakeNFS support into a TransportDecorator.
490
                          transport.rename, 'from', 'to')
491
492
1608.2.4 by Martin Pool
[broken] Add FakeFVATTransport
493
class FakeVFATDecoratorTests(TestCaseInTempDir):
494
    """Tests for simulation of VFAT restrictions"""
495
496
    def get_vfat_transport(self, url):
497
        """Return vfat-backed transport for test directory"""
498
        from bzrlib.transport.fakevfat import FakeVFATTransportDecorator
499
        return FakeVFATTransportDecorator('vfat+' + url)
500
501
    def test_transport_creation(self):
502
        from bzrlib.transport.fakevfat import FakeVFATTransportDecorator
503
        transport = self.get_vfat_transport('.')
504
        self.assertIsInstance(transport, FakeVFATTransportDecorator)
505
506
    def test_transport_mkdir(self):
507
        transport = self.get_vfat_transport('.')
508
        transport.mkdir('HELLO')
509
        self.assertTrue(transport.has('hello'))
510
        self.assertTrue(transport.has('Hello'))
511
1608.2.11 by Martin Pool
(FakeVFAT) add test for detection of invalid characters
512
    def test_forbidden_chars(self):
513
        transport = self.get_vfat_transport('.')
514
        self.assertRaises(ValueError, transport.has, "<NU>")
515
516
1540.3.8 by Martin Pool
Some support for falling back between transport implementations.
517
class BadTransportHandler(Transport):
518
    def __init__(self, base_url):
519
        raise DependencyNotPresent('some_lib', 'testing missing dependency')
520
521
522
class BackupTransportHandler(Transport):
523
    """Test transport that works as a backup for the BadTransportHandler"""
1540.3.10 by Martin Pool
[broken] keep hooking pycurl into test framework
524
    pass
1871.1.2 by Robert Collins
Reduce code duplication in transport-parameterised tests.
525
526
527
class TestTransportImplementation(TestCaseInTempDir):
528
    """Implementation verification for transports.
529
    
530
    To verify a transport we need a server factory, which is a callable
531
    that accepts no parameters and returns an implementation of
532
    bzrlib.transport.Server.
533
    
534
    That Server is then used to construct transport instances and test
535
    the transport via loopback activity.
536
537
    Currently this assumes that the Transport object is connected to the 
538
    current working directory.  So that whatever is done 
539
    through the transport, should show up in the working 
540
    directory, and vice-versa. This is a bug, because its possible to have
541
    URL schemes which provide access to something that may not be 
542
    result in storage on the local disk, i.e. due to file system limits, or 
543
    due to it being a database or some other non-filesystem tool.
544
545
    This also tests to make sure that the functions work with both
546
    generators and lists (assuming iter(list) is effectively a generator)
547
    """
548
    
549
    def setUp(self):
550
        super(TestTransportImplementation, self).setUp()
551
        self._server = self.transport_server()
552
        self._server.setUp()
2018.5.104 by Andrew Bennetts
Completely rework chrooted transports.
553
        self.addCleanup(self._server.tearDown)
1871.1.2 by Robert Collins
Reduce code duplication in transport-parameterised tests.
554
2520.3.1 by Vincent Ladeuil
Fix 110448 by adding a relpath parameter to get_transport.
555
    def get_transport(self, relpath=None):
556
        """Return a connected transport to the local directory.
557
558
        :param relpath: a path relative to the base url.
559
        """
1871.1.2 by Robert Collins
Reduce code duplication in transport-parameterised tests.
560
        base_url = self._server.get_url()
2520.3.1 by Vincent Ladeuil
Fix 110448 by adding a relpath parameter to get_transport.
561
        url = self._adjust_url(base_url, relpath)
1871.1.2 by Robert Collins
Reduce code duplication in transport-parameterised tests.
562
        # try getting the transport via the regular interface:
2520.3.1 by Vincent Ladeuil
Fix 110448 by adding a relpath parameter to get_transport.
563
        t = get_transport(url)
2485.8.39 by Vincent Ladeuil
Add tests around connection reuse.
564
        # vila--20070607 if the following are commented out the test suite
565
        # still pass. Is this really still needed or was it a forgotten
566
        # temporary fix ?
1986.2.5 by Robert Collins
Unbreak transport tests.
567
        if not isinstance(t, self.transport_class):
1871.1.2 by Robert Collins
Reduce code duplication in transport-parameterised tests.
568
            # we did not get the correct transport class type. Override the
569
            # regular connection behaviour by direct construction.
2520.3.1 by Vincent Ladeuil
Fix 110448 by adding a relpath parameter to get_transport.
570
            t = self.transport_class(url)
1871.1.2 by Robert Collins
Reduce code duplication in transport-parameterised tests.
571
        return t
1951.2.1 by Martin Pool
Change to using LocalURLServer for testing.
572
573
574
class TestLocalTransports(TestCase):
575
576
    def test_get_transport_from_abspath(self):
2804.4.1 by Alexander Belchenko
some win32-specific fixes for selftest
577
        here = osutils.abspath('.')
1951.2.1 by Martin Pool
Change to using LocalURLServer for testing.
578
        t = get_transport(here)
579
        self.assertIsInstance(t, LocalTransport)
580
        self.assertEquals(t.base, urlutils.local_path_to_url(here) + '/')
581
582
    def test_get_transport_from_relpath(self):
2804.4.1 by Alexander Belchenko
some win32-specific fixes for selftest
583
        here = osutils.abspath('.')
1951.2.1 by Martin Pool
Change to using LocalURLServer for testing.
584
        t = get_transport('.')
585
        self.assertIsInstance(t, LocalTransport)
1951.2.3 by Martin Pool
Localtransport cleanup review (john)
586
        self.assertEquals(t.base, urlutils.local_path_to_url('.') + '/')
1951.2.1 by Martin Pool
Change to using LocalURLServer for testing.
587
588
    def test_get_transport_from_local_url(self):
2804.4.1 by Alexander Belchenko
some win32-specific fixes for selftest
589
        here = osutils.abspath('.')
1951.2.1 by Martin Pool
Change to using LocalURLServer for testing.
590
        here_url = urlutils.local_path_to_url(here) + '/'
591
        t = get_transport(here_url)
592
        self.assertIsInstance(t, LocalTransport)
593
        self.assertEquals(t.base, here_url)
2245.6.1 by Alexander Belchenko
win32 UNC path: recursive cloning UNC path to root stops on //HOST, not on //
594
2018.18.4 by Martin Pool
Change Transport.local_abspath to raise NotLocalUrl, and test.
595
    def test_local_abspath(self):
2804.4.1 by Alexander Belchenko
some win32-specific fixes for selftest
596
        here = osutils.abspath('.')
2018.18.4 by Martin Pool
Change Transport.local_abspath to raise NotLocalUrl, and test.
597
        t = get_transport(here)
598
        self.assertEquals(t.local_abspath(''), here)
599
2245.6.1 by Alexander Belchenko
win32 UNC path: recursive cloning UNC path to root stops on //HOST, not on //
600
601
class TestWin32LocalTransport(TestCase):
602
603
    def test_unc_clone_to_root(self):
604
        # Win32 UNC path like \\HOST\path
605
        # clone to root should stop at least at \\HOST part
606
        # not on \\
2245.6.2 by Alexander Belchenko
Fix name of emulated Win32LocalTransport as Robert suggested.
607
        t = EmulatedWin32LocalTransport('file://HOST/path/to/some/dir/')
2245.6.1 by Alexander Belchenko
win32 UNC path: recursive cloning UNC path to root stops on //HOST, not on //
608
        for i in xrange(4):
609
            t = t.clone('..')
610
        self.assertEquals(t.base, 'file://HOST/')
611
        # make sure we reach the root
612
        t = t.clone('..')
613
        self.assertEquals(t.base, 'file://HOST/')
2477.1.7 by Martin Pool
test_transport must provide get_test_permutations
614
2485.8.61 by Vincent Ladeuil
From review comments, use a private scheme for testing.
615
2485.8.19 by Vincent Ladeuil
Add a new ConnectedTransport class refactored from [s]ftp and http.
616
class TestConnectedTransport(TestCase):
617
    """Tests for connected to remote server transports"""
618
619
    def test_parse_url(self):
2892.1.1 by Andrew Bennetts
Fix bug 146715: bzr+ssh:// and sftp:// should not assume port-not-specified means port 22
620
        t = ConnectedTransport('http://simple.example.com/home/source')
2485.8.19 by Vincent Ladeuil
Add a new ConnectedTransport class refactored from [s]ftp and http.
621
        self.assertEquals(t._host, 'simple.example.com')
2892.1.1 by Andrew Bennetts
Fix bug 146715: bzr+ssh:// and sftp:// should not assume port-not-specified means port 22
622
        self.assertEquals(t._port, 80)
2485.8.19 by Vincent Ladeuil
Add a new ConnectedTransport class refactored from [s]ftp and http.
623
        self.assertEquals(t._path, '/home/source/')
624
        self.failUnless(t._user is None)
625
        self.failUnless(t._password is None)
626
2892.1.1 by Andrew Bennetts
Fix bug 146715: bzr+ssh:// and sftp:// should not assume port-not-specified means port 22
627
        self.assertEquals(t.base, 'http://simple.example.com/home/source/')
2485.8.19 by Vincent Ladeuil
Add a new ConnectedTransport class refactored from [s]ftp and http.
628
629
    def test_parse_quoted_url(self):
630
        t = ConnectedTransport('http://ro%62ey:h%40t@ex%41mple.com:2222/path')
631
        self.assertEquals(t._host, 'exAmple.com')
632
        self.assertEquals(t._port, 2222)
633
        self.assertEquals(t._user, 'robey')
634
        self.assertEquals(t._password, 'h@t')
635
        self.assertEquals(t._path, '/path/')
636
637
        # Base should not keep track of the password
638
        self.assertEquals(t.base, 'http://robey@exAmple.com:2222/path/')
639
640
    def test_parse_invalid_url(self):
641
        self.assertRaises(errors.InvalidURL,
642
                          ConnectedTransport,
643
                          'sftp://lily.org:~janneke/public/bzr/gub')
644
645
    def test_relpath(self):
646
        t = ConnectedTransport('sftp://user@host.com/abs/path')
647
648
        self.assertEquals(t.relpath('sftp://user@host.com/abs/path/sub'), 'sub')
649
        self.assertRaises(errors.PathNotChild, t.relpath,
650
                          'http://user@host.com/abs/path/sub')
651
        self.assertRaises(errors.PathNotChild, t.relpath,
652
                          'sftp://user2@host.com/abs/path/sub')
653
        self.assertRaises(errors.PathNotChild, t.relpath,
654
                          'sftp://user@otherhost.com/abs/path/sub')
655
        self.assertRaises(errors.PathNotChild, t.relpath,
656
                          'sftp://user@host.com:33/abs/path/sub')
657
        # Make sure it works when we don't supply a username
658
        t = ConnectedTransport('sftp://host.com/abs/path')
659
        self.assertEquals(t.relpath('sftp://host.com/abs/path/sub'), 'sub')
660
661
        # Make sure it works when parts of the path will be url encoded
662
        t = ConnectedTransport('sftp://host.com/dev/%path')
663
        self.assertEquals(t.relpath('sftp://host.com/dev/%path/sub'), 'sub')
664
2485.8.32 by Vincent Ladeuil
Keep credentials used at connection creation for reconnection purposes.
665
    def test_connection_sharing_propagate_credentials(self):
2900.2.16 by Vincent Ladeuil
Make hhtp proxy aware of AuthenticationConfig (for password).
666
        t = ConnectedTransport('ftp://user@host.com/abs/path')
667
        self.assertEquals('user', t._user)
668
        self.assertEquals('host.com', t._host)
2485.8.32 by Vincent Ladeuil
Keep credentials used at connection creation for reconnection purposes.
669
        self.assertIs(None, t._get_connection())
670
        self.assertIs(None, t._password)
671
        c = t.clone('subdir')
2900.2.16 by Vincent Ladeuil
Make hhtp proxy aware of AuthenticationConfig (for password).
672
        self.assertIs(None, c._get_connection())
2485.8.32 by Vincent Ladeuil
Keep credentials used at connection creation for reconnection purposes.
673
        self.assertIs(None, t._password)
674
675
        # Simulate the user entering a password
676
        password = 'secret'
677
        connection = object()
678
        t._set_connection(connection, password)
679
        self.assertIs(connection, t._get_connection())
680
        self.assertIs(password, t._get_credentials())
681
        self.assertIs(connection, c._get_connection())
682
        self.assertIs(password, c._get_credentials())
2485.8.30 by Vincent Ladeuil
Implement reliable connection sharing.
683
2485.8.39 by Vincent Ladeuil
Add tests around connection reuse.
684
        # credentials can be updated
685
        new_password = 'even more secret'
686
        c._update_credentials(new_password)
687
        self.assertIs(connection, t._get_connection())
688
        self.assertIs(new_password, t._get_credentials())
689
        self.assertIs(connection, c._get_connection())
690
        self.assertIs(new_password, c._get_credentials())
691
2477.1.7 by Martin Pool
test_transport must provide get_test_permutations
692
2476.3.5 by Vincent Ladeuil
Naive implementation of transport reuse by Transport.get_transport().
693
class TestReusedTransports(TestCase):
2485.8.19 by Vincent Ladeuil
Add a new ConnectedTransport class refactored from [s]ftp and http.
694
    """Tests for transport reuse"""
2476.3.5 by Vincent Ladeuil
Naive implementation of transport reuse by Transport.get_transport().
695
696
    def test_reuse_same_transport(self):
1551.18.10 by Aaron Bentley
get_transport appends to possible_transports if it's an empty list
697
        possible_transports = []
698
        t1 = get_transport('http://foo/',
699
                           possible_transports=possible_transports)
700
        self.assertEqual([t1], possible_transports)
2485.8.37 by Vincent Ladeuil
Fix merge multiple connections. Test suite *not* passing (sftp
701
        t2 = get_transport('http://foo/', possible_transports=[t1])
702
        self.assertIs(t1, t2)
703
704
        # Also check that final '/' are handled correctly
705
        t3 = get_transport('http://foo/path/')
706
        t4 = get_transport('http://foo/path', possible_transports=[t3])
707
        self.assertIs(t3, t4)
708
2485.8.39 by Vincent Ladeuil
Add tests around connection reuse.
709
        t5 = get_transport('http://foo/path')
710
        t6 = get_transport('http://foo/path/', possible_transports=[t5])
711
        self.assertIs(t5, t6)
2476.3.5 by Vincent Ladeuil
Naive implementation of transport reuse by Transport.get_transport().
712
713
    def test_don_t_reuse_different_transport(self):
2485.8.39 by Vincent Ladeuil
Add tests around connection reuse.
714
        t1 = get_transport('http://foo/path')
715
        t2 = get_transport('http://bar/path', possible_transports=[t1])
2485.8.40 by Vincent Ladeuil
Fix typo.
716
        self.assertIsNot(t1, t2)
2476.3.13 by Vincent Ladeuil
merge bzr.dev@2495
717
718
2811.1.1 by Andrew Bennetts
Cherrypick fix proposed for 0.90.
719
class TestRemoteTCPTransport(TestCase):
720
    """Tests for bzr:// transport (RemoteTCPTransport)."""
721
722
    def test_relpath_with_implicit_port(self):
723
        """Connected transports with the same URL are the same, even if the
724
        port is implicit.
725
726
        So t.relpath(url) should always be '' if t.base is the same as url, or
727
        if the only difference is that one explicitly specifies the default
728
        port and the other doesn't specify a port.
729
        """
730
        t_implicit_port = RemoteTCPTransport('bzr://host.com/')
731
        self.assertEquals('', t_implicit_port.relpath('bzr://host.com/'))
732
        self.assertEquals('', t_implicit_port.relpath('bzr://host.com:4155/'))
733
        t_explicit_port = RemoteTCPTransport('bzr://host.com:4155/')
734
        self.assertEquals('', t_explicit_port.relpath('bzr://host.com/'))
735
        self.assertEquals('', t_explicit_port.relpath('bzr://host.com:4155/'))
736
737
    def test_construct_uses_default_port(self):
738
        """If no port is specified, then RemoteTCPTransport uses
739
        BZR_DEFAULT_PORT.
740
        """
741
        t = get_transport('bzr://host.com/')
742
        self.assertEquals(BZR_DEFAULT_PORT, t._port)
743
744
    def test_url_omits_default_port(self):
745
        """If a RemoteTCPTransport uses the default port, then its base URL
746
        will omit the port.
747
748
        This is like how ":80" is omitted from "http://example.com/".
749
        """
750
        t = get_transport('bzr://host.com:4155/')
751
        self.assertEquals('bzr://host.com/', t.base)
752
753
    def test_url_includes_non_default_port(self):
754
        """Non-default ports are included in the transport's URL.
755
756
        Contrast this to `test_url_omits_default_port`.
757
        """
758
        t = get_transport('bzr://host.com:666/')
759
        self.assertEquals('bzr://host.com:666/', t.base)
760
761
2892.1.1 by Andrew Bennetts
Fix bug 146715: bzr+ssh:// and sftp:// should not assume port-not-specified means port 22
762
class SSHPortTestMixin(object):
763
    """Mixin class for testing SSH-based transports' use of ports in URLs.
764
    
765
    Unlike other connected transports, SSH-based transports (sftp, bzr+ssh)
766
    don't have a default port, because the user may have OpenSSH configured to
767
    use a non-standard port.
768
    """
769
770
    def make_url(self, netloc):
771
        """Make a url for the given netloc, using the scheme defined on the
772
        TestCase.
773
        """
774
        return '%s://%s/' % (self.scheme, netloc)
775
776
    def test_relpath_with_implicit_port(self):
777
        """SSH-based transports with the same URL are the same.
778
        
779
        Note than an unspecified port number is different to port 22 (because
780
        OpenSSH may be configured to use a non-standard port).
781
782
        So t.relpath(url) should always be '' if t.base is the same as url, but
783
        raise PathNotChild if the ports in t and url are not both specified (or
784
        both unspecified).
785
        """
786
        url_implicit_port = self.make_url('host.com')
787
        url_explicit_port = self.make_url('host.com:22')
788
789
        t_implicit_port = get_transport(url_implicit_port)
790
        self.assertEquals('', t_implicit_port.relpath(url_implicit_port))
791
        self.assertRaises(
792
            PathNotChild, t_implicit_port.relpath, url_explicit_port)
793
        
794
        t_explicit_port = get_transport(url_explicit_port)
795
        self.assertRaises(
796
            PathNotChild, t_explicit_port.relpath, url_implicit_port)
797
        self.assertEquals('', t_explicit_port.relpath(url_explicit_port))
798
799
    def test_construct_with_no_port(self):
800
        """If no port is specified, then the SSH-based transport's _port will
801
        be None.
802
        """
803
        t = get_transport(self.make_url('host.com'))
804
        self.assertEquals(None, t._port)
805
806
    def test_url_with_no_port(self):
807
        """If no port was specified, none is shown in the base URL."""
808
        t = get_transport(self.make_url('host.com'))
809
        self.assertEquals(self.make_url('host.com'), t.base)
810
811
    def test_url_includes_port(self):
812
        """An SSH-based transport's base will show the port if one was
813
        specified, even if that port is 22, because we do not assume 22 is the
814
        default port.
815
        """
816
        # 22 is the "standard" port for SFTP.
817
        t = get_transport(self.make_url('host.com:22'))
818
        self.assertEquals(self.make_url('host.com:22'), t.base)
819
        # 666 is not a standard port.
820
        t = get_transport(self.make_url('host.com:666'))
821
        self.assertEquals(self.make_url('host.com:666'), t.base)
822
823
824
class SFTPTransportPortTest(TestCase, SSHPortTestMixin):
825
    """Tests for sftp:// transport (SFTPTransport)."""
826
827
    scheme = 'sftp'
828
829
830
class BzrSSHTransportPortTest(TestCase, SSHPortTestMixin):
831
    """Tests for bzr+ssh:// transport (RemoteSSHTransport)."""
832
833
    scheme = 'bzr+ssh'
834
835
2745.5.3 by Robert Collins
* Move transport logging into a new transport class
836
class TestTransportTrace(TestCase):
837
838
    def test_get(self):
839
        transport = get_transport('trace+memory://')
840
        self.assertIsInstance(
841
            transport, bzrlib.transport.trace.TransportTraceDecorator)
842
843
    def test_clone_preserves_activity(self):
844
        transport = get_transport('trace+memory://')
845
        transport2 = transport.clone('.')
846
        self.assertTrue(transport is not transport2)
847
        self.assertTrue(transport._activity is transport2._activity)
848
849
    # the following specific tests are for the operations that have made use of
850
    # logging in tests; we could test every single operation but doing that
851
    # still won't cause a test failure when the top level Transport API
852
    # changes; so there is little return doing that.
853
    def test_get(self):
854
        transport = get_transport('trace+memory:///')
855
        transport.put_bytes('foo', 'barish')
856
        transport.get('foo')
857
        expected_result = []
858
        # put_bytes records the bytes, not the content to avoid memory
859
        # pressure.
860
        expected_result.append(('put_bytes', 'foo', 6, None))
861
        # get records the file name only.
862
        expected_result.append(('get', 'foo'))
863
        self.assertEqual(expected_result, transport._activity)
864
865
    def test_readv(self):
866
        transport = get_transport('trace+memory:///')
867
        transport.put_bytes('foo', 'barish')
868
        list(transport.readv('foo', [(0, 1), (3, 2)], adjust_for_latency=True,
869
            upper_limit=6))
870
        expected_result = []
871
        # put_bytes records the bytes, not the content to avoid memory
872
        # pressure.
873
        expected_result.append(('put_bytes', 'foo', 6, None))
874
        # readv records the supplied offset request
875
        expected_result.append(('readv', 'foo', [(0, 1), (3, 2)], True, 6))
876
        self.assertEqual(expected_result, transport._activity)