~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport.py

  • Committer: Aaron Bentley
  • Date: 2012-07-13 19:32:33 UTC
  • mto: This revision was merged to the branch mainline in revision 6540.
  • Revision ID: aaron@aaronbentley.com-20120713193233-l6y0l0twwhd3wmka
Switch to much simpler implementation of restore_uncommitted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2004, 2005, 2006, 2007 Canonical Ltd
 
1
# Copyright (C) 2005-2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
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
 
 
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
 
 
18
from cStringIO import StringIO
 
19
import errno
18
20
import os
 
21
import subprocess
19
22
import sys
20
 
import stat
21
 
from cStringIO import StringIO
 
23
import threading
22
24
 
23
 
import bzrlib
24
25
from bzrlib import (
25
26
    errors,
 
27
    osutils,
 
28
    tests,
 
29
    transport,
26
30
    urlutils,
27
31
    )
28
 
from bzrlib.errors import (ConnectionError,
29
 
                           DependencyNotPresent,
30
 
                           FileExists,
31
 
                           InvalidURLJoin,
32
 
                           NoSuchFile,
33
 
                           PathNotChild,
34
 
                           TransportNotPossible,
35
 
                           ConnectionError,
36
 
                           DependencyNotPresent,
37
 
                           ReadError,
38
 
                           UnsupportedProtocol,
39
 
                           )
40
 
from bzrlib.tests import TestCase, TestCaseInTempDir
41
 
from bzrlib.transport import (_CoalescedOffset,
42
 
                              ConnectedTransport,
43
 
                              _get_protocol_handlers,
44
 
                              _set_protocol_handlers,
45
 
                              _get_transport_modules,
46
 
                              get_transport,
47
 
                              LateReadError,
48
 
                              register_lazy_transport,
49
 
                              register_transport_proto,
50
 
                              _clear_protocol_handlers,
51
 
                              Transport,
52
 
                              )
53
 
from bzrlib.transport.chroot import ChrootServer
54
 
from bzrlib.transport.memory import MemoryTransport
55
 
from bzrlib.transport.local import (LocalTransport,
56
 
                                    EmulatedWin32LocalTransport)
 
32
from bzrlib.directory_service import directories
 
33
from bzrlib.transport import (
 
34
    chroot,
 
35
    fakenfs,
 
36
    http,
 
37
    local,
 
38
    location_to_url,
 
39
    memory,
 
40
    pathfilter,
 
41
    readonly,
 
42
    )
 
43
import bzrlib.transport.trace
 
44
from bzrlib.tests import (
 
45
    features,
 
46
    test_server,
 
47
    )
57
48
 
58
49
 
59
50
# TODO: Should possibly split transport-specific tests into their own files.
60
51
 
61
52
 
62
 
class TestTransport(TestCase):
 
53
class TestTransport(tests.TestCase):
63
54
    """Test the non transport-concrete class functionality."""
64
55
 
65
56
    def test__get_set_protocol_handlers(self):
66
 
        handlers = _get_protocol_handlers()
67
 
        self.assertNotEqual([], handlers.keys( ))
68
 
        try:
69
 
            _clear_protocol_handlers()
70
 
            self.assertEqual([], _get_protocol_handlers().keys())
71
 
        finally:
72
 
            _set_protocol_handlers(handlers)
 
57
        handlers = transport._get_protocol_handlers()
 
58
        self.assertNotEqual([], handlers.keys())
 
59
        transport._clear_protocol_handlers()
 
60
        self.addCleanup(transport._set_protocol_handlers, handlers)
 
61
        self.assertEqual([], transport._get_protocol_handlers().keys())
73
62
 
74
63
    def test_get_transport_modules(self):
75
 
        handlers = _get_protocol_handlers()
 
64
        handlers = transport._get_protocol_handlers()
 
65
        self.addCleanup(transport._set_protocol_handlers, handlers)
 
66
        # don't pollute the current handlers
 
67
        transport._clear_protocol_handlers()
 
68
 
76
69
        class SampleHandler(object):
77
70
            """I exist, isnt that enough?"""
78
 
        try:
79
 
            _clear_protocol_handlers()
80
 
            register_transport_proto('foo')
81
 
            register_lazy_transport('foo', 'bzrlib.tests.test_transport', 'TestTransport.SampleHandler')
82
 
            register_transport_proto('bar')
83
 
            register_lazy_transport('bar', 'bzrlib.tests.test_transport', 'TestTransport.SampleHandler')
84
 
            self.assertEqual([SampleHandler.__module__, 'bzrlib.transport.chroot'],
85
 
                             _get_transport_modules())
86
 
        finally:
87
 
            _set_protocol_handlers(handlers)
 
71
        transport._clear_protocol_handlers()
 
72
        transport.register_transport_proto('foo')
 
73
        transport.register_lazy_transport('foo',
 
74
                                            'bzrlib.tests.test_transport',
 
75
                                            'TestTransport.SampleHandler')
 
76
        transport.register_transport_proto('bar')
 
77
        transport.register_lazy_transport('bar',
 
78
                                            'bzrlib.tests.test_transport',
 
79
                                            'TestTransport.SampleHandler')
 
80
        self.assertEqual([SampleHandler.__module__,
 
81
                            'bzrlib.transport.chroot',
 
82
                            'bzrlib.transport.pathfilter'],
 
83
                            transport._get_transport_modules())
88
84
 
89
85
    def test_transport_dependency(self):
90
86
        """Transport with missing dependency causes no error"""
91
 
        saved_handlers = _get_protocol_handlers()
 
87
        saved_handlers = transport._get_protocol_handlers()
 
88
        self.addCleanup(transport._set_protocol_handlers, saved_handlers)
 
89
        # don't pollute the current handlers
 
90
        transport._clear_protocol_handlers()
 
91
        transport.register_transport_proto('foo')
 
92
        transport.register_lazy_transport(
 
93
            'foo', 'bzrlib.tests.test_transport', 'BadTransportHandler')
92
94
        try:
93
 
            register_transport_proto('foo')
94
 
            register_lazy_transport('foo', 'bzrlib.tests.test_transport',
95
 
                    'BadTransportHandler')
96
 
            try:
97
 
                get_transport('foo://fooserver/foo')
98
 
            except UnsupportedProtocol, e:
99
 
                e_str = str(e)
100
 
                self.assertEquals('Unsupported protocol'
101
 
                                  ' for url "foo://fooserver/foo":'
102
 
                                  ' Unable to import library "some_lib":'
103
 
                                  ' testing missing dependency', str(e))
104
 
            else:
105
 
                self.fail('Did not raise UnsupportedProtocol')
106
 
        finally:
107
 
            # restore original values
108
 
            _set_protocol_handlers(saved_handlers)
109
 
            
 
95
            transport.get_transport_from_url('foo://fooserver/foo')
 
96
        except errors.UnsupportedProtocol, e:
 
97
            e_str = str(e)
 
98
            self.assertEquals('Unsupported protocol'
 
99
                                ' for url "foo://fooserver/foo":'
 
100
                                ' Unable to import library "some_lib":'
 
101
                                ' testing missing dependency', str(e))
 
102
        else:
 
103
            self.fail('Did not raise UnsupportedProtocol')
 
104
 
110
105
    def test_transport_fallback(self):
111
106
        """Transport with missing dependency causes no error"""
112
 
        saved_handlers = _get_protocol_handlers()
 
107
        saved_handlers = transport._get_protocol_handlers()
 
108
        self.addCleanup(transport._set_protocol_handlers, saved_handlers)
 
109
        transport._clear_protocol_handlers()
 
110
        transport.register_transport_proto('foo')
 
111
        transport.register_lazy_transport(
 
112
            'foo', 'bzrlib.tests.test_transport', 'BackupTransportHandler')
 
113
        transport.register_lazy_transport(
 
114
            'foo', 'bzrlib.tests.test_transport', 'BadTransportHandler')
 
115
        t = transport.get_transport_from_url('foo://fooserver/foo')
 
116
        self.assertTrue(isinstance(t, BackupTransportHandler))
 
117
 
 
118
    def test_ssh_hints(self):
 
119
        """Transport ssh:// should raise an error pointing out bzr+ssh://"""
113
120
        try:
114
 
            _clear_protocol_handlers()
115
 
            register_transport_proto('foo')
116
 
            register_lazy_transport('foo', 'bzrlib.tests.test_transport',
117
 
                    'BackupTransportHandler')
118
 
            register_lazy_transport('foo', 'bzrlib.tests.test_transport',
119
 
                    'BadTransportHandler')
120
 
            t = get_transport('foo://fooserver/foo')
121
 
            self.assertTrue(isinstance(t, BackupTransportHandler))
122
 
        finally:
123
 
            _set_protocol_handlers(saved_handlers)
 
121
            transport.get_transport_from_url('ssh://fooserver/foo')
 
122
        except errors.UnsupportedProtocol, e:
 
123
            e_str = str(e)
 
124
            self.assertEquals('Unsupported protocol'
 
125
                              ' for url "ssh://fooserver/foo":'
 
126
                              ' bzr supports bzr+ssh to operate over ssh,'
 
127
                              ' use "bzr+ssh://fooserver/foo".',
 
128
                              str(e))
 
129
        else:
 
130
            self.fail('Did not raise UnsupportedProtocol')
124
131
 
125
132
    def test_LateReadError(self):
126
133
        """The LateReadError helper should raise on read()."""
127
 
        a_file = LateReadError('a path')
 
134
        a_file = transport.LateReadError('a path')
128
135
        try:
129
136
            a_file.read()
130
 
        except ReadError, error:
 
137
        except errors.ReadError, error:
131
138
            self.assertEqual('a path', error.path)
132
 
        self.assertRaises(ReadError, a_file.read, 40)
 
139
        self.assertRaises(errors.ReadError, a_file.read, 40)
133
140
        a_file.close()
134
141
 
135
 
    def test__combine_paths(self):
136
 
        t = Transport('/')
137
 
        self.assertEqual('/home/sarah/project/foo',
138
 
                         t._combine_paths('/home/sarah', 'project/foo'))
139
 
        self.assertEqual('/etc',
140
 
                         t._combine_paths('/home/sarah', '../../etc'))
141
 
        self.assertEqual('/etc',
142
 
                         t._combine_paths('/home/sarah', '../../../etc'))
143
 
        self.assertEqual('/etc',
144
 
                         t._combine_paths('/home/sarah', '/etc'))
145
 
 
146
142
    def test_local_abspath_non_local_transport(self):
147
143
        # the base implementation should throw
148
 
        t = MemoryTransport()
 
144
        t = memory.MemoryTransport()
149
145
        e = self.assertRaises(errors.NotLocalUrl, t.local_abspath, 't')
150
146
        self.assertEqual('memory:///t is not a local path.', str(e))
151
147
 
152
148
 
153
 
class TestCoalesceOffsets(TestCase):
154
 
    
155
 
    def check(self, expected, offsets, limit=0, fudge=0):
156
 
        coalesce = Transport._coalesce_offsets
157
 
        exp = [_CoalescedOffset(*x) for x in expected]
158
 
        out = list(coalesce(offsets, limit=limit, fudge_factor=fudge))
 
149
class TestCoalesceOffsets(tests.TestCase):
 
150
 
 
151
    def check(self, expected, offsets, limit=0, max_size=0, fudge=0):
 
152
        coalesce = transport.Transport._coalesce_offsets
 
153
        exp = [transport._CoalescedOffset(*x) for x in expected]
 
154
        out = list(coalesce(offsets, limit=limit, fudge_factor=fudge,
 
155
                            max_size=max_size))
159
156
        self.assertEqual(exp, out)
160
157
 
161
158
    def test_coalesce_empty(self):
168
165
        self.check([(0, 10, [(0, 10)]),
169
166
                    (20, 10, [(0, 10)]),
170
167
                   ], [(0, 10), (20, 10)])
171
 
            
 
168
 
172
169
    def test_coalesce_unsorted(self):
173
170
        self.check([(20, 10, [(0, 10)]),
174
171
                    (0, 10, [(0, 10)]),
179
176
                   [(0, 10), (10, 10)])
180
177
 
181
178
    def test_coalesce_overlapped(self):
182
 
        self.check([(0, 15, [(0, 10), (5, 10)])],
183
 
                   [(0, 10), (5, 10)])
 
179
        self.assertRaises(ValueError,
 
180
            self.check, [(0, 15, [(0, 10), (5, 10)])],
 
181
                        [(0, 10), (5, 10)])
184
182
 
185
183
    def test_coalesce_limit(self):
186
184
        self.check([(10, 50, [(0, 10), (10, 10), (20, 10),
203
201
 
204
202
    def test_coalesce_fudge(self):
205
203
        self.check([(10, 30, [(0, 10), (20, 10)]),
206
 
                    (100, 10, [(0, 10),]),
 
204
                    (100, 10, [(0, 10)]),
207
205
                   ], [(10, 10), (30, 10), (100, 10)],
208
 
                   fudge=10
 
206
                   fudge=10)
 
207
 
 
208
    def test_coalesce_max_size(self):
 
209
        self.check([(10, 20, [(0, 10), (10, 10)]),
 
210
                    (30, 50, [(0, 50)]),
 
211
                    # If one range is above max_size, it gets its own coalesced
 
212
                    # offset
 
213
                    (100, 80, [(0, 80)]),],
 
214
                   [(10, 10), (20, 10), (30, 50), (100, 80)],
 
215
                   max_size=50)
 
216
 
 
217
    def test_coalesce_no_max_size(self):
 
218
        self.check([(10, 170, [(0, 10), (10, 10), (20, 50), (70, 100)])],
 
219
                   [(10, 10), (20, 10), (30, 50), (80, 100)],
209
220
                  )
210
221
 
211
 
 
212
 
class TestMemoryTransport(TestCase):
 
222
    def test_coalesce_default_limit(self):
 
223
        # By default we use a 100MB max size.
 
224
        ten_mb = 10 * 1024 * 1024
 
225
        self.check([(0, 10 * ten_mb, [(i * ten_mb, ten_mb) for i in range(10)]),
 
226
                    (10*ten_mb, ten_mb, [(0, ten_mb)])],
 
227
                   [(i*ten_mb, ten_mb) for i in range(11)])
 
228
        self.check([(0, 11 * ten_mb, [(i * ten_mb, ten_mb) for i in range(11)])],
 
229
                   [(i * ten_mb, ten_mb) for i in range(11)],
 
230
                   max_size=1*1024*1024*1024)
 
231
 
 
232
 
 
233
class TestMemoryServer(tests.TestCase):
 
234
 
 
235
    def test_create_server(self):
 
236
        server = memory.MemoryServer()
 
237
        server.start_server()
 
238
        url = server.get_url()
 
239
        self.assertTrue(url in transport.transport_list_registry)
 
240
        t = transport.get_transport_from_url(url)
 
241
        del t
 
242
        server.stop_server()
 
243
        self.assertFalse(url in transport.transport_list_registry)
 
244
        self.assertRaises(errors.UnsupportedProtocol,
 
245
                          transport.get_transport, url)
 
246
 
 
247
 
 
248
class TestMemoryTransport(tests.TestCase):
213
249
 
214
250
    def test_get_transport(self):
215
 
        MemoryTransport()
 
251
        memory.MemoryTransport()
216
252
 
217
253
    def test_clone(self):
218
 
        transport = MemoryTransport()
219
 
        self.assertTrue(isinstance(transport, MemoryTransport))
220
 
        self.assertEqual("memory:///", transport.clone("/").base)
 
254
        t = memory.MemoryTransport()
 
255
        self.assertTrue(isinstance(t, memory.MemoryTransport))
 
256
        self.assertEqual("memory:///", t.clone("/").base)
221
257
 
222
258
    def test_abspath(self):
223
 
        transport = MemoryTransport()
224
 
        self.assertEqual("memory:///relpath", transport.abspath('relpath'))
 
259
        t = memory.MemoryTransport()
 
260
        self.assertEqual("memory:///relpath", t.abspath('relpath'))
225
261
 
226
262
    def test_abspath_of_root(self):
227
 
        transport = MemoryTransport()
228
 
        self.assertEqual("memory:///", transport.base)
229
 
        self.assertEqual("memory:///", transport.abspath('/'))
 
263
        t = memory.MemoryTransport()
 
264
        self.assertEqual("memory:///", t.base)
 
265
        self.assertEqual("memory:///", t.abspath('/'))
230
266
 
231
267
    def test_abspath_of_relpath_starting_at_root(self):
232
 
        transport = MemoryTransport()
233
 
        self.assertEqual("memory:///foo", transport.abspath('/foo'))
 
268
        t = memory.MemoryTransport()
 
269
        self.assertEqual("memory:///foo", t.abspath('/foo'))
234
270
 
235
271
    def test_append_and_get(self):
236
 
        transport = MemoryTransport()
237
 
        transport.append_bytes('path', 'content')
238
 
        self.assertEqual(transport.get('path').read(), 'content')
239
 
        transport.append_file('path', StringIO('content'))
240
 
        self.assertEqual(transport.get('path').read(), 'contentcontent')
 
272
        t = memory.MemoryTransport()
 
273
        t.append_bytes('path', 'content')
 
274
        self.assertEqual(t.get('path').read(), 'content')
 
275
        t.append_file('path', StringIO('content'))
 
276
        self.assertEqual(t.get('path').read(), 'contentcontent')
241
277
 
242
278
    def test_put_and_get(self):
243
 
        transport = MemoryTransport()
244
 
        transport.put_file('path', StringIO('content'))
245
 
        self.assertEqual(transport.get('path').read(), 'content')
246
 
        transport.put_bytes('path', 'content')
247
 
        self.assertEqual(transport.get('path').read(), 'content')
 
279
        t = memory.MemoryTransport()
 
280
        t.put_file('path', StringIO('content'))
 
281
        self.assertEqual(t.get('path').read(), 'content')
 
282
        t.put_bytes('path', 'content')
 
283
        self.assertEqual(t.get('path').read(), 'content')
248
284
 
249
285
    def test_append_without_dir_fails(self):
250
 
        transport = MemoryTransport()
251
 
        self.assertRaises(NoSuchFile,
252
 
                          transport.append_bytes, 'dir/path', 'content')
 
286
        t = memory.MemoryTransport()
 
287
        self.assertRaises(errors.NoSuchFile,
 
288
                          t.append_bytes, 'dir/path', 'content')
253
289
 
254
290
    def test_put_without_dir_fails(self):
255
 
        transport = MemoryTransport()
256
 
        self.assertRaises(NoSuchFile,
257
 
                          transport.put_file, 'dir/path', StringIO('content'))
 
291
        t = memory.MemoryTransport()
 
292
        self.assertRaises(errors.NoSuchFile,
 
293
                          t.put_file, 'dir/path', StringIO('content'))
258
294
 
259
295
    def test_get_missing(self):
260
 
        transport = MemoryTransport()
261
 
        self.assertRaises(NoSuchFile, transport.get, 'foo')
 
296
        transport = memory.MemoryTransport()
 
297
        self.assertRaises(errors.NoSuchFile, transport.get, 'foo')
262
298
 
263
299
    def test_has_missing(self):
264
 
        transport = MemoryTransport()
265
 
        self.assertEquals(False, transport.has('foo'))
 
300
        t = memory.MemoryTransport()
 
301
        self.assertEquals(False, t.has('foo'))
266
302
 
267
303
    def test_has_present(self):
268
 
        transport = MemoryTransport()
269
 
        transport.append_bytes('foo', 'content')
270
 
        self.assertEquals(True, transport.has('foo'))
 
304
        t = memory.MemoryTransport()
 
305
        t.append_bytes('foo', 'content')
 
306
        self.assertEquals(True, t.has('foo'))
271
307
 
272
308
    def test_list_dir(self):
273
 
        transport = MemoryTransport()
274
 
        transport.put_bytes('foo', 'content')
275
 
        transport.mkdir('dir')
276
 
        transport.put_bytes('dir/subfoo', 'content')
277
 
        transport.put_bytes('dirlike', 'content')
 
309
        t = memory.MemoryTransport()
 
310
        t.put_bytes('foo', 'content')
 
311
        t.mkdir('dir')
 
312
        t.put_bytes('dir/subfoo', 'content')
 
313
        t.put_bytes('dirlike', 'content')
278
314
 
279
 
        self.assertEquals(['dir', 'dirlike', 'foo'], sorted(transport.list_dir('.')))
280
 
        self.assertEquals(['subfoo'], sorted(transport.list_dir('dir')))
 
315
        self.assertEquals(['dir', 'dirlike', 'foo'], sorted(t.list_dir('.')))
 
316
        self.assertEquals(['subfoo'], sorted(t.list_dir('dir')))
281
317
 
282
318
    def test_mkdir(self):
283
 
        transport = MemoryTransport()
284
 
        transport.mkdir('dir')
285
 
        transport.append_bytes('dir/path', 'content')
286
 
        self.assertEqual(transport.get('dir/path').read(), 'content')
 
319
        t = memory.MemoryTransport()
 
320
        t.mkdir('dir')
 
321
        t.append_bytes('dir/path', 'content')
 
322
        self.assertEqual(t.get('dir/path').read(), 'content')
287
323
 
288
324
    def test_mkdir_missing_parent(self):
289
 
        transport = MemoryTransport()
290
 
        self.assertRaises(NoSuchFile,
291
 
                          transport.mkdir, 'dir/dir')
 
325
        t = memory.MemoryTransport()
 
326
        self.assertRaises(errors.NoSuchFile, t.mkdir, 'dir/dir')
292
327
 
293
328
    def test_mkdir_twice(self):
294
 
        transport = MemoryTransport()
295
 
        transport.mkdir('dir')
296
 
        self.assertRaises(FileExists, transport.mkdir, 'dir')
 
329
        t = memory.MemoryTransport()
 
330
        t.mkdir('dir')
 
331
        self.assertRaises(errors.FileExists, t.mkdir, 'dir')
297
332
 
298
333
    def test_parameters(self):
299
 
        transport = MemoryTransport()
300
 
        self.assertEqual(True, transport.listable())
301
 
        self.assertEqual(False, transport.is_readonly())
 
334
        t = memory.MemoryTransport()
 
335
        self.assertEqual(True, t.listable())
 
336
        self.assertEqual(False, t.is_readonly())
302
337
 
303
338
    def test_iter_files_recursive(self):
304
 
        transport = MemoryTransport()
305
 
        transport.mkdir('dir')
306
 
        transport.put_bytes('dir/foo', 'content')
307
 
        transport.put_bytes('dir/bar', 'content')
308
 
        transport.put_bytes('bar', 'content')
309
 
        paths = set(transport.iter_files_recursive())
 
339
        t = memory.MemoryTransport()
 
340
        t.mkdir('dir')
 
341
        t.put_bytes('dir/foo', 'content')
 
342
        t.put_bytes('dir/bar', 'content')
 
343
        t.put_bytes('bar', 'content')
 
344
        paths = set(t.iter_files_recursive())
310
345
        self.assertEqual(set(['dir/foo', 'dir/bar', 'bar']), paths)
311
346
 
312
347
    def test_stat(self):
313
 
        transport = MemoryTransport()
314
 
        transport.put_bytes('foo', 'content')
315
 
        transport.put_bytes('bar', 'phowar')
316
 
        self.assertEqual(7, transport.stat('foo').st_size)
317
 
        self.assertEqual(6, transport.stat('bar').st_size)
318
 
 
319
 
 
320
 
class ChrootDecoratorTransportTest(TestCase):
 
348
        t = memory.MemoryTransport()
 
349
        t.put_bytes('foo', 'content')
 
350
        t.put_bytes('bar', 'phowar')
 
351
        self.assertEqual(7, t.stat('foo').st_size)
 
352
        self.assertEqual(6, t.stat('bar').st_size)
 
353
 
 
354
 
 
355
class ChrootDecoratorTransportTest(tests.TestCase):
321
356
    """Chroot decoration specific tests."""
322
357
 
323
358
    def test_abspath(self):
324
359
        # The abspath is always relative to the chroot_url.
325
 
        server = ChrootServer(get_transport('memory:///foo/bar/'))
326
 
        server.setUp()
327
 
        transport = get_transport(server.get_url())
328
 
        self.assertEqual(server.get_url(), transport.abspath('/'))
 
360
        server = chroot.ChrootServer(
 
361
            transport.get_transport_from_url('memory:///foo/bar/'))
 
362
        self.start_server(server)
 
363
        t = transport.get_transport_from_url(server.get_url())
 
364
        self.assertEqual(server.get_url(), t.abspath('/'))
329
365
 
330
 
        subdir_transport = transport.clone('subdir')
331
 
        self.assertEqual(server.get_url(), subdir_transport.abspath('/'))
332
 
        server.tearDown()
 
366
        subdir_t = t.clone('subdir')
 
367
        self.assertEqual(server.get_url(), subdir_t.abspath('/'))
333
368
 
334
369
    def test_clone(self):
335
 
        server = ChrootServer(get_transport('memory:///foo/bar/'))
336
 
        server.setUp()
337
 
        transport = get_transport(server.get_url())
 
370
        server = chroot.ChrootServer(
 
371
            transport.get_transport_from_url('memory:///foo/bar/'))
 
372
        self.start_server(server)
 
373
        t = transport.get_transport_from_url(server.get_url())
338
374
        # relpath from root and root path are the same
339
 
        relpath_cloned = transport.clone('foo')
340
 
        abspath_cloned = transport.clone('/foo')
 
375
        relpath_cloned = t.clone('foo')
 
376
        abspath_cloned = t.clone('/foo')
341
377
        self.assertEqual(server, relpath_cloned.server)
342
378
        self.assertEqual(server, abspath_cloned.server)
343
 
        server.tearDown()
344
 
    
 
379
 
345
380
    def test_chroot_url_preserves_chroot(self):
346
381
        """Calling get_transport on a chroot transport's base should produce a
347
382
        transport with exactly the same behaviour as the original chroot
350
385
        This is so that it is not possible to escape a chroot by doing::
351
386
            url = chroot_transport.base
352
387
            parent_url = urlutils.join(url, '..')
353
 
            new_transport = get_transport(parent_url)
 
388
            new_t = transport.get_transport_from_url(parent_url)
354
389
        """
355
 
        server = ChrootServer(get_transport('memory:///path/subpath'))
356
 
        server.setUp()
357
 
        transport = get_transport(server.get_url())
358
 
        new_transport = get_transport(transport.base)
359
 
        self.assertEqual(transport.server, new_transport.server)
360
 
        self.assertEqual(transport.base, new_transport.base)
361
 
        server.tearDown()
362
 
        
 
390
        server = chroot.ChrootServer(
 
391
            transport.get_transport_from_url('memory:///path/subpath'))
 
392
        self.start_server(server)
 
393
        t = transport.get_transport_from_url(server.get_url())
 
394
        new_t = transport.get_transport_from_url(t.base)
 
395
        self.assertEqual(t.server, new_t.server)
 
396
        self.assertEqual(t.base, new_t.base)
 
397
 
363
398
    def test_urljoin_preserves_chroot(self):
364
399
        """Using urlutils.join(url, '..') on a chroot URL should not produce a
365
400
        URL that escapes the intended chroot.
367
402
        This is so that it is not possible to escape a chroot by doing::
368
403
            url = chroot_transport.base
369
404
            parent_url = urlutils.join(url, '..')
370
 
            new_transport = get_transport(parent_url)
 
405
            new_t = transport.get_transport_from_url(parent_url)
371
406
        """
372
 
        server = ChrootServer(get_transport('memory:///path/'))
373
 
        server.setUp()
374
 
        transport = get_transport(server.get_url())
 
407
        server = chroot.ChrootServer(
 
408
            transport.get_transport_from_url('memory:///path/'))
 
409
        self.start_server(server)
 
410
        t = transport.get_transport_from_url(server.get_url())
375
411
        self.assertRaises(
376
 
            InvalidURLJoin, urlutils.join, transport.base, '..')
377
 
        server.tearDown()
378
 
 
379
 
 
380
 
class ChrootServerTest(TestCase):
 
412
            errors.InvalidURLJoin, urlutils.join, t.base, '..')
 
413
 
 
414
 
 
415
class TestChrootServer(tests.TestCase):
381
416
 
382
417
    def test_construct(self):
383
 
        backing_transport = MemoryTransport()
384
 
        server = ChrootServer(backing_transport)
 
418
        backing_transport = memory.MemoryTransport()
 
419
        server = chroot.ChrootServer(backing_transport)
385
420
        self.assertEqual(backing_transport, server.backing_transport)
386
421
 
387
422
    def test_setUp(self):
388
 
        backing_transport = MemoryTransport()
389
 
        server = ChrootServer(backing_transport)
390
 
        server.setUp()
391
 
        self.assertTrue(server.scheme in _get_protocol_handlers().keys())
 
423
        backing_transport = memory.MemoryTransport()
 
424
        server = chroot.ChrootServer(backing_transport)
 
425
        server.start_server()
 
426
        self.addCleanup(server.stop_server)
 
427
        self.assertTrue(server.scheme
 
428
                        in transport._get_protocol_handlers().keys())
392
429
 
393
 
    def test_tearDown(self):
394
 
        backing_transport = MemoryTransport()
395
 
        server = ChrootServer(backing_transport)
396
 
        server.setUp()
397
 
        server.tearDown()
398
 
        self.assertFalse(server.scheme in _get_protocol_handlers().keys())
 
430
    def test_stop_server(self):
 
431
        backing_transport = memory.MemoryTransport()
 
432
        server = chroot.ChrootServer(backing_transport)
 
433
        server.start_server()
 
434
        server.stop_server()
 
435
        self.assertFalse(server.scheme
 
436
                         in transport._get_protocol_handlers().keys())
399
437
 
400
438
    def test_get_url(self):
401
 
        backing_transport = MemoryTransport()
402
 
        server = ChrootServer(backing_transport)
403
 
        server.setUp()
 
439
        backing_transport = memory.MemoryTransport()
 
440
        server = chroot.ChrootServer(backing_transport)
 
441
        server.start_server()
 
442
        self.addCleanup(server.stop_server)
404
443
        self.assertEqual('chroot-%d:///' % id(server), server.get_url())
405
 
        server.tearDown()
406
 
 
407
 
 
408
 
class ReadonlyDecoratorTransportTest(TestCase):
 
444
 
 
445
 
 
446
class TestHooks(tests.TestCase):
 
447
    """Basic tests for transport hooks"""
 
448
 
 
449
    def _get_connected_transport(self):
 
450
        return transport.ConnectedTransport("bogus:nowhere")
 
451
 
 
452
    def test_transporthooks_initialisation(self):
 
453
        """Check all expected transport hook points are set up"""
 
454
        hookpoint = transport.TransportHooks()
 
455
        self.assertTrue("post_connect" in hookpoint,
 
456
            "post_connect not in %s" % (hookpoint,))
 
457
 
 
458
    def test_post_connect(self):
 
459
        """Ensure the post_connect hook is called when _set_transport is"""
 
460
        calls = []
 
461
        transport.Transport.hooks.install_named_hook("post_connect",
 
462
            calls.append, None)
 
463
        t = self._get_connected_transport()
 
464
        self.assertLength(0, calls)
 
465
        t._set_connection("connection", "auth")
 
466
        self.assertEqual(calls, [t])
 
467
 
 
468
 
 
469
class PathFilteringDecoratorTransportTest(tests.TestCase):
 
470
    """Pathfilter decoration specific tests."""
 
471
 
 
472
    def test_abspath(self):
 
473
        # The abspath is always relative to the base of the backing transport.
 
474
        server = pathfilter.PathFilteringServer(
 
475
            transport.get_transport_from_url('memory:///foo/bar/'),
 
476
            lambda x: x)
 
477
        server.start_server()
 
478
        t = transport.get_transport_from_url(server.get_url())
 
479
        self.assertEqual(server.get_url(), t.abspath('/'))
 
480
 
 
481
        subdir_t = t.clone('subdir')
 
482
        self.assertEqual(server.get_url(), subdir_t.abspath('/'))
 
483
        server.stop_server()
 
484
 
 
485
    def make_pf_transport(self, filter_func=None):
 
486
        """Make a PathFilteringTransport backed by a MemoryTransport.
 
487
 
 
488
        :param filter_func: by default this will be a no-op function.  Use this
 
489
            parameter to override it."""
 
490
        if filter_func is None:
 
491
            filter_func = lambda x: x
 
492
        server = pathfilter.PathFilteringServer(
 
493
            transport.get_transport_from_url('memory:///foo/bar/'), filter_func)
 
494
        server.start_server()
 
495
        self.addCleanup(server.stop_server)
 
496
        return transport.get_transport_from_url(server.get_url())
 
497
 
 
498
    def test__filter(self):
 
499
        # _filter (with an identity func as filter_func) always returns
 
500
        # paths relative to the base of the backing transport.
 
501
        t = self.make_pf_transport()
 
502
        self.assertEqual('foo', t._filter('foo'))
 
503
        self.assertEqual('foo/bar', t._filter('foo/bar'))
 
504
        self.assertEqual('', t._filter('..'))
 
505
        self.assertEqual('', t._filter('/'))
 
506
        # The base of the pathfiltering transport is taken into account too.
 
507
        t = t.clone('subdir1/subdir2')
 
508
        self.assertEqual('subdir1/subdir2/foo', t._filter('foo'))
 
509
        self.assertEqual('subdir1/subdir2/foo/bar', t._filter('foo/bar'))
 
510
        self.assertEqual('subdir1', t._filter('..'))
 
511
        self.assertEqual('', t._filter('/'))
 
512
 
 
513
    def test_filter_invocation(self):
 
514
        filter_log = []
 
515
 
 
516
        def filter(path):
 
517
            filter_log.append(path)
 
518
            return path
 
519
        t = self.make_pf_transport(filter)
 
520
        t.has('abc')
 
521
        self.assertEqual(['abc'], filter_log)
 
522
        del filter_log[:]
 
523
        t.clone('abc').has('xyz')
 
524
        self.assertEqual(['abc/xyz'], filter_log)
 
525
        del filter_log[:]
 
526
        t.has('/abc')
 
527
        self.assertEqual(['abc'], filter_log)
 
528
 
 
529
    def test_clone(self):
 
530
        t = self.make_pf_transport()
 
531
        # relpath from root and root path are the same
 
532
        relpath_cloned = t.clone('foo')
 
533
        abspath_cloned = t.clone('/foo')
 
534
        self.assertEqual(t.server, relpath_cloned.server)
 
535
        self.assertEqual(t.server, abspath_cloned.server)
 
536
 
 
537
    def test_url_preserves_pathfiltering(self):
 
538
        """Calling get_transport on a pathfiltered transport's base should
 
539
        produce a transport with exactly the same behaviour as the original
 
540
        pathfiltered transport.
 
541
 
 
542
        This is so that it is not possible to escape (accidentally or
 
543
        otherwise) the filtering by doing::
 
544
            url = filtered_transport.base
 
545
            parent_url = urlutils.join(url, '..')
 
546
            new_t = transport.get_transport_from_url(parent_url)
 
547
        """
 
548
        t = self.make_pf_transport()
 
549
        new_t = transport.get_transport_from_url(t.base)
 
550
        self.assertEqual(t.server, new_t.server)
 
551
        self.assertEqual(t.base, new_t.base)
 
552
 
 
553
 
 
554
class ReadonlyDecoratorTransportTest(tests.TestCase):
409
555
    """Readonly decoration specific tests."""
410
556
 
411
557
    def test_local_parameters(self):
412
 
        import bzrlib.transport.readonly as readonly
413
558
        # connect to . in readonly mode
414
 
        transport = readonly.ReadonlyTransportDecorator('readonly+.')
415
 
        self.assertEqual(True, transport.listable())
416
 
        self.assertEqual(True, transport.is_readonly())
 
559
        t = readonly.ReadonlyTransportDecorator('readonly+.')
 
560
        self.assertEqual(True, t.listable())
 
561
        self.assertEqual(True, t.is_readonly())
417
562
 
418
563
    def test_http_parameters(self):
419
 
        from bzrlib.tests.HttpServer import HttpServer
420
 
        import bzrlib.transport.readonly as readonly
421
 
        # connect to . via http which is not listable
 
564
        from bzrlib.tests.http_server import HttpServer
 
565
        # connect to '.' via http which is not listable
422
566
        server = HttpServer()
423
 
        server.setUp()
424
 
        try:
425
 
            transport = get_transport('readonly+' + server.get_url())
426
 
            self.failUnless(isinstance(transport,
427
 
                                       readonly.ReadonlyTransportDecorator))
428
 
            self.assertEqual(False, transport.listable())
429
 
            self.assertEqual(True, transport.is_readonly())
430
 
        finally:
431
 
            server.tearDown()
432
 
 
433
 
 
434
 
class FakeNFSDecoratorTests(TestCaseInTempDir):
 
567
        self.start_server(server)
 
568
        t = transport.get_transport_from_url('readonly+' + server.get_url())
 
569
        self.assertIsInstance(t, readonly.ReadonlyTransportDecorator)
 
570
        self.assertEqual(False, t.listable())
 
571
        self.assertEqual(True, t.is_readonly())
 
572
 
 
573
 
 
574
class FakeNFSDecoratorTests(tests.TestCaseInTempDir):
435
575
    """NFS decorator specific tests."""
436
576
 
437
577
    def get_nfs_transport(self, url):
438
 
        import bzrlib.transport.fakenfs as fakenfs
439
578
        # connect to url with nfs decoration
440
579
        return fakenfs.FakeNFSTransportDecorator('fakenfs+' + url)
441
580
 
442
581
    def test_local_parameters(self):
443
582
        # the listable and is_readonly parameters
444
583
        # are not changed by the fakenfs decorator
445
 
        transport = self.get_nfs_transport('.')
446
 
        self.assertEqual(True, transport.listable())
447
 
        self.assertEqual(False, transport.is_readonly())
 
584
        t = self.get_nfs_transport('.')
 
585
        self.assertEqual(True, t.listable())
 
586
        self.assertEqual(False, t.is_readonly())
448
587
 
449
588
    def test_http_parameters(self):
450
589
        # the listable and is_readonly parameters
451
590
        # are not changed by the fakenfs decorator
452
 
        from bzrlib.tests.HttpServer import HttpServer
453
 
        # connect to . via http which is not listable
 
591
        from bzrlib.tests.http_server import HttpServer
 
592
        # connect to '.' via http which is not listable
454
593
        server = HttpServer()
455
 
        server.setUp()
456
 
        try:
457
 
            transport = self.get_nfs_transport(server.get_url())
458
 
            self.assertIsInstance(
459
 
                transport, bzrlib.transport.fakenfs.FakeNFSTransportDecorator)
460
 
            self.assertEqual(False, transport.listable())
461
 
            self.assertEqual(True, transport.is_readonly())
462
 
        finally:
463
 
            server.tearDown()
 
594
        self.start_server(server)
 
595
        t = self.get_nfs_transport(server.get_url())
 
596
        self.assertIsInstance(t, fakenfs.FakeNFSTransportDecorator)
 
597
        self.assertEqual(False, t.listable())
 
598
        self.assertEqual(True, t.is_readonly())
464
599
 
465
600
    def test_fakenfs_server_default(self):
466
601
        # a FakeNFSServer() should bring up a local relpath server for itself
467
 
        import bzrlib.transport.fakenfs as fakenfs
468
 
        server = fakenfs.FakeNFSServer()
469
 
        server.setUp()
470
 
        try:
471
 
            # the url should be decorated appropriately
472
 
            self.assertStartsWith(server.get_url(), 'fakenfs+')
473
 
            # and we should be able to get a transport for it
474
 
            transport = get_transport(server.get_url())
475
 
            # which must be a FakeNFSTransportDecorator instance.
476
 
            self.assertIsInstance(
477
 
                transport, fakenfs.FakeNFSTransportDecorator)
478
 
        finally:
479
 
            server.tearDown()
 
602
        server = test_server.FakeNFSServer()
 
603
        self.start_server(server)
 
604
        # the url should be decorated appropriately
 
605
        self.assertStartsWith(server.get_url(), 'fakenfs+')
 
606
        # and we should be able to get a transport for it
 
607
        t = transport.get_transport_from_url(server.get_url())
 
608
        # which must be a FakeNFSTransportDecorator instance.
 
609
        self.assertIsInstance(t, fakenfs.FakeNFSTransportDecorator)
480
610
 
481
611
    def test_fakenfs_rename_semantics(self):
482
612
        # a FakeNFS transport must mangle the way rename errors occur to
483
613
        # look like NFS problems.
484
 
        transport = self.get_nfs_transport('.')
 
614
        t = self.get_nfs_transport('.')
485
615
        self.build_tree(['from/', 'from/foo', 'to/', 'to/bar'],
486
 
                        transport=transport)
487
 
        self.assertRaises(errors.ResourceBusy,
488
 
                          transport.rename, 'from', 'to')
489
 
 
490
 
 
491
 
class FakeVFATDecoratorTests(TestCaseInTempDir):
 
616
                        transport=t)
 
617
        self.assertRaises(errors.ResourceBusy, t.rename, 'from', 'to')
 
618
 
 
619
 
 
620
class FakeVFATDecoratorTests(tests.TestCaseInTempDir):
492
621
    """Tests for simulation of VFAT restrictions"""
493
622
 
494
623
    def get_vfat_transport(self, url):
498
627
 
499
628
    def test_transport_creation(self):
500
629
        from bzrlib.transport.fakevfat import FakeVFATTransportDecorator
501
 
        transport = self.get_vfat_transport('.')
502
 
        self.assertIsInstance(transport, FakeVFATTransportDecorator)
 
630
        t = self.get_vfat_transport('.')
 
631
        self.assertIsInstance(t, FakeVFATTransportDecorator)
503
632
 
504
633
    def test_transport_mkdir(self):
505
 
        transport = self.get_vfat_transport('.')
506
 
        transport.mkdir('HELLO')
507
 
        self.assertTrue(transport.has('hello'))
508
 
        self.assertTrue(transport.has('Hello'))
 
634
        t = self.get_vfat_transport('.')
 
635
        t.mkdir('HELLO')
 
636
        self.assertTrue(t.has('hello'))
 
637
        self.assertTrue(t.has('Hello'))
509
638
 
510
639
    def test_forbidden_chars(self):
511
 
        transport = self.get_vfat_transport('.')
512
 
        self.assertRaises(ValueError, transport.has, "<NU>")
513
 
 
514
 
 
515
 
class BadTransportHandler(Transport):
 
640
        t = self.get_vfat_transport('.')
 
641
        self.assertRaises(ValueError, t.has, "<NU>")
 
642
 
 
643
 
 
644
class BadTransportHandler(transport.Transport):
516
645
    def __init__(self, base_url):
517
 
        raise DependencyNotPresent('some_lib', 'testing missing dependency')
518
 
 
519
 
 
520
 
class BackupTransportHandler(Transport):
 
646
        raise errors.DependencyNotPresent('some_lib',
 
647
                                          'testing missing dependency')
 
648
 
 
649
 
 
650
class BackupTransportHandler(transport.Transport):
521
651
    """Test transport that works as a backup for the BadTransportHandler"""
522
652
    pass
523
653
 
524
654
 
525
 
class TestTransportImplementation(TestCaseInTempDir):
 
655
class TestTransportImplementation(tests.TestCaseInTempDir):
526
656
    """Implementation verification for transports.
527
 
    
 
657
 
528
658
    To verify a transport we need a server factory, which is a callable
529
659
    that accepts no parameters and returns an implementation of
530
660
    bzrlib.transport.Server.
531
 
    
 
661
 
532
662
    That Server is then used to construct transport instances and test
533
663
    the transport via loopback activity.
534
664
 
535
 
    Currently this assumes that the Transport object is connected to the 
536
 
    current working directory.  So that whatever is done 
537
 
    through the transport, should show up in the working 
 
665
    Currently this assumes that the Transport object is connected to the
 
666
    current working directory.  So that whatever is done
 
667
    through the transport, should show up in the working
538
668
    directory, and vice-versa. This is a bug, because its possible to have
539
 
    URL schemes which provide access to something that may not be 
540
 
    result in storage on the local disk, i.e. due to file system limits, or 
 
669
    URL schemes which provide access to something that may not be
 
670
    result in storage on the local disk, i.e. due to file system limits, or
541
671
    due to it being a database or some other non-filesystem tool.
542
672
 
543
673
    This also tests to make sure that the functions work with both
544
674
    generators and lists (assuming iter(list) is effectively a generator)
545
675
    """
546
 
    
 
676
 
547
677
    def setUp(self):
548
678
        super(TestTransportImplementation, self).setUp()
549
679
        self._server = self.transport_server()
550
 
        self._server.setUp()
551
 
        self.addCleanup(self._server.tearDown)
 
680
        self.start_server(self._server)
552
681
 
553
682
    def get_transport(self, relpath=None):
554
683
        """Return a connected transport to the local directory.
558
687
        base_url = self._server.get_url()
559
688
        url = self._adjust_url(base_url, relpath)
560
689
        # try getting the transport via the regular interface:
561
 
        t = get_transport(url)
 
690
        t = transport.get_transport_from_url(url)
562
691
        # vila--20070607 if the following are commented out the test suite
563
692
        # still pass. Is this really still needed or was it a forgotten
564
693
        # temporary fix ?
569
698
        return t
570
699
 
571
700
 
572
 
class TestLocalTransports(TestCase):
 
701
class TestTransportFromPath(tests.TestCaseInTempDir):
 
702
 
 
703
    def test_with_path(self):
 
704
        t = transport.get_transport_from_path(self.test_dir)
 
705
        self.assertIsInstance(t, local.LocalTransport)
 
706
        self.assertEquals(t.base.rstrip("/"),
 
707
            urlutils.local_path_to_url(self.test_dir))
 
708
 
 
709
    def test_with_url(self):
 
710
        t = transport.get_transport_from_path("file:")
 
711
        self.assertIsInstance(t, local.LocalTransport)
 
712
        self.assertEquals(t.base.rstrip("/"),
 
713
            urlutils.local_path_to_url(os.path.join(self.test_dir, "file:")))
 
714
 
 
715
 
 
716
class TestTransportFromUrl(tests.TestCaseInTempDir):
 
717
 
 
718
    def test_with_path(self):
 
719
        self.assertRaises(errors.InvalidURL, transport.get_transport_from_url,
 
720
            self.test_dir)
 
721
 
 
722
    def test_with_url(self):
 
723
        url = urlutils.local_path_to_url(self.test_dir)
 
724
        t = transport.get_transport_from_url(url)
 
725
        self.assertIsInstance(t, local.LocalTransport)
 
726
        self.assertEquals(t.base.rstrip("/"), url)
 
727
 
 
728
    def test_with_url_and_segment_parameters(self):
 
729
        url = urlutils.local_path_to_url(self.test_dir)+",branch=foo"
 
730
        t = transport.get_transport_from_url(url)
 
731
        self.assertIsInstance(t, local.LocalTransport)
 
732
        self.assertEquals(t.base.rstrip("/"), url)
 
733
        with open(os.path.join(self.test_dir, "afile"), 'w') as f:
 
734
            f.write("data")
 
735
        self.assertTrue(t.has("afile"))
 
736
 
 
737
 
 
738
class TestLocalTransports(tests.TestCase):
573
739
 
574
740
    def test_get_transport_from_abspath(self):
575
 
        here = os.path.abspath('.')
576
 
        t = get_transport(here)
577
 
        self.assertIsInstance(t, LocalTransport)
 
741
        here = osutils.abspath('.')
 
742
        t = transport.get_transport(here)
 
743
        self.assertIsInstance(t, local.LocalTransport)
578
744
        self.assertEquals(t.base, urlutils.local_path_to_url(here) + '/')
579
745
 
580
746
    def test_get_transport_from_relpath(self):
581
 
        here = os.path.abspath('.')
582
 
        t = get_transport('.')
583
 
        self.assertIsInstance(t, LocalTransport)
 
747
        here = osutils.abspath('.')
 
748
        t = transport.get_transport('.')
 
749
        self.assertIsInstance(t, local.LocalTransport)
584
750
        self.assertEquals(t.base, urlutils.local_path_to_url('.') + '/')
585
751
 
586
752
    def test_get_transport_from_local_url(self):
587
 
        here = os.path.abspath('.')
 
753
        here = osutils.abspath('.')
588
754
        here_url = urlutils.local_path_to_url(here) + '/'
589
 
        t = get_transport(here_url)
590
 
        self.assertIsInstance(t, LocalTransport)
 
755
        t = transport.get_transport(here_url)
 
756
        self.assertIsInstance(t, local.LocalTransport)
591
757
        self.assertEquals(t.base, here_url)
592
758
 
593
759
    def test_local_abspath(self):
594
 
        here = os.path.abspath('.')
595
 
        t = get_transport(here)
 
760
        here = osutils.abspath('.')
 
761
        t = transport.get_transport(here)
596
762
        self.assertEquals(t.local_abspath(''), here)
597
763
 
598
764
 
599
 
class TestWin32LocalTransport(TestCase):
 
765
class TestLocalTransportMutation(tests.TestCaseInTempDir):
 
766
 
 
767
    def test_local_transport_mkdir(self):
 
768
        here = osutils.abspath('.')
 
769
        t = transport.get_transport(here)
 
770
        t.mkdir('test')
 
771
        self.assertTrue(os.path.exists('test'))
 
772
 
 
773
    def test_local_transport_mkdir_permission_denied(self):
 
774
        # See https://bugs.launchpad.net/bzr/+bug/606537
 
775
        here = osutils.abspath('.')
 
776
        t = transport.get_transport(here)
 
777
        def fake_chmod(path, mode):
 
778
            e = OSError('permission denied')
 
779
            e.errno = errno.EPERM
 
780
            raise e
 
781
        self.overrideAttr(os, 'chmod', fake_chmod)
 
782
        t.mkdir('test')
 
783
        t.mkdir('test2', mode=0707)
 
784
        self.assertTrue(os.path.exists('test'))
 
785
        self.assertTrue(os.path.exists('test2'))
 
786
 
 
787
 
 
788
class TestLocalTransportWriteStream(tests.TestCaseWithTransport):
 
789
 
 
790
    def test_local_fdatasync_calls_fdatasync(self):
 
791
        """Check fdatasync on a stream tries to flush the data to the OS.
 
792
        
 
793
        We can't easily observe the external effect but we can at least see
 
794
        it's called.
 
795
        """
 
796
        sentinel = object()
 
797
        fdatasync = getattr(os, 'fdatasync', sentinel)
 
798
        if fdatasync is sentinel:
 
799
            raise tests.TestNotApplicable('fdatasync not supported')
 
800
        t = self.get_transport('.')
 
801
        calls = self.recordCalls(os, 'fdatasync')
 
802
        w = t.open_write_stream('out')
 
803
        w.write('foo')
 
804
        w.fdatasync()
 
805
        with open('out', 'rb') as f:
 
806
            # Should have been flushed.
 
807
            self.assertEquals(f.read(), 'foo')
 
808
        self.assertEquals(len(calls), 1, calls)
 
809
 
 
810
    def test_missing_directory(self):
 
811
        t = self.get_transport('.')
 
812
        self.assertRaises(errors.NoSuchFile, t.open_write_stream, 'dir/foo')
 
813
 
 
814
 
 
815
class TestWin32LocalTransport(tests.TestCase):
600
816
 
601
817
    def test_unc_clone_to_root(self):
602
818
        # Win32 UNC path like \\HOST\path
603
819
        # clone to root should stop at least at \\HOST part
604
820
        # not on \\
605
 
        t = EmulatedWin32LocalTransport('file://HOST/path/to/some/dir/')
 
821
        t = local.EmulatedWin32LocalTransport('file://HOST/path/to/some/dir/')
606
822
        for i in xrange(4):
607
823
            t = t.clone('..')
608
824
        self.assertEquals(t.base, 'file://HOST/')
611
827
        self.assertEquals(t.base, 'file://HOST/')
612
828
 
613
829
 
614
 
class TestConnectedTransport(TestCase):
 
830
class TestConnectedTransport(tests.TestCase):
615
831
    """Tests for connected to remote server transports"""
616
832
 
617
833
    def test_parse_url(self):
618
 
        t = ConnectedTransport('sftp://simple.example.com/home/source')
619
 
        self.assertEquals(t._host, 'simple.example.com')
620
 
        self.assertEquals(t._port, None)
621
 
        self.assertEquals(t._path, '/home/source/')
622
 
        self.failUnless(t._user is None)
623
 
        self.failUnless(t._password is None)
624
 
 
625
 
        self.assertEquals(t.base, 'sftp://simple.example.com/home/source/')
 
834
        t = transport.ConnectedTransport(
 
835
            'http://simple.example.com/home/source')
 
836
        self.assertEquals(t._parsed_url.host, 'simple.example.com')
 
837
        self.assertEquals(t._parsed_url.port, None)
 
838
        self.assertEquals(t._parsed_url.path, '/home/source/')
 
839
        self.assertTrue(t._parsed_url.user is None)
 
840
        self.assertTrue(t._parsed_url.password is None)
 
841
 
 
842
        self.assertEquals(t.base, 'http://simple.example.com/home/source/')
 
843
 
 
844
    def test_parse_url_with_at_in_user(self):
 
845
        # Bug 228058
 
846
        t = transport.ConnectedTransport('ftp://user@host.com@www.host.com/')
 
847
        self.assertEquals(t._parsed_url.user, 'user@host.com')
626
848
 
627
849
    def test_parse_quoted_url(self):
628
 
        t = ConnectedTransport('http://ro%62ey:h%40t@ex%41mple.com:2222/path')
629
 
        self.assertEquals(t._host, 'exAmple.com')
630
 
        self.assertEquals(t._port, 2222)
631
 
        self.assertEquals(t._user, 'robey')
632
 
        self.assertEquals(t._password, 'h@t')
633
 
        self.assertEquals(t._path, '/path/')
 
850
        t = transport.ConnectedTransport(
 
851
            'http://ro%62ey:h%40t@ex%41mple.com:2222/path')
 
852
        self.assertEquals(t._parsed_url.host, 'exAmple.com')
 
853
        self.assertEquals(t._parsed_url.port, 2222)
 
854
        self.assertEquals(t._parsed_url.user, 'robey')
 
855
        self.assertEquals(t._parsed_url.password, 'h@t')
 
856
        self.assertEquals(t._parsed_url.path, '/path/')
634
857
 
635
858
        # Base should not keep track of the password
636
 
        self.assertEquals(t.base, 'http://robey@exAmple.com:2222/path/')
 
859
        self.assertEquals(t.base, 'http://ro%62ey@ex%41mple.com:2222/path/')
637
860
 
638
861
    def test_parse_invalid_url(self):
639
862
        self.assertRaises(errors.InvalidURL,
640
 
                          ConnectedTransport,
 
863
                          transport.ConnectedTransport,
641
864
                          'sftp://lily.org:~janneke/public/bzr/gub')
642
865
 
643
866
    def test_relpath(self):
644
 
        t = ConnectedTransport('sftp://user@host.com/abs/path')
 
867
        t = transport.ConnectedTransport('sftp://user@host.com/abs/path')
645
868
 
646
 
        self.assertEquals(t.relpath('sftp://user@host.com/abs/path/sub'), 'sub')
 
869
        self.assertEquals(t.relpath('sftp://user@host.com/abs/path/sub'),
 
870
            'sub')
647
871
        self.assertRaises(errors.PathNotChild, t.relpath,
648
872
                          'http://user@host.com/abs/path/sub')
649
873
        self.assertRaises(errors.PathNotChild, t.relpath,
653
877
        self.assertRaises(errors.PathNotChild, t.relpath,
654
878
                          'sftp://user@host.com:33/abs/path/sub')
655
879
        # Make sure it works when we don't supply a username
656
 
        t = ConnectedTransport('sftp://host.com/abs/path')
 
880
        t = transport.ConnectedTransport('sftp://host.com/abs/path')
657
881
        self.assertEquals(t.relpath('sftp://host.com/abs/path/sub'), 'sub')
658
882
 
659
883
        # Make sure it works when parts of the path will be url encoded
660
 
        t = ConnectedTransport('sftp://host.com/dev/%path')
 
884
        t = transport.ConnectedTransport('sftp://host.com/dev/%path')
661
885
        self.assertEquals(t.relpath('sftp://host.com/dev/%path/sub'), 'sub')
662
886
 
663
887
    def test_connection_sharing_propagate_credentials(self):
664
 
        t = ConnectedTransport('foo://user@host.com/abs/path')
 
888
        t = transport.ConnectedTransport('ftp://user@host.com/abs/path')
 
889
        self.assertEquals('user', t._parsed_url.user)
 
890
        self.assertEquals('host.com', t._parsed_url.host)
665
891
        self.assertIs(None, t._get_connection())
666
 
        self.assertIs(None, t._password)
 
892
        self.assertIs(None, t._parsed_url.password)
667
893
        c = t.clone('subdir')
668
 
        self.assertEquals(None, c._get_connection())
669
 
        self.assertIs(None, t._password)
 
894
        self.assertIs(None, c._get_connection())
 
895
        self.assertIs(None, t._parsed_url.password)
670
896
 
671
897
        # Simulate the user entering a password
672
898
        password = 'secret'
686
912
        self.assertIs(new_password, c._get_credentials())
687
913
 
688
914
 
689
 
class TestReusedTransports(TestCase):
 
915
class TestReusedTransports(tests.TestCase):
690
916
    """Tests for transport reuse"""
691
917
 
692
918
    def test_reuse_same_transport(self):
693
919
        possible_transports = []
694
 
        t1 = get_transport('http://foo/',
695
 
                           possible_transports=possible_transports)
 
920
        t1 = transport.get_transport_from_url('http://foo/',
 
921
                                     possible_transports=possible_transports)
696
922
        self.assertEqual([t1], possible_transports)
697
 
        t2 = get_transport('http://foo/', possible_transports=[t1])
 
923
        t2 = transport.get_transport_from_url('http://foo/',
 
924
                                     possible_transports=[t1])
698
925
        self.assertIs(t1, t2)
699
926
 
700
927
        # Also check that final '/' are handled correctly
701
 
        t3 = get_transport('http://foo/path/')
702
 
        t4 = get_transport('http://foo/path', possible_transports=[t3])
 
928
        t3 = transport.get_transport_from_url('http://foo/path/')
 
929
        t4 = transport.get_transport_from_url('http://foo/path',
 
930
                                     possible_transports=[t3])
703
931
        self.assertIs(t3, t4)
704
932
 
705
 
        t5 = get_transport('http://foo/path')
706
 
        t6 = get_transport('http://foo/path/', possible_transports=[t5])
 
933
        t5 = transport.get_transport_from_url('http://foo/path')
 
934
        t6 = transport.get_transport_from_url('http://foo/path/',
 
935
                                     possible_transports=[t5])
707
936
        self.assertIs(t5, t6)
708
937
 
709
938
    def test_don_t_reuse_different_transport(self):
710
 
        t1 = get_transport('http://foo/path')
711
 
        t2 = get_transport('http://bar/path', possible_transports=[t1])
 
939
        t1 = transport.get_transport_from_url('http://foo/path')
 
940
        t2 = transport.get_transport_from_url('http://bar/path',
 
941
                                     possible_transports=[t1])
712
942
        self.assertIsNot(t1, t2)
713
943
 
714
944
 
715
 
def get_test_permutations():
716
 
    """Return transport permutations to be used in testing.
717
 
 
718
 
    This module registers some transports, but they're only for testing
719
 
    registration.  We don't really want to run all the transport tests against
720
 
    them.
721
 
    """
722
 
    return []
 
945
class TestTransportTrace(tests.TestCase):
 
946
 
 
947
    def test_decorator(self):
 
948
        t = transport.get_transport_from_url('trace+memory://')
 
949
        self.assertIsInstance(
 
950
            t, bzrlib.transport.trace.TransportTraceDecorator)
 
951
 
 
952
    def test_clone_preserves_activity(self):
 
953
        t = transport.get_transport_from_url('trace+memory://')
 
954
        t2 = t.clone('.')
 
955
        self.assertTrue(t is not t2)
 
956
        self.assertTrue(t._activity is t2._activity)
 
957
 
 
958
    # the following specific tests are for the operations that have made use of
 
959
    # logging in tests; we could test every single operation but doing that
 
960
    # still won't cause a test failure when the top level Transport API
 
961
    # changes; so there is little return doing that.
 
962
    def test_get(self):
 
963
        t = transport.get_transport_from_url('trace+memory:///')
 
964
        t.put_bytes('foo', 'barish')
 
965
        t.get('foo')
 
966
        expected_result = []
 
967
        # put_bytes records the bytes, not the content to avoid memory
 
968
        # pressure.
 
969
        expected_result.append(('put_bytes', 'foo', 6, None))
 
970
        # get records the file name only.
 
971
        expected_result.append(('get', 'foo'))
 
972
        self.assertEqual(expected_result, t._activity)
 
973
 
 
974
    def test_readv(self):
 
975
        t = transport.get_transport_from_url('trace+memory:///')
 
976
        t.put_bytes('foo', 'barish')
 
977
        list(t.readv('foo', [(0, 1), (3, 2)],
 
978
                     adjust_for_latency=True, upper_limit=6))
 
979
        expected_result = []
 
980
        # put_bytes records the bytes, not the content to avoid memory
 
981
        # pressure.
 
982
        expected_result.append(('put_bytes', 'foo', 6, None))
 
983
        # readv records the supplied offset request
 
984
        expected_result.append(('readv', 'foo', [(0, 1), (3, 2)], True, 6))
 
985
        self.assertEqual(expected_result, t._activity)
 
986
 
 
987
 
 
988
class TestSSHConnections(tests.TestCaseWithTransport):
 
989
 
 
990
    def test_bzr_connect_to_bzr_ssh(self):
 
991
        """get_transport of a bzr+ssh:// behaves correctly.
 
992
 
 
993
        bzr+ssh:// should cause bzr to run a remote bzr smart server over SSH.
 
994
        """
 
995
        # This test actually causes a bzr instance to be invoked, which is very
 
996
        # expensive: it should be the only such test in the test suite.
 
997
        # A reasonable evolution for this would be to simply check inside
 
998
        # check_channel_exec_request that the command is appropriate, and then
 
999
        # satisfy requests in-process.
 
1000
        self.requireFeature(features.paramiko)
 
1001
        # SFTPFullAbsoluteServer has a get_url method, and doesn't
 
1002
        # override the interface (doesn't change self._vendor).
 
1003
        # Note that this does encryption, so can be slow.
 
1004
        from bzrlib.tests import stub_sftp
 
1005
 
 
1006
        # Start an SSH server
 
1007
        self.command_executed = []
 
1008
        # XXX: This is horrible -- we define a really dumb SSH server that
 
1009
        # executes commands, and manage the hooking up of stdin/out/err to the
 
1010
        # SSH channel ourselves.  Surely this has already been implemented
 
1011
        # elsewhere?
 
1012
        started = []
 
1013
 
 
1014
        class StubSSHServer(stub_sftp.StubServer):
 
1015
 
 
1016
            test = self
 
1017
 
 
1018
            def check_channel_exec_request(self, channel, command):
 
1019
                self.test.command_executed.append(command)
 
1020
                proc = subprocess.Popen(
 
1021
                    command, shell=True, stdin=subprocess.PIPE,
 
1022
                    stdout=subprocess.PIPE, stderr=subprocess.PIPE)
 
1023
 
 
1024
                # XXX: horribly inefficient, not to mention ugly.
 
1025
                # Start a thread for each of stdin/out/err, and relay bytes
 
1026
                # from the subprocess to channel and vice versa.
 
1027
                def ferry_bytes(read, write, close):
 
1028
                    while True:
 
1029
                        bytes = read(1)
 
1030
                        if bytes == '':
 
1031
                            close()
 
1032
                            break
 
1033
                        write(bytes)
 
1034
 
 
1035
                file_functions = [
 
1036
                    (channel.recv, proc.stdin.write, proc.stdin.close),
 
1037
                    (proc.stdout.read, channel.sendall, channel.close),
 
1038
                    (proc.stderr.read, channel.sendall_stderr, channel.close)]
 
1039
                started.append(proc)
 
1040
                for read, write, close in file_functions:
 
1041
                    t = threading.Thread(
 
1042
                        target=ferry_bytes, args=(read, write, close))
 
1043
                    t.start()
 
1044
                    started.append(t)
 
1045
 
 
1046
                return True
 
1047
 
 
1048
        ssh_server = stub_sftp.SFTPFullAbsoluteServer(StubSSHServer)
 
1049
        # We *don't* want to override the default SSH vendor: the detected one
 
1050
        # is the one to use.
 
1051
 
 
1052
        # FIXME: I don't understand the above comment, SFTPFullAbsoluteServer
 
1053
        # inherits from SFTPServer which forces the SSH vendor to
 
1054
        # ssh.ParamikoVendor(). So it's forced, not detected. --vila 20100623
 
1055
        self.start_server(ssh_server)
 
1056
        port = ssh_server.port
 
1057
 
 
1058
        if sys.platform == 'win32':
 
1059
            bzr_remote_path = sys.executable + ' ' + self.get_bzr_path()
 
1060
        else:
 
1061
            bzr_remote_path = self.get_bzr_path()
 
1062
        self.overrideEnv('BZR_REMOTE_PATH', bzr_remote_path)
 
1063
 
 
1064
        # Access the branch via a bzr+ssh URL.  The BZR_REMOTE_PATH environment
 
1065
        # variable is used to tell bzr what command to run on the remote end.
 
1066
        path_to_branch = osutils.abspath('.')
 
1067
        if sys.platform == 'win32':
 
1068
            # On Windows, we export all drives as '/C:/, etc. So we need to
 
1069
            # prefix a '/' to get the right path.
 
1070
            path_to_branch = '/' + path_to_branch
 
1071
        url = 'bzr+ssh://fred:secret@localhost:%d%s' % (port, path_to_branch)
 
1072
        t = transport.get_transport(url)
 
1073
        self.permit_url(t.base)
 
1074
        t.mkdir('foo')
 
1075
 
 
1076
        self.assertEqual(
 
1077
            ['%s serve --inet --directory=/ --allow-writes' % bzr_remote_path],
 
1078
            self.command_executed)
 
1079
        # Make sure to disconnect, so that the remote process can stop, and we
 
1080
        # can cleanup. Then pause the test until everything is shutdown
 
1081
        t._client._medium.disconnect()
 
1082
        if not started:
 
1083
            return
 
1084
        # First wait for the subprocess
 
1085
        started[0].wait()
 
1086
        # And the rest are threads
 
1087
        for t in started[1:]:
 
1088
            t.join()
 
1089
 
 
1090
 
 
1091
class TestUnhtml(tests.TestCase):
 
1092
 
 
1093
    """Tests for unhtml_roughly"""
 
1094
 
 
1095
    def test_truncation(self):
 
1096
        fake_html = "<p>something!\n" * 1000
 
1097
        result = http.unhtml_roughly(fake_html)
 
1098
        self.assertEquals(len(result), 1000)
 
1099
        self.assertStartsWith(result, " something!")
 
1100
 
 
1101
 
 
1102
class SomeDirectory(object):
 
1103
 
 
1104
    def look_up(self, name, url):
 
1105
        return "http://bar"
 
1106
 
 
1107
 
 
1108
class TestLocationToUrl(tests.TestCase):
 
1109
 
 
1110
    def get_base_location(self):
 
1111
        path = osutils.abspath('/foo/bar')
 
1112
        if path.startswith('/'):
 
1113
            url = 'file://%s' % (path,)
 
1114
        else:
 
1115
            # On Windows, abspaths start with the drive letter, so we have to
 
1116
            # add in the extra '/'
 
1117
            url = 'file:///%s' % (path,)
 
1118
        return path, url
 
1119
 
 
1120
    def test_regular_url(self):
 
1121
        self.assertEquals("file://foo", location_to_url("file://foo"))
 
1122
 
 
1123
    def test_directory(self):
 
1124
        directories.register("bar:", SomeDirectory, "Dummy directory")
 
1125
        self.addCleanup(directories.remove, "bar:")
 
1126
        self.assertEquals("http://bar", location_to_url("bar:"))
 
1127
 
 
1128
    def test_unicode_url(self):
 
1129
        self.assertRaises(errors.InvalidURL, location_to_url,
 
1130
            "http://fo/\xc3\xaf".decode("utf-8"))
 
1131
 
 
1132
    def test_unicode_path(self):
 
1133
        path, url = self.get_base_location()
 
1134
        location = path + "\xc3\xaf".decode("utf-8")
 
1135
        url += '%C3%AF'
 
1136
        self.assertEquals(url, location_to_url(location))
 
1137
 
 
1138
    def test_path(self):
 
1139
        path, url = self.get_base_location()
 
1140
        self.assertEquals(url, location_to_url(path))
 
1141
 
 
1142
    def test_relative_file_url(self):
 
1143
        self.assertEquals(urlutils.local_path_to_url(".") + "/bar",
 
1144
            location_to_url("file:bar"))
 
1145
 
 
1146
    def test_absolute_file_url(self):
 
1147
        self.assertEquals("file:///bar", location_to_url("file:/bar"))