~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport.py

  • Committer: John Arbash Meinel
  • Date: 2007-11-13 20:37:09 UTC
  • mto: This revision was merged to the branch mainline in revision 3001.
  • Revision ID: john@arbash-meinel.com-20071113203709-kysdte0emqv84pnj
Fix bug #162486, by having RemoteBranch properly initialize self._revision_id_to_revno_map.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2004, 2005 by Canonical Ltd
2
 
 
 
1
# Copyright (C) 2004, 2005, 2006, 2007 Canonical Ltd
 
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
5
5
# the Free Software Foundation; either version 2 of the License, or
6
6
# (at your option) any later version.
7
 
 
 
7
#
8
8
# This program is distributed in the hope that it will be useful,
9
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
11
# GNU General Public License for more details.
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
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
 
18
 
import os
19
 
import sys
20
 
import stat
21
18
from cStringIO import StringIO
22
19
 
23
 
from bzrlib.errors import (NoSuchFile, FileExists,
24
 
                           TransportNotPossible, ConnectionError)
 
20
import bzrlib
 
21
from bzrlib import (
 
22
    errors,
 
23
    osutils,
 
24
    urlutils,
 
25
    )
 
26
from bzrlib.errors import (DependencyNotPresent,
 
27
                           FileExists,
 
28
                           InvalidURLJoin,
 
29
                           NoSuchFile,
 
30
                           PathNotChild,
 
31
                           ReadError,
 
32
                           UnsupportedProtocol,
 
33
                           )
25
34
from bzrlib.tests import TestCase, TestCaseInTempDir
26
 
from bzrlib.tests.HTTPTestUtil import TestCaseWithWebserver
27
 
from bzrlib.transport import memory, urlescape
28
 
from bzrlib.osutils import pathjoin
29
 
 
30
 
 
31
 
def _append(fn, txt):
32
 
    """Append the given text (file-like object) to the supplied filename."""
33
 
    f = open(fn, 'ab')
34
 
    f.write(txt)
35
 
    f.flush()
36
 
    f.close()
37
 
    del f
38
 
 
39
 
 
40
 
if sys.platform != 'win32':
41
 
    def check_mode(test, path, mode):
42
 
        """Check that a particular path has the correct mode."""
43
 
        actual_mode = stat.S_IMODE(os.stat(path).st_mode)
44
 
        test.assertEqual(mode, actual_mode,
45
 
            'mode of %r incorrect (%o != %o)' % (path, mode, actual_mode))
46
 
else:
47
 
    def check_mode(test, path, mode):
48
 
        """On win32 chmod doesn't have any effect, 
49
 
        so don't actually check anything
50
 
        """
51
 
        return
 
35
from bzrlib.transport import (_clear_protocol_handlers,
 
36
                              _CoalescedOffset,
 
37
                              ConnectedTransport,
 
38
                              _get_protocol_handlers,
 
39
                              _set_protocol_handlers,
 
40
                              _get_transport_modules,
 
41
                              get_transport,
 
42
                              LateReadError,
 
43
                              register_lazy_transport,
 
44
                              register_transport_proto,
 
45
                              Transport,
 
46
                              )
 
47
from bzrlib.transport.chroot import ChrootServer
 
48
from bzrlib.transport.memory import MemoryTransport
 
49
from bzrlib.transport.local import (LocalTransport,
 
50
                                    EmulatedWin32LocalTransport)
 
51
from bzrlib.transport.remote import (
 
52
    BZR_DEFAULT_PORT,
 
53
    RemoteTCPTransport
 
54
    )
 
55
 
 
56
 
 
57
# TODO: Should possibly split transport-specific tests into their own files.
52
58
 
53
59
 
54
60
class TestTransport(TestCase):
55
61
    """Test the non transport-concrete class functionality."""
56
62
 
57
 
    def test_urlescape(self):
58
 
        self.assertEqual('%25', urlescape('%'))
59
 
 
60
 
 
61
 
class TestTransportMixIn(object):
62
 
    """Subclass this, and it will provide a series of tests for a Transport.
63
 
    It assumes that the Transport object is connected to the 
64
 
    current working directory.  So that whatever is done 
65
 
    through the transport, should show up in the working 
66
 
    directory, and vice-versa.
67
 
 
68
 
    This also tests to make sure that the functions work with both
69
 
    generators and lists (assuming iter(list) is effectively a generator)
70
 
    """
71
 
    readonly = False
72
 
    def get_transport(self):
73
 
        """Children should override this to return the Transport object.
74
 
        """
75
 
        raise NotImplementedError
76
 
 
77
 
    def assertListRaises(self, excClass, func, *args, **kwargs):
78
 
        """Many transport functions can return generators this makes sure
79
 
        to wrap them in a list() call to make sure the whole generator
80
 
        is run, and that the proper exception is raised.
81
 
        """
82
 
        try:
83
 
            list(func(*args, **kwargs))
84
 
        except excClass:
85
 
            return
86
 
        else:
87
 
            if hasattr(excClass,'__name__'): excName = excClass.__name__
88
 
            else: excName = str(excClass)
89
 
            raise self.failureException, "%s not raised" % excName
90
 
 
91
 
    def test_has(self):
92
 
        t = self.get_transport()
93
 
 
94
 
        files = ['a', 'b', 'e', 'g', '%']
95
 
        self.build_tree(files)
96
 
        self.assertEqual(True, t.has('a'))
97
 
        self.assertEqual(False, t.has('c'))
98
 
        self.assertEqual(True, t.has(urlescape('%')))
99
 
        self.assertEqual(list(t.has_multi(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'])),
100
 
                [True, True, False, False, True, False, True, False])
101
 
        self.assertEqual(True, t.has_any(['a', 'b', 'c']))
102
 
        self.assertEqual(False, t.has_any(['c', 'd', 'f', urlescape('%%')]))
103
 
        self.assertEqual(list(t.has_multi(iter(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']))),
104
 
                [True, True, False, False, True, False, True, False])
105
 
        self.assertEqual(False, t.has_any(['c', 'c', 'c']))
106
 
        self.assertEqual(True, t.has_any(['b', 'b', 'b']))
107
 
 
108
 
    def test_get(self):
109
 
        t = self.get_transport()
110
 
 
111
 
        files = ['a', 'b', 'e', 'g']
112
 
        self.build_tree(files)
113
 
        self.assertEqual(open('a', 'rb').read(), t.get('a').read())
114
 
        content_f = t.get_multi(files)
115
 
        for path,f in zip(files, content_f):
116
 
            self.assertEqual(f.read(), open(path, 'rb').read())
117
 
 
118
 
        content_f = t.get_multi(iter(files))
119
 
        for path,f in zip(files, content_f):
120
 
            self.assertEqual(f.read(), open(path, 'rb').read())
121
 
 
122
 
        self.assertRaises(NoSuchFile, t.get, 'c')
123
 
        self.assertListRaises(NoSuchFile, t.get_multi, ['a', 'b', 'c'])
124
 
        self.assertListRaises(NoSuchFile, t.get_multi, iter(['a', 'b', 'c']))
125
 
 
126
 
    def test_put(self):
127
 
        t = self.get_transport()
128
 
 
129
 
        # TODO: jam 20051215 No need to do anything if the test is readonly
130
 
        #                    origininally it was thought that it would give
131
 
        #                    more of a workout to readonly tests. By now the
132
 
        #                    suite is probably thorough enough without testing
133
 
        #                    readonly protocols in write sections
134
 
        #                    The only thing that needs to be tested is that the
135
 
        #                    right error is raised
136
 
 
137
 
        if self.readonly:
138
 
            self.assertRaises(TransportNotPossible,
139
 
                    t.put, 'a', 'some text for a\n')
140
 
            open('a', 'wb').write('some text for a\n')
141
 
        else:
142
 
            t.put('a', 'some text for a\n')
143
 
        self.assert_(os.path.exists('a'))
144
 
        self.check_file_contents('a', 'some text for a\n')
145
 
        self.assertEqual(t.get('a').read(), 'some text for a\n')
146
 
        # Make sure 'has' is updated
147
 
        self.assertEqual(list(t.has_multi(['a', 'b', 'c', 'd', 'e'])),
148
 
                [True, False, False, False, False])
149
 
        if self.readonly:
150
 
            self.assertRaises(TransportNotPossible,
151
 
                    t.put_multi,
152
 
                    [('a', 'new\ncontents for\na\n'),
153
 
                        ('d', 'contents\nfor d\n')])
154
 
            open('a', 'wb').write('new\ncontents for\na\n')
155
 
            open('d', 'wb').write('contents\nfor d\n')
156
 
        else:
157
 
            # Put also replaces contents
158
 
            self.assertEqual(t.put_multi([('a', 'new\ncontents for\na\n'),
159
 
                                          ('d', 'contents\nfor d\n')]),
160
 
                             2)
161
 
        self.assertEqual(list(t.has_multi(['a', 'b', 'c', 'd', 'e'])),
162
 
                [True, False, False, True, False])
163
 
        self.check_file_contents('a', 'new\ncontents for\na\n')
164
 
        self.check_file_contents('d', 'contents\nfor d\n')
165
 
 
166
 
        if self.readonly:
167
 
            self.assertRaises(TransportNotPossible,
168
 
                t.put_multi, iter([('a', 'diff\ncontents for\na\n'),
169
 
                                  ('d', 'another contents\nfor d\n')]))
170
 
            open('a', 'wb').write('diff\ncontents for\na\n')
171
 
            open('d', 'wb').write('another contents\nfor d\n')
172
 
        else:
173
 
            self.assertEqual(
174
 
                t.put_multi(iter([('a', 'diff\ncontents for\na\n'),
175
 
                                  ('d', 'another contents\nfor d\n')]))
176
 
                             , 2)
177
 
        self.check_file_contents('a', 'diff\ncontents for\na\n')
178
 
        self.check_file_contents('d', 'another contents\nfor d\n')
179
 
 
180
 
        if self.readonly:
181
 
            self.assertRaises(TransportNotPossible,
182
 
                    t.put, 'path/doesnt/exist/c', 'contents')
183
 
        else:
184
 
            self.assertRaises(NoSuchFile,
185
 
                    t.put, 'path/doesnt/exist/c', 'contents')
186
 
 
187
 
        if not self.readonly:
188
 
            t.put('mode644', 'test text\n', mode=0644)
189
 
            check_mode(self, 'mode644', 0644)
190
 
 
191
 
            t.put('mode666', 'test text\n', mode=0666)
192
 
            check_mode(self, 'mode666', 0666)
193
 
 
194
 
            t.put('mode600', 'test text\n', mode=0600)
195
 
            check_mode(self, 'mode600', 0600)
196
 
 
197
 
            # Yes, you can put a file such that it becomes readonly
198
 
            t.put('mode400', 'test text\n', mode=0400)
199
 
            check_mode(self, 'mode400', 0400)
200
 
 
201
 
            t.put_multi([('mmode644', 'text\n')], mode=0644)
202
 
            check_mode(self, 'mmode644', 0644)
203
 
 
204
 
        # TODO: jam 20051215 test put_multi with a mode. I didn't bother because
205
 
        #                    it seems most people don't like the _multi functions
206
 
 
207
 
    def test_put_file(self):
208
 
        t = self.get_transport()
209
 
 
210
 
        # Test that StringIO can be used as a file-like object with put
211
 
        f1 = StringIO('this is a string\nand some more stuff\n')
212
 
        if self.readonly:
213
 
            open('f1', 'wb').write(f1.read())
214
 
        else:
215
 
            t.put('f1', f1)
216
 
 
217
 
        del f1
218
 
 
219
 
        self.check_file_contents('f1', 
220
 
                'this is a string\nand some more stuff\n')
221
 
 
222
 
        f2 = StringIO('here is some text\nand a bit more\n')
223
 
        f3 = StringIO('some text for the\nthird file created\n')
224
 
 
225
 
        if self.readonly:
226
 
            open('f2', 'wb').write(f2.read())
227
 
            open('f3', 'wb').write(f3.read())
228
 
        else:
229
 
            t.put_multi([('f2', f2), ('f3', f3)])
230
 
 
231
 
        del f2, f3
232
 
 
233
 
        self.check_file_contents('f2', 'here is some text\nand a bit more\n')
234
 
        self.check_file_contents('f3', 'some text for the\nthird file created\n')
235
 
 
236
 
        # Test that an actual file object can be used with put
237
 
        f4 = open('f1', 'rb')
238
 
        if self.readonly:
239
 
            open('f4', 'wb').write(f4.read())
240
 
        else:
241
 
            t.put('f4', f4)
242
 
 
243
 
        del f4
244
 
 
245
 
        self.check_file_contents('f4', 
246
 
                'this is a string\nand some more stuff\n')
247
 
 
248
 
        f5 = open('f2', 'rb')
249
 
        f6 = open('f3', 'rb')
250
 
        if self.readonly:
251
 
            open('f5', 'wb').write(f5.read())
252
 
            open('f6', 'wb').write(f6.read())
253
 
        else:
254
 
            t.put_multi([('f5', f5), ('f6', f6)])
255
 
 
256
 
        del f5, f6
257
 
 
258
 
        self.check_file_contents('f5', 'here is some text\nand a bit more\n')
259
 
        self.check_file_contents('f6', 'some text for the\nthird file created\n')
260
 
 
261
 
        if not self.readonly:
262
 
            sio = StringIO('test text\n')
263
 
            t.put('mode644', sio, mode=0644)
264
 
            check_mode(self, 'mode644', 0644)
265
 
 
266
 
            a = open('mode644', 'rb')
267
 
            t.put('mode666', a, mode=0666)
268
 
            check_mode(self, 'mode666', 0666)
269
 
 
270
 
            a = open('mode644', 'rb')
271
 
            t.put('mode600', a, mode=0600)
272
 
            check_mode(self, 'mode600', 0600)
273
 
 
274
 
            # Yes, you can put a file such that it becomes readonly
275
 
            a = open('mode644', 'rb')
276
 
            t.put('mode400', a, mode=0400)
277
 
            check_mode(self, 'mode400', 0400)
278
 
 
279
 
    def test_mkdir(self):
280
 
        t = self.get_transport()
281
 
 
282
 
        # Test mkdir
283
 
        os.mkdir('dir_a')
284
 
        self.assertEqual(t.has('dir_a'), True)
285
 
        self.assertEqual(t.has('dir_b'), False)
286
 
 
287
 
        if self.readonly:
288
 
            self.assertRaises(TransportNotPossible,
289
 
                    t.mkdir, 'dir_b')
290
 
            os.mkdir('dir_b')
291
 
        else:
292
 
            t.mkdir('dir_b')
293
 
        self.assertEqual(t.has('dir_b'), True)
294
 
        self.assert_(os.path.isdir('dir_b'))
295
 
 
296
 
        if self.readonly:
297
 
            self.assertRaises(TransportNotPossible,
298
 
                    t.mkdir_multi, ['dir_c', 'dir_d'])
299
 
            os.mkdir('dir_c')
300
 
            os.mkdir('dir_d')
301
 
        else:
302
 
            t.mkdir_multi(['dir_c', 'dir_d'])
303
 
 
304
 
        if self.readonly:
305
 
            self.assertRaises(TransportNotPossible,
306
 
                    t.mkdir_multi, iter(['dir_e', 'dir_f']))
307
 
            os.mkdir('dir_e')
308
 
            os.mkdir('dir_f')
309
 
        else:
310
 
            t.mkdir_multi(iter(['dir_e', 'dir_f']))
311
 
        self.assertEqual(list(t.has_multi(
312
 
            ['dir_a', 'dir_b', 'dir_c', 'dir_q',
313
 
             'dir_d', 'dir_e', 'dir_f', 'dir_b'])),
314
 
            [True, True, True, False,
315
 
             True, True, True, True])
316
 
        for d in ['dir_a', 'dir_b', 'dir_c', 'dir_d', 'dir_e', 'dir_f']:
317
 
            self.assert_(os.path.isdir(d))
318
 
 
319
 
        if not self.readonly:
320
 
            self.assertRaises(NoSuchFile, t.mkdir, 'path/doesnt/exist')
321
 
            self.assertRaises(FileExists, t.mkdir, 'dir_a') # Creating a directory again should fail
322
 
 
323
 
        # Make sure the transport recognizes when a
324
 
        # directory is created by other means
325
 
        # Caching Transports will fail, because dir_e was already seen not
326
 
        # to exist. So instead, we will search for a new directory
327
 
        #os.mkdir('dir_e')
328
 
        #if not self.readonly:
329
 
        #    self.assertRaises(FileExists, t.mkdir, 'dir_e')
330
 
 
331
 
        os.mkdir('dir_g')
332
 
        if not self.readonly:
333
 
            self.assertRaises(FileExists, t.mkdir, 'dir_g')
334
 
 
335
 
        # Test get/put in sub-directories
336
 
        if self.readonly:
337
 
            open('dir_a/a', 'wb').write('contents of dir_a/a')
338
 
            open('dir_b/b', 'wb').write('contents of dir_b/b')
339
 
        else:
340
 
            self.assertEqual(
341
 
                t.put_multi([('dir_a/a', 'contents of dir_a/a'),
342
 
                             ('dir_b/b', 'contents of dir_b/b')])
343
 
                          , 2)
344
 
        for f in ('dir_a/a', 'dir_b/b'):
345
 
            self.assertEqual(t.get(f).read(), open(f, 'rb').read())
346
 
 
347
 
        if not self.readonly:
348
 
            # Test mkdir with a mode
349
 
            t.mkdir('dmode755', mode=0755)
350
 
            check_mode(self, 'dmode755', 0755)
351
 
 
352
 
            t.mkdir('dmode555', mode=0555)
353
 
            check_mode(self, 'dmode555', 0555)
354
 
 
355
 
            t.mkdir('dmode777', mode=0777)
356
 
            check_mode(self, 'dmode777', 0777)
357
 
 
358
 
            t.mkdir('dmode700', mode=0700)
359
 
            check_mode(self, 'dmode700', 0700)
360
 
 
361
 
            # TODO: jam 20051215 test mkdir_multi with a mode
362
 
            t.mkdir_multi(['mdmode755'], mode=0755)
363
 
            check_mode(self, 'mdmode755', 0755)
364
 
 
365
 
 
366
 
    def test_copy_to(self):
367
 
        import tempfile
368
 
        from bzrlib.transport.local import LocalTransport
369
 
 
370
 
        t = self.get_transport()
371
 
 
372
 
        files = ['a', 'b', 'c', 'd']
373
 
        self.build_tree(files)
374
 
 
375
 
        def get_temp_local():
376
 
            dtmp = tempfile.mkdtemp(dir=u'.', prefix='test-transport-')
377
 
            dtmp_base = os.path.basename(dtmp)
378
 
            return dtmp_base, LocalTransport(dtmp)
379
 
        dtmp_base, local_t = get_temp_local()
380
 
 
381
 
        t.copy_to(files, local_t)
382
 
        for f in files:
383
 
            self.assertEquals(open(f, 'rb').read(),
384
 
                    open(pathjoin(dtmp_base, f), 'rb').read())
385
 
 
386
 
        # Test that copying into a missing directory raises
387
 
        # NoSuchFile
388
 
        os.mkdir('e')
389
 
        open('e/f', 'wb').write('contents of e')
390
 
        self.assertRaises(NoSuchFile, t.copy_to, ['e/f'], local_t)
391
 
 
392
 
        os.mkdir(pathjoin(dtmp_base, 'e'))
393
 
        t.copy_to(['e/f'], local_t)
394
 
 
395
 
        del dtmp_base, local_t
396
 
 
397
 
        dtmp_base, local_t = get_temp_local()
398
 
 
399
 
        files = ['a', 'b', 'c', 'd']
400
 
        t.copy_to(iter(files), local_t)
401
 
        for f in files:
402
 
            self.assertEquals(open(f, 'rb').read(),
403
 
                    open(pathjoin(dtmp_base, f), 'rb').read())
404
 
 
405
 
        del dtmp_base, local_t
406
 
 
407
 
        for mode in (0666, 0644, 0600, 0400):
408
 
            dtmp_base, local_t = get_temp_local()
409
 
            t.copy_to(files, local_t, mode=mode)
410
 
            for f in files:
411
 
                check_mode(self, os.path.join(dtmp_base, f), mode)
412
 
 
413
 
    def test_append(self):
414
 
        t = self.get_transport()
415
 
 
416
 
        if self.readonly:
417
 
            open('a', 'wb').write('diff\ncontents for\na\n')
418
 
            open('b', 'wb').write('contents\nfor b\n')
419
 
        else:
420
 
            t.put_multi([
421
 
                    ('a', 'diff\ncontents for\na\n'),
422
 
                    ('b', 'contents\nfor b\n')
423
 
                    ])
424
 
 
425
 
        if self.readonly:
426
 
            self.assertRaises(TransportNotPossible,
427
 
                    t.append, 'a', 'add\nsome\nmore\ncontents\n')
428
 
            _append('a', 'add\nsome\nmore\ncontents\n')
429
 
        else:
430
 
            t.append('a', 'add\nsome\nmore\ncontents\n')
431
 
 
432
 
        self.check_file_contents('a', 
433
 
            'diff\ncontents for\na\nadd\nsome\nmore\ncontents\n')
434
 
 
435
 
        if self.readonly:
436
 
            self.assertRaises(TransportNotPossible,
437
 
                    t.append_multi,
438
 
                        [('a', 'and\nthen\nsome\nmore\n'),
439
 
                         ('b', 'some\nmore\nfor\nb\n')])
440
 
            _append('a', 'and\nthen\nsome\nmore\n')
441
 
            _append('b', 'some\nmore\nfor\nb\n')
442
 
        else:
443
 
            t.append_multi([('a', 'and\nthen\nsome\nmore\n'),
444
 
                    ('b', 'some\nmore\nfor\nb\n')])
445
 
        self.check_file_contents('a', 
446
 
            'diff\ncontents for\na\n'
447
 
            'add\nsome\nmore\ncontents\n'
448
 
            'and\nthen\nsome\nmore\n')
449
 
        self.check_file_contents('b', 
450
 
                'contents\nfor b\n'
451
 
                'some\nmore\nfor\nb\n')
452
 
 
453
 
        if self.readonly:
454
 
            _append('a', 'a little bit more\n')
455
 
            _append('b', 'from an iterator\n')
456
 
        else:
457
 
            t.append_multi(iter([('a', 'a little bit more\n'),
458
 
                    ('b', 'from an iterator\n')]))
459
 
        self.check_file_contents('a', 
460
 
            'diff\ncontents for\na\n'
461
 
            'add\nsome\nmore\ncontents\n'
462
 
            'and\nthen\nsome\nmore\n'
463
 
            'a little bit more\n')
464
 
        self.check_file_contents('b', 
465
 
                'contents\nfor b\n'
466
 
                'some\nmore\nfor\nb\n'
467
 
                'from an iterator\n')
468
 
 
469
 
        if self.readonly:
470
 
            _append('c', 'some text\nfor a missing file\n')
471
 
            _append('a', 'some text in a\n')
472
 
            _append('d', 'missing file r\n')
473
 
        else:
474
 
            t.append('c', 'some text\nfor a missing file\n')
475
 
            t.append_multi([('a', 'some text in a\n'),
476
 
                            ('d', 'missing file r\n')])
477
 
        self.check_file_contents('a', 
478
 
            'diff\ncontents for\na\n'
479
 
            'add\nsome\nmore\ncontents\n'
480
 
            'and\nthen\nsome\nmore\n'
481
 
            'a little bit more\n'
482
 
            'some text in a\n')
483
 
        self.check_file_contents('c', 'some text\nfor a missing file\n')
484
 
        self.check_file_contents('d', 'missing file r\n')
485
 
 
486
 
    def test_append_file(self):
487
 
        t = self.get_transport()
488
 
 
489
 
        contents = [
490
 
            ('f1', 'this is a string\nand some more stuff\n'),
491
 
            ('f2', 'here is some text\nand a bit more\n'),
492
 
            ('f3', 'some text for the\nthird file created\n'),
493
 
            ('f4', 'this is a string\nand some more stuff\n'),
494
 
            ('f5', 'here is some text\nand a bit more\n'),
495
 
            ('f6', 'some text for the\nthird file created\n')
496
 
        ]
497
 
        
498
 
        if self.readonly:
499
 
            for f, val in contents:
500
 
                open(f, 'wb').write(val)
501
 
        else:
502
 
            t.put_multi(contents)
503
 
 
504
 
        a1 = StringIO('appending to\none\n')
505
 
        if self.readonly:
506
 
            _append('f1', a1.read())
507
 
        else:
508
 
            t.append('f1', a1)
509
 
 
510
 
        del a1
511
 
 
512
 
        self.check_file_contents('f1', 
513
 
                'this is a string\nand some more stuff\n'
514
 
                'appending to\none\n')
515
 
 
516
 
        a2 = StringIO('adding more\ntext to two\n')
517
 
        a3 = StringIO('some garbage\nto put in three\n')
518
 
 
519
 
        if self.readonly:
520
 
            _append('f2', a2.read())
521
 
            _append('f3', a3.read())
522
 
        else:
523
 
            t.append_multi([('f2', a2), ('f3', a3)])
524
 
 
525
 
        del a2, a3
526
 
 
527
 
        self.check_file_contents('f2',
528
 
                'here is some text\nand a bit more\n'
529
 
                'adding more\ntext to two\n')
530
 
        self.check_file_contents('f3', 
531
 
                'some text for the\nthird file created\n'
532
 
                'some garbage\nto put in three\n')
533
 
 
534
 
        # Test that an actual file object can be used with put
535
 
        a4 = open('f1', 'rb')
536
 
        if self.readonly:
537
 
            _append('f4', a4.read())
538
 
        else:
539
 
            t.append('f4', a4)
540
 
 
541
 
        del a4
542
 
 
543
 
        self.check_file_contents('f4', 
544
 
                'this is a string\nand some more stuff\n'
545
 
                'this is a string\nand some more stuff\n'
546
 
                'appending to\none\n')
547
 
 
548
 
        a5 = open('f2', 'rb')
549
 
        a6 = open('f3', 'rb')
550
 
        if self.readonly:
551
 
            _append('f5', a5.read())
552
 
            _append('f6', a6.read())
553
 
        else:
554
 
            t.append_multi([('f5', a5), ('f6', a6)])
555
 
 
556
 
        del a5, a6
557
 
 
558
 
        self.check_file_contents('f5',
559
 
                'here is some text\nand a bit more\n'
560
 
                'here is some text\nand a bit more\n'
561
 
                'adding more\ntext to two\n')
562
 
        self.check_file_contents('f6',
563
 
                'some text for the\nthird file created\n'
564
 
                'some text for the\nthird file created\n'
565
 
                'some garbage\nto put in three\n')
566
 
 
567
 
        a5 = open('f2', 'rb')
568
 
        a6 = open('f2', 'rb')
569
 
        a7 = open('f3', 'rb')
570
 
        if self.readonly:
571
 
            _append('c', a5.read())
572
 
            _append('a', a6.read())
573
 
            _append('d', a7.read())
574
 
        else:
575
 
            t.append('c', a5)
576
 
            t.append_multi([('a', a6), ('d', a7)])
577
 
        del a5, a6, a7
578
 
        self.check_file_contents('c', open('f2', 'rb').read())
579
 
        self.check_file_contents('d', open('f3', 'rb').read())
580
 
 
581
 
 
582
 
    def test_delete(self):
583
 
        # TODO: Test Transport.delete
584
 
        t = self.get_transport()
585
 
 
586
 
        # Not much to do with a readonly transport
587
 
        if self.readonly:
588
 
            return
589
 
 
590
 
        open('a', 'wb').write('a little bit of text\n')
591
 
        self.failUnless(t.has('a'))
592
 
        self.failUnlessExists('a')
593
 
        t.delete('a')
594
 
        self.failIf(os.path.lexists('a'))
595
 
 
596
 
        self.assertRaises(NoSuchFile, t.delete, 'a')
597
 
 
598
 
        open('a', 'wb').write('a text\n')
599
 
        open('b', 'wb').write('b text\n')
600
 
        open('c', 'wb').write('c text\n')
601
 
        self.assertEqual([True, True, True],
602
 
                list(t.has_multi(['a', 'b', 'c'])))
603
 
        t.delete_multi(['a', 'c'])
604
 
        self.assertEqual([False, True, False],
605
 
                list(t.has_multi(['a', 'b', 'c'])))
606
 
        self.failIf(os.path.lexists('a'))
607
 
        self.failUnlessExists('b')
608
 
        self.failIf(os.path.lexists('c'))
609
 
 
610
 
        self.assertRaises(NoSuchFile,
611
 
                t.delete_multi, ['a', 'b', 'c'])
612
 
 
613
 
        self.assertRaises(NoSuchFile,
614
 
                t.delete_multi, iter(['a', 'b', 'c']))
615
 
 
616
 
        open('a', 'wb').write('another a text\n')
617
 
        open('c', 'wb').write('another c text\n')
618
 
        t.delete_multi(iter(['a', 'b', 'c']))
619
 
 
620
 
        # We should have deleted everything
621
 
        # SftpServer creates control files in the
622
 
        # working directory, so we can just do a
623
 
        # plain "listdir".
624
 
        # self.assertEqual([], os.listdir('.'))
625
 
 
626
 
    def test_move(self):
627
 
        t = self.get_transport()
628
 
 
629
 
        if self.readonly:
630
 
            return
631
 
 
632
 
        # TODO: I would like to use os.listdir() to
633
 
        # make sure there are no extra files, but SftpServer
634
 
        # creates control files in the working directory
635
 
        # perhaps all of this could be done in a subdirectory
636
 
 
637
 
        open('a', 'wb').write('a first file\n')
638
 
        self.assertEquals([True, False], list(t.has_multi(['a', 'b'])))
639
 
 
640
 
        t.move('a', 'b')
641
 
        self.failUnlessExists('b')
642
 
        self.failIf(os.path.lexists('a'))
643
 
 
644
 
        self.check_file_contents('b', 'a first file\n')
645
 
        self.assertEquals([False, True], list(t.has_multi(['a', 'b'])))
646
 
 
647
 
        # Overwrite a file
648
 
        open('c', 'wb').write('c this file\n')
649
 
        t.move('c', 'b')
650
 
        self.failIf(os.path.lexists('c'))
651
 
        self.check_file_contents('b', 'c this file\n')
652
 
 
653
 
        # TODO: Try to write a test for atomicity
654
 
        # TODO: Test moving into a non-existant subdirectory
655
 
        # TODO: Test Transport.move_multi
656
 
 
657
 
    def test_copy(self):
658
 
        t = self.get_transport()
659
 
 
660
 
        if self.readonly:
661
 
            return
662
 
 
663
 
        open('a', 'wb').write('a file\n')
664
 
        t.copy('a', 'b')
665
 
        self.check_file_contents('b', 'a file\n')
666
 
 
667
 
        self.assertRaises(NoSuchFile, t.copy, 'c', 'd')
668
 
        os.mkdir('c')
669
 
        # What should the assert be if you try to copy a
670
 
        # file over a directory?
671
 
        #self.assertRaises(Something, t.copy, 'a', 'c')
672
 
        open('d', 'wb').write('text in d\n')
673
 
        t.copy('d', 'b')
674
 
        self.check_file_contents('b', 'text in d\n')
675
 
 
676
 
        # TODO: test copy_multi
677
 
 
678
 
    def test_connection_error(self):
679
 
        """ConnectionError is raised when connection is impossible"""
680
 
        if not hasattr(self, "get_bogus_transport"):
681
 
            return
682
 
        t = self.get_bogus_transport()
683
 
        try:
684
 
            t.get('.bzr/branch')
685
 
        except (ConnectionError, NoSuchFile), e:
686
 
            pass
687
 
        except (Exception), e:
688
 
            self.failIf(True, 'Wrong exception thrown: %s' % e)
689
 
        else:
690
 
            self.failIf(True, 'Did not get the expected exception.')
691
 
 
692
 
    def test_stat(self):
693
 
        # TODO: Test stat, just try once, and if it throws, stop testing
694
 
        from stat import S_ISDIR, S_ISREG
695
 
 
696
 
        t = self.get_transport()
697
 
 
698
 
        try:
699
 
            st = t.stat('.')
700
 
        except TransportNotPossible, e:
701
 
            # This transport cannot stat
702
 
            return
703
 
 
704
 
        paths = ['a', 'b/', 'b/c', 'b/d/', 'b/d/e']
705
 
        self.build_tree(paths)
706
 
 
707
 
        local_stats = []
708
 
 
709
 
        for p in paths:
710
 
            st = t.stat(p)
711
 
            local_st = os.stat(p)
712
 
            if p.endswith('/'):
713
 
                self.failUnless(S_ISDIR(st.st_mode))
 
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)
 
71
 
 
72
    def test_get_transport_modules(self):
 
73
        handlers = _get_protocol_handlers()
 
74
        # don't pollute the current handlers
 
75
        _clear_protocol_handlers()
 
76
        class SampleHandler(object):
 
77
            """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)
 
88
 
 
89
    def test_transport_dependency(self):
 
90
        """Transport with missing dependency causes no error"""
 
91
        saved_handlers = _get_protocol_handlers()
 
92
        # don't pollute the current handlers
 
93
        _clear_protocol_handlers()
 
94
        try:
 
95
            register_transport_proto('foo')
 
96
            register_lazy_transport('foo', 'bzrlib.tests.test_transport',
 
97
                    'BadTransportHandler')
 
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))
714
106
            else:
715
 
                self.failUnless(S_ISREG(st.st_mode))
716
 
            self.assertEqual(local_st.st_size, st.st_size)
717
 
            self.assertEqual(local_st.st_mode, st.st_mode)
718
 
            local_stats.append(local_st)
719
 
 
720
 
        remote_stats = list(t.stat_multi(paths))
721
 
        remote_iter_stats = list(t.stat_multi(iter(paths)))
722
 
 
723
 
        for local, remote, remote_iter in \
724
 
            zip(local_stats, remote_stats, remote_iter_stats):
725
 
            self.assertEqual(local.st_mode, remote.st_mode)
726
 
            self.assertEqual(local.st_mode, remote_iter.st_mode)
727
 
 
728
 
            self.assertEqual(local.st_size, remote.st_size)
729
 
            self.assertEqual(local.st_size, remote_iter.st_size)
730
 
            # Should we test UID/GID?
731
 
 
732
 
        self.assertRaises(NoSuchFile, t.stat, 'q')
733
 
        self.assertRaises(NoSuchFile, t.stat, 'b/a')
734
 
 
735
 
        self.assertListRaises(NoSuchFile, t.stat_multi, ['a', 'c', 'd'])
736
 
        self.assertListRaises(NoSuchFile, t.stat_multi, iter(['a', 'c', 'd']))
737
 
 
738
 
    def test_list_dir(self):
739
 
        # TODO: Test list_dir, just try once, and if it throws, stop testing
740
 
        t = self.get_transport()
741
 
        
742
 
        if not t.listable():
743
 
            self.assertRaises(TransportNotPossible, t.list_dir, '.')
744
 
            return
745
 
 
746
 
        def sorted_list(d):
747
 
            l = list(t.list_dir(d))
748
 
            l.sort()
749
 
            return l
750
 
 
751
 
        # SftpServer creates control files in the working directory
752
 
        # so lets move down a directory to be safe
753
 
        os.mkdir('wd')
754
 
        os.chdir('wd')
755
 
        t = t.clone('wd')
756
 
 
757
 
        self.assertEqual([], sorted_list(u'.'))
758
 
        self.build_tree(['a', 'b', 'c/', 'c/d', 'c/e'])
759
 
 
760
 
        self.assertEqual([u'a', u'b', u'c'], sorted_list(u'.'))
761
 
        self.assertEqual([u'd', u'e'], sorted_list(u'c'))
762
 
 
763
 
        os.remove('c/d')
764
 
        os.remove('b')
765
 
        self.assertEqual([u'a', u'c'], sorted_list('.'))
766
 
        self.assertEqual([u'e'], sorted_list(u'c'))
767
 
 
768
 
        self.assertListRaises(NoSuchFile, t.list_dir, 'q')
769
 
        self.assertListRaises(NoSuchFile, t.list_dir, 'c/f')
770
 
        self.assertListRaises(NoSuchFile, t.list_dir, 'a')
771
 
 
772
 
    def test_clone(self):
773
 
        # TODO: Test that clone moves up and down the filesystem
774
 
        t1 = self.get_transport()
775
 
 
776
 
        self.build_tree(['a', 'b/', 'b/c'])
777
 
 
778
 
        self.failUnless(t1.has('a'))
779
 
        self.failUnless(t1.has('b/c'))
780
 
        self.failIf(t1.has('c'))
781
 
 
782
 
        t2 = t1.clone('b')
783
 
        self.failUnless(t2.has('c'))
784
 
        self.failIf(t2.has('a'))
785
 
 
786
 
        t3 = t2.clone('..')
787
 
        self.failUnless(t3.has('a'))
788
 
        self.failIf(t3.has('c'))
789
 
 
790
 
        self.failIf(t1.has('b/d'))
791
 
        self.failIf(t2.has('d'))
792
 
        self.failIf(t3.has('b/d'))
793
 
 
794
 
        if self.readonly:
795
 
            open('b/d', 'wb').write('newfile\n')
796
 
        else:
797
 
            t2.put('d', 'newfile\n')
798
 
 
799
 
        self.failUnless(t1.has('b/d'))
800
 
        self.failUnless(t2.has('d'))
801
 
        self.failUnless(t3.has('b/d'))
802
 
 
803
 
        
804
 
class LocalTransportTest(TestCaseInTempDir, TestTransportMixIn):
805
 
    def get_transport(self):
806
 
        from bzrlib.transport.local import LocalTransport
807
 
        return LocalTransport(u'.')
808
 
 
809
 
 
810
 
class HttpTransportTest(TestCaseWithWebserver, TestTransportMixIn):
811
 
 
812
 
    readonly = True
813
 
 
814
 
    def get_transport(self):
815
 
        from bzrlib.transport.http import HttpTransport
816
 
        url = self.get_remote_url(u'.')
817
 
        return HttpTransport(url)
818
 
 
819
 
    def get_bogus_transport(self):
820
 
        from bzrlib.transport.http import HttpTransport
821
 
        return HttpTransport('http://jasldkjsalkdjalksjdkljasd')
 
107
                self.fail('Did not raise UnsupportedProtocol')
 
108
        finally:
 
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:
 
116
            _clear_protocol_handlers()
 
117
            register_transport_proto('foo')
 
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:
 
125
            _set_protocol_handlers(saved_handlers)
 
126
 
 
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
 
 
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'))
 
143
        self.assertEqual('/etc',
 
144
                         t._combine_paths('/home/sarah', '../../../etc'))
 
145
        self.assertEqual('/etc',
 
146
                         t._combine_paths('/home/sarah', '/etc'))
 
147
 
 
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
 
 
154
 
 
155
class TestCoalesceOffsets(TestCase):
 
156
    
 
157
    def check(self, expected, offsets, limit=0, fudge=0):
 
158
        coalesce = Transport._coalesce_offsets
 
159
        exp = [_CoalescedOffset(*x) for x in expected]
 
160
        out = list(coalesce(offsets, limit=limit, fudge_factor=fudge))
 
161
        self.assertEqual(exp, out)
 
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)])
 
173
            
 
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
 
 
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
                  )
822
212
 
823
213
 
824
214
class TestMemoryTransport(TestCase):
825
215
 
826
216
    def test_get_transport(self):
827
 
        memory.MemoryTransport()
 
217
        MemoryTransport()
828
218
 
829
219
    def test_clone(self):
830
 
        transport = memory.MemoryTransport()
831
 
        self.failUnless(transport.clone() is transport)
 
220
        transport = MemoryTransport()
 
221
        self.assertTrue(isinstance(transport, MemoryTransport))
 
222
        self.assertEqual("memory:///", transport.clone("/").base)
832
223
 
833
224
    def test_abspath(self):
834
 
        transport = memory.MemoryTransport()
835
 
        self.assertEqual("in-memory:relpath", transport.abspath('relpath'))
836
 
 
837
 
    def test_relpath(self):
838
 
        transport = memory.MemoryTransport()
 
225
        transport = MemoryTransport()
 
226
        self.assertEqual("memory:///relpath", transport.abspath('relpath'))
 
227
 
 
228
    def test_abspath_of_root(self):
 
229
        transport = MemoryTransport()
 
230
        self.assertEqual("memory:///", transport.base)
 
231
        self.assertEqual("memory:///", transport.abspath('/'))
 
232
 
 
233
    def test_abspath_of_relpath_starting_at_root(self):
 
234
        transport = MemoryTransport()
 
235
        self.assertEqual("memory:///foo", transport.abspath('/foo'))
839
236
 
840
237
    def test_append_and_get(self):
841
 
        transport = memory.MemoryTransport()
842
 
        transport.append('path', StringIO('content'))
 
238
        transport = MemoryTransport()
 
239
        transport.append_bytes('path', 'content')
843
240
        self.assertEqual(transport.get('path').read(), 'content')
844
 
        transport.append('path', StringIO('content'))
 
241
        transport.append_file('path', StringIO('content'))
845
242
        self.assertEqual(transport.get('path').read(), 'contentcontent')
846
243
 
847
244
    def test_put_and_get(self):
848
 
        transport = memory.MemoryTransport()
849
 
        transport.put('path', StringIO('content'))
 
245
        transport = MemoryTransport()
 
246
        transport.put_file('path', StringIO('content'))
850
247
        self.assertEqual(transport.get('path').read(), 'content')
851
 
        transport.put('path', StringIO('content'))
 
248
        transport.put_bytes('path', 'content')
852
249
        self.assertEqual(transport.get('path').read(), 'content')
853
250
 
854
251
    def test_append_without_dir_fails(self):
855
 
        transport = memory.MemoryTransport()
 
252
        transport = MemoryTransport()
856
253
        self.assertRaises(NoSuchFile,
857
 
                          transport.append, 'dir/path', StringIO('content'))
 
254
                          transport.append_bytes, 'dir/path', 'content')
858
255
 
859
256
    def test_put_without_dir_fails(self):
860
 
        transport = memory.MemoryTransport()
 
257
        transport = MemoryTransport()
861
258
        self.assertRaises(NoSuchFile,
862
 
                          transport.put, 'dir/path', StringIO('content'))
 
259
                          transport.put_file, 'dir/path', StringIO('content'))
863
260
 
864
261
    def test_get_missing(self):
865
 
        transport = memory.MemoryTransport()
 
262
        transport = MemoryTransport()
866
263
        self.assertRaises(NoSuchFile, transport.get, 'foo')
867
264
 
868
265
    def test_has_missing(self):
869
 
        transport = memory.MemoryTransport()
 
266
        transport = MemoryTransport()
870
267
        self.assertEquals(False, transport.has('foo'))
871
268
 
872
269
    def test_has_present(self):
873
 
        transport = memory.MemoryTransport()
874
 
        transport.append('foo', StringIO('content'))
 
270
        transport = MemoryTransport()
 
271
        transport.append_bytes('foo', 'content')
875
272
        self.assertEquals(True, transport.has('foo'))
876
273
 
 
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
 
877
284
    def test_mkdir(self):
878
 
        transport = memory.MemoryTransport()
 
285
        transport = MemoryTransport()
879
286
        transport.mkdir('dir')
880
 
        transport.append('dir/path', StringIO('content'))
 
287
        transport.append_bytes('dir/path', 'content')
881
288
        self.assertEqual(transport.get('dir/path').read(), 'content')
882
289
 
883
290
    def test_mkdir_missing_parent(self):
884
 
        transport = memory.MemoryTransport()
 
291
        transport = MemoryTransport()
885
292
        self.assertRaises(NoSuchFile,
886
293
                          transport.mkdir, 'dir/dir')
887
294
 
888
295
    def test_mkdir_twice(self):
889
 
        transport = memory.MemoryTransport()
 
296
        transport = MemoryTransport()
890
297
        transport.mkdir('dir')
891
298
        self.assertRaises(FileExists, transport.mkdir, 'dir')
892
299
 
893
300
    def test_parameters(self):
894
 
        transport = memory.MemoryTransport()
 
301
        transport = MemoryTransport()
895
302
        self.assertEqual(True, transport.listable())
896
 
        self.assertEqual(False, transport.should_cache())
 
303
        self.assertEqual(False, transport.is_readonly())
897
304
 
898
305
    def test_iter_files_recursive(self):
899
 
        transport = memory.MemoryTransport()
 
306
        transport = MemoryTransport()
900
307
        transport.mkdir('dir')
901
 
        transport.put('dir/foo', StringIO('content'))
902
 
        transport.put('dir/bar', StringIO('content'))
903
 
        transport.put('bar', StringIO('content'))
 
308
        transport.put_bytes('dir/foo', 'content')
 
309
        transport.put_bytes('dir/bar', 'content')
 
310
        transport.put_bytes('bar', 'content')
904
311
        paths = set(transport.iter_files_recursive())
905
312
        self.assertEqual(set(['dir/foo', 'dir/bar', 'bar']), paths)
906
313
 
907
314
    def test_stat(self):
908
 
        transport = memory.MemoryTransport()
909
 
        transport.put('foo', StringIO('content'))
910
 
        transport.put('bar', StringIO('phowar'))
 
315
        transport = MemoryTransport()
 
316
        transport.put_bytes('foo', 'content')
 
317
        transport.put_bytes('bar', 'phowar')
911
318
        self.assertEqual(7, transport.stat('foo').st_size)
912
319
        self.assertEqual(6, transport.stat('bar').st_size)
913
320
 
 
321
 
 
322
class ChrootDecoratorTransportTest(TestCase):
 
323
    """Chroot decoration specific tests."""
 
324
 
 
325
    def test_abspath(self):
 
326
        # The abspath is always relative to the chroot_url.
 
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('/'))
 
331
 
 
332
        subdir_transport = transport.clone('subdir')
 
333
        self.assertEqual(server.get_url(), subdir_transport.abspath('/'))
 
334
        server.tearDown()
 
335
 
 
336
    def test_clone(self):
 
337
        server = ChrootServer(get_transport('memory:///foo/bar/'))
 
338
        server.setUp()
 
339
        transport = get_transport(server.get_url())
 
340
        # relpath from root and root path are the same
 
341
        relpath_cloned = transport.clone('foo')
 
342
        abspath_cloned = transport.clone('/foo')
 
343
        self.assertEqual(server, relpath_cloned.server)
 
344
        self.assertEqual(server, abspath_cloned.server)
 
345
        server.tearDown()
 
346
    
 
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()
 
393
        self.assertTrue(server.scheme in _get_protocol_handlers().keys())
 
394
 
 
395
    def test_tearDown(self):
 
396
        backing_transport = MemoryTransport()
 
397
        server = ChrootServer(backing_transport)
 
398
        server.setUp()
 
399
        server.tearDown()
 
400
        self.assertFalse(server.scheme in _get_protocol_handlers().keys())
 
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()
 
408
 
 
409
 
 
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):
 
421
        from bzrlib.tests.HttpServer import HttpServer
 
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()
 
434
 
 
435
 
 
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):
 
445
        # the listable and is_readonly parameters
 
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):
 
452
        # the listable and is_readonly parameters
 
453
        # are not changed by the fakenfs decorator
 
454
        from bzrlib.tests.HttpServer import HttpServer
 
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:
 
473
            # the url should be decorated appropriately
 
474
            self.assertStartsWith(server.get_url(), 'fakenfs+')
 
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)
 
489
        self.assertRaises(errors.ResourceBusy,
 
490
                          transport.rename, 'from', 'to')
 
491
 
 
492
 
 
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
 
 
512
    def test_forbidden_chars(self):
 
513
        transport = self.get_vfat_transport('.')
 
514
        self.assertRaises(ValueError, transport.has, "<NU>")
 
515
 
 
516
 
 
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"""
 
524
    pass
 
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()
 
553
        self.addCleanup(self._server.tearDown)
 
554
 
 
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
        """
 
560
        base_url = self._server.get_url()
 
561
        url = self._adjust_url(base_url, relpath)
 
562
        # try getting the transport via the regular interface:
 
563
        t = get_transport(url)
 
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 ?
 
567
        if not isinstance(t, self.transport_class):
 
568
            # we did not get the correct transport class type. Override the
 
569
            # regular connection behaviour by direct construction.
 
570
            t = self.transport_class(url)
 
571
        return t
 
572
 
 
573
 
 
574
class TestLocalTransports(TestCase):
 
575
 
 
576
    def test_get_transport_from_abspath(self):
 
577
        here = osutils.abspath('.')
 
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):
 
583
        here = osutils.abspath('.')
 
584
        t = get_transport('.')
 
585
        self.assertIsInstance(t, LocalTransport)
 
586
        self.assertEquals(t.base, urlutils.local_path_to_url('.') + '/')
 
587
 
 
588
    def test_get_transport_from_local_url(self):
 
589
        here = osutils.abspath('.')
 
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)
 
594
 
 
595
    def test_local_abspath(self):
 
596
        here = osutils.abspath('.')
 
597
        t = get_transport(here)
 
598
        self.assertEquals(t.local_abspath(''), here)
 
599
 
 
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 \\
 
607
        t = EmulatedWin32LocalTransport('file://HOST/path/to/some/dir/')
 
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/')
 
614
 
 
615
 
 
616
class TestConnectedTransport(TestCase):
 
617
    """Tests for connected to remote server transports"""
 
618
 
 
619
    def test_parse_url(self):
 
620
        t = ConnectedTransport('http://simple.example.com/home/source')
 
621
        self.assertEquals(t._host, 'simple.example.com')
 
622
        self.assertEquals(t._port, 80)
 
623
        self.assertEquals(t._path, '/home/source/')
 
624
        self.failUnless(t._user is None)
 
625
        self.failUnless(t._password is None)
 
626
 
 
627
        self.assertEquals(t.base, 'http://simple.example.com/home/source/')
 
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
 
 
665
    def test_connection_sharing_propagate_credentials(self):
 
666
        t = ConnectedTransport('ftp://user@host.com/abs/path')
 
667
        self.assertEquals('user', t._user)
 
668
        self.assertEquals('host.com', t._host)
 
669
        self.assertIs(None, t._get_connection())
 
670
        self.assertIs(None, t._password)
 
671
        c = t.clone('subdir')
 
672
        self.assertIs(None, c._get_connection())
 
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())
 
683
 
 
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
 
 
692
 
 
693
class TestReusedTransports(TestCase):
 
694
    """Tests for transport reuse"""
 
695
 
 
696
    def test_reuse_same_transport(self):
 
697
        possible_transports = []
 
698
        t1 = get_transport('http://foo/',
 
699
                           possible_transports=possible_transports)
 
700
        self.assertEqual([t1], possible_transports)
 
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
 
 
709
        t5 = get_transport('http://foo/path')
 
710
        t6 = get_transport('http://foo/path/', possible_transports=[t5])
 
711
        self.assertIs(t5, t6)
 
712
 
 
713
    def test_don_t_reuse_different_transport(self):
 
714
        t1 = get_transport('http://foo/path')
 
715
        t2 = get_transport('http://bar/path', possible_transports=[t1])
 
716
        self.assertIsNot(t1, t2)
 
717
 
 
718
 
 
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
 
 
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
 
 
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)