/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport.py

  • Committer: Robert Collins
  • Date: 2005-12-12 22:34:21 UTC
  • Revision ID: robertc@robertcollins.net-20051212223421-c0f6e7a7fae0b5ee
Bugfix to source testing logic to get the right path when .py is returned by __file__

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
2
 
#
 
1
# Copyright (C) 2004, 2005 by 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
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
 
 
17
 
 
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
 
 
18
import os
18
19
from cStringIO import StringIO
19
 
import os
20
 
import subprocess
21
 
import sys
22
 
import threading
23
 
 
24
 
from bzrlib import (
25
 
    errors,
26
 
    osutils,
27
 
    tests,
28
 
    transport,
29
 
    urlutils,
30
 
    )
31
 
from bzrlib.transport import (
32
 
    chroot,
33
 
    fakenfs,
34
 
    local,
35
 
    memory,
36
 
    pathfilter,
37
 
    readonly,
38
 
    )
39
 
from bzrlib.tests import (
40
 
    features,
41
 
    test_server,
42
 
    )
43
 
 
44
 
 
45
 
# TODO: Should possibly split transport-specific tests into their own files.
46
 
 
47
 
 
48
 
class TestTransport(tests.TestCase):
 
20
 
 
21
from bzrlib.errors import (NoSuchFile, FileExists,
 
22
                           TransportNotPossible, ConnectionError)
 
23
from bzrlib.tests import TestCase, TestCaseInTempDir
 
24
from bzrlib.tests.HTTPTestUtil import TestCaseWithWebserver
 
25
from bzrlib.transport import memory, urlescape
 
26
 
 
27
 
 
28
def _append(fn, txt):
 
29
    """Append the given text (file-like object) to the supplied filename."""
 
30
    f = open(fn, 'ab')
 
31
    f.write(txt)
 
32
    f.flush()
 
33
    f.close()
 
34
    del f
 
35
 
 
36
class TestTransport(TestCase):
49
37
    """Test the non transport-concrete class functionality."""
50
38
 
51
 
    # FIXME: These tests should use addCleanup() and/or overrideAttr() instead
52
 
    # of try/finally -- vila 20100205
53
 
 
54
 
    def test__get_set_protocol_handlers(self):
55
 
        handlers = transport._get_protocol_handlers()
56
 
        self.assertNotEqual([], handlers.keys( ))
57
 
        try:
58
 
            transport._clear_protocol_handlers()
59
 
            self.assertEqual([], transport._get_protocol_handlers().keys())
60
 
        finally:
61
 
            transport._set_protocol_handlers(handlers)
62
 
 
63
 
    def test_get_transport_modules(self):
64
 
        handlers = transport._get_protocol_handlers()
65
 
        # don't pollute the current handlers
66
 
        transport._clear_protocol_handlers()
67
 
        class SampleHandler(object):
68
 
            """I exist, isnt that enough?"""
69
 
        try:
70
 
            transport._clear_protocol_handlers()
71
 
            transport.register_transport_proto('foo')
72
 
            transport.register_lazy_transport('foo',
73
 
                                              'bzrlib.tests.test_transport',
74
 
                                              'TestTransport.SampleHandler')
75
 
            transport.register_transport_proto('bar')
76
 
            transport.register_lazy_transport('bar',
77
 
                                              'bzrlib.tests.test_transport',
78
 
                                              'TestTransport.SampleHandler')
79
 
            self.assertEqual([SampleHandler.__module__,
80
 
                              'bzrlib.transport.chroot',
81
 
                              'bzrlib.transport.pathfilter'],
82
 
                             transport._get_transport_modules())
83
 
        finally:
84
 
            transport._set_protocol_handlers(handlers)
85
 
 
86
 
    def test_transport_dependency(self):
87
 
        """Transport with missing dependency causes no error"""
88
 
        saved_handlers = transport._get_protocol_handlers()
89
 
        # don't pollute the current handlers
90
 
        transport._clear_protocol_handlers()
91
 
        try:
92
 
            transport.register_transport_proto('foo')
93
 
            transport.register_lazy_transport(
94
 
                'foo', 'bzrlib.tests.test_transport', 'BadTransportHandler')
95
 
            try:
96
 
                transport.get_transport('foo://fooserver/foo')
97
 
            except errors.UnsupportedProtocol, e:
98
 
                e_str = str(e)
99
 
                self.assertEquals('Unsupported protocol'
100
 
                                  ' for url "foo://fooserver/foo":'
101
 
                                  ' Unable to import library "some_lib":'
102
 
                                  ' testing missing dependency', str(e))
 
39
    def test_urlescape(self):
 
40
        self.assertEqual('%25', urlescape('%'))
 
41
 
 
42
 
 
43
class TestTransportMixIn(object):
 
44
    """Subclass this, and it will provide a series of tests for a Transport.
 
45
    It assumes that the Transport object is connected to the 
 
46
    current working directory.  So that whatever is done 
 
47
    through the transport, should show up in the working 
 
48
    directory, and vice-versa.
 
49
 
 
50
    This also tests to make sure that the functions work with both
 
51
    generators and lists (assuming iter(list) is effectively a generator)
 
52
    """
 
53
    readonly = False
 
54
    def get_transport(self):
 
55
        """Children should override this to return the Transport object.
 
56
        """
 
57
        raise NotImplementedError
 
58
 
 
59
    def assertListRaises(self, excClass, func, *args, **kwargs):
 
60
        """Many transport functions can return generators this makes sure
 
61
        to wrap them in a list() call to make sure the whole generator
 
62
        is run, and that the proper exception is raised.
 
63
        """
 
64
        try:
 
65
            list(func(*args, **kwargs))
 
66
        except excClass:
 
67
            return
 
68
        else:
 
69
            if hasattr(excClass,'__name__'): excName = excClass.__name__
 
70
            else: excName = str(excClass)
 
71
            raise self.failureException, "%s not raised" % excName
 
72
 
 
73
    def test_has(self):
 
74
        t = self.get_transport()
 
75
 
 
76
        files = ['a', 'b', 'e', 'g', '%']
 
77
        self.build_tree(files)
 
78
        self.assertEqual(True, t.has('a'))
 
79
        self.assertEqual(False, t.has('c'))
 
80
        self.assertEqual(True, t.has(urlescape('%')))
 
81
        self.assertEqual(list(t.has_multi(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'])),
 
82
                [True, True, False, False, True, False, True, False])
 
83
        self.assertEqual(True, t.has_any(['a', 'b', 'c']))
 
84
        self.assertEqual(False, t.has_any(['c', 'd', 'f', urlescape('%%')]))
 
85
        self.assertEqual(list(t.has_multi(iter(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']))),
 
86
                [True, True, False, False, True, False, True, False])
 
87
        self.assertEqual(False, t.has_any(['c', 'c', 'c']))
 
88
        self.assertEqual(True, t.has_any(['b', 'b', 'b']))
 
89
 
 
90
    def test_get(self):
 
91
        t = self.get_transport()
 
92
 
 
93
        files = ['a', 'b', 'e', 'g']
 
94
        self.build_tree(files)
 
95
        self.assertEqual(open('a', 'rb').read(), t.get('a').read())
 
96
        content_f = t.get_multi(files)
 
97
        for path,f in zip(files, content_f):
 
98
            self.assertEqual(open(path).read(), f.read())
 
99
 
 
100
        content_f = t.get_multi(iter(files))
 
101
        for path,f in zip(files, content_f):
 
102
            self.assertEqual(f.read(), open(path).read())
 
103
 
 
104
        self.assertRaises(NoSuchFile, t.get, 'c')
 
105
        self.assertListRaises(NoSuchFile, t.get_multi, ['a', 'b', 'c'])
 
106
        self.assertListRaises(NoSuchFile, t.get_multi, iter(['a', 'b', 'c']))
 
107
 
 
108
    def test_put(self):
 
109
        t = self.get_transport()
 
110
 
 
111
        if self.readonly:
 
112
            self.assertRaises(TransportNotPossible,
 
113
                    t.put, 'a', 'some text for a\n')
 
114
            open('a', 'wb').write('some text for a\n')
 
115
        else:
 
116
            t.put('a', 'some text for a\n')
 
117
        self.assert_(os.path.exists('a'))
 
118
        self.check_file_contents('a', 'some text for a\n')
 
119
        self.assertEqual(t.get('a').read(), 'some text for a\n')
 
120
        # Make sure 'has' is updated
 
121
        self.assertEqual(list(t.has_multi(['a', 'b', 'c', 'd', 'e'])),
 
122
                [True, False, False, False, False])
 
123
        if self.readonly:
 
124
            self.assertRaises(TransportNotPossible,
 
125
                    t.put_multi,
 
126
                    [('a', 'new\ncontents for\na\n'),
 
127
                        ('d', 'contents\nfor d\n')])
 
128
            open('a', 'wb').write('new\ncontents for\na\n')
 
129
            open('d', 'wb').write('contents\nfor d\n')
 
130
        else:
 
131
            # Put also replaces contents
 
132
            self.assertEqual(t.put_multi([('a', 'new\ncontents for\na\n'),
 
133
                                          ('d', 'contents\nfor d\n')]),
 
134
                             2)
 
135
        self.assertEqual(list(t.has_multi(['a', 'b', 'c', 'd', 'e'])),
 
136
                [True, False, False, True, False])
 
137
        self.check_file_contents('a', 'new\ncontents for\na\n')
 
138
        self.check_file_contents('d', 'contents\nfor d\n')
 
139
 
 
140
        if self.readonly:
 
141
            self.assertRaises(TransportNotPossible,
 
142
                t.put_multi, iter([('a', 'diff\ncontents for\na\n'),
 
143
                                  ('d', 'another contents\nfor d\n')]))
 
144
            open('a', 'wb').write('diff\ncontents for\na\n')
 
145
            open('d', 'wb').write('another contents\nfor d\n')
 
146
        else:
 
147
            self.assertEqual(
 
148
                t.put_multi(iter([('a', 'diff\ncontents for\na\n'),
 
149
                                  ('d', 'another contents\nfor d\n')]))
 
150
                             , 2)
 
151
        self.check_file_contents('a', 'diff\ncontents for\na\n')
 
152
        self.check_file_contents('d', 'another contents\nfor d\n')
 
153
 
 
154
        if self.readonly:
 
155
            self.assertRaises(TransportNotPossible,
 
156
                    t.put, 'path/doesnt/exist/c', 'contents')
 
157
        else:
 
158
            self.assertRaises(NoSuchFile,
 
159
                    t.put, 'path/doesnt/exist/c', 'contents')
 
160
 
 
161
    def test_put_file(self):
 
162
        t = self.get_transport()
 
163
 
 
164
        # Test that StringIO can be used as a file-like object with put
 
165
        f1 = StringIO('this is a string\nand some more stuff\n')
 
166
        if self.readonly:
 
167
            open('f1', 'wb').write(f1.read())
 
168
        else:
 
169
            t.put('f1', f1)
 
170
 
 
171
        del f1
 
172
 
 
173
        self.check_file_contents('f1', 
 
174
                'this is a string\nand some more stuff\n')
 
175
 
 
176
        f2 = StringIO('here is some text\nand a bit more\n')
 
177
        f3 = StringIO('some text for the\nthird file created\n')
 
178
 
 
179
        if self.readonly:
 
180
            open('f2', 'wb').write(f2.read())
 
181
            open('f3', 'wb').write(f3.read())
 
182
        else:
 
183
            t.put_multi([('f2', f2), ('f3', f3)])
 
184
 
 
185
        del f2, f3
 
186
 
 
187
        self.check_file_contents('f2', 'here is some text\nand a bit more\n')
 
188
        self.check_file_contents('f3', 'some text for the\nthird file created\n')
 
189
 
 
190
        # Test that an actual file object can be used with put
 
191
        f4 = open('f1', 'rb')
 
192
        if self.readonly:
 
193
            open('f4', 'wb').write(f4.read())
 
194
        else:
 
195
            t.put('f4', f4)
 
196
 
 
197
        del f4
 
198
 
 
199
        self.check_file_contents('f4', 
 
200
                'this is a string\nand some more stuff\n')
 
201
 
 
202
        f5 = open('f2', 'rb')
 
203
        f6 = open('f3', 'rb')
 
204
        if self.readonly:
 
205
            open('f5', 'wb').write(f5.read())
 
206
            open('f6', 'wb').write(f6.read())
 
207
        else:
 
208
            t.put_multi([('f5', f5), ('f6', f6)])
 
209
 
 
210
        del f5, f6
 
211
 
 
212
        self.check_file_contents('f5', 'here is some text\nand a bit more\n')
 
213
        self.check_file_contents('f6', 'some text for the\nthird file created\n')
 
214
 
 
215
    def test_mkdir(self):
 
216
        t = self.get_transport()
 
217
 
 
218
        # Test mkdir
 
219
        os.mkdir('dir_a')
 
220
        self.assertEqual(t.has('dir_a'), True)
 
221
        self.assertEqual(t.has('dir_b'), False)
 
222
 
 
223
        if self.readonly:
 
224
            self.assertRaises(TransportNotPossible,
 
225
                    t.mkdir, 'dir_b')
 
226
            os.mkdir('dir_b')
 
227
        else:
 
228
            t.mkdir('dir_b')
 
229
        self.assertEqual(t.has('dir_b'), True)
 
230
        self.assert_(os.path.isdir('dir_b'))
 
231
 
 
232
        if self.readonly:
 
233
            self.assertRaises(TransportNotPossible,
 
234
                    t.mkdir_multi, ['dir_c', 'dir_d'])
 
235
            os.mkdir('dir_c')
 
236
            os.mkdir('dir_d')
 
237
        else:
 
238
            t.mkdir_multi(['dir_c', 'dir_d'])
 
239
 
 
240
        if self.readonly:
 
241
            self.assertRaises(TransportNotPossible,
 
242
                    t.mkdir_multi, iter(['dir_e', 'dir_f']))
 
243
            os.mkdir('dir_e')
 
244
            os.mkdir('dir_f')
 
245
        else:
 
246
            t.mkdir_multi(iter(['dir_e', 'dir_f']))
 
247
        self.assertEqual(list(t.has_multi(
 
248
            ['dir_a', 'dir_b', 'dir_c', 'dir_q',
 
249
             'dir_d', 'dir_e', 'dir_f', 'dir_b'])),
 
250
            [True, True, True, False,
 
251
             True, True, True, True])
 
252
        for d in ['dir_a', 'dir_b', 'dir_c', 'dir_d', 'dir_e', 'dir_f']:
 
253
            self.assert_(os.path.isdir(d))
 
254
 
 
255
        if not self.readonly:
 
256
            self.assertRaises(NoSuchFile, t.mkdir, 'path/doesnt/exist')
 
257
            self.assertRaises(FileExists, t.mkdir, 'dir_a') # Creating a directory again should fail
 
258
 
 
259
        # Make sure the transport recognizes when a
 
260
        # directory is created by other means
 
261
        # Caching Transports will fail, because dir_e was already seen not
 
262
        # to exist. So instead, we will search for a new directory
 
263
        #os.mkdir('dir_e')
 
264
        #if not self.readonly:
 
265
        #    self.assertRaises(FileExists, t.mkdir, 'dir_e')
 
266
 
 
267
        os.mkdir('dir_g')
 
268
        if not self.readonly:
 
269
            self.assertRaises(FileExists, t.mkdir, 'dir_g')
 
270
 
 
271
        # Test get/put in sub-directories
 
272
        if self.readonly:
 
273
            open('dir_a/a', 'wb').write('contents of dir_a/a')
 
274
            open('dir_b/b', 'wb').write('contents of dir_b/b')
 
275
        else:
 
276
            self.assertEqual(
 
277
                t.put_multi([('dir_a/a', 'contents of dir_a/a'),
 
278
                             ('dir_b/b', 'contents of dir_b/b')])
 
279
                          , 2)
 
280
        for f in ('dir_a/a', 'dir_b/b'):
 
281
            self.assertEqual(t.get(f).read(), open(f).read())
 
282
 
 
283
    def test_copy_to(self):
 
284
        import tempfile
 
285
        from bzrlib.transport.local import LocalTransport
 
286
 
 
287
        t = self.get_transport()
 
288
 
 
289
        files = ['a', 'b', 'c', 'd']
 
290
        self.build_tree(files)
 
291
 
 
292
        dtmp = tempfile.mkdtemp(dir=u'.', prefix='test-transport-')
 
293
        dtmp_base = os.path.basename(dtmp)
 
294
        local_t = LocalTransport(dtmp)
 
295
 
 
296
        t.copy_to(files, local_t)
 
297
        for f in files:
 
298
            self.assertEquals(open(f).read(),
 
299
                    open(os.path.join(dtmp_base, f)).read())
 
300
 
 
301
        # Test that copying into a missing directory raises
 
302
        # NoSuchFile
 
303
        os.mkdir('e')
 
304
        open('e/f', 'wb').write('contents of e')
 
305
        self.assertRaises(NoSuchFile, t.copy_to, ['e/f'], local_t)
 
306
 
 
307
        os.mkdir(os.path.join(dtmp_base, 'e'))
 
308
        t.copy_to(['e/f'], local_t)
 
309
 
 
310
        del dtmp, dtmp_base, local_t
 
311
 
 
312
        dtmp = tempfile.mkdtemp(dir=u'.', prefix='test-transport-')
 
313
        dtmp_base = os.path.basename(dtmp)
 
314
        local_t = LocalTransport(dtmp)
 
315
 
 
316
        files = ['a', 'b', 'c', 'd']
 
317
        t.copy_to(iter(files), local_t)
 
318
        for f in files:
 
319
            self.assertEquals(open(f).read(),
 
320
                    open(os.path.join(dtmp_base, f)).read())
 
321
 
 
322
        del dtmp, dtmp_base, local_t
 
323
 
 
324
    def test_append(self):
 
325
        t = self.get_transport()
 
326
 
 
327
        if self.readonly:
 
328
            open('a', 'wb').write('diff\ncontents for\na\n')
 
329
            open('b', 'wb').write('contents\nfor b\n')
 
330
        else:
 
331
            t.put_multi([
 
332
                    ('a', 'diff\ncontents for\na\n'),
 
333
                    ('b', 'contents\nfor b\n')
 
334
                    ])
 
335
 
 
336
        if self.readonly:
 
337
            self.assertRaises(TransportNotPossible,
 
338
                    t.append, 'a', 'add\nsome\nmore\ncontents\n')
 
339
            _append('a', 'add\nsome\nmore\ncontents\n')
 
340
        else:
 
341
            t.append('a', 'add\nsome\nmore\ncontents\n')
 
342
 
 
343
        self.check_file_contents('a', 
 
344
            'diff\ncontents for\na\nadd\nsome\nmore\ncontents\n')
 
345
 
 
346
        if self.readonly:
 
347
            self.assertRaises(TransportNotPossible,
 
348
                    t.append_multi,
 
349
                        [('a', 'and\nthen\nsome\nmore\n'),
 
350
                         ('b', 'some\nmore\nfor\nb\n')])
 
351
            _append('a', 'and\nthen\nsome\nmore\n')
 
352
            _append('b', 'some\nmore\nfor\nb\n')
 
353
        else:
 
354
            t.append_multi([('a', 'and\nthen\nsome\nmore\n'),
 
355
                    ('b', 'some\nmore\nfor\nb\n')])
 
356
        self.check_file_contents('a', 
 
357
            'diff\ncontents for\na\n'
 
358
            'add\nsome\nmore\ncontents\n'
 
359
            'and\nthen\nsome\nmore\n')
 
360
        self.check_file_contents('b', 
 
361
                'contents\nfor b\n'
 
362
                'some\nmore\nfor\nb\n')
 
363
 
 
364
        if self.readonly:
 
365
            _append('a', 'a little bit more\n')
 
366
            _append('b', 'from an iterator\n')
 
367
        else:
 
368
            t.append_multi(iter([('a', 'a little bit more\n'),
 
369
                    ('b', 'from an iterator\n')]))
 
370
        self.check_file_contents('a', 
 
371
            'diff\ncontents for\na\n'
 
372
            'add\nsome\nmore\ncontents\n'
 
373
            'and\nthen\nsome\nmore\n'
 
374
            'a little bit more\n')
 
375
        self.check_file_contents('b', 
 
376
                'contents\nfor b\n'
 
377
                'some\nmore\nfor\nb\n'
 
378
                'from an iterator\n')
 
379
 
 
380
        if self.readonly:
 
381
            _append('c', 'some text\nfor a missing file\n')
 
382
            _append('a', 'some text in a\n')
 
383
            _append('d', 'missing file r\n')
 
384
        else:
 
385
            t.append('c', 'some text\nfor a missing file\n')
 
386
            t.append_multi([('a', 'some text in a\n'),
 
387
                            ('d', 'missing file r\n')])
 
388
        self.check_file_contents('a', 
 
389
            'diff\ncontents for\na\n'
 
390
            'add\nsome\nmore\ncontents\n'
 
391
            'and\nthen\nsome\nmore\n'
 
392
            'a little bit more\n'
 
393
            'some text in a\n')
 
394
        self.check_file_contents('c', 'some text\nfor a missing file\n')
 
395
        self.check_file_contents('d', 'missing file r\n')
 
396
 
 
397
    def test_append_file(self):
 
398
        t = self.get_transport()
 
399
 
 
400
        contents = [
 
401
            ('f1', 'this is a string\nand some more stuff\n'),
 
402
            ('f2', 'here is some text\nand a bit more\n'),
 
403
            ('f3', 'some text for the\nthird file created\n'),
 
404
            ('f4', 'this is a string\nand some more stuff\n'),
 
405
            ('f5', 'here is some text\nand a bit more\n'),
 
406
            ('f6', 'some text for the\nthird file created\n')
 
407
        ]
 
408
        
 
409
        if self.readonly:
 
410
            for f, val in contents:
 
411
                open(f, 'wb').write(val)
 
412
        else:
 
413
            t.put_multi(contents)
 
414
 
 
415
        a1 = StringIO('appending to\none\n')
 
416
        if self.readonly:
 
417
            _append('f1', a1.read())
 
418
        else:
 
419
            t.append('f1', a1)
 
420
 
 
421
        del a1
 
422
 
 
423
        self.check_file_contents('f1', 
 
424
                'this is a string\nand some more stuff\n'
 
425
                'appending to\none\n')
 
426
 
 
427
        a2 = StringIO('adding more\ntext to two\n')
 
428
        a3 = StringIO('some garbage\nto put in three\n')
 
429
 
 
430
        if self.readonly:
 
431
            _append('f2', a2.read())
 
432
            _append('f3', a3.read())
 
433
        else:
 
434
            t.append_multi([('f2', a2), ('f3', a3)])
 
435
 
 
436
        del a2, a3
 
437
 
 
438
        self.check_file_contents('f2',
 
439
                'here is some text\nand a bit more\n'
 
440
                'adding more\ntext to two\n')
 
441
        self.check_file_contents('f3', 
 
442
                'some text for the\nthird file created\n'
 
443
                'some garbage\nto put in three\n')
 
444
 
 
445
        # Test that an actual file object can be used with put
 
446
        a4 = open('f1', 'rb')
 
447
        if self.readonly:
 
448
            _append('f4', a4.read())
 
449
        else:
 
450
            t.append('f4', a4)
 
451
 
 
452
        del a4
 
453
 
 
454
        self.check_file_contents('f4', 
 
455
                'this is a string\nand some more stuff\n'
 
456
                'this is a string\nand some more stuff\n'
 
457
                'appending to\none\n')
 
458
 
 
459
        a5 = open('f2', 'rb')
 
460
        a6 = open('f3', 'rb')
 
461
        if self.readonly:
 
462
            _append('f5', a5.read())
 
463
            _append('f6', a6.read())
 
464
        else:
 
465
            t.append_multi([('f5', a5), ('f6', a6)])
 
466
 
 
467
        del a5, a6
 
468
 
 
469
        self.check_file_contents('f5',
 
470
                'here is some text\nand a bit more\n'
 
471
                'here is some text\nand a bit more\n'
 
472
                'adding more\ntext to two\n')
 
473
        self.check_file_contents('f6',
 
474
                'some text for the\nthird file created\n'
 
475
                'some text for the\nthird file created\n'
 
476
                'some garbage\nto put in three\n')
 
477
 
 
478
        a5 = open('f2', 'rb')
 
479
        a6 = open('f2', 'rb')
 
480
        a7 = open('f3', 'rb')
 
481
        if self.readonly:
 
482
            _append('c', a5.read())
 
483
            _append('a', a6.read())
 
484
            _append('d', a7.read())
 
485
        else:
 
486
            t.append('c', a5)
 
487
            t.append_multi([('a', a6), ('d', a7)])
 
488
        del a5, a6, a7
 
489
        self.check_file_contents('c', open('f2', 'rb').read())
 
490
        self.check_file_contents('d', open('f3', 'rb').read())
 
491
 
 
492
 
 
493
    def test_delete(self):
 
494
        # TODO: Test Transport.delete
 
495
        t = self.get_transport()
 
496
 
 
497
        # Not much to do with a readonly transport
 
498
        if self.readonly:
 
499
            return
 
500
 
 
501
        open('a', 'wb').write('a little bit of text\n')
 
502
        self.failUnless(t.has('a'))
 
503
        self.failUnlessExists('a')
 
504
        t.delete('a')
 
505
        self.failIf(os.path.lexists('a'))
 
506
 
 
507
        self.assertRaises(NoSuchFile, t.delete, 'a')
 
508
 
 
509
        open('a', 'wb').write('a text\n')
 
510
        open('b', 'wb').write('b text\n')
 
511
        open('c', 'wb').write('c text\n')
 
512
        self.assertEqual([True, True, True],
 
513
                list(t.has_multi(['a', 'b', 'c'])))
 
514
        t.delete_multi(['a', 'c'])
 
515
        self.assertEqual([False, True, False],
 
516
                list(t.has_multi(['a', 'b', 'c'])))
 
517
        self.failIf(os.path.lexists('a'))
 
518
        self.failUnlessExists('b')
 
519
        self.failIf(os.path.lexists('c'))
 
520
 
 
521
        self.assertRaises(NoSuchFile,
 
522
                t.delete_multi, ['a', 'b', 'c'])
 
523
 
 
524
        self.assertRaises(NoSuchFile,
 
525
                t.delete_multi, iter(['a', 'b', 'c']))
 
526
 
 
527
        open('a', 'wb').write('another a text\n')
 
528
        open('c', 'wb').write('another c text\n')
 
529
        t.delete_multi(iter(['a', 'b', 'c']))
 
530
 
 
531
        # We should have deleted everything
 
532
        # SftpServer creates control files in the
 
533
        # working directory, so we can just do a
 
534
        # plain "listdir".
 
535
        # self.assertEqual([], os.listdir('.'))
 
536
 
 
537
    def test_move(self):
 
538
        t = self.get_transport()
 
539
 
 
540
        if self.readonly:
 
541
            return
 
542
 
 
543
        # TODO: I would like to use os.listdir() to
 
544
        # make sure there are no extra files, but SftpServer
 
545
        # creates control files in the working directory
 
546
        # perhaps all of this could be done in a subdirectory
 
547
 
 
548
        open('a', 'wb').write('a first file\n')
 
549
        self.assertEquals([True, False], list(t.has_multi(['a', 'b'])))
 
550
 
 
551
        t.move('a', 'b')
 
552
        self.failUnlessExists('b')
 
553
        self.failIf(os.path.lexists('a'))
 
554
 
 
555
        self.check_file_contents('b', 'a first file\n')
 
556
        self.assertEquals([False, True], list(t.has_multi(['a', 'b'])))
 
557
 
 
558
        # Overwrite a file
 
559
        open('c', 'wb').write('c this file\n')
 
560
        t.move('c', 'b')
 
561
        self.failIf(os.path.lexists('c'))
 
562
        self.check_file_contents('b', 'c this file\n')
 
563
 
 
564
        # TODO: Try to write a test for atomicity
 
565
        # TODO: Test moving into a non-existant subdirectory
 
566
        # TODO: Test Transport.move_multi
 
567
 
 
568
    def test_copy(self):
 
569
        t = self.get_transport()
 
570
 
 
571
        if self.readonly:
 
572
            return
 
573
 
 
574
        open('a', 'wb').write('a file\n')
 
575
        t.copy('a', 'b')
 
576
        self.check_file_contents('b', 'a file\n')
 
577
 
 
578
        self.assertRaises(NoSuchFile, t.copy, 'c', 'd')
 
579
        os.mkdir('c')
 
580
        # What should the assert be if you try to copy a
 
581
        # file over a directory?
 
582
        #self.assertRaises(Something, t.copy, 'a', 'c')
 
583
        open('d', 'wb').write('text in d\n')
 
584
        t.copy('d', 'b')
 
585
        self.check_file_contents('b', 'text in d\n')
 
586
 
 
587
        # TODO: test copy_multi
 
588
 
 
589
    def test_connection_error(self):
 
590
        """ConnectionError is raised when connection is impossible"""
 
591
        if not hasattr(self, "get_bogus_transport"):
 
592
            return
 
593
        t = self.get_bogus_transport()
 
594
        try:
 
595
            t.get('.bzr/branch')
 
596
        except (ConnectionError, NoSuchFile), e:
 
597
            pass
 
598
        except (Exception), e:
 
599
            self.failIf(True, 'Wrong exception thrown: %s' % e)
 
600
        else:
 
601
            self.failIf(True, 'Did not get the expected exception.')
 
602
 
 
603
    def test_stat(self):
 
604
        # TODO: Test stat, just try once, and if it throws, stop testing
 
605
        from stat import S_ISDIR, S_ISREG
 
606
 
 
607
        t = self.get_transport()
 
608
 
 
609
        try:
 
610
            st = t.stat('.')
 
611
        except TransportNotPossible, e:
 
612
            # This transport cannot stat
 
613
            return
 
614
 
 
615
        paths = ['a', 'b/', 'b/c', 'b/d/', 'b/d/e']
 
616
        self.build_tree(paths)
 
617
 
 
618
        local_stats = []
 
619
 
 
620
        for p in paths:
 
621
            st = t.stat(p)
 
622
            local_st = os.stat(p)
 
623
            if p.endswith('/'):
 
624
                self.failUnless(S_ISDIR(st.st_mode))
103
625
            else:
104
 
                self.fail('Did not raise UnsupportedProtocol')
105
 
        finally:
106
 
            # restore original values
107
 
            transport._set_protocol_handlers(saved_handlers)
108
 
 
109
 
    def test_transport_fallback(self):
110
 
        """Transport with missing dependency causes no error"""
111
 
        saved_handlers = transport._get_protocol_handlers()
112
 
        try:
113
 
            transport._clear_protocol_handlers()
114
 
            transport.register_transport_proto('foo')
115
 
            transport.register_lazy_transport(
116
 
                'foo', 'bzrlib.tests.test_transport', 'BackupTransportHandler')
117
 
            transport.register_lazy_transport(
118
 
                'foo', 'bzrlib.tests.test_transport', 'BadTransportHandler')
119
 
            t = transport.get_transport('foo://fooserver/foo')
120
 
            self.assertTrue(isinstance(t, BackupTransportHandler))
121
 
        finally:
122
 
            transport._set_protocol_handlers(saved_handlers)
123
 
 
124
 
    def test_ssh_hints(self):
125
 
        """Transport ssh:// should raise an error pointing out bzr+ssh://"""
126
 
        try:
127
 
            transport.get_transport('ssh://fooserver/foo')
128
 
        except errors.UnsupportedProtocol, e:
129
 
            e_str = str(e)
130
 
            self.assertEquals('Unsupported protocol'
131
 
                              ' for url "ssh://fooserver/foo":'
132
 
                              ' bzr supports bzr+ssh to operate over ssh,'
133
 
                              ' use "bzr+ssh://fooserver/foo".',
134
 
                              str(e))
 
626
                self.failUnless(S_ISREG(st.st_mode))
 
627
            self.assertEqual(local_st.st_size, st.st_size)
 
628
            self.assertEqual(local_st.st_mode, st.st_mode)
 
629
            local_stats.append(local_st)
 
630
 
 
631
        remote_stats = list(t.stat_multi(paths))
 
632
        remote_iter_stats = list(t.stat_multi(iter(paths)))
 
633
 
 
634
        for local, remote, remote_iter in \
 
635
            zip(local_stats, remote_stats, remote_iter_stats):
 
636
            self.assertEqual(local.st_mode, remote.st_mode)
 
637
            self.assertEqual(local.st_mode, remote_iter.st_mode)
 
638
 
 
639
            self.assertEqual(local.st_size, remote.st_size)
 
640
            self.assertEqual(local.st_size, remote_iter.st_size)
 
641
            # Should we test UID/GID?
 
642
 
 
643
        self.assertRaises(NoSuchFile, t.stat, 'q')
 
644
        self.assertRaises(NoSuchFile, t.stat, 'b/a')
 
645
 
 
646
        self.assertListRaises(NoSuchFile, t.stat_multi, ['a', 'c', 'd'])
 
647
        self.assertListRaises(NoSuchFile, t.stat_multi, iter(['a', 'c', 'd']))
 
648
 
 
649
    def test_list_dir(self):
 
650
        # TODO: Test list_dir, just try once, and if it throws, stop testing
 
651
        t = self.get_transport()
 
652
        
 
653
        if not t.listable():
 
654
            self.assertRaises(TransportNotPossible, t.list_dir, '.')
 
655
            return
 
656
 
 
657
        def sorted_list(d):
 
658
            l = list(t.list_dir(d))
 
659
            l.sort()
 
660
            return l
 
661
 
 
662
        # SftpServer creates control files in the working directory
 
663
        # so lets move down a directory to be safe
 
664
        os.mkdir('wd')
 
665
        os.chdir('wd')
 
666
        t = t.clone('wd')
 
667
 
 
668
        self.assertEqual([], sorted_list(u'.'))
 
669
        self.build_tree(['a', 'b', 'c/', 'c/d', 'c/e'])
 
670
 
 
671
        self.assertEqual([u'a', u'b', u'c'], sorted_list(u'.'))
 
672
        self.assertEqual([u'd', u'e'], sorted_list(u'c'))
 
673
 
 
674
        os.remove('c/d')
 
675
        os.remove('b')
 
676
        self.assertEqual([u'a', u'c'], sorted_list('.'))
 
677
        self.assertEqual([u'e'], sorted_list(u'c'))
 
678
 
 
679
        self.assertListRaises(NoSuchFile, t.list_dir, 'q')
 
680
        self.assertListRaises(NoSuchFile, t.list_dir, 'c/f')
 
681
        self.assertListRaises(NoSuchFile, t.list_dir, 'a')
 
682
 
 
683
    def test_clone(self):
 
684
        # TODO: Test that clone moves up and down the filesystem
 
685
        t1 = self.get_transport()
 
686
 
 
687
        self.build_tree(['a', 'b/', 'b/c'])
 
688
 
 
689
        self.failUnless(t1.has('a'))
 
690
        self.failUnless(t1.has('b/c'))
 
691
        self.failIf(t1.has('c'))
 
692
 
 
693
        t2 = t1.clone('b')
 
694
        self.failUnless(t2.has('c'))
 
695
        self.failIf(t2.has('a'))
 
696
 
 
697
        t3 = t2.clone('..')
 
698
        self.failUnless(t3.has('a'))
 
699
        self.failIf(t3.has('c'))
 
700
 
 
701
        self.failIf(t1.has('b/d'))
 
702
        self.failIf(t2.has('d'))
 
703
        self.failIf(t3.has('b/d'))
 
704
 
 
705
        if self.readonly:
 
706
            open('b/d', 'wb').write('newfile\n')
135
707
        else:
136
 
            self.fail('Did not raise UnsupportedProtocol')
137
 
 
138
 
    def test_LateReadError(self):
139
 
        """The LateReadError helper should raise on read()."""
140
 
        a_file = transport.LateReadError('a path')
141
 
        try:
142
 
            a_file.read()
143
 
        except errors.ReadError, error:
144
 
            self.assertEqual('a path', error.path)
145
 
        self.assertRaises(errors.ReadError, a_file.read, 40)
146
 
        a_file.close()
147
 
 
148
 
    def test__combine_paths(self):
149
 
        t = transport.Transport('/')
150
 
        self.assertEqual('/home/sarah/project/foo',
151
 
                         t._combine_paths('/home/sarah', 'project/foo'))
152
 
        self.assertEqual('/etc',
153
 
                         t._combine_paths('/home/sarah', '../../etc'))
154
 
        self.assertEqual('/etc',
155
 
                         t._combine_paths('/home/sarah', '../../../etc'))
156
 
        self.assertEqual('/etc',
157
 
                         t._combine_paths('/home/sarah', '/etc'))
158
 
 
159
 
    def test_local_abspath_non_local_transport(self):
160
 
        # the base implementation should throw
161
 
        t = memory.MemoryTransport()
162
 
        e = self.assertRaises(errors.NotLocalUrl, t.local_abspath, 't')
163
 
        self.assertEqual('memory:///t is not a local path.', str(e))
164
 
 
165
 
 
166
 
class TestCoalesceOffsets(tests.TestCase):
167
 
 
168
 
    def check(self, expected, offsets, limit=0, max_size=0, fudge=0):
169
 
        coalesce = transport.Transport._coalesce_offsets
170
 
        exp = [transport._CoalescedOffset(*x) for x in expected]
171
 
        out = list(coalesce(offsets, limit=limit, fudge_factor=fudge,
172
 
                            max_size=max_size))
173
 
        self.assertEqual(exp, out)
174
 
 
175
 
    def test_coalesce_empty(self):
176
 
        self.check([], [])
177
 
 
178
 
    def test_coalesce_simple(self):
179
 
        self.check([(0, 10, [(0, 10)])], [(0, 10)])
180
 
 
181
 
    def test_coalesce_unrelated(self):
182
 
        self.check([(0, 10, [(0, 10)]),
183
 
                    (20, 10, [(0, 10)]),
184
 
                   ], [(0, 10), (20, 10)])
185
 
 
186
 
    def test_coalesce_unsorted(self):
187
 
        self.check([(20, 10, [(0, 10)]),
188
 
                    (0, 10, [(0, 10)]),
189
 
                   ], [(20, 10), (0, 10)])
190
 
 
191
 
    def test_coalesce_nearby(self):
192
 
        self.check([(0, 20, [(0, 10), (10, 10)])],
193
 
                   [(0, 10), (10, 10)])
194
 
 
195
 
    def test_coalesce_overlapped(self):
196
 
        self.assertRaises(ValueError,
197
 
            self.check, [(0, 15, [(0, 10), (5, 10)])],
198
 
                        [(0, 10), (5, 10)])
199
 
 
200
 
    def test_coalesce_limit(self):
201
 
        self.check([(10, 50, [(0, 10), (10, 10), (20, 10),
202
 
                              (30, 10), (40, 10)]),
203
 
                    (60, 50, [(0, 10), (10, 10), (20, 10),
204
 
                              (30, 10), (40, 10)]),
205
 
                   ], [(10, 10), (20, 10), (30, 10), (40, 10),
206
 
                       (50, 10), (60, 10), (70, 10), (80, 10),
207
 
                       (90, 10), (100, 10)],
208
 
                    limit=5)
209
 
 
210
 
    def test_coalesce_no_limit(self):
211
 
        self.check([(10, 100, [(0, 10), (10, 10), (20, 10),
212
 
                               (30, 10), (40, 10), (50, 10),
213
 
                               (60, 10), (70, 10), (80, 10),
214
 
                               (90, 10)]),
215
 
                   ], [(10, 10), (20, 10), (30, 10), (40, 10),
216
 
                       (50, 10), (60, 10), (70, 10), (80, 10),
217
 
                       (90, 10), (100, 10)])
218
 
 
219
 
    def test_coalesce_fudge(self):
220
 
        self.check([(10, 30, [(0, 10), (20, 10)]),
221
 
                    (100, 10, [(0, 10),]),
222
 
                   ], [(10, 10), (30, 10), (100, 10)],
223
 
                   fudge=10
224
 
                  )
225
 
    def test_coalesce_max_size(self):
226
 
        self.check([(10, 20, [(0, 10), (10, 10)]),
227
 
                    (30, 50, [(0, 50)]),
228
 
                    # If one range is above max_size, it gets its own coalesced
229
 
                    # offset
230
 
                    (100, 80, [(0, 80),]),],
231
 
                   [(10, 10), (20, 10), (30, 50), (100, 80)],
232
 
                   max_size=50
233
 
                  )
234
 
 
235
 
    def test_coalesce_no_max_size(self):
236
 
        self.check([(10, 170, [(0, 10), (10, 10), (20, 50), (70, 100)]),],
237
 
                   [(10, 10), (20, 10), (30, 50), (80, 100)],
238
 
                  )
239
 
 
240
 
    def test_coalesce_default_limit(self):
241
 
        # By default we use a 100MB max size.
242
 
        ten_mb = 10*1024*1024
243
 
        self.check([(0, 10*ten_mb, [(i*ten_mb, ten_mb) for i in range(10)]),
244
 
                    (10*ten_mb, ten_mb, [(0, ten_mb)])],
245
 
                   [(i*ten_mb, ten_mb) for i in range(11)])
246
 
        self.check([(0, 11*ten_mb, [(i*ten_mb, ten_mb) for i in range(11)]),],
247
 
                   [(i*ten_mb, ten_mb) for i in range(11)],
248
 
                   max_size=1*1024*1024*1024)
249
 
 
250
 
 
251
 
class TestMemoryServer(tests.TestCase):
252
 
 
253
 
    def test_create_server(self):
254
 
        server = memory.MemoryServer()
255
 
        server.start_server()
256
 
        url = server.get_url()
257
 
        self.assertTrue(url in transport.transport_list_registry)
258
 
        t = transport.get_transport(url)
259
 
        del t
260
 
        server.stop_server()
261
 
        self.assertFalse(url in transport.transport_list_registry)
262
 
        self.assertRaises(errors.UnsupportedProtocol,
263
 
                          transport.get_transport, url)
264
 
 
265
 
 
266
 
class TestMemoryTransport(tests.TestCase):
 
708
            t2.put('d', 'newfile\n')
 
709
 
 
710
        self.failUnless(t1.has('b/d'))
 
711
        self.failUnless(t2.has('d'))
 
712
        self.failUnless(t3.has('b/d'))
 
713
 
 
714
        
 
715
class LocalTransportTest(TestCaseInTempDir, TestTransportMixIn):
 
716
    def get_transport(self):
 
717
        from bzrlib.transport.local import LocalTransport
 
718
        return LocalTransport(u'.')
 
719
 
 
720
 
 
721
class HttpTransportTest(TestCaseWithWebserver, TestTransportMixIn):
 
722
 
 
723
    readonly = True
 
724
 
 
725
    def get_transport(self):
 
726
        from bzrlib.transport.http import HttpTransport
 
727
        url = self.get_remote_url(u'.')
 
728
        return HttpTransport(url)
 
729
 
 
730
    def get_bogus_transport(self):
 
731
        from bzrlib.transport.http import HttpTransport
 
732
        return HttpTransport('http://jasldkjsalkdjalksjdkljasd')
 
733
 
 
734
 
 
735
class TestMemoryTransport(TestCase):
267
736
 
268
737
    def test_get_transport(self):
269
738
        memory.MemoryTransport()
270
739
 
271
740
    def test_clone(self):
272
 
        t = memory.MemoryTransport()
273
 
        self.assertTrue(isinstance(t, memory.MemoryTransport))
274
 
        self.assertEqual("memory:///", t.clone("/").base)
 
741
        transport = memory.MemoryTransport()
 
742
        self.failUnless(transport.clone() is transport)
275
743
 
276
744
    def test_abspath(self):
277
 
        t = memory.MemoryTransport()
278
 
        self.assertEqual("memory:///relpath", t.abspath('relpath'))
279
 
 
280
 
    def test_abspath_of_root(self):
281
 
        t = memory.MemoryTransport()
282
 
        self.assertEqual("memory:///", t.base)
283
 
        self.assertEqual("memory:///", t.abspath('/'))
284
 
 
285
 
    def test_abspath_of_relpath_starting_at_root(self):
286
 
        t = memory.MemoryTransport()
287
 
        self.assertEqual("memory:///foo", t.abspath('/foo'))
 
745
        transport = memory.MemoryTransport()
 
746
        self.assertEqual("in-memory:relpath", transport.abspath('relpath'))
 
747
 
 
748
    def test_relpath(self):
 
749
        transport = memory.MemoryTransport()
288
750
 
289
751
    def test_append_and_get(self):
290
 
        t = memory.MemoryTransport()
291
 
        t.append_bytes('path', 'content')
292
 
        self.assertEqual(t.get('path').read(), 'content')
293
 
        t.append_file('path', StringIO('content'))
294
 
        self.assertEqual(t.get('path').read(), 'contentcontent')
 
752
        transport = memory.MemoryTransport()
 
753
        transport.append('path', StringIO('content'))
 
754
        self.assertEqual(transport.get('path').read(), 'content')
 
755
        transport.append('path', StringIO('content'))
 
756
        self.assertEqual(transport.get('path').read(), 'contentcontent')
295
757
 
296
758
    def test_put_and_get(self):
297
 
        t = memory.MemoryTransport()
298
 
        t.put_file('path', StringIO('content'))
299
 
        self.assertEqual(t.get('path').read(), 'content')
300
 
        t.put_bytes('path', 'content')
301
 
        self.assertEqual(t.get('path').read(), 'content')
 
759
        transport = memory.MemoryTransport()
 
760
        transport.put('path', StringIO('content'))
 
761
        self.assertEqual(transport.get('path').read(), 'content')
 
762
        transport.put('path', StringIO('content'))
 
763
        self.assertEqual(transport.get('path').read(), 'content')
302
764
 
303
765
    def test_append_without_dir_fails(self):
304
 
        t = memory.MemoryTransport()
305
 
        self.assertRaises(errors.NoSuchFile,
306
 
                          t.append_bytes, 'dir/path', 'content')
 
766
        transport = memory.MemoryTransport()
 
767
        self.assertRaises(NoSuchFile,
 
768
                          transport.append, 'dir/path', StringIO('content'))
307
769
 
308
770
    def test_put_without_dir_fails(self):
309
 
        t = memory.MemoryTransport()
310
 
        self.assertRaises(errors.NoSuchFile,
311
 
                          t.put_file, 'dir/path', StringIO('content'))
 
771
        transport = memory.MemoryTransport()
 
772
        self.assertRaises(NoSuchFile,
 
773
                          transport.put, 'dir/path', StringIO('content'))
312
774
 
313
775
    def test_get_missing(self):
314
776
        transport = memory.MemoryTransport()
315
 
        self.assertRaises(errors.NoSuchFile, transport.get, 'foo')
 
777
        self.assertRaises(NoSuchFile, transport.get, 'foo')
316
778
 
317
779
    def test_has_missing(self):
318
 
        t = memory.MemoryTransport()
319
 
        self.assertEquals(False, t.has('foo'))
 
780
        transport = memory.MemoryTransport()
 
781
        self.assertEquals(False, transport.has('foo'))
320
782
 
321
783
    def test_has_present(self):
322
 
        t = memory.MemoryTransport()
323
 
        t.append_bytes('foo', 'content')
324
 
        self.assertEquals(True, t.has('foo'))
325
 
 
326
 
    def test_list_dir(self):
327
 
        t = memory.MemoryTransport()
328
 
        t.put_bytes('foo', 'content')
329
 
        t.mkdir('dir')
330
 
        t.put_bytes('dir/subfoo', 'content')
331
 
        t.put_bytes('dirlike', 'content')
332
 
 
333
 
        self.assertEquals(['dir', 'dirlike', 'foo'], sorted(t.list_dir('.')))
334
 
        self.assertEquals(['subfoo'], sorted(t.list_dir('dir')))
 
784
        transport = memory.MemoryTransport()
 
785
        transport.append('foo', StringIO('content'))
 
786
        self.assertEquals(True, transport.has('foo'))
335
787
 
336
788
    def test_mkdir(self):
337
 
        t = memory.MemoryTransport()
338
 
        t.mkdir('dir')
339
 
        t.append_bytes('dir/path', 'content')
340
 
        self.assertEqual(t.get('dir/path').read(), 'content')
 
789
        transport = memory.MemoryTransport()
 
790
        transport.mkdir('dir')
 
791
        transport.append('dir/path', StringIO('content'))
 
792
        self.assertEqual(transport.get('dir/path').read(), 'content')
341
793
 
342
794
    def test_mkdir_missing_parent(self):
343
 
        t = memory.MemoryTransport()
344
 
        self.assertRaises(errors.NoSuchFile, t.mkdir, 'dir/dir')
 
795
        transport = memory.MemoryTransport()
 
796
        self.assertRaises(NoSuchFile,
 
797
                          transport.mkdir, 'dir/dir')
345
798
 
346
799
    def test_mkdir_twice(self):
347
 
        t = memory.MemoryTransport()
348
 
        t.mkdir('dir')
349
 
        self.assertRaises(errors.FileExists, t.mkdir, 'dir')
 
800
        transport = memory.MemoryTransport()
 
801
        transport.mkdir('dir')
 
802
        self.assertRaises(FileExists, transport.mkdir, 'dir')
350
803
 
351
804
    def test_parameters(self):
352
 
        t = memory.MemoryTransport()
353
 
        self.assertEqual(True, t.listable())
354
 
        self.assertEqual(False, t.is_readonly())
 
805
        transport = memory.MemoryTransport()
 
806
        self.assertEqual(True, transport.listable())
 
807
        self.assertEqual(False, transport.should_cache())
355
808
 
356
809
    def test_iter_files_recursive(self):
357
 
        t = memory.MemoryTransport()
358
 
        t.mkdir('dir')
359
 
        t.put_bytes('dir/foo', 'content')
360
 
        t.put_bytes('dir/bar', 'content')
361
 
        t.put_bytes('bar', 'content')
362
 
        paths = set(t.iter_files_recursive())
 
810
        transport = memory.MemoryTransport()
 
811
        transport.mkdir('dir')
 
812
        transport.put('dir/foo', StringIO('content'))
 
813
        transport.put('dir/bar', StringIO('content'))
 
814
        transport.put('bar', StringIO('content'))
 
815
        paths = set(transport.iter_files_recursive())
363
816
        self.assertEqual(set(['dir/foo', 'dir/bar', 'bar']), paths)
364
817
 
365
818
    def test_stat(self):
366
 
        t = memory.MemoryTransport()
367
 
        t.put_bytes('foo', 'content')
368
 
        t.put_bytes('bar', 'phowar')
369
 
        self.assertEqual(7, t.stat('foo').st_size)
370
 
        self.assertEqual(6, t.stat('bar').st_size)
371
 
 
372
 
 
373
 
class ChrootDecoratorTransportTest(tests.TestCase):
374
 
    """Chroot decoration specific tests."""
375
 
 
376
 
    def test_abspath(self):
377
 
        # The abspath is always relative to the chroot_url.
378
 
        server = chroot.ChrootServer(
379
 
            transport.get_transport('memory:///foo/bar/'))
380
 
        self.start_server(server)
381
 
        t = transport.get_transport(server.get_url())
382
 
        self.assertEqual(server.get_url(), t.abspath('/'))
383
 
 
384
 
        subdir_t = t.clone('subdir')
385
 
        self.assertEqual(server.get_url(), subdir_t.abspath('/'))
386
 
 
387
 
    def test_clone(self):
388
 
        server = chroot.ChrootServer(
389
 
            transport.get_transport('memory:///foo/bar/'))
390
 
        self.start_server(server)
391
 
        t = transport.get_transport(server.get_url())
392
 
        # relpath from root and root path are the same
393
 
        relpath_cloned = t.clone('foo')
394
 
        abspath_cloned = t.clone('/foo')
395
 
        self.assertEqual(server, relpath_cloned.server)
396
 
        self.assertEqual(server, abspath_cloned.server)
397
 
 
398
 
    def test_chroot_url_preserves_chroot(self):
399
 
        """Calling get_transport on a chroot transport's base should produce a
400
 
        transport with exactly the same behaviour as the original chroot
401
 
        transport.
402
 
 
403
 
        This is so that it is not possible to escape a chroot by doing::
404
 
            url = chroot_transport.base
405
 
            parent_url = urlutils.join(url, '..')
406
 
            new_t = transport.get_transport(parent_url)
407
 
        """
408
 
        server = chroot.ChrootServer(
409
 
            transport.get_transport('memory:///path/subpath'))
410
 
        self.start_server(server)
411
 
        t = transport.get_transport(server.get_url())
412
 
        new_t = transport.get_transport(t.base)
413
 
        self.assertEqual(t.server, new_t.server)
414
 
        self.assertEqual(t.base, new_t.base)
415
 
 
416
 
    def test_urljoin_preserves_chroot(self):
417
 
        """Using urlutils.join(url, '..') on a chroot URL should not produce a
418
 
        URL that escapes the intended chroot.
419
 
 
420
 
        This is so that it is not possible to escape a chroot by doing::
421
 
            url = chroot_transport.base
422
 
            parent_url = urlutils.join(url, '..')
423
 
            new_t = transport.get_transport(parent_url)
424
 
        """
425
 
        server = chroot.ChrootServer(transport.get_transport('memory:///path/'))
426
 
        self.start_server(server)
427
 
        t = transport.get_transport(server.get_url())
428
 
        self.assertRaises(
429
 
            errors.InvalidURLJoin, urlutils.join, t.base, '..')
430
 
 
431
 
 
432
 
class TestChrootServer(tests.TestCase):
433
 
 
434
 
    def test_construct(self):
435
 
        backing_transport = memory.MemoryTransport()
436
 
        server = chroot.ChrootServer(backing_transport)
437
 
        self.assertEqual(backing_transport, server.backing_transport)
438
 
 
439
 
    def test_setUp(self):
440
 
        backing_transport = memory.MemoryTransport()
441
 
        server = chroot.ChrootServer(backing_transport)
442
 
        server.start_server()
443
 
        try:
444
 
            self.assertTrue(server.scheme
445
 
                            in transport._get_protocol_handlers().keys())
446
 
        finally:
447
 
            server.stop_server()
448
 
 
449
 
    def test_stop_server(self):
450
 
        backing_transport = memory.MemoryTransport()
451
 
        server = chroot.ChrootServer(backing_transport)
452
 
        server.start_server()
453
 
        server.stop_server()
454
 
        self.assertFalse(server.scheme
455
 
                         in transport._get_protocol_handlers().keys())
456
 
 
457
 
    def test_get_url(self):
458
 
        backing_transport = memory.MemoryTransport()
459
 
        server = chroot.ChrootServer(backing_transport)
460
 
        server.start_server()
461
 
        try:
462
 
            self.assertEqual('chroot-%d:///' % id(server), server.get_url())
463
 
        finally:
464
 
            server.stop_server()
465
 
 
466
 
 
467
 
class PathFilteringDecoratorTransportTest(tests.TestCase):
468
 
    """Pathfilter decoration specific tests."""
469
 
 
470
 
    def test_abspath(self):
471
 
        # The abspath is always relative to the base of the backing transport.
472
 
        server = pathfilter.PathFilteringServer(
473
 
            transport.get_transport('memory:///foo/bar/'),
474
 
            lambda x: x)
475
 
        server.start_server()
476
 
        t = transport.get_transport(server.get_url())
477
 
        self.assertEqual(server.get_url(), t.abspath('/'))
478
 
 
479
 
        subdir_t = t.clone('subdir')
480
 
        self.assertEqual(server.get_url(), subdir_t.abspath('/'))
481
 
        server.stop_server()
482
 
 
483
 
    def make_pf_transport(self, filter_func=None):
484
 
        """Make a PathFilteringTransport backed by a MemoryTransport.
485
 
        
486
 
        :param filter_func: by default this will be a no-op function.  Use this
487
 
            parameter to override it."""
488
 
        if filter_func is None:
489
 
            filter_func = lambda x: x
490
 
        server = pathfilter.PathFilteringServer(
491
 
            transport.get_transport('memory:///foo/bar/'), filter_func)
492
 
        server.start_server()
493
 
        self.addCleanup(server.stop_server)
494
 
        return transport.get_transport(server.get_url())
495
 
 
496
 
    def test__filter(self):
497
 
        # _filter (with an identity func as filter_func) always returns
498
 
        # paths relative to the base of the backing transport.
499
 
        t = self.make_pf_transport()
500
 
        self.assertEqual('foo', t._filter('foo'))
501
 
        self.assertEqual('foo/bar', t._filter('foo/bar'))
502
 
        self.assertEqual('', t._filter('..'))
503
 
        self.assertEqual('', t._filter('/'))
504
 
        # The base of the pathfiltering transport is taken into account too.
505
 
        t = t.clone('subdir1/subdir2')
506
 
        self.assertEqual('subdir1/subdir2/foo', t._filter('foo'))
507
 
        self.assertEqual('subdir1/subdir2/foo/bar', t._filter('foo/bar'))
508
 
        self.assertEqual('subdir1', t._filter('..'))
509
 
        self.assertEqual('', t._filter('/'))
510
 
 
511
 
    def test_filter_invocation(self):
512
 
        filter_log = []
513
 
        def filter(path):
514
 
            filter_log.append(path)
515
 
            return path
516
 
        t = self.make_pf_transport(filter)
517
 
        t.has('abc')
518
 
        self.assertEqual(['abc'], filter_log)
519
 
        del filter_log[:]
520
 
        t.clone('abc').has('xyz')
521
 
        self.assertEqual(['abc/xyz'], filter_log)
522
 
        del filter_log[:]
523
 
        t.has('/abc')
524
 
        self.assertEqual(['abc'], filter_log)
525
 
 
526
 
    def test_clone(self):
527
 
        t = self.make_pf_transport()
528
 
        # relpath from root and root path are the same
529
 
        relpath_cloned = t.clone('foo')
530
 
        abspath_cloned = t.clone('/foo')
531
 
        self.assertEqual(t.server, relpath_cloned.server)
532
 
        self.assertEqual(t.server, abspath_cloned.server)
533
 
 
534
 
    def test_url_preserves_pathfiltering(self):
535
 
        """Calling get_transport on a pathfiltered transport's base should
536
 
        produce a transport with exactly the same behaviour as the original
537
 
        pathfiltered transport.
538
 
 
539
 
        This is so that it is not possible to escape (accidentally or
540
 
        otherwise) the filtering by doing::
541
 
            url = filtered_transport.base
542
 
            parent_url = urlutils.join(url, '..')
543
 
            new_t = transport.get_transport(parent_url)
544
 
        """
545
 
        t = self.make_pf_transport()
546
 
        new_t = transport.get_transport(t.base)
547
 
        self.assertEqual(t.server, new_t.server)
548
 
        self.assertEqual(t.base, new_t.base)
549
 
 
550
 
 
551
 
class ReadonlyDecoratorTransportTest(tests.TestCase):
552
 
    """Readonly decoration specific tests."""
553
 
 
554
 
    def test_local_parameters(self):
555
 
        # connect to . in readonly mode
556
 
        t = readonly.ReadonlyTransportDecorator('readonly+.')
557
 
        self.assertEqual(True, t.listable())
558
 
        self.assertEqual(True, t.is_readonly())
559
 
 
560
 
    def test_http_parameters(self):
561
 
        from bzrlib.tests.http_server import HttpServer
562
 
        # connect to '.' via http which is not listable
563
 
        server = HttpServer()
564
 
        self.start_server(server)
565
 
        t = transport.get_transport('readonly+' + server.get_url())
566
 
        self.failUnless(isinstance(t, readonly.ReadonlyTransportDecorator))
567
 
        self.assertEqual(False, t.listable())
568
 
        self.assertEqual(True, t.is_readonly())
569
 
 
570
 
 
571
 
class FakeNFSDecoratorTests(tests.TestCaseInTempDir):
572
 
    """NFS decorator specific tests."""
573
 
 
574
 
    def get_nfs_transport(self, url):
575
 
        # connect to url with nfs decoration
576
 
        return fakenfs.FakeNFSTransportDecorator('fakenfs+' + url)
577
 
 
578
 
    def test_local_parameters(self):
579
 
        # the listable and is_readonly parameters
580
 
        # are not changed by the fakenfs decorator
581
 
        t = self.get_nfs_transport('.')
582
 
        self.assertEqual(True, t.listable())
583
 
        self.assertEqual(False, t.is_readonly())
584
 
 
585
 
    def test_http_parameters(self):
586
 
        # the listable and is_readonly parameters
587
 
        # are not changed by the fakenfs decorator
588
 
        from bzrlib.tests.http_server import HttpServer
589
 
        # connect to '.' via http which is not listable
590
 
        server = HttpServer()
591
 
        self.start_server(server)
592
 
        t = self.get_nfs_transport(server.get_url())
593
 
        self.assertIsInstance(t, fakenfs.FakeNFSTransportDecorator)
594
 
        self.assertEqual(False, t.listable())
595
 
        self.assertEqual(True, t.is_readonly())
596
 
 
597
 
    def test_fakenfs_server_default(self):
598
 
        # a FakeNFSServer() should bring up a local relpath server for itself
599
 
        server = test_server.FakeNFSServer()
600
 
        self.start_server(server)
601
 
        # the url should be decorated appropriately
602
 
        self.assertStartsWith(server.get_url(), 'fakenfs+')
603
 
        # and we should be able to get a transport for it
604
 
        t = transport.get_transport(server.get_url())
605
 
        # which must be a FakeNFSTransportDecorator instance.
606
 
        self.assertIsInstance(t, fakenfs.FakeNFSTransportDecorator)
607
 
 
608
 
    def test_fakenfs_rename_semantics(self):
609
 
        # a FakeNFS transport must mangle the way rename errors occur to
610
 
        # look like NFS problems.
611
 
        t = self.get_nfs_transport('.')
612
 
        self.build_tree(['from/', 'from/foo', 'to/', 'to/bar'],
613
 
                        transport=t)
614
 
        self.assertRaises(errors.ResourceBusy, t.rename, 'from', 'to')
615
 
 
616
 
 
617
 
class FakeVFATDecoratorTests(tests.TestCaseInTempDir):
618
 
    """Tests for simulation of VFAT restrictions"""
619
 
 
620
 
    def get_vfat_transport(self, url):
621
 
        """Return vfat-backed transport for test directory"""
622
 
        from bzrlib.transport.fakevfat import FakeVFATTransportDecorator
623
 
        return FakeVFATTransportDecorator('vfat+' + url)
624
 
 
625
 
    def test_transport_creation(self):
626
 
        from bzrlib.transport.fakevfat import FakeVFATTransportDecorator
627
 
        t = self.get_vfat_transport('.')
628
 
        self.assertIsInstance(t, FakeVFATTransportDecorator)
629
 
 
630
 
    def test_transport_mkdir(self):
631
 
        t = self.get_vfat_transport('.')
632
 
        t.mkdir('HELLO')
633
 
        self.assertTrue(t.has('hello'))
634
 
        self.assertTrue(t.has('Hello'))
635
 
 
636
 
    def test_forbidden_chars(self):
637
 
        t = self.get_vfat_transport('.')
638
 
        self.assertRaises(ValueError, t.has, "<NU>")
639
 
 
640
 
 
641
 
class BadTransportHandler(transport.Transport):
642
 
    def __init__(self, base_url):
643
 
        raise errors.DependencyNotPresent('some_lib',
644
 
                                          'testing missing dependency')
645
 
 
646
 
 
647
 
class BackupTransportHandler(transport.Transport):
648
 
    """Test transport that works as a backup for the BadTransportHandler"""
649
 
    pass
650
 
 
651
 
 
652
 
class TestTransportImplementation(tests.TestCaseInTempDir):
653
 
    """Implementation verification for transports.
654
 
 
655
 
    To verify a transport we need a server factory, which is a callable
656
 
    that accepts no parameters and returns an implementation of
657
 
    bzrlib.transport.Server.
658
 
 
659
 
    That Server is then used to construct transport instances and test
660
 
    the transport via loopback activity.
661
 
 
662
 
    Currently this assumes that the Transport object is connected to the
663
 
    current working directory.  So that whatever is done
664
 
    through the transport, should show up in the working
665
 
    directory, and vice-versa. This is a bug, because its possible to have
666
 
    URL schemes which provide access to something that may not be
667
 
    result in storage on the local disk, i.e. due to file system limits, or
668
 
    due to it being a database or some other non-filesystem tool.
669
 
 
670
 
    This also tests to make sure that the functions work with both
671
 
    generators and lists (assuming iter(list) is effectively a generator)
672
 
    """
673
 
 
674
 
    def setUp(self):
675
 
        super(TestTransportImplementation, self).setUp()
676
 
        self._server = self.transport_server()
677
 
        self.start_server(self._server)
678
 
 
679
 
    def get_transport(self, relpath=None):
680
 
        """Return a connected transport to the local directory.
681
 
 
682
 
        :param relpath: a path relative to the base url.
683
 
        """
684
 
        base_url = self._server.get_url()
685
 
        url = self._adjust_url(base_url, relpath)
686
 
        # try getting the transport via the regular interface:
687
 
        t = transport.get_transport(url)
688
 
        # vila--20070607 if the following are commented out the test suite
689
 
        # still pass. Is this really still needed or was it a forgotten
690
 
        # temporary fix ?
691
 
        if not isinstance(t, self.transport_class):
692
 
            # we did not get the correct transport class type. Override the
693
 
            # regular connection behaviour by direct construction.
694
 
            t = self.transport_class(url)
695
 
        return t
696
 
 
697
 
 
698
 
class TestLocalTransports(tests.TestCase):
699
 
 
700
 
    def test_get_transport_from_abspath(self):
701
 
        here = osutils.abspath('.')
702
 
        t = transport.get_transport(here)
703
 
        self.assertIsInstance(t, local.LocalTransport)
704
 
        self.assertEquals(t.base, urlutils.local_path_to_url(here) + '/')
705
 
 
706
 
    def test_get_transport_from_relpath(self):
707
 
        here = osutils.abspath('.')
708
 
        t = transport.get_transport('.')
709
 
        self.assertIsInstance(t, local.LocalTransport)
710
 
        self.assertEquals(t.base, urlutils.local_path_to_url('.') + '/')
711
 
 
712
 
    def test_get_transport_from_local_url(self):
713
 
        here = osutils.abspath('.')
714
 
        here_url = urlutils.local_path_to_url(here) + '/'
715
 
        t = transport.get_transport(here_url)
716
 
        self.assertIsInstance(t, local.LocalTransport)
717
 
        self.assertEquals(t.base, here_url)
718
 
 
719
 
    def test_local_abspath(self):
720
 
        here = osutils.abspath('.')
721
 
        t = transport.get_transport(here)
722
 
        self.assertEquals(t.local_abspath(''), here)
723
 
 
724
 
 
725
 
class TestWin32LocalTransport(tests.TestCase):
726
 
 
727
 
    def test_unc_clone_to_root(self):
728
 
        # Win32 UNC path like \\HOST\path
729
 
        # clone to root should stop at least at \\HOST part
730
 
        # not on \\
731
 
        t = local.EmulatedWin32LocalTransport('file://HOST/path/to/some/dir/')
732
 
        for i in xrange(4):
733
 
            t = t.clone('..')
734
 
        self.assertEquals(t.base, 'file://HOST/')
735
 
        # make sure we reach the root
736
 
        t = t.clone('..')
737
 
        self.assertEquals(t.base, 'file://HOST/')
738
 
 
739
 
 
740
 
class TestConnectedTransport(tests.TestCase):
741
 
    """Tests for connected to remote server transports"""
742
 
 
743
 
    def test_parse_url(self):
744
 
        t = transport.ConnectedTransport(
745
 
            'http://simple.example.com/home/source')
746
 
        self.assertEquals(t._host, 'simple.example.com')
747
 
        self.assertEquals(t._port, None)
748
 
        self.assertEquals(t._path, '/home/source/')
749
 
        self.failUnless(t._user is None)
750
 
        self.failUnless(t._password is None)
751
 
 
752
 
        self.assertEquals(t.base, 'http://simple.example.com/home/source/')
753
 
 
754
 
    def test_parse_url_with_at_in_user(self):
755
 
        # Bug 228058
756
 
        t = transport.ConnectedTransport('ftp://user@host.com@www.host.com/')
757
 
        self.assertEquals(t._user, 'user@host.com')
758
 
 
759
 
    def test_parse_quoted_url(self):
760
 
        t = transport.ConnectedTransport(
761
 
            'http://ro%62ey:h%40t@ex%41mple.com:2222/path')
762
 
        self.assertEquals(t._host, 'exAmple.com')
763
 
        self.assertEquals(t._port, 2222)
764
 
        self.assertEquals(t._user, 'robey')
765
 
        self.assertEquals(t._password, 'h@t')
766
 
        self.assertEquals(t._path, '/path/')
767
 
 
768
 
        # Base should not keep track of the password
769
 
        self.assertEquals(t.base, 'http://robey@exAmple.com:2222/path/')
770
 
 
771
 
    def test_parse_invalid_url(self):
772
 
        self.assertRaises(errors.InvalidURL,
773
 
                          transport.ConnectedTransport,
774
 
                          'sftp://lily.org:~janneke/public/bzr/gub')
775
 
 
776
 
    def test_relpath(self):
777
 
        t = transport.ConnectedTransport('sftp://user@host.com/abs/path')
778
 
 
779
 
        self.assertEquals(t.relpath('sftp://user@host.com/abs/path/sub'), 'sub')
780
 
        self.assertRaises(errors.PathNotChild, t.relpath,
781
 
                          'http://user@host.com/abs/path/sub')
782
 
        self.assertRaises(errors.PathNotChild, t.relpath,
783
 
                          'sftp://user2@host.com/abs/path/sub')
784
 
        self.assertRaises(errors.PathNotChild, t.relpath,
785
 
                          'sftp://user@otherhost.com/abs/path/sub')
786
 
        self.assertRaises(errors.PathNotChild, t.relpath,
787
 
                          'sftp://user@host.com:33/abs/path/sub')
788
 
        # Make sure it works when we don't supply a username
789
 
        t = transport.ConnectedTransport('sftp://host.com/abs/path')
790
 
        self.assertEquals(t.relpath('sftp://host.com/abs/path/sub'), 'sub')
791
 
 
792
 
        # Make sure it works when parts of the path will be url encoded
793
 
        t = transport.ConnectedTransport('sftp://host.com/dev/%path')
794
 
        self.assertEquals(t.relpath('sftp://host.com/dev/%path/sub'), 'sub')
795
 
 
796
 
    def test_connection_sharing_propagate_credentials(self):
797
 
        t = transport.ConnectedTransport('ftp://user@host.com/abs/path')
798
 
        self.assertEquals('user', t._user)
799
 
        self.assertEquals('host.com', t._host)
800
 
        self.assertIs(None, t._get_connection())
801
 
        self.assertIs(None, t._password)
802
 
        c = t.clone('subdir')
803
 
        self.assertIs(None, c._get_connection())
804
 
        self.assertIs(None, t._password)
805
 
 
806
 
        # Simulate the user entering a password
807
 
        password = 'secret'
808
 
        connection = object()
809
 
        t._set_connection(connection, password)
810
 
        self.assertIs(connection, t._get_connection())
811
 
        self.assertIs(password, t._get_credentials())
812
 
        self.assertIs(connection, c._get_connection())
813
 
        self.assertIs(password, c._get_credentials())
814
 
 
815
 
        # credentials can be updated
816
 
        new_password = 'even more secret'
817
 
        c._update_credentials(new_password)
818
 
        self.assertIs(connection, t._get_connection())
819
 
        self.assertIs(new_password, t._get_credentials())
820
 
        self.assertIs(connection, c._get_connection())
821
 
        self.assertIs(new_password, c._get_credentials())
822
 
 
823
 
 
824
 
class TestReusedTransports(tests.TestCase):
825
 
    """Tests for transport reuse"""
826
 
 
827
 
    def test_reuse_same_transport(self):
828
 
        possible_transports = []
829
 
        t1 = transport.get_transport('http://foo/',
830
 
                                     possible_transports=possible_transports)
831
 
        self.assertEqual([t1], possible_transports)
832
 
        t2 = transport.get_transport('http://foo/',
833
 
                                     possible_transports=[t1])
834
 
        self.assertIs(t1, t2)
835
 
 
836
 
        # Also check that final '/' are handled correctly
837
 
        t3 = transport.get_transport('http://foo/path/')
838
 
        t4 = transport.get_transport('http://foo/path',
839
 
                                     possible_transports=[t3])
840
 
        self.assertIs(t3, t4)
841
 
 
842
 
        t5 = transport.get_transport('http://foo/path')
843
 
        t6 = transport.get_transport('http://foo/path/',
844
 
                                     possible_transports=[t5])
845
 
        self.assertIs(t5, t6)
846
 
 
847
 
    def test_don_t_reuse_different_transport(self):
848
 
        t1 = transport.get_transport('http://foo/path')
849
 
        t2 = transport.get_transport('http://bar/path',
850
 
                                     possible_transports=[t1])
851
 
        self.assertIsNot(t1, t2)
852
 
 
853
 
 
854
 
class TestTransportTrace(tests.TestCase):
855
 
 
856
 
    def test_get(self):
857
 
        t = transport.get_transport('trace+memory://')
858
 
        self.assertIsInstance(t, bzrlib.transport.trace.TransportTraceDecorator)
859
 
 
860
 
    def test_clone_preserves_activity(self):
861
 
        t = transport.get_transport('trace+memory://')
862
 
        t2 = t.clone('.')
863
 
        self.assertTrue(t is not t2)
864
 
        self.assertTrue(t._activity is t2._activity)
865
 
 
866
 
    # the following specific tests are for the operations that have made use of
867
 
    # logging in tests; we could test every single operation but doing that
868
 
    # still won't cause a test failure when the top level Transport API
869
 
    # changes; so there is little return doing that.
870
 
    def test_get(self):
871
 
        t = transport.get_transport('trace+memory:///')
872
 
        t.put_bytes('foo', 'barish')
873
 
        t.get('foo')
874
 
        expected_result = []
875
 
        # put_bytes records the bytes, not the content to avoid memory
876
 
        # pressure.
877
 
        expected_result.append(('put_bytes', 'foo', 6, None))
878
 
        # get records the file name only.
879
 
        expected_result.append(('get', 'foo'))
880
 
        self.assertEqual(expected_result, t._activity)
881
 
 
882
 
    def test_readv(self):
883
 
        t = transport.get_transport('trace+memory:///')
884
 
        t.put_bytes('foo', 'barish')
885
 
        list(t.readv('foo', [(0, 1), (3, 2)],
886
 
                     adjust_for_latency=True, upper_limit=6))
887
 
        expected_result = []
888
 
        # put_bytes records the bytes, not the content to avoid memory
889
 
        # pressure.
890
 
        expected_result.append(('put_bytes', 'foo', 6, None))
891
 
        # readv records the supplied offset request
892
 
        expected_result.append(('readv', 'foo', [(0, 1), (3, 2)], True, 6))
893
 
        self.assertEqual(expected_result, t._activity)
894
 
 
895
 
 
896
 
class TestSSHConnections(tests.TestCaseWithTransport):
897
 
 
898
 
    def test_bzr_connect_to_bzr_ssh(self):
899
 
        """User acceptance that get_transport of a bzr+ssh:// behaves correctly.
900
 
 
901
 
        bzr+ssh:// should cause bzr to run a remote bzr smart server over SSH.
902
 
        """
903
 
        # This test actually causes a bzr instance to be invoked, which is very
904
 
        # expensive: it should be the only such test in the test suite.
905
 
        # A reasonable evolution for this would be to simply check inside
906
 
        # check_channel_exec_request that the command is appropriate, and then
907
 
        # satisfy requests in-process.
908
 
        self.requireFeature(features.paramiko)
909
 
        # SFTPFullAbsoluteServer has a get_url method, and doesn't
910
 
        # override the interface (doesn't change self._vendor).
911
 
        # Note that this does encryption, so can be slow.
912
 
        from bzrlib.tests import stub_sftp
913
 
 
914
 
        # Start an SSH server
915
 
        self.command_executed = []
916
 
        # XXX: This is horrible -- we define a really dumb SSH server that
917
 
        # executes commands, and manage the hooking up of stdin/out/err to the
918
 
        # SSH channel ourselves.  Surely this has already been implemented
919
 
        # elsewhere?
920
 
        started = []
921
 
        class StubSSHServer(stub_sftp.StubServer):
922
 
 
923
 
            test = self
924
 
 
925
 
            def check_channel_exec_request(self, channel, command):
926
 
                self.test.command_executed.append(command)
927
 
                proc = subprocess.Popen(
928
 
                    command, shell=True, stdin=subprocess.PIPE,
929
 
                    stdout=subprocess.PIPE, stderr=subprocess.PIPE)
930
 
 
931
 
                # XXX: horribly inefficient, not to mention ugly.
932
 
                # Start a thread for each of stdin/out/err, and relay bytes from
933
 
                # the subprocess to channel and vice versa.
934
 
                def ferry_bytes(read, write, close):
935
 
                    while True:
936
 
                        bytes = read(1)
937
 
                        if bytes == '':
938
 
                            close()
939
 
                            break
940
 
                        write(bytes)
941
 
 
942
 
                file_functions = [
943
 
                    (channel.recv, proc.stdin.write, proc.stdin.close),
944
 
                    (proc.stdout.read, channel.sendall, channel.close),
945
 
                    (proc.stderr.read, channel.sendall_stderr, channel.close)]
946
 
                started.append(proc)
947
 
                for read, write, close in file_functions:
948
 
                    t = threading.Thread(
949
 
                        target=ferry_bytes, args=(read, write, close))
950
 
                    t.start()
951
 
                    started.append(t)
952
 
 
953
 
                return True
954
 
 
955
 
        ssh_server = stub_sftp.SFTPFullAbsoluteServer(StubSSHServer)
956
 
        # We *don't* want to override the default SSH vendor: the detected one
957
 
        # is the one to use.
958
 
        self.start_server(ssh_server)
959
 
        port = ssh_server._listener.port
960
 
 
961
 
        if sys.platform == 'win32':
962
 
            bzr_remote_path = sys.executable + ' ' + self.get_bzr_path()
963
 
        else:
964
 
            bzr_remote_path = self.get_bzr_path()
965
 
        os.environ['BZR_REMOTE_PATH'] = bzr_remote_path
966
 
 
967
 
        # Access the branch via a bzr+ssh URL.  The BZR_REMOTE_PATH environment
968
 
        # variable is used to tell bzr what command to run on the remote end.
969
 
        path_to_branch = osutils.abspath('.')
970
 
        if sys.platform == 'win32':
971
 
            # On Windows, we export all drives as '/C:/, etc. So we need to
972
 
            # prefix a '/' to get the right path.
973
 
            path_to_branch = '/' + path_to_branch
974
 
        url = 'bzr+ssh://fred:secret@localhost:%d%s' % (port, path_to_branch)
975
 
        t = transport.get_transport(url)
976
 
        self.permit_url(t.base)
977
 
        t.mkdir('foo')
978
 
 
979
 
        self.assertEqual(
980
 
            ['%s serve --inet --directory=/ --allow-writes' % bzr_remote_path],
981
 
            self.command_executed)
982
 
        # Make sure to disconnect, so that the remote process can stop, and we
983
 
        # can cleanup. Then pause the test until everything is shutdown
984
 
        t._client._medium.disconnect()
985
 
        if not started:
986
 
            return
987
 
        # First wait for the subprocess
988
 
        started[0].wait()
989
 
        # And the rest are threads
990
 
        for t in started[1:]:
991
 
            t.join()
 
819
        transport = memory.MemoryTransport()
 
820
        transport.put('foo', StringIO('content'))
 
821
        transport.put('bar', StringIO('phowar'))
 
822
        self.assertEqual(7, transport.stat('foo').st_size)
 
823
        self.assertEqual(6, transport.stat('bar').st_size)
 
824