/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_osutils.py

  • Committer: Johan Walles
  • Date: 2009-05-06 19:32:56 UTC
  • mto: This revision was merged to the branch mainline in revision 4343.
  • Revision ID: johan.walles@gmail.com-20090506193256-ome7hfbulo2jth47
Move note about bzr rm * fix from Bugs to Improvements.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2005, 2006, 2007, 2008, 2009 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
"""Tests for the osutils wrapper."""
 
18
 
 
19
from cStringIO import StringIO
 
20
import errno
 
21
import os
 
22
import re
 
23
import socket
 
24
import stat
 
25
import sys
 
26
import time
 
27
 
 
28
from bzrlib import (
 
29
    errors,
 
30
    osutils,
 
31
    tests,
 
32
    win32utils,
 
33
    )
 
34
from bzrlib.tests import (
 
35
    file_utils,
 
36
    test__walkdirs_win32,
 
37
    )
 
38
 
 
39
 
 
40
class _UTF8DirReaderFeature(tests.Feature):
 
41
 
 
42
    def _probe(self):
 
43
        try:
 
44
            from bzrlib import _readdir_pyx
 
45
            self.reader = _readdir_pyx.UTF8DirReader
 
46
            return True
 
47
        except ImportError:
 
48
            return False
 
49
 
 
50
    def feature_name(self):
 
51
        return 'bzrlib._readdir_pyx'
 
52
 
 
53
UTF8DirReaderFeature = _UTF8DirReaderFeature()
 
54
 
 
55
 
 
56
def _already_unicode(s):
 
57
    return s
 
58
 
 
59
 
 
60
def _fs_enc_to_unicode(s):
 
61
    return s.decode(osutils._fs_enc)
 
62
 
 
63
 
 
64
def _utf8_to_unicode(s):
 
65
    return s.decode('UTF-8')
 
66
 
 
67
 
 
68
def dir_reader_scenarios():
 
69
    # For each dir reader we define:
 
70
 
 
71
    # - native_to_unicode: a function converting the native_abspath as returned
 
72
    #   by DirReader.read_dir to its unicode representation
 
73
 
 
74
    # UnicodeDirReader is the fallback, it should be tested on all platforms.
 
75
    scenarios = [('unicode',
 
76
                  dict(_dir_reader_class=osutils.UnicodeDirReader,
 
77
                       _native_to_unicode=_already_unicode))]
 
78
    # Some DirReaders are platform specific and even there they may not be
 
79
    # available.
 
80
    if UTF8DirReaderFeature.available():
 
81
        from bzrlib import _readdir_pyx
 
82
        scenarios.append(('utf8',
 
83
                          dict(_dir_reader_class=_readdir_pyx.UTF8DirReader,
 
84
                               _native_to_unicode=_utf8_to_unicode)))
 
85
 
 
86
    if test__walkdirs_win32.Win32ReadDirFeature.available():
 
87
        try:
 
88
            from bzrlib import _walkdirs_win32
 
89
            # TODO: check on windows, it may be that we need to use/add
 
90
            # safe_unicode instead of _fs_enc_to_unicode
 
91
            scenarios.append(
 
92
                ('win32',
 
93
                 dict(_dir_reader_class=_walkdirs_win32.Win32ReadDir,
 
94
                      _native_to_unicode=_fs_enc_to_unicode)))
 
95
        except ImportError:
 
96
            pass
 
97
    return scenarios
 
98
 
 
99
 
 
100
def load_tests(basic_tests, module, loader):
 
101
    suite = loader.suiteClass()
 
102
    dir_reader_tests, remaining_tests = tests.split_suite_by_condition(
 
103
        basic_tests, tests.condition_isinstance(TestDirReader))
 
104
    tests.multiply_tests(dir_reader_tests, dir_reader_scenarios(), suite)
 
105
    suite.addTest(remaining_tests)
 
106
    return suite
 
107
 
 
108
 
 
109
class TestContainsWhitespace(tests.TestCase):
 
110
 
 
111
    def test_contains_whitespace(self):
 
112
        self.failUnless(osutils.contains_whitespace(u' '))
 
113
        self.failUnless(osutils.contains_whitespace(u'hello there'))
 
114
        self.failUnless(osutils.contains_whitespace(u'hellothere\n'))
 
115
        self.failUnless(osutils.contains_whitespace(u'hello\nthere'))
 
116
        self.failUnless(osutils.contains_whitespace(u'hello\rthere'))
 
117
        self.failUnless(osutils.contains_whitespace(u'hello\tthere'))
 
118
 
 
119
        # \xa0 is "Non-breaking-space" which on some python locales thinks it
 
120
        # is whitespace, but we do not.
 
121
        self.failIf(osutils.contains_whitespace(u''))
 
122
        self.failIf(osutils.contains_whitespace(u'hellothere'))
 
123
        self.failIf(osutils.contains_whitespace(u'hello\xa0there'))
 
124
 
 
125
 
 
126
class TestRename(tests.TestCaseInTempDir):
 
127
 
 
128
    def test_fancy_rename(self):
 
129
        # This should work everywhere
 
130
        def rename(a, b):
 
131
            osutils.fancy_rename(a, b,
 
132
                    rename_func=os.rename,
 
133
                    unlink_func=os.unlink)
 
134
 
 
135
        open('a', 'wb').write('something in a\n')
 
136
        rename('a', 'b')
 
137
        self.failIfExists('a')
 
138
        self.failUnlessExists('b')
 
139
        self.check_file_contents('b', 'something in a\n')
 
140
 
 
141
        open('a', 'wb').write('new something in a\n')
 
142
        rename('b', 'a')
 
143
 
 
144
        self.check_file_contents('a', 'something in a\n')
 
145
 
 
146
    def test_rename(self):
 
147
        # Rename should be semi-atomic on all platforms
 
148
        open('a', 'wb').write('something in a\n')
 
149
        osutils.rename('a', 'b')
 
150
        self.failIfExists('a')
 
151
        self.failUnlessExists('b')
 
152
        self.check_file_contents('b', 'something in a\n')
 
153
 
 
154
        open('a', 'wb').write('new something in a\n')
 
155
        osutils.rename('b', 'a')
 
156
 
 
157
        self.check_file_contents('a', 'something in a\n')
 
158
 
 
159
    # TODO: test fancy_rename using a MemoryTransport
 
160
 
 
161
    def test_rename_change_case(self):
 
162
        # on Windows we should be able to change filename case by rename
 
163
        self.build_tree(['a', 'b/'])
 
164
        osutils.rename('a', 'A')
 
165
        osutils.rename('b', 'B')
 
166
        # we can't use failUnlessExists on case-insensitive filesystem
 
167
        # so try to check shape of the tree
 
168
        shape = sorted(os.listdir('.'))
 
169
        self.assertEquals(['A', 'B'], shape)
 
170
 
 
171
 
 
172
class TestRandChars(tests.TestCase):
 
173
 
 
174
    def test_01_rand_chars_empty(self):
 
175
        result = osutils.rand_chars(0)
 
176
        self.assertEqual(result, '')
 
177
 
 
178
    def test_02_rand_chars_100(self):
 
179
        result = osutils.rand_chars(100)
 
180
        self.assertEqual(len(result), 100)
 
181
        self.assertEqual(type(result), str)
 
182
        self.assertContainsRe(result, r'^[a-z0-9]{100}$')
 
183
 
 
184
 
 
185
class TestIsInside(tests.TestCase):
 
186
 
 
187
    def test_is_inside(self):
 
188
        is_inside = osutils.is_inside
 
189
        self.assertTrue(is_inside('src', 'src/foo.c'))
 
190
        self.assertFalse(is_inside('src', 'srccontrol'))
 
191
        self.assertTrue(is_inside('src', 'src/a/a/a/foo.c'))
 
192
        self.assertTrue(is_inside('foo.c', 'foo.c'))
 
193
        self.assertFalse(is_inside('foo.c', ''))
 
194
        self.assertTrue(is_inside('', 'foo.c'))
 
195
 
 
196
    def test_is_inside_any(self):
 
197
        SRC_FOO_C = osutils.pathjoin('src', 'foo.c')
 
198
        for dirs, fn in [(['src', 'doc'], SRC_FOO_C),
 
199
                         (['src'], SRC_FOO_C),
 
200
                         (['src'], 'src'),
 
201
                         ]:
 
202
            self.assert_(osutils.is_inside_any(dirs, fn))
 
203
        for dirs, fn in [(['src'], 'srccontrol'),
 
204
                         (['src'], 'srccontrol/foo')]:
 
205
            self.assertFalse(osutils.is_inside_any(dirs, fn))
 
206
 
 
207
    def test_is_inside_or_parent_of_any(self):
 
208
        for dirs, fn in [(['src', 'doc'], 'src/foo.c'),
 
209
                         (['src'], 'src/foo.c'),
 
210
                         (['src/bar.c'], 'src'),
 
211
                         (['src/bar.c', 'bla/foo.c'], 'src'),
 
212
                         (['src'], 'src'),
 
213
                         ]:
 
214
            self.assert_(osutils.is_inside_or_parent_of_any(dirs, fn))
 
215
 
 
216
        for dirs, fn in [(['src'], 'srccontrol'),
 
217
                         (['srccontrol/foo.c'], 'src'),
 
218
                         (['src'], 'srccontrol/foo')]:
 
219
            self.assertFalse(osutils.is_inside_or_parent_of_any(dirs, fn))
 
220
 
 
221
 
 
222
class TestRmTree(tests.TestCaseInTempDir):
 
223
 
 
224
    def test_rmtree(self):
 
225
        # Check to remove tree with read-only files/dirs
 
226
        os.mkdir('dir')
 
227
        f = file('dir/file', 'w')
 
228
        f.write('spam')
 
229
        f.close()
 
230
        # would like to also try making the directory readonly, but at the
 
231
        # moment python shutil.rmtree doesn't handle that properly - it would
 
232
        # need to chmod the directory before removing things inside it - deferred
 
233
        # for now -- mbp 20060505
 
234
        # osutils.make_readonly('dir')
 
235
        osutils.make_readonly('dir/file')
 
236
 
 
237
        osutils.rmtree('dir')
 
238
 
 
239
        self.failIfExists('dir/file')
 
240
        self.failIfExists('dir')
 
241
 
 
242
 
 
243
class TestKind(tests.TestCaseInTempDir):
 
244
 
 
245
    def test_file_kind(self):
 
246
        self.build_tree(['file', 'dir/'])
 
247
        self.assertEquals('file', osutils.file_kind('file'))
 
248
        self.assertEquals('directory', osutils.file_kind('dir/'))
 
249
        if osutils.has_symlinks():
 
250
            os.symlink('symlink', 'symlink')
 
251
            self.assertEquals('symlink', osutils.file_kind('symlink'))
 
252
 
 
253
        # TODO: jam 20060529 Test a block device
 
254
        try:
 
255
            os.lstat('/dev/null')
 
256
        except OSError, e:
 
257
            if e.errno not in (errno.ENOENT,):
 
258
                raise
 
259
        else:
 
260
            self.assertEquals('chardev', osutils.file_kind('/dev/null'))
 
261
 
 
262
        mkfifo = getattr(os, 'mkfifo', None)
 
263
        if mkfifo:
 
264
            mkfifo('fifo')
 
265
            try:
 
266
                self.assertEquals('fifo', osutils.file_kind('fifo'))
 
267
            finally:
 
268
                os.remove('fifo')
 
269
 
 
270
        AF_UNIX = getattr(socket, 'AF_UNIX', None)
 
271
        if AF_UNIX:
 
272
            s = socket.socket(AF_UNIX)
 
273
            s.bind('socket')
 
274
            try:
 
275
                self.assertEquals('socket', osutils.file_kind('socket'))
 
276
            finally:
 
277
                os.remove('socket')
 
278
 
 
279
    def test_kind_marker(self):
 
280
        self.assertEqual("", osutils.kind_marker("file"))
 
281
        self.assertEqual("/", osutils.kind_marker('directory'))
 
282
        self.assertEqual("/", osutils.kind_marker(osutils._directory_kind))
 
283
        self.assertEqual("@", osutils.kind_marker("symlink"))
 
284
        self.assertEqual("+", osutils.kind_marker("tree-reference"))
 
285
        self.assertRaises(errors.BzrError, osutils.kind_marker, "unknown")
 
286
 
 
287
 
 
288
class TestUmask(tests.TestCaseInTempDir):
 
289
 
 
290
    def test_get_umask(self):
 
291
        if sys.platform == 'win32':
 
292
            # umask always returns '0', no way to set it
 
293
            self.assertEqual(0, osutils.get_umask())
 
294
            return
 
295
 
 
296
        orig_umask = osutils.get_umask()
 
297
        self.addCleanup(os.umask, orig_umask)
 
298
        os.umask(0222)
 
299
        self.assertEqual(0222, osutils.get_umask())
 
300
        os.umask(0022)
 
301
        self.assertEqual(0022, osutils.get_umask())
 
302
        os.umask(0002)
 
303
        self.assertEqual(0002, osutils.get_umask())
 
304
        os.umask(0027)
 
305
        self.assertEqual(0027, osutils.get_umask())
 
306
 
 
307
 
 
308
class TestDateTime(tests.TestCase):
 
309
 
 
310
    def assertFormatedDelta(self, expected, seconds):
 
311
        """Assert osutils.format_delta formats as expected"""
 
312
        actual = osutils.format_delta(seconds)
 
313
        self.assertEqual(expected, actual)
 
314
 
 
315
    def test_format_delta(self):
 
316
        self.assertFormatedDelta('0 seconds ago', 0)
 
317
        self.assertFormatedDelta('1 second ago', 1)
 
318
        self.assertFormatedDelta('10 seconds ago', 10)
 
319
        self.assertFormatedDelta('59 seconds ago', 59)
 
320
        self.assertFormatedDelta('89 seconds ago', 89)
 
321
        self.assertFormatedDelta('1 minute, 30 seconds ago', 90)
 
322
        self.assertFormatedDelta('3 minutes, 0 seconds ago', 180)
 
323
        self.assertFormatedDelta('3 minutes, 1 second ago', 181)
 
324
        self.assertFormatedDelta('10 minutes, 15 seconds ago', 615)
 
325
        self.assertFormatedDelta('30 minutes, 59 seconds ago', 1859)
 
326
        self.assertFormatedDelta('31 minutes, 0 seconds ago', 1860)
 
327
        self.assertFormatedDelta('60 minutes, 0 seconds ago', 3600)
 
328
        self.assertFormatedDelta('89 minutes, 59 seconds ago', 5399)
 
329
        self.assertFormatedDelta('1 hour, 30 minutes ago', 5400)
 
330
        self.assertFormatedDelta('2 hours, 30 minutes ago', 9017)
 
331
        self.assertFormatedDelta('10 hours, 0 minutes ago', 36000)
 
332
        self.assertFormatedDelta('24 hours, 0 minutes ago', 86400)
 
333
        self.assertFormatedDelta('35 hours, 59 minutes ago', 129599)
 
334
        self.assertFormatedDelta('36 hours, 0 minutes ago', 129600)
 
335
        self.assertFormatedDelta('36 hours, 0 minutes ago', 129601)
 
336
        self.assertFormatedDelta('36 hours, 1 minute ago', 129660)
 
337
        self.assertFormatedDelta('36 hours, 1 minute ago', 129661)
 
338
        self.assertFormatedDelta('84 hours, 10 minutes ago', 303002)
 
339
 
 
340
        # We handle when time steps the wrong direction because computers
 
341
        # don't have synchronized clocks.
 
342
        self.assertFormatedDelta('84 hours, 10 minutes in the future', -303002)
 
343
        self.assertFormatedDelta('1 second in the future', -1)
 
344
        self.assertFormatedDelta('2 seconds in the future', -2)
 
345
 
 
346
    def test_format_date(self):
 
347
        self.assertRaises(errors.UnsupportedTimezoneFormat,
 
348
            osutils.format_date, 0, timezone='foo')
 
349
        self.assertIsInstance(osutils.format_date(0), str)
 
350
        self.assertIsInstance(osutils.format_local_date(0), unicode)
 
351
        # Testing for the actual value of the local weekday without
 
352
        # duplicating the code from format_date is difficult.
 
353
        # Instead blackbox.test_locale should check for localized
 
354
        # dates once they do occur in output strings.
 
355
 
 
356
    def test_local_time_offset(self):
 
357
        """Test that local_time_offset() returns a sane value."""
 
358
        offset = osutils.local_time_offset()
 
359
        self.assertTrue(isinstance(offset, int))
 
360
        # Test that the offset is no more than a eighteen hours in
 
361
        # either direction.
 
362
        # Time zone handling is system specific, so it is difficult to
 
363
        # do more specific tests, but a value outside of this range is
 
364
        # probably wrong.
 
365
        eighteen_hours = 18 * 3600
 
366
        self.assertTrue(-eighteen_hours < offset < eighteen_hours)
 
367
 
 
368
    def test_local_time_offset_with_timestamp(self):
 
369
        """Test that local_time_offset() works with a timestamp."""
 
370
        offset = osutils.local_time_offset(1000000000.1234567)
 
371
        self.assertTrue(isinstance(offset, int))
 
372
        eighteen_hours = 18 * 3600
 
373
        self.assertTrue(-eighteen_hours < offset < eighteen_hours)
 
374
 
 
375
 
 
376
class TestLinks(tests.TestCaseInTempDir):
 
377
 
 
378
    def test_dereference_path(self):
 
379
        self.requireFeature(tests.SymlinkFeature)
 
380
        cwd = osutils.realpath('.')
 
381
        os.mkdir('bar')
 
382
        bar_path = osutils.pathjoin(cwd, 'bar')
 
383
        # Using './' to avoid bug #1213894 (first path component not
 
384
        # dereferenced) in Python 2.4.1 and earlier
 
385
        self.assertEqual(bar_path, osutils.realpath('./bar'))
 
386
        os.symlink('bar', 'foo')
 
387
        self.assertEqual(bar_path, osutils.realpath('./foo'))
 
388
 
 
389
        # Does not dereference terminal symlinks
 
390
        foo_path = osutils.pathjoin(cwd, 'foo')
 
391
        self.assertEqual(foo_path, osutils.dereference_path('./foo'))
 
392
 
 
393
        # Dereferences parent symlinks
 
394
        os.mkdir('bar/baz')
 
395
        baz_path = osutils.pathjoin(bar_path, 'baz')
 
396
        self.assertEqual(baz_path, osutils.dereference_path('./foo/baz'))
 
397
 
 
398
        # Dereferences parent symlinks that are the first path element
 
399
        self.assertEqual(baz_path, osutils.dereference_path('foo/baz'))
 
400
 
 
401
        # Dereferences parent symlinks in absolute paths
 
402
        foo_baz_path = osutils.pathjoin(foo_path, 'baz')
 
403
        self.assertEqual(baz_path, osutils.dereference_path(foo_baz_path))
 
404
 
 
405
    def test_changing_access(self):
 
406
        f = file('file', 'w')
 
407
        f.write('monkey')
 
408
        f.close()
 
409
 
 
410
        # Make a file readonly
 
411
        osutils.make_readonly('file')
 
412
        mode = os.lstat('file').st_mode
 
413
        self.assertEqual(mode, mode & 0777555)
 
414
 
 
415
        # Make a file writable
 
416
        osutils.make_writable('file')
 
417
        mode = os.lstat('file').st_mode
 
418
        self.assertEqual(mode, mode | 0200)
 
419
 
 
420
        if osutils.has_symlinks():
 
421
            # should not error when handed a symlink
 
422
            os.symlink('nonexistent', 'dangling')
 
423
            osutils.make_readonly('dangling')
 
424
            osutils.make_writable('dangling')
 
425
 
 
426
    def test_host_os_dereferences_symlinks(self):
 
427
        osutils.host_os_dereferences_symlinks()
 
428
 
 
429
 
 
430
class TestCanonicalRelPath(tests.TestCaseInTempDir):
 
431
 
 
432
    _test_needs_features = [tests.CaseInsCasePresFilenameFeature]
 
433
 
 
434
    def test_canonical_relpath_simple(self):
 
435
        f = file('MixedCaseName', 'w')
 
436
        f.close()
 
437
        # Watch out for tricky test dir (on OSX /tmp -> /private/tmp)
 
438
        real_base_dir = osutils.realpath(self.test_base_dir)
 
439
        actual = osutils.canonical_relpath(real_base_dir, 'mixedcasename')
 
440
        self.failUnlessEqual('work/MixedCaseName', actual)
 
441
 
 
442
    def test_canonical_relpath_missing_tail(self):
 
443
        os.mkdir('MixedCaseParent')
 
444
        # Watch out for tricky test dir (on OSX /tmp -> /private/tmp)
 
445
        real_base_dir = osutils.realpath(self.test_base_dir)
 
446
        actual = osutils.canonical_relpath(real_base_dir,
 
447
                                           'mixedcaseparent/nochild')
 
448
        self.failUnlessEqual('work/MixedCaseParent/nochild', actual)
 
449
 
 
450
 
 
451
class TestPumpFile(tests.TestCase):
 
452
    """Test pumpfile method."""
 
453
 
 
454
    def setUp(self):
 
455
        tests.TestCase.setUp(self)
 
456
        # create a test datablock
 
457
        self.block_size = 512
 
458
        pattern = '0123456789ABCDEF'
 
459
        self.test_data = pattern * (3 * self.block_size / len(pattern))
 
460
        self.test_data_len = len(self.test_data)
 
461
 
 
462
    def test_bracket_block_size(self):
 
463
        """Read data in blocks with the requested read size bracketing the
 
464
        block size."""
 
465
        # make sure test data is larger than max read size
 
466
        self.assertTrue(self.test_data_len > self.block_size)
 
467
 
 
468
        from_file = file_utils.FakeReadFile(self.test_data)
 
469
        to_file = StringIO()
 
470
 
 
471
        # read (max / 2) bytes and verify read size wasn't affected
 
472
        num_bytes_to_read = self.block_size / 2
 
473
        osutils.pumpfile(from_file, to_file, num_bytes_to_read, self.block_size)
 
474
        self.assertEqual(from_file.get_max_read_size(), num_bytes_to_read)
 
475
        self.assertEqual(from_file.get_read_count(), 1)
 
476
 
 
477
        # read (max) bytes and verify read size wasn't affected
 
478
        num_bytes_to_read = self.block_size
 
479
        from_file.reset_read_count()
 
480
        osutils.pumpfile(from_file, to_file, num_bytes_to_read, self.block_size)
 
481
        self.assertEqual(from_file.get_max_read_size(), num_bytes_to_read)
 
482
        self.assertEqual(from_file.get_read_count(), 1)
 
483
 
 
484
        # read (max + 1) bytes and verify read size was limited
 
485
        num_bytes_to_read = self.block_size + 1
 
486
        from_file.reset_read_count()
 
487
        osutils.pumpfile(from_file, to_file, num_bytes_to_read, self.block_size)
 
488
        self.assertEqual(from_file.get_max_read_size(), self.block_size)
 
489
        self.assertEqual(from_file.get_read_count(), 2)
 
490
 
 
491
        # finish reading the rest of the data
 
492
        num_bytes_to_read = self.test_data_len - to_file.tell()
 
493
        osutils.pumpfile(from_file, to_file, num_bytes_to_read, self.block_size)
 
494
 
 
495
        # report error if the data wasn't equal (we only report the size due
 
496
        # to the length of the data)
 
497
        response_data = to_file.getvalue()
 
498
        if response_data != self.test_data:
 
499
            message = "Data not equal.  Expected %d bytes, received %d."
 
500
            self.fail(message % (len(response_data), self.test_data_len))
 
501
 
 
502
    def test_specified_size(self):
 
503
        """Request a transfer larger than the maximum block size and verify
 
504
        that the maximum read doesn't exceed the block_size."""
 
505
        # make sure test data is larger than max read size
 
506
        self.assertTrue(self.test_data_len > self.block_size)
 
507
 
 
508
        # retrieve data in blocks
 
509
        from_file = file_utils.FakeReadFile(self.test_data)
 
510
        to_file = StringIO()
 
511
        osutils.pumpfile(from_file, to_file, self.test_data_len,
 
512
                         self.block_size)
 
513
 
 
514
        # verify read size was equal to the maximum read size
 
515
        self.assertTrue(from_file.get_max_read_size() > 0)
 
516
        self.assertEqual(from_file.get_max_read_size(), self.block_size)
 
517
        self.assertEqual(from_file.get_read_count(), 3)
 
518
 
 
519
        # report error if the data wasn't equal (we only report the size due
 
520
        # to the length of the data)
 
521
        response_data = to_file.getvalue()
 
522
        if response_data != self.test_data:
 
523
            message = "Data not equal.  Expected %d bytes, received %d."
 
524
            self.fail(message % (len(response_data), self.test_data_len))
 
525
 
 
526
    def test_to_eof(self):
 
527
        """Read to end-of-file and verify that the reads are not larger than
 
528
        the maximum read size."""
 
529
        # make sure test data is larger than max read size
 
530
        self.assertTrue(self.test_data_len > self.block_size)
 
531
 
 
532
        # retrieve data to EOF
 
533
        from_file = file_utils.FakeReadFile(self.test_data)
 
534
        to_file = StringIO()
 
535
        osutils.pumpfile(from_file, to_file, -1, self.block_size)
 
536
 
 
537
        # verify read size was equal to the maximum read size
 
538
        self.assertEqual(from_file.get_max_read_size(), self.block_size)
 
539
        self.assertEqual(from_file.get_read_count(), 4)
 
540
 
 
541
        # report error if the data wasn't equal (we only report the size due
 
542
        # to the length of the data)
 
543
        response_data = to_file.getvalue()
 
544
        if response_data != self.test_data:
 
545
            message = "Data not equal.  Expected %d bytes, received %d."
 
546
            self.fail(message % (len(response_data), self.test_data_len))
 
547
 
 
548
    def test_defaults(self):
 
549
        """Verifies that the default arguments will read to EOF -- this
 
550
        test verifies that any existing usages of pumpfile will not be broken
 
551
        with this new version."""
 
552
        # retrieve data using default (old) pumpfile method
 
553
        from_file = file_utils.FakeReadFile(self.test_data)
 
554
        to_file = StringIO()
 
555
        osutils.pumpfile(from_file, to_file)
 
556
 
 
557
        # report error if the data wasn't equal (we only report the size due
 
558
        # to the length of the data)
 
559
        response_data = to_file.getvalue()
 
560
        if response_data != self.test_data:
 
561
            message = "Data not equal.  Expected %d bytes, received %d."
 
562
            self.fail(message % (len(response_data), self.test_data_len))
 
563
 
 
564
    def test_report_activity(self):
 
565
        activity = []
 
566
        def log_activity(length, direction):
 
567
            activity.append((length, direction))
 
568
        from_file = StringIO(self.test_data)
 
569
        to_file = StringIO()
 
570
        osutils.pumpfile(from_file, to_file, buff_size=500,
 
571
                         report_activity=log_activity, direction='read')
 
572
        self.assertEqual([(500, 'read'), (500, 'read'), (500, 'read'),
 
573
                          (36, 'read')], activity)
 
574
 
 
575
        from_file = StringIO(self.test_data)
 
576
        to_file = StringIO()
 
577
        del activity[:]
 
578
        osutils.pumpfile(from_file, to_file, buff_size=500,
 
579
                         report_activity=log_activity, direction='write')
 
580
        self.assertEqual([(500, 'write'), (500, 'write'), (500, 'write'),
 
581
                          (36, 'write')], activity)
 
582
 
 
583
        # And with a limited amount of data
 
584
        from_file = StringIO(self.test_data)
 
585
        to_file = StringIO()
 
586
        del activity[:]
 
587
        osutils.pumpfile(from_file, to_file, buff_size=500, read_length=1028,
 
588
                         report_activity=log_activity, direction='read')
 
589
        self.assertEqual([(500, 'read'), (500, 'read'), (28, 'read')], activity)
 
590
 
 
591
 
 
592
 
 
593
class TestPumpStringFile(tests.TestCase):
 
594
 
 
595
    def test_empty(self):
 
596
        output = StringIO()
 
597
        osutils.pump_string_file("", output)
 
598
        self.assertEqual("", output.getvalue())
 
599
 
 
600
    def test_more_than_segment_size(self):
 
601
        output = StringIO()
 
602
        osutils.pump_string_file("123456789", output, 2)
 
603
        self.assertEqual("123456789", output.getvalue())
 
604
 
 
605
    def test_segment_size(self):
 
606
        output = StringIO()
 
607
        osutils.pump_string_file("12", output, 2)
 
608
        self.assertEqual("12", output.getvalue())
 
609
 
 
610
    def test_segment_size_multiple(self):
 
611
        output = StringIO()
 
612
        osutils.pump_string_file("1234", output, 2)
 
613
        self.assertEqual("1234", output.getvalue())
 
614
 
 
615
 
 
616
class TestSafeUnicode(tests.TestCase):
 
617
 
 
618
    def test_from_ascii_string(self):
 
619
        self.assertEqual(u'foobar', osutils.safe_unicode('foobar'))
 
620
 
 
621
    def test_from_unicode_string_ascii_contents(self):
 
622
        self.assertEqual(u'bargam', osutils.safe_unicode(u'bargam'))
 
623
 
 
624
    def test_from_unicode_string_unicode_contents(self):
 
625
        self.assertEqual(u'bargam\xae', osutils.safe_unicode(u'bargam\xae'))
 
626
 
 
627
    def test_from_utf8_string(self):
 
628
        self.assertEqual(u'foo\xae', osutils.safe_unicode('foo\xc2\xae'))
 
629
 
 
630
    def test_bad_utf8_string(self):
 
631
        self.assertRaises(errors.BzrBadParameterNotUnicode,
 
632
                          osutils.safe_unicode,
 
633
                          '\xbb\xbb')
 
634
 
 
635
 
 
636
class TestSafeUtf8(tests.TestCase):
 
637
 
 
638
    def test_from_ascii_string(self):
 
639
        f = 'foobar'
 
640
        self.assertEqual('foobar', osutils.safe_utf8(f))
 
641
 
 
642
    def test_from_unicode_string_ascii_contents(self):
 
643
        self.assertEqual('bargam', osutils.safe_utf8(u'bargam'))
 
644
 
 
645
    def test_from_unicode_string_unicode_contents(self):
 
646
        self.assertEqual('bargam\xc2\xae', osutils.safe_utf8(u'bargam\xae'))
 
647
 
 
648
    def test_from_utf8_string(self):
 
649
        self.assertEqual('foo\xc2\xae', osutils.safe_utf8('foo\xc2\xae'))
 
650
 
 
651
    def test_bad_utf8_string(self):
 
652
        self.assertRaises(errors.BzrBadParameterNotUnicode,
 
653
                          osutils.safe_utf8, '\xbb\xbb')
 
654
 
 
655
 
 
656
class TestSafeRevisionId(tests.TestCase):
 
657
 
 
658
    def test_from_ascii_string(self):
 
659
        # this shouldn't give a warning because it's getting an ascii string
 
660
        self.assertEqual('foobar', osutils.safe_revision_id('foobar'))
 
661
 
 
662
    def test_from_unicode_string_ascii_contents(self):
 
663
        self.assertEqual('bargam',
 
664
                         osutils.safe_revision_id(u'bargam', warn=False))
 
665
 
 
666
    def test_from_unicode_deprecated(self):
 
667
        self.assertEqual('bargam',
 
668
            self.callDeprecated([osutils._revision_id_warning],
 
669
                                osutils.safe_revision_id, u'bargam'))
 
670
 
 
671
    def test_from_unicode_string_unicode_contents(self):
 
672
        self.assertEqual('bargam\xc2\xae',
 
673
                         osutils.safe_revision_id(u'bargam\xae', warn=False))
 
674
 
 
675
    def test_from_utf8_string(self):
 
676
        self.assertEqual('foo\xc2\xae',
 
677
                         osutils.safe_revision_id('foo\xc2\xae'))
 
678
 
 
679
    def test_none(self):
 
680
        """Currently, None is a valid revision_id"""
 
681
        self.assertEqual(None, osutils.safe_revision_id(None))
 
682
 
 
683
 
 
684
class TestSafeFileId(tests.TestCase):
 
685
 
 
686
    def test_from_ascii_string(self):
 
687
        self.assertEqual('foobar', osutils.safe_file_id('foobar'))
 
688
 
 
689
    def test_from_unicode_string_ascii_contents(self):
 
690
        self.assertEqual('bargam', osutils.safe_file_id(u'bargam', warn=False))
 
691
 
 
692
    def test_from_unicode_deprecated(self):
 
693
        self.assertEqual('bargam',
 
694
            self.callDeprecated([osutils._file_id_warning],
 
695
                                osutils.safe_file_id, u'bargam'))
 
696
 
 
697
    def test_from_unicode_string_unicode_contents(self):
 
698
        self.assertEqual('bargam\xc2\xae',
 
699
                         osutils.safe_file_id(u'bargam\xae', warn=False))
 
700
 
 
701
    def test_from_utf8_string(self):
 
702
        self.assertEqual('foo\xc2\xae',
 
703
                         osutils.safe_file_id('foo\xc2\xae'))
 
704
 
 
705
    def test_none(self):
 
706
        """Currently, None is a valid revision_id"""
 
707
        self.assertEqual(None, osutils.safe_file_id(None))
 
708
 
 
709
 
 
710
class TestWin32Funcs(tests.TestCase):
 
711
    """Test that _win32 versions of os utilities return appropriate paths."""
 
712
 
 
713
    def test_abspath(self):
 
714
        self.assertEqual('C:/foo', osutils._win32_abspath('C:\\foo'))
 
715
        self.assertEqual('C:/foo', osutils._win32_abspath('C:/foo'))
 
716
        self.assertEqual('//HOST/path', osutils._win32_abspath(r'\\HOST\path'))
 
717
        self.assertEqual('//HOST/path', osutils._win32_abspath('//HOST/path'))
 
718
 
 
719
    def test_realpath(self):
 
720
        self.assertEqual('C:/foo', osutils._win32_realpath('C:\\foo'))
 
721
        self.assertEqual('C:/foo', osutils._win32_realpath('C:/foo'))
 
722
 
 
723
    def test_pathjoin(self):
 
724
        self.assertEqual('path/to/foo',
 
725
                         osutils._win32_pathjoin('path', 'to', 'foo'))
 
726
        self.assertEqual('C:/foo',
 
727
                         osutils._win32_pathjoin('path\\to', 'C:\\foo'))
 
728
        self.assertEqual('C:/foo',
 
729
                         osutils._win32_pathjoin('path/to', 'C:/foo'))
 
730
        self.assertEqual('path/to/foo',
 
731
                         osutils._win32_pathjoin('path/to/', 'foo'))
 
732
        self.assertEqual('/foo',
 
733
                         osutils._win32_pathjoin('C:/path/to/', '/foo'))
 
734
        self.assertEqual('/foo',
 
735
                         osutils._win32_pathjoin('C:\\path\\to\\', '\\foo'))
 
736
 
 
737
    def test_normpath(self):
 
738
        self.assertEqual('path/to/foo',
 
739
                         osutils._win32_normpath(r'path\\from\..\to\.\foo'))
 
740
        self.assertEqual('path/to/foo',
 
741
                         osutils._win32_normpath('path//from/../to/./foo'))
 
742
 
 
743
    def test_getcwd(self):
 
744
        cwd = osutils._win32_getcwd()
 
745
        os_cwd = os.getcwdu()
 
746
        self.assertEqual(os_cwd[1:].replace('\\', '/'), cwd[1:])
 
747
        # win32 is inconsistent whether it returns lower or upper case
 
748
        # and even if it was consistent the user might type the other
 
749
        # so we force it to uppercase
 
750
        # running python.exe under cmd.exe return capital C:\\
 
751
        # running win32 python inside a cygwin shell returns lowercase
 
752
        self.assertEqual(os_cwd[0].upper(), cwd[0])
 
753
 
 
754
    def test_fixdrive(self):
 
755
        self.assertEqual('H:/foo', osutils._win32_fixdrive('h:/foo'))
 
756
        self.assertEqual('H:/foo', osutils._win32_fixdrive('H:/foo'))
 
757
        self.assertEqual('C:\\foo', osutils._win32_fixdrive('c:\\foo'))
 
758
 
 
759
    def test_win98_abspath(self):
 
760
        # absolute path
 
761
        self.assertEqual('C:/foo', osutils._win98_abspath('C:\\foo'))
 
762
        self.assertEqual('C:/foo', osutils._win98_abspath('C:/foo'))
 
763
        # UNC path
 
764
        self.assertEqual('//HOST/path', osutils._win98_abspath(r'\\HOST\path'))
 
765
        self.assertEqual('//HOST/path', osutils._win98_abspath('//HOST/path'))
 
766
        # relative path
 
767
        cwd = osutils.getcwd().rstrip('/')
 
768
        drive = osutils._nt_splitdrive(cwd)[0]
 
769
        self.assertEqual(cwd+'/path', osutils._win98_abspath('path'))
 
770
        self.assertEqual(drive+'/path', osutils._win98_abspath('/path'))
 
771
        # unicode path
 
772
        u = u'\u1234'
 
773
        self.assertEqual(cwd+'/'+u, osutils._win98_abspath(u))
 
774
 
 
775
 
 
776
class TestWin32FuncsDirs(tests.TestCaseInTempDir):
 
777
    """Test win32 functions that create files."""
 
778
 
 
779
    def test_getcwd(self):
 
780
        self.requireFeature(tests.UnicodeFilenameFeature)
 
781
        os.mkdir(u'mu-\xb5')
 
782
        os.chdir(u'mu-\xb5')
 
783
        # TODO: jam 20060427 This will probably fail on Mac OSX because
 
784
        #       it will change the normalization of B\xe5gfors
 
785
        #       Consider using a different unicode character, or make
 
786
        #       osutils.getcwd() renormalize the path.
 
787
        self.assertEndsWith(osutils._win32_getcwd(), u'mu-\xb5')
 
788
 
 
789
    def test_minimum_path_selection(self):
 
790
        self.assertEqual(set(),
 
791
            osutils.minimum_path_selection([]))
 
792
        self.assertEqual(set(['a', 'b']),
 
793
            osutils.minimum_path_selection(['a', 'b']))
 
794
        self.assertEqual(set(['a/', 'b']),
 
795
            osutils.minimum_path_selection(['a/', 'b']))
 
796
        self.assertEqual(set(['a/', 'b']),
 
797
            osutils.minimum_path_selection(['a/c', 'a/', 'b']))
 
798
        self.assertEqual(set(['a-b', 'a', 'a0b']),
 
799
            osutils.minimum_path_selection(['a-b', 'a/b', 'a0b', 'a']))
 
800
 
 
801
    def test_mkdtemp(self):
 
802
        tmpdir = osutils._win32_mkdtemp(dir='.')
 
803
        self.assertFalse('\\' in tmpdir)
 
804
 
 
805
    def test_rename(self):
 
806
        a = open('a', 'wb')
 
807
        a.write('foo\n')
 
808
        a.close()
 
809
        b = open('b', 'wb')
 
810
        b.write('baz\n')
 
811
        b.close()
 
812
 
 
813
        osutils._win32_rename('b', 'a')
 
814
        self.failUnlessExists('a')
 
815
        self.failIfExists('b')
 
816
        self.assertFileEqual('baz\n', 'a')
 
817
 
 
818
    def test_rename_missing_file(self):
 
819
        a = open('a', 'wb')
 
820
        a.write('foo\n')
 
821
        a.close()
 
822
 
 
823
        try:
 
824
            osutils._win32_rename('b', 'a')
 
825
        except (IOError, OSError), e:
 
826
            self.assertEqual(errno.ENOENT, e.errno)
 
827
        self.assertFileEqual('foo\n', 'a')
 
828
 
 
829
    def test_rename_missing_dir(self):
 
830
        os.mkdir('a')
 
831
        try:
 
832
            osutils._win32_rename('b', 'a')
 
833
        except (IOError, OSError), e:
 
834
            self.assertEqual(errno.ENOENT, e.errno)
 
835
 
 
836
    def test_rename_current_dir(self):
 
837
        os.mkdir('a')
 
838
        os.chdir('a')
 
839
        # You can't rename the working directory
 
840
        # doing rename non-existant . usually
 
841
        # just raises ENOENT, since non-existant
 
842
        # doesn't exist.
 
843
        try:
 
844
            osutils._win32_rename('b', '.')
 
845
        except (IOError, OSError), e:
 
846
            self.assertEqual(errno.ENOENT, e.errno)
 
847
 
 
848
    def test_splitpath(self):
 
849
        def check(expected, path):
 
850
            self.assertEqual(expected, osutils.splitpath(path))
 
851
 
 
852
        check(['a'], 'a')
 
853
        check(['a', 'b'], 'a/b')
 
854
        check(['a', 'b'], 'a/./b')
 
855
        check(['a', '.b'], 'a/.b')
 
856
        check(['a', '.b'], 'a\\.b')
 
857
 
 
858
        self.assertRaises(errors.BzrError, osutils.splitpath, 'a/../b')
 
859
 
 
860
 
 
861
class TestMacFuncsDirs(tests.TestCaseInTempDir):
 
862
    """Test mac special functions that require directories."""
 
863
 
 
864
    def test_getcwd(self):
 
865
        self.requireFeature(tests.UnicodeFilenameFeature)
 
866
        os.mkdir(u'B\xe5gfors')
 
867
        os.chdir(u'B\xe5gfors')
 
868
        self.assertEndsWith(osutils._mac_getcwd(), u'B\xe5gfors')
 
869
 
 
870
    def test_getcwd_nonnorm(self):
 
871
        self.requireFeature(tests.UnicodeFilenameFeature)
 
872
        # Test that _mac_getcwd() will normalize this path
 
873
        os.mkdir(u'Ba\u030agfors')
 
874
        os.chdir(u'Ba\u030agfors')
 
875
        self.assertEndsWith(osutils._mac_getcwd(), u'B\xe5gfors')
 
876
 
 
877
 
 
878
class TestChunksToLines(tests.TestCase):
 
879
 
 
880
    def test_smoketest(self):
 
881
        self.assertEqual(['foo\n', 'bar\n', 'baz\n'],
 
882
                         osutils.chunks_to_lines(['foo\nbar', '\nbaz\n']))
 
883
        self.assertEqual(['foo\n', 'bar\n', 'baz\n'],
 
884
                         osutils.chunks_to_lines(['foo\n', 'bar\n', 'baz\n']))
 
885
 
 
886
    def test_osutils_binding(self):
 
887
        from bzrlib.tests import test__chunks_to_lines
 
888
        if test__chunks_to_lines.CompiledChunksToLinesFeature.available():
 
889
            from bzrlib._chunks_to_lines_pyx import chunks_to_lines
 
890
        else:
 
891
            from bzrlib._chunks_to_lines_py import chunks_to_lines
 
892
        self.assertIs(chunks_to_lines, osutils.chunks_to_lines)
 
893
 
 
894
 
 
895
class TestSplitLines(tests.TestCase):
 
896
 
 
897
    def test_split_unicode(self):
 
898
        self.assertEqual([u'foo\n', u'bar\xae'],
 
899
                         osutils.split_lines(u'foo\nbar\xae'))
 
900
        self.assertEqual([u'foo\n', u'bar\xae\n'],
 
901
                         osutils.split_lines(u'foo\nbar\xae\n'))
 
902
 
 
903
    def test_split_with_carriage_returns(self):
 
904
        self.assertEqual(['foo\rbar\n'],
 
905
                         osutils.split_lines('foo\rbar\n'))
 
906
 
 
907
 
 
908
class TestWalkDirs(tests.TestCaseInTempDir):
 
909
 
 
910
    def assertExpectedBlocks(self, expected, result):
 
911
        self.assertEqual(expected,
 
912
                         [(dirinfo, [line[0:3] for line in block])
 
913
                          for dirinfo, block in result])
 
914
 
 
915
    def test_walkdirs(self):
 
916
        tree = [
 
917
            '.bzr',
 
918
            '0file',
 
919
            '1dir/',
 
920
            '1dir/0file',
 
921
            '1dir/1dir/',
 
922
            '2file'
 
923
            ]
 
924
        self.build_tree(tree)
 
925
        expected_dirblocks = [
 
926
                (('', '.'),
 
927
                 [('0file', '0file', 'file'),
 
928
                  ('1dir', '1dir', 'directory'),
 
929
                  ('2file', '2file', 'file'),
 
930
                 ]
 
931
                ),
 
932
                (('1dir', './1dir'),
 
933
                 [('1dir/0file', '0file', 'file'),
 
934
                  ('1dir/1dir', '1dir', 'directory'),
 
935
                 ]
 
936
                ),
 
937
                (('1dir/1dir', './1dir/1dir'),
 
938
                 [
 
939
                 ]
 
940
                ),
 
941
            ]
 
942
        result = []
 
943
        found_bzrdir = False
 
944
        for dirdetail, dirblock in osutils.walkdirs('.'):
 
945
            if len(dirblock) and dirblock[0][1] == '.bzr':
 
946
                # this tests the filtering of selected paths
 
947
                found_bzrdir = True
 
948
                del dirblock[0]
 
949
            result.append((dirdetail, dirblock))
 
950
 
 
951
        self.assertTrue(found_bzrdir)
 
952
        self.assertExpectedBlocks(expected_dirblocks, result)
 
953
        # you can search a subdir only, with a supplied prefix.
 
954
        result = []
 
955
        for dirblock in osutils.walkdirs('./1dir', '1dir'):
 
956
            result.append(dirblock)
 
957
        self.assertExpectedBlocks(expected_dirblocks[1:], result)
 
958
 
 
959
    def test_walkdirs_os_error(self):
 
960
        # <https://bugs.edge.launchpad.net/bzr/+bug/338653>
 
961
        # Pyrex readdir didn't raise useful messages if it had an error
 
962
        # reading the directory
 
963
        if sys.platform == 'win32':
 
964
            raise tests.TestNotApplicable(
 
965
                "readdir IOError not tested on win32")
 
966
        os.mkdir("test-unreadable")
 
967
        os.chmod("test-unreadable", 0000)
 
968
        # must chmod it back so that it can be removed
 
969
        self.addCleanup(os.chmod, "test-unreadable", 0700)
 
970
        # The error is not raised until the generator is actually evaluated.
 
971
        # (It would be ok if it happened earlier but at the moment it
 
972
        # doesn't.)
 
973
        e = self.assertRaises(OSError, list, osutils._walkdirs_utf8("."))
 
974
        self.assertEquals('./test-unreadable', e.filename)
 
975
        self.assertEquals(errno.EACCES, e.errno)
 
976
        # Ensure the message contains the file name
 
977
        self.assertContainsRe(str(e), "\./test-unreadable")
 
978
 
 
979
    def test__walkdirs_utf8(self):
 
980
        tree = [
 
981
            '.bzr',
 
982
            '0file',
 
983
            '1dir/',
 
984
            '1dir/0file',
 
985
            '1dir/1dir/',
 
986
            '2file'
 
987
            ]
 
988
        self.build_tree(tree)
 
989
        expected_dirblocks = [
 
990
                (('', '.'),
 
991
                 [('0file', '0file', 'file'),
 
992
                  ('1dir', '1dir', 'directory'),
 
993
                  ('2file', '2file', 'file'),
 
994
                 ]
 
995
                ),
 
996
                (('1dir', './1dir'),
 
997
                 [('1dir/0file', '0file', 'file'),
 
998
                  ('1dir/1dir', '1dir', 'directory'),
 
999
                 ]
 
1000
                ),
 
1001
                (('1dir/1dir', './1dir/1dir'),
 
1002
                 [
 
1003
                 ]
 
1004
                ),
 
1005
            ]
 
1006
        result = []
 
1007
        found_bzrdir = False
 
1008
        for dirdetail, dirblock in osutils._walkdirs_utf8('.'):
 
1009
            if len(dirblock) and dirblock[0][1] == '.bzr':
 
1010
                # this tests the filtering of selected paths
 
1011
                found_bzrdir = True
 
1012
                del dirblock[0]
 
1013
            result.append((dirdetail, dirblock))
 
1014
 
 
1015
        self.assertTrue(found_bzrdir)
 
1016
        self.assertExpectedBlocks(expected_dirblocks, result)
 
1017
 
 
1018
        # you can search a subdir only, with a supplied prefix.
 
1019
        result = []
 
1020
        for dirblock in osutils.walkdirs('./1dir', '1dir'):
 
1021
            result.append(dirblock)
 
1022
        self.assertExpectedBlocks(expected_dirblocks[1:], result)
 
1023
 
 
1024
    def _filter_out_stat(self, result):
 
1025
        """Filter out the stat value from the walkdirs result"""
 
1026
        for dirdetail, dirblock in result:
 
1027
            new_dirblock = []
 
1028
            for info in dirblock:
 
1029
                # Ignore info[3] which is the stat
 
1030
                new_dirblock.append((info[0], info[1], info[2], info[4]))
 
1031
            dirblock[:] = new_dirblock
 
1032
 
 
1033
    def _save_platform_info(self):
 
1034
        cur_winver = win32utils.winver
 
1035
        cur_fs_enc = osutils._fs_enc
 
1036
        cur_dir_reader = osutils._selected_dir_reader
 
1037
        def restore():
 
1038
            win32utils.winver = cur_winver
 
1039
            osutils._fs_enc = cur_fs_enc
 
1040
            osutils._selected_dir_reader = cur_dir_reader
 
1041
        self.addCleanup(restore)
 
1042
 
 
1043
    def assertDirReaderIs(self, expected):
 
1044
        """Assert the right implementation for _walkdirs_utf8 is chosen."""
 
1045
        # Force it to redetect
 
1046
        osutils._selected_dir_reader = None
 
1047
        # Nothing to list, but should still trigger the selection logic
 
1048
        self.assertEqual([(('', '.'), [])], list(osutils._walkdirs_utf8('.')))
 
1049
        self.assertIsInstance(osutils._selected_dir_reader, expected)
 
1050
 
 
1051
    def test_force_walkdirs_utf8_fs_utf8(self):
 
1052
        self.requireFeature(UTF8DirReaderFeature)
 
1053
        self._save_platform_info()
 
1054
        win32utils.winver = None # Avoid the win32 detection code
 
1055
        osutils._fs_enc = 'UTF-8'
 
1056
        self.assertDirReaderIs(UTF8DirReaderFeature.reader)
 
1057
 
 
1058
    def test_force_walkdirs_utf8_fs_ascii(self):
 
1059
        self.requireFeature(UTF8DirReaderFeature)
 
1060
        self._save_platform_info()
 
1061
        win32utils.winver = None # Avoid the win32 detection code
 
1062
        osutils._fs_enc = 'US-ASCII'
 
1063
        self.assertDirReaderIs(UTF8DirReaderFeature.reader)
 
1064
 
 
1065
    def test_force_walkdirs_utf8_fs_ANSI(self):
 
1066
        self.requireFeature(UTF8DirReaderFeature)
 
1067
        self._save_platform_info()
 
1068
        win32utils.winver = None # Avoid the win32 detection code
 
1069
        osutils._fs_enc = 'ANSI_X3.4-1968'
 
1070
        self.assertDirReaderIs(UTF8DirReaderFeature.reader)
 
1071
 
 
1072
    def test_force_walkdirs_utf8_fs_latin1(self):
 
1073
        self._save_platform_info()
 
1074
        win32utils.winver = None # Avoid the win32 detection code
 
1075
        osutils._fs_enc = 'latin1'
 
1076
        self.assertDirReaderIs(osutils.UnicodeDirReader)
 
1077
 
 
1078
    def test_force_walkdirs_utf8_nt(self):
 
1079
        # Disabled because the thunk of the whole walkdirs api is disabled.
 
1080
        self.requireFeature(test__walkdirs_win32.Win32ReadDirFeature)
 
1081
        self._save_platform_info()
 
1082
        win32utils.winver = 'Windows NT'
 
1083
        from bzrlib._walkdirs_win32 import Win32ReadDir
 
1084
        self.assertDirReaderIs(Win32ReadDir)
 
1085
 
 
1086
    def test_force_walkdirs_utf8_98(self):
 
1087
        self.requireFeature(test__walkdirs_win32.Win32ReadDirFeature)
 
1088
        self._save_platform_info()
 
1089
        win32utils.winver = 'Windows 98'
 
1090
        self.assertDirReaderIs(osutils.UnicodeDirReader)
 
1091
 
 
1092
    def test_unicode_walkdirs(self):
 
1093
        """Walkdirs should always return unicode paths."""
 
1094
        self.requireFeature(tests.UnicodeFilenameFeature)
 
1095
        name0 = u'0file-\xb6'
 
1096
        name1 = u'1dir-\u062c\u0648'
 
1097
        name2 = u'2file-\u0633'
 
1098
        tree = [
 
1099
            name0,
 
1100
            name1 + '/',
 
1101
            name1 + '/' + name0,
 
1102
            name1 + '/' + name1 + '/',
 
1103
            name2,
 
1104
            ]
 
1105
        self.build_tree(tree)
 
1106
        expected_dirblocks = [
 
1107
                ((u'', u'.'),
 
1108
                 [(name0, name0, 'file', './' + name0),
 
1109
                  (name1, name1, 'directory', './' + name1),
 
1110
                  (name2, name2, 'file', './' + name2),
 
1111
                 ]
 
1112
                ),
 
1113
                ((name1, './' + name1),
 
1114
                 [(name1 + '/' + name0, name0, 'file', './' + name1
 
1115
                                                        + '/' + name0),
 
1116
                  (name1 + '/' + name1, name1, 'directory', './' + name1
 
1117
                                                            + '/' + name1),
 
1118
                 ]
 
1119
                ),
 
1120
                ((name1 + '/' + name1, './' + name1 + '/' + name1),
 
1121
                 [
 
1122
                 ]
 
1123
                ),
 
1124
            ]
 
1125
        result = list(osutils.walkdirs('.'))
 
1126
        self._filter_out_stat(result)
 
1127
        self.assertEqual(expected_dirblocks, result)
 
1128
        result = list(osutils.walkdirs(u'./'+name1, name1))
 
1129
        self._filter_out_stat(result)
 
1130
        self.assertEqual(expected_dirblocks[1:], result)
 
1131
 
 
1132
    def test_unicode__walkdirs_utf8(self):
 
1133
        """Walkdirs_utf8 should always return utf8 paths.
 
1134
 
 
1135
        The abspath portion might be in unicode or utf-8
 
1136
        """
 
1137
        self.requireFeature(tests.UnicodeFilenameFeature)
 
1138
        name0 = u'0file-\xb6'
 
1139
        name1 = u'1dir-\u062c\u0648'
 
1140
        name2 = u'2file-\u0633'
 
1141
        tree = [
 
1142
            name0,
 
1143
            name1 + '/',
 
1144
            name1 + '/' + name0,
 
1145
            name1 + '/' + name1 + '/',
 
1146
            name2,
 
1147
            ]
 
1148
        self.build_tree(tree)
 
1149
        name0 = name0.encode('utf8')
 
1150
        name1 = name1.encode('utf8')
 
1151
        name2 = name2.encode('utf8')
 
1152
 
 
1153
        expected_dirblocks = [
 
1154
                (('', '.'),
 
1155
                 [(name0, name0, 'file', './' + name0),
 
1156
                  (name1, name1, 'directory', './' + name1),
 
1157
                  (name2, name2, 'file', './' + name2),
 
1158
                 ]
 
1159
                ),
 
1160
                ((name1, './' + name1),
 
1161
                 [(name1 + '/' + name0, name0, 'file', './' + name1
 
1162
                                                        + '/' + name0),
 
1163
                  (name1 + '/' + name1, name1, 'directory', './' + name1
 
1164
                                                            + '/' + name1),
 
1165
                 ]
 
1166
                ),
 
1167
                ((name1 + '/' + name1, './' + name1 + '/' + name1),
 
1168
                 [
 
1169
                 ]
 
1170
                ),
 
1171
            ]
 
1172
        result = []
 
1173
        # For ease in testing, if walkdirs_utf8 returns Unicode, assert that
 
1174
        # all abspaths are Unicode, and encode them back into utf8.
 
1175
        for dirdetail, dirblock in osutils._walkdirs_utf8('.'):
 
1176
            self.assertIsInstance(dirdetail[0], str)
 
1177
            if isinstance(dirdetail[1], unicode):
 
1178
                dirdetail = (dirdetail[0], dirdetail[1].encode('utf8'))
 
1179
                dirblock = [list(info) for info in dirblock]
 
1180
                for info in dirblock:
 
1181
                    self.assertIsInstance(info[4], unicode)
 
1182
                    info[4] = info[4].encode('utf8')
 
1183
            new_dirblock = []
 
1184
            for info in dirblock:
 
1185
                self.assertIsInstance(info[0], str)
 
1186
                self.assertIsInstance(info[1], str)
 
1187
                self.assertIsInstance(info[4], str)
 
1188
                # Remove the stat information
 
1189
                new_dirblock.append((info[0], info[1], info[2], info[4]))
 
1190
            result.append((dirdetail, new_dirblock))
 
1191
        self.assertEqual(expected_dirblocks, result)
 
1192
 
 
1193
    def test__walkdirs_utf8_with_unicode_fs(self):
 
1194
        """UnicodeDirReader should be a safe fallback everywhere
 
1195
 
 
1196
        The abspath portion should be in unicode
 
1197
        """
 
1198
        self.requireFeature(tests.UnicodeFilenameFeature)
 
1199
        # Use the unicode reader. TODO: split into driver-and-driven unit
 
1200
        # tests.
 
1201
        self._save_platform_info()
 
1202
        osutils._selected_dir_reader = osutils.UnicodeDirReader()
 
1203
        name0u = u'0file-\xb6'
 
1204
        name1u = u'1dir-\u062c\u0648'
 
1205
        name2u = u'2file-\u0633'
 
1206
        tree = [
 
1207
            name0u,
 
1208
            name1u + '/',
 
1209
            name1u + '/' + name0u,
 
1210
            name1u + '/' + name1u + '/',
 
1211
            name2u,
 
1212
            ]
 
1213
        self.build_tree(tree)
 
1214
        name0 = name0u.encode('utf8')
 
1215
        name1 = name1u.encode('utf8')
 
1216
        name2 = name2u.encode('utf8')
 
1217
 
 
1218
        # All of the abspaths should be in unicode, all of the relative paths
 
1219
        # should be in utf8
 
1220
        expected_dirblocks = [
 
1221
                (('', '.'),
 
1222
                 [(name0, name0, 'file', './' + name0u),
 
1223
                  (name1, name1, 'directory', './' + name1u),
 
1224
                  (name2, name2, 'file', './' + name2u),
 
1225
                 ]
 
1226
                ),
 
1227
                ((name1, './' + name1u),
 
1228
                 [(name1 + '/' + name0, name0, 'file', './' + name1u
 
1229
                                                        + '/' + name0u),
 
1230
                  (name1 + '/' + name1, name1, 'directory', './' + name1u
 
1231
                                                            + '/' + name1u),
 
1232
                 ]
 
1233
                ),
 
1234
                ((name1 + '/' + name1, './' + name1u + '/' + name1u),
 
1235
                 [
 
1236
                 ]
 
1237
                ),
 
1238
            ]
 
1239
        result = list(osutils._walkdirs_utf8('.'))
 
1240
        self._filter_out_stat(result)
 
1241
        self.assertEqual(expected_dirblocks, result)
 
1242
 
 
1243
    def test__walkdirs_utf8_win32readdir(self):
 
1244
        self.requireFeature(test__walkdirs_win32.Win32ReadDirFeature)
 
1245
        self.requireFeature(tests.UnicodeFilenameFeature)
 
1246
        from bzrlib._walkdirs_win32 import Win32ReadDir
 
1247
        self._save_platform_info()
 
1248
        osutils._selected_dir_reader = Win32ReadDir()
 
1249
        name0u = u'0file-\xb6'
 
1250
        name1u = u'1dir-\u062c\u0648'
 
1251
        name2u = u'2file-\u0633'
 
1252
        tree = [
 
1253
            name0u,
 
1254
            name1u + '/',
 
1255
            name1u + '/' + name0u,
 
1256
            name1u + '/' + name1u + '/',
 
1257
            name2u,
 
1258
            ]
 
1259
        self.build_tree(tree)
 
1260
        name0 = name0u.encode('utf8')
 
1261
        name1 = name1u.encode('utf8')
 
1262
        name2 = name2u.encode('utf8')
 
1263
 
 
1264
        # All of the abspaths should be in unicode, all of the relative paths
 
1265
        # should be in utf8
 
1266
        expected_dirblocks = [
 
1267
                (('', '.'),
 
1268
                 [(name0, name0, 'file', './' + name0u),
 
1269
                  (name1, name1, 'directory', './' + name1u),
 
1270
                  (name2, name2, 'file', './' + name2u),
 
1271
                 ]
 
1272
                ),
 
1273
                ((name1, './' + name1u),
 
1274
                 [(name1 + '/' + name0, name0, 'file', './' + name1u
 
1275
                                                        + '/' + name0u),
 
1276
                  (name1 + '/' + name1, name1, 'directory', './' + name1u
 
1277
                                                            + '/' + name1u),
 
1278
                 ]
 
1279
                ),
 
1280
                ((name1 + '/' + name1, './' + name1u + '/' + name1u),
 
1281
                 [
 
1282
                 ]
 
1283
                ),
 
1284
            ]
 
1285
        result = list(osutils._walkdirs_utf8(u'.'))
 
1286
        self._filter_out_stat(result)
 
1287
        self.assertEqual(expected_dirblocks, result)
 
1288
 
 
1289
    def assertStatIsCorrect(self, path, win32stat):
 
1290
        os_stat = os.stat(path)
 
1291
        self.assertEqual(os_stat.st_size, win32stat.st_size)
 
1292
        self.assertAlmostEqual(os_stat.st_mtime, win32stat.st_mtime, places=4)
 
1293
        self.assertAlmostEqual(os_stat.st_ctime, win32stat.st_ctime, places=4)
 
1294
        self.assertAlmostEqual(os_stat.st_atime, win32stat.st_atime, places=4)
 
1295
        self.assertEqual(os_stat.st_dev, win32stat.st_dev)
 
1296
        self.assertEqual(os_stat.st_ino, win32stat.st_ino)
 
1297
        self.assertEqual(os_stat.st_mode, win32stat.st_mode)
 
1298
 
 
1299
    def test__walkdirs_utf_win32_find_file_stat_file(self):
 
1300
        """make sure our Stat values are valid"""
 
1301
        self.requireFeature(test__walkdirs_win32.Win32ReadDirFeature)
 
1302
        self.requireFeature(tests.UnicodeFilenameFeature)
 
1303
        from bzrlib._walkdirs_win32 import Win32ReadDir
 
1304
        name0u = u'0file-\xb6'
 
1305
        name0 = name0u.encode('utf8')
 
1306
        self.build_tree([name0u])
 
1307
        # I hate to sleep() here, but I'm trying to make the ctime different
 
1308
        # from the mtime
 
1309
        time.sleep(2)
 
1310
        f = open(name0u, 'ab')
 
1311
        try:
 
1312
            f.write('just a small update')
 
1313
        finally:
 
1314
            f.close()
 
1315
 
 
1316
        result = Win32ReadDir().read_dir('', u'.')
 
1317
        entry = result[0]
 
1318
        self.assertEqual((name0, name0, 'file'), entry[:3])
 
1319
        self.assertEqual(u'./' + name0u, entry[4])
 
1320
        self.assertStatIsCorrect(entry[4], entry[3])
 
1321
        self.assertNotEqual(entry[3].st_mtime, entry[3].st_ctime)
 
1322
 
 
1323
    def test__walkdirs_utf_win32_find_file_stat_directory(self):
 
1324
        """make sure our Stat values are valid"""
 
1325
        self.requireFeature(test__walkdirs_win32.Win32ReadDirFeature)
 
1326
        self.requireFeature(tests.UnicodeFilenameFeature)
 
1327
        from bzrlib._walkdirs_win32 import Win32ReadDir
 
1328
        name0u = u'0dir-\u062c\u0648'
 
1329
        name0 = name0u.encode('utf8')
 
1330
        self.build_tree([name0u + '/'])
 
1331
 
 
1332
        result = Win32ReadDir().read_dir('', u'.')
 
1333
        entry = result[0]
 
1334
        self.assertEqual((name0, name0, 'directory'), entry[:3])
 
1335
        self.assertEqual(u'./' + name0u, entry[4])
 
1336
        self.assertStatIsCorrect(entry[4], entry[3])
 
1337
 
 
1338
    def assertPathCompare(self, path_less, path_greater):
 
1339
        """check that path_less and path_greater compare correctly."""
 
1340
        self.assertEqual(0, osutils.compare_paths_prefix_order(
 
1341
            path_less, path_less))
 
1342
        self.assertEqual(0, osutils.compare_paths_prefix_order(
 
1343
            path_greater, path_greater))
 
1344
        self.assertEqual(-1, osutils.compare_paths_prefix_order(
 
1345
            path_less, path_greater))
 
1346
        self.assertEqual(1, osutils.compare_paths_prefix_order(
 
1347
            path_greater, path_less))
 
1348
 
 
1349
    def test_compare_paths_prefix_order(self):
 
1350
        # root before all else
 
1351
        self.assertPathCompare("/", "/a")
 
1352
        # alpha within a dir
 
1353
        self.assertPathCompare("/a", "/b")
 
1354
        self.assertPathCompare("/b", "/z")
 
1355
        # high dirs before lower.
 
1356
        self.assertPathCompare("/z", "/a/a")
 
1357
        # except if the deeper dir should be output first
 
1358
        self.assertPathCompare("/a/b/c", "/d/g")
 
1359
        # lexical betwen dirs of the same height
 
1360
        self.assertPathCompare("/a/z", "/z/z")
 
1361
        self.assertPathCompare("/a/c/z", "/a/d/e")
 
1362
 
 
1363
        # this should also be consistent for no leading / paths
 
1364
        # root before all else
 
1365
        self.assertPathCompare("", "a")
 
1366
        # alpha within a dir
 
1367
        self.assertPathCompare("a", "b")
 
1368
        self.assertPathCompare("b", "z")
 
1369
        # high dirs before lower.
 
1370
        self.assertPathCompare("z", "a/a")
 
1371
        # except if the deeper dir should be output first
 
1372
        self.assertPathCompare("a/b/c", "d/g")
 
1373
        # lexical betwen dirs of the same height
 
1374
        self.assertPathCompare("a/z", "z/z")
 
1375
        self.assertPathCompare("a/c/z", "a/d/e")
 
1376
 
 
1377
    def test_path_prefix_sorting(self):
 
1378
        """Doing a sort on path prefix should match our sample data."""
 
1379
        original_paths = [
 
1380
            'a',
 
1381
            'a/b',
 
1382
            'a/b/c',
 
1383
            'b',
 
1384
            'b/c',
 
1385
            'd',
 
1386
            'd/e',
 
1387
            'd/e/f',
 
1388
            'd/f',
 
1389
            'd/g',
 
1390
            'g',
 
1391
            ]
 
1392
 
 
1393
        dir_sorted_paths = [
 
1394
            'a',
 
1395
            'b',
 
1396
            'd',
 
1397
            'g',
 
1398
            'a/b',
 
1399
            'a/b/c',
 
1400
            'b/c',
 
1401
            'd/e',
 
1402
            'd/f',
 
1403
            'd/g',
 
1404
            'd/e/f',
 
1405
            ]
 
1406
 
 
1407
        self.assertEqual(
 
1408
            dir_sorted_paths,
 
1409
            sorted(original_paths, key=osutils.path_prefix_key))
 
1410
        # using the comparison routine shoudl work too:
 
1411
        self.assertEqual(
 
1412
            dir_sorted_paths,
 
1413
            sorted(original_paths, cmp=osutils.compare_paths_prefix_order))
 
1414
 
 
1415
 
 
1416
class TestCopyTree(tests.TestCaseInTempDir):
 
1417
 
 
1418
    def test_copy_basic_tree(self):
 
1419
        self.build_tree(['source/', 'source/a', 'source/b/', 'source/b/c'])
 
1420
        osutils.copy_tree('source', 'target')
 
1421
        self.assertEqual(['a', 'b'], sorted(os.listdir('target')))
 
1422
        self.assertEqual(['c'], os.listdir('target/b'))
 
1423
 
 
1424
    def test_copy_tree_target_exists(self):
 
1425
        self.build_tree(['source/', 'source/a', 'source/b/', 'source/b/c',
 
1426
                         'target/'])
 
1427
        osutils.copy_tree('source', 'target')
 
1428
        self.assertEqual(['a', 'b'], sorted(os.listdir('target')))
 
1429
        self.assertEqual(['c'], os.listdir('target/b'))
 
1430
 
 
1431
    def test_copy_tree_symlinks(self):
 
1432
        self.requireFeature(tests.SymlinkFeature)
 
1433
        self.build_tree(['source/'])
 
1434
        os.symlink('a/generic/path', 'source/lnk')
 
1435
        osutils.copy_tree('source', 'target')
 
1436
        self.assertEqual(['lnk'], os.listdir('target'))
 
1437
        self.assertEqual('a/generic/path', os.readlink('target/lnk'))
 
1438
 
 
1439
    def test_copy_tree_handlers(self):
 
1440
        processed_files = []
 
1441
        processed_links = []
 
1442
        def file_handler(from_path, to_path):
 
1443
            processed_files.append(('f', from_path, to_path))
 
1444
        def dir_handler(from_path, to_path):
 
1445
            processed_files.append(('d', from_path, to_path))
 
1446
        def link_handler(from_path, to_path):
 
1447
            processed_links.append((from_path, to_path))
 
1448
        handlers = {'file':file_handler,
 
1449
                    'directory':dir_handler,
 
1450
                    'symlink':link_handler,
 
1451
                   }
 
1452
 
 
1453
        self.build_tree(['source/', 'source/a', 'source/b/', 'source/b/c'])
 
1454
        if osutils.has_symlinks():
 
1455
            os.symlink('a/generic/path', 'source/lnk')
 
1456
        osutils.copy_tree('source', 'target', handlers=handlers)
 
1457
 
 
1458
        self.assertEqual([('d', 'source', 'target'),
 
1459
                          ('f', 'source/a', 'target/a'),
 
1460
                          ('d', 'source/b', 'target/b'),
 
1461
                          ('f', 'source/b/c', 'target/b/c'),
 
1462
                         ], processed_files)
 
1463
        self.failIfExists('target')
 
1464
        if osutils.has_symlinks():
 
1465
            self.assertEqual([('source/lnk', 'target/lnk')], processed_links)
 
1466
 
 
1467
 
 
1468
class TestSetUnsetEnv(tests.TestCase):
 
1469
    """Test updating the environment"""
 
1470
 
 
1471
    def setUp(self):
 
1472
        super(TestSetUnsetEnv, self).setUp()
 
1473
 
 
1474
        self.assertEqual(None, os.environ.get('BZR_TEST_ENV_VAR'),
 
1475
                         'Environment was not cleaned up properly.'
 
1476
                         ' Variable BZR_TEST_ENV_VAR should not exist.')
 
1477
        def cleanup():
 
1478
            if 'BZR_TEST_ENV_VAR' in os.environ:
 
1479
                del os.environ['BZR_TEST_ENV_VAR']
 
1480
 
 
1481
        self.addCleanup(cleanup)
 
1482
 
 
1483
    def test_set(self):
 
1484
        """Test that we can set an env variable"""
 
1485
        old = osutils.set_or_unset_env('BZR_TEST_ENV_VAR', 'foo')
 
1486
        self.assertEqual(None, old)
 
1487
        self.assertEqual('foo', os.environ.get('BZR_TEST_ENV_VAR'))
 
1488
 
 
1489
    def test_double_set(self):
 
1490
        """Test that we get the old value out"""
 
1491
        osutils.set_or_unset_env('BZR_TEST_ENV_VAR', 'foo')
 
1492
        old = osutils.set_or_unset_env('BZR_TEST_ENV_VAR', 'bar')
 
1493
        self.assertEqual('foo', old)
 
1494
        self.assertEqual('bar', os.environ.get('BZR_TEST_ENV_VAR'))
 
1495
 
 
1496
    def test_unicode(self):
 
1497
        """Environment can only contain plain strings
 
1498
 
 
1499
        So Unicode strings must be encoded.
 
1500
        """
 
1501
        uni_val, env_val = tests.probe_unicode_in_user_encoding()
 
1502
        if uni_val is None:
 
1503
            raise tests.TestSkipped(
 
1504
                'Cannot find a unicode character that works in encoding %s'
 
1505
                % (osutils.get_user_encoding(),))
 
1506
 
 
1507
        old = osutils.set_or_unset_env('BZR_TEST_ENV_VAR', uni_val)
 
1508
        self.assertEqual(env_val, os.environ.get('BZR_TEST_ENV_VAR'))
 
1509
 
 
1510
    def test_unset(self):
 
1511
        """Test that passing None will remove the env var"""
 
1512
        osutils.set_or_unset_env('BZR_TEST_ENV_VAR', 'foo')
 
1513
        old = osutils.set_or_unset_env('BZR_TEST_ENV_VAR', None)
 
1514
        self.assertEqual('foo', old)
 
1515
        self.assertEqual(None, os.environ.get('BZR_TEST_ENV_VAR'))
 
1516
        self.failIf('BZR_TEST_ENV_VAR' in os.environ)
 
1517
 
 
1518
 
 
1519
class TestSizeShaFile(tests.TestCaseInTempDir):
 
1520
 
 
1521
    def test_sha_empty(self):
 
1522
        self.build_tree_contents([('foo', '')])
 
1523
        expected_sha = osutils.sha_string('')
 
1524
        f = open('foo')
 
1525
        self.addCleanup(f.close)
 
1526
        size, sha = osutils.size_sha_file(f)
 
1527
        self.assertEqual(0, size)
 
1528
        self.assertEqual(expected_sha, sha)
 
1529
 
 
1530
    def test_sha_mixed_endings(self):
 
1531
        text = 'test\r\nwith\nall\rpossible line endings\r\n'
 
1532
        self.build_tree_contents([('foo', text)])
 
1533
        expected_sha = osutils.sha_string(text)
 
1534
        f = open('foo')
 
1535
        self.addCleanup(f.close)
 
1536
        size, sha = osutils.size_sha_file(f)
 
1537
        self.assertEqual(38, size)
 
1538
        self.assertEqual(expected_sha, sha)
 
1539
 
 
1540
 
 
1541
class TestShaFileByName(tests.TestCaseInTempDir):
 
1542
 
 
1543
    def test_sha_empty(self):
 
1544
        self.build_tree_contents([('foo', '')])
 
1545
        expected_sha = osutils.sha_string('')
 
1546
        self.assertEqual(expected_sha, osutils.sha_file_by_name('foo'))
 
1547
 
 
1548
    def test_sha_mixed_endings(self):
 
1549
        text = 'test\r\nwith\nall\rpossible line endings\r\n'
 
1550
        self.build_tree_contents([('foo', text)])
 
1551
        expected_sha = osutils.sha_string(text)
 
1552
        self.assertEqual(expected_sha, osutils.sha_file_by_name('foo'))
 
1553
 
 
1554
 
 
1555
class TestResourceLoading(tests.TestCaseInTempDir):
 
1556
 
 
1557
    def test_resource_string(self):
 
1558
        # test resource in bzrlib
 
1559
        text = osutils.resource_string('bzrlib', 'debug.py')
 
1560
        self.assertContainsRe(text, "debug_flags = set()")
 
1561
        # test resource under bzrlib
 
1562
        text = osutils.resource_string('bzrlib.ui', 'text.py')
 
1563
        self.assertContainsRe(text, "class TextUIFactory")
 
1564
        # test unsupported package
 
1565
        self.assertRaises(errors.BzrError, osutils.resource_string, 'zzzz',
 
1566
            'yyy.xx')
 
1567
        # test unknown resource
 
1568
        self.assertRaises(IOError, osutils.resource_string, 'bzrlib', 'yyy.xx')
 
1569
 
 
1570
 
 
1571
class TestReCompile(tests.TestCase):
 
1572
 
 
1573
    def test_re_compile_checked(self):
 
1574
        r = osutils.re_compile_checked(r'A*', re.IGNORECASE)
 
1575
        self.assertTrue(r.match('aaaa'))
 
1576
        self.assertTrue(r.match('aAaA'))
 
1577
 
 
1578
    def test_re_compile_checked_error(self):
 
1579
        # like https://bugs.launchpad.net/bzr/+bug/251352
 
1580
        err = self.assertRaises(
 
1581
            errors.BzrCommandError,
 
1582
            osutils.re_compile_checked, '*', re.IGNORECASE, 'test case')
 
1583
        self.assertEqual(
 
1584
            "Invalid regular expression in test case: '*': "
 
1585
            "nothing to repeat",
 
1586
            str(err))
 
1587
 
 
1588
 
 
1589
class TestDirReader(tests.TestCaseInTempDir):
 
1590
 
 
1591
    # Set by load_tests
 
1592
    _dir_reader_class = None
 
1593
    _native_to_unicode = None
 
1594
 
 
1595
    def setUp(self):
 
1596
        tests.TestCaseInTempDir.setUp(self)
 
1597
 
 
1598
        # Save platform specific info and reset it
 
1599
        cur_dir_reader = osutils._selected_dir_reader
 
1600
 
 
1601
        def restore():
 
1602
            osutils._selected_dir_reader = cur_dir_reader
 
1603
        self.addCleanup(restore)
 
1604
 
 
1605
        osutils._selected_dir_reader = self._dir_reader_class()
 
1606
 
 
1607
    def _get_ascii_tree(self):
 
1608
        tree = [
 
1609
            '0file',
 
1610
            '1dir/',
 
1611
            '1dir/0file',
 
1612
            '1dir/1dir/',
 
1613
            '2file'
 
1614
            ]
 
1615
        expected_dirblocks = [
 
1616
                (('', '.'),
 
1617
                 [('0file', '0file', 'file'),
 
1618
                  ('1dir', '1dir', 'directory'),
 
1619
                  ('2file', '2file', 'file'),
 
1620
                 ]
 
1621
                ),
 
1622
                (('1dir', './1dir'),
 
1623
                 [('1dir/0file', '0file', 'file'),
 
1624
                  ('1dir/1dir', '1dir', 'directory'),
 
1625
                 ]
 
1626
                ),
 
1627
                (('1dir/1dir', './1dir/1dir'),
 
1628
                 [
 
1629
                 ]
 
1630
                ),
 
1631
            ]
 
1632
        return tree, expected_dirblocks
 
1633
 
 
1634
    def test_walk_cur_dir(self):
 
1635
        tree, expected_dirblocks = self._get_ascii_tree()
 
1636
        self.build_tree(tree)
 
1637
        result = list(osutils._walkdirs_utf8('.'))
 
1638
        # Filter out stat and abspath
 
1639
        self.assertEqual(expected_dirblocks,
 
1640
                         [(dirinfo, [line[0:3] for line in block])
 
1641
                          for dirinfo, block in result])
 
1642
 
 
1643
    def test_walk_sub_dir(self):
 
1644
        tree, expected_dirblocks = self._get_ascii_tree()
 
1645
        self.build_tree(tree)
 
1646
        # you can search a subdir only, with a supplied prefix.
 
1647
        result = list(osutils._walkdirs_utf8('./1dir', '1dir'))
 
1648
        # Filter out stat and abspath
 
1649
        self.assertEqual(expected_dirblocks[1:],
 
1650
                         [(dirinfo, [line[0:3] for line in block])
 
1651
                          for dirinfo, block in result])
 
1652
 
 
1653
    def _get_unicode_tree(self):
 
1654
        name0u = u'0file-\xb6'
 
1655
        name1u = u'1dir-\u062c\u0648'
 
1656
        name2u = u'2file-\u0633'
 
1657
        tree = [
 
1658
            name0u,
 
1659
            name1u + '/',
 
1660
            name1u + '/' + name0u,
 
1661
            name1u + '/' + name1u + '/',
 
1662
            name2u,
 
1663
            ]
 
1664
        name0 = name0u.encode('UTF-8')
 
1665
        name1 = name1u.encode('UTF-8')
 
1666
        name2 = name2u.encode('UTF-8')
 
1667
        expected_dirblocks = [
 
1668
                (('', '.'),
 
1669
                 [(name0, name0, 'file', './' + name0u),
 
1670
                  (name1, name1, 'directory', './' + name1u),
 
1671
                  (name2, name2, 'file', './' + name2u),
 
1672
                 ]
 
1673
                ),
 
1674
                ((name1, './' + name1u),
 
1675
                 [(name1 + '/' + name0, name0, 'file', './' + name1u
 
1676
                                                        + '/' + name0u),
 
1677
                  (name1 + '/' + name1, name1, 'directory', './' + name1u
 
1678
                                                            + '/' + name1u),
 
1679
                 ]
 
1680
                ),
 
1681
                ((name1 + '/' + name1, './' + name1u + '/' + name1u),
 
1682
                 [
 
1683
                 ]
 
1684
                ),
 
1685
            ]
 
1686
        return tree, expected_dirblocks
 
1687
 
 
1688
    def _filter_out(self, raw_dirblocks):
 
1689
        """Filter out a walkdirs_utf8 result.
 
1690
 
 
1691
        stat field is removed, all native paths are converted to unicode
 
1692
        """
 
1693
        filtered_dirblocks = []
 
1694
        for dirinfo, block in raw_dirblocks:
 
1695
            dirinfo = (dirinfo[0], self._native_to_unicode(dirinfo[1]))
 
1696
            details = []
 
1697
            for line in block:
 
1698
                details.append(line[0:3] + (self._native_to_unicode(line[4]), ))
 
1699
            filtered_dirblocks.append((dirinfo, details))
 
1700
        return filtered_dirblocks
 
1701
 
 
1702
    def test_walk_unicode_tree(self):
 
1703
        self.requireFeature(tests.UnicodeFilenameFeature)
 
1704
        tree, expected_dirblocks = self._get_unicode_tree()
 
1705
        self.build_tree(tree)
 
1706
        result = list(osutils._walkdirs_utf8('.'))
 
1707
        self.assertEqual(expected_dirblocks, self._filter_out(result))
 
1708
 
 
1709
    def test_symlink(self):
 
1710
        self.requireFeature(tests.SymlinkFeature)
 
1711
        self.requireFeature(tests.UnicodeFilenameFeature)
 
1712
        target = u'target\N{Euro Sign}'
 
1713
        link_name = u'l\N{Euro Sign}nk'
 
1714
        os.symlink(target, link_name)
 
1715
        target_utf8 = target.encode('UTF-8')
 
1716
        link_name_utf8 = link_name.encode('UTF-8')
 
1717
        expected_dirblocks = [
 
1718
                (('', '.'),
 
1719
                 [(link_name_utf8, link_name_utf8,
 
1720
                   'symlink', './' + link_name),],
 
1721
                 )]
 
1722
        result = list(osutils._walkdirs_utf8('.'))
 
1723
        self.assertEqual(expected_dirblocks, self._filter_out(result))
 
1724
 
 
1725
 
 
1726
class TestReadLink(tests.TestCaseInTempDir):
 
1727
    """Exposes os.readlink() problems and the osutils solution.
 
1728
 
 
1729
    The only guarantee offered by os.readlink(), starting with 2.6, is that a
 
1730
    unicode string will be returned if a unicode string is passed.
 
1731
 
 
1732
    But prior python versions failed to properly encode the passed unicode
 
1733
    string.
 
1734
    """
 
1735
    _test_needs_features = [tests.SymlinkFeature, tests.UnicodeFilenameFeature]
 
1736
 
 
1737
    def setUp(self):
 
1738
        super(tests.TestCaseInTempDir, self).setUp()
 
1739
        self.link = u'l\N{Euro Sign}ink'
 
1740
        self.target = u'targe\N{Euro Sign}t'
 
1741
        os.symlink(self.target, self.link)
 
1742
 
 
1743
    def test_os_readlink_link_encoding(self):
 
1744
        if sys.version_info < (2, 6):
 
1745
            self.assertRaises(UnicodeEncodeError, os.readlink, self.link)
 
1746
        else:
 
1747
            self.assertEquals(self.target,  os.readlink(self.link))
 
1748
 
 
1749
    def test_os_readlink_link_decoding(self):
 
1750
        self.assertEquals(self.target.encode(osutils._fs_enc),
 
1751
                          os.readlink(self.link.encode(osutils._fs_enc)))