~bzr-pqm/bzr/bzr.dev

2729.2.4 by Martin Pool
move some osutils-related tests from test_inv to test_osutils
1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
1185.31.47 by John Arbash Meinel
Added a fancy footwork rename to osutils, made SftpTransport use it.
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
1685.1.45 by John Arbash Meinel
Moved url functions into bzrlib.urlutils
17
"""Tests for the osutils wrapper."""
1185.31.47 by John Arbash Meinel
Added a fancy footwork rename to osutils, made SftpTransport use it.
18
1732.1.28 by John Arbash Meinel
Add tests for fancy file types.
19
import errno
1185.31.47 by John Arbash Meinel
Added a fancy footwork rename to osutils, made SftpTransport use it.
20
import os
1732.1.28 by John Arbash Meinel
Add tests for fancy file types.
21
import socket
22
import stat
1185.31.47 by John Arbash Meinel
Added a fancy footwork rename to osutils, made SftpTransport use it.
23
import sys
24
25
import bzrlib
1996.3.14 by John Arbash Meinel
lazy_import osutils and sign_my_commits
26
from bzrlib import (
27
    errors,
28
    osutils,
2279.4.1 by Alexander Belchenko
Reimplementation of ntpath.abspath in Python for Windows98: unicode safe, UNC path safe
29
    win32utils,
1996.3.14 by John Arbash Meinel
lazy_import osutils and sign_my_commits
30
    )
1685.1.9 by John Arbash Meinel
Updated LocalTransport so that it's base is now a URL rather than a local path. This helps consistency with all other functions. To do so, I added local_abspath() which returns the local path, and local_path_to/from_url
31
from bzrlib.errors import BzrBadParameterNotUnicode, InvalidURL
2729.2.4 by Martin Pool
move some osutils-related tests from test_inv to test_osutils
32
from bzrlib.osutils import (
33
        is_inside_any,
34
        is_inside_or_parent_of_any,
35
        pathjoin,
36
        )
1711.4.10 by John Arbash Meinel
Pull out sys.stdout.encoding handling into a separate function so it can be tested, and used elsewhere.
37
from bzrlib.tests import (
2785.1.5 by Alexander Belchenko
support for non-ascii BZR_HOME in show_version()
38
        probe_unicode_in_user_encoding,
1711.4.10 by John Arbash Meinel
Pull out sys.stdout.encoding handling into a separate function so it can be tested, and used elsewhere.
39
        StringIOWrapper,
2949.5.1 by Alexander Belchenko
selftest: use SymlinkFeature instead of TestSkipped where appropriate
40
        SymlinkFeature,
2729.2.4 by Martin Pool
move some osutils-related tests from test_inv to test_osutils
41
        TestCase,
42
        TestCaseInTempDir,
1711.4.10 by John Arbash Meinel
Pull out sys.stdout.encoding handling into a separate function so it can be tested, and used elsewhere.
43
        TestSkipped,
44
        )
1532 by Robert Collins
Merge in John Meinels integration branch.
45
1185.31.47 by John Arbash Meinel
Added a fancy footwork rename to osutils, made SftpTransport use it.
46
47
class TestOSUtils(TestCaseInTempDir):
48
2249.2.1 by John Arbash Meinel
(John Arbash Meinel) hard-code the whitespace chars to avoid problems in some locales.
49
    def test_contains_whitespace(self):
50
        self.failUnless(osutils.contains_whitespace(u' '))
51
        self.failUnless(osutils.contains_whitespace(u'hello there'))
52
        self.failUnless(osutils.contains_whitespace(u'hellothere\n'))
53
        self.failUnless(osutils.contains_whitespace(u'hello\nthere'))
54
        self.failUnless(osutils.contains_whitespace(u'hello\rthere'))
55
        self.failUnless(osutils.contains_whitespace(u'hello\tthere'))
56
57
        # \xa0 is "Non-breaking-space" which on some python locales thinks it
58
        # is whitespace, but we do not.
59
        self.failIf(osutils.contains_whitespace(u''))
60
        self.failIf(osutils.contains_whitespace(u'hellothere'))
61
        self.failIf(osutils.contains_whitespace(u'hello\xa0there'))
62
1185.31.47 by John Arbash Meinel
Added a fancy footwork rename to osutils, made SftpTransport use it.
63
    def test_fancy_rename(self):
64
        # This should work everywhere
65
        def rename(a, b):
66
            osutils.fancy_rename(a, b,
67
                    rename_func=os.rename,
68
                    unlink_func=os.unlink)
69
70
        open('a', 'wb').write('something in a\n')
71
        rename('a', 'b')
72
        self.failIfExists('a')
73
        self.failUnlessExists('b')
74
        self.check_file_contents('b', 'something in a\n')
75
76
        open('a', 'wb').write('new something in a\n')
77
        rename('b', 'a')
78
79
        self.check_file_contents('a', 'something in a\n')
80
81
    def test_rename(self):
82
        # Rename should be semi-atomic on all platforms
83
        open('a', 'wb').write('something in a\n')
84
        osutils.rename('a', 'b')
85
        self.failIfExists('a')
86
        self.failUnlessExists('b')
87
        self.check_file_contents('b', 'something in a\n')
88
89
        open('a', 'wb').write('new something in a\n')
90
        osutils.rename('b', 'a')
91
92
        self.check_file_contents('a', 'something in a\n')
93
94
    # TODO: test fancy_rename using a MemoryTransport
95
2978.8.2 by Alexander Belchenko
teach fancy_rename to handle change case renames in possible case-insensitive filesystem
96
    def test_rename_change_case(self):
97
        # on Windows we should be able to change filename case by rename
2978.8.1 by Alexander Belchenko
Rename on Windows is able to change filename case. (#77740)
98
        self.build_tree(['a', 'b/'])
99
        osutils.rename('a', 'A')
100
        osutils.rename('b', 'B')
2978.8.2 by Alexander Belchenko
teach fancy_rename to handle change case renames in possible case-insensitive filesystem
101
        # we can't use failUnlessExists on case-insensitive filesystem
102
        # so try to check shape of the tree
2978.8.1 by Alexander Belchenko
Rename on Windows is able to change filename case. (#77740)
103
        shape = sorted(os.listdir('.'))
104
        self.assertEquals(['A', 'B'], shape)
105
1553.5.5 by Martin Pool
New utility routine rand_chars
106
    def test_01_rand_chars_empty(self):
107
        result = osutils.rand_chars(0)
108
        self.assertEqual(result, '')
109
110
    def test_02_rand_chars_100(self):
111
        result = osutils.rand_chars(100)
112
        self.assertEqual(len(result), 100)
113
        self.assertEqual(type(result), str)
114
        self.assertContainsRe(result, r'^[a-z0-9]{100}$')
115
1996.3.14 by John Arbash Meinel
lazy_import osutils and sign_my_commits
116
    def test_is_inside(self):
117
        is_inside = osutils.is_inside
118
        self.assertTrue(is_inside('src', 'src/foo.c'))
119
        self.assertFalse(is_inside('src', 'srccontrol'))
120
        self.assertTrue(is_inside('src', 'src/a/a/a/foo.c'))
121
        self.assertTrue(is_inside('foo.c', 'foo.c'))
122
        self.assertFalse(is_inside('foo.c', ''))
123
        self.assertTrue(is_inside('', 'foo.c'))
1534.3.1 by Robert Collins
* bzrlib.osutils.safe_unicode now exists to provide parameter coercion
124
2729.2.4 by Martin Pool
move some osutils-related tests from test_inv to test_osutils
125
    def test_is_inside_any(self):
126
        SRC_FOO_C = pathjoin('src', 'foo.c')
127
        for dirs, fn in [(['src', 'doc'], SRC_FOO_C),
128
                         (['src'], SRC_FOO_C),
129
                         (['src'], 'src'),
130
                         ]:
131
            self.assert_(is_inside_any(dirs, fn))
132
        for dirs, fn in [(['src'], 'srccontrol'),
133
                         (['src'], 'srccontrol/foo')]:
134
            self.assertFalse(is_inside_any(dirs, fn))
135
136
    def test_is_inside_or_parent_of_any(self):
137
        for dirs, fn in [(['src', 'doc'], 'src/foo.c'),
138
                         (['src'], 'src/foo.c'),
139
                         (['src/bar.c'], 'src'),
140
                         (['src/bar.c', 'bla/foo.c'], 'src'),
141
                         (['src'], 'src'),
142
                         ]:
143
            self.assert_(is_inside_or_parent_of_any(dirs, fn))
144
            
145
        for dirs, fn in [(['src'], 'srccontrol'),
146
                         (['srccontrol/foo.c'], 'src'),
147
                         (['src'], 'srccontrol/foo')]:
148
            self.assertFalse(is_inside_or_parent_of_any(dirs, fn))
149
1692.7.6 by Martin Pool
[patch] force deletion of trees containing readonly files (alexander)
150
    def test_rmtree(self):
151
        # Check to remove tree with read-only files/dirs
152
        os.mkdir('dir')
153
        f = file('dir/file', 'w')
154
        f.write('spam')
155
        f.close()
156
        # would like to also try making the directory readonly, but at the
157
        # moment python shutil.rmtree doesn't handle that properly - it would
158
        # need to chmod the directory before removing things inside it - deferred
159
        # for now -- mbp 20060505
160
        # osutils.make_readonly('dir')
161
        osutils.make_readonly('dir/file')
162
163
        osutils.rmtree('dir')
164
165
        self.failIfExists('dir/file')
166
        self.failIfExists('dir')
167
1732.1.10 by John Arbash Meinel
Updated version of file_kind. Rather than multiple function calls, one mask + dictionary lookup
168
    def test_file_kind(self):
169
        self.build_tree(['file', 'dir/'])
170
        self.assertEquals('file', osutils.file_kind('file'))
171
        self.assertEquals('directory', osutils.file_kind('dir/'))
172
        if osutils.has_symlinks():
173
            os.symlink('symlink', 'symlink')
174
            self.assertEquals('symlink', osutils.file_kind('symlink'))
1732.1.28 by John Arbash Meinel
Add tests for fancy file types.
175
        
176
        # TODO: jam 20060529 Test a block device
177
        try:
178
            os.lstat('/dev/null')
179
        except OSError, e:
180
            if e.errno not in (errno.ENOENT,):
181
                raise
182
        else:
183
            self.assertEquals('chardev', osutils.file_kind('/dev/null'))
184
185
        mkfifo = getattr(os, 'mkfifo', None)
186
        if mkfifo:
187
            mkfifo('fifo')
188
            try:
189
                self.assertEquals('fifo', osutils.file_kind('fifo'))
190
            finally:
191
                os.remove('fifo')
192
193
        AF_UNIX = getattr(socket, 'AF_UNIX', None)
194
        if AF_UNIX:
195
            s = socket.socket(AF_UNIX)
196
            s.bind('socket')
197
            try:
198
                self.assertEquals('socket', osutils.file_kind('socket'))
199
            finally:
200
                os.remove('socket')
1732.1.10 by John Arbash Meinel
Updated version of file_kind. Rather than multiple function calls, one mask + dictionary lookup
201
1551.10.27 by Aaron Bentley
Add a kind marker for subtrees
202
    def test_kind_marker(self):
203
        self.assertEqual(osutils.kind_marker('file'), '')
204
        self.assertEqual(osutils.kind_marker('directory'), '/')
205
        self.assertEqual(osutils.kind_marker('symlink'), '@')
1551.10.28 by Aaron Bentley
change kind marker to '+'
206
        self.assertEqual(osutils.kind_marker('tree-reference'), '+')
1551.10.27 by Aaron Bentley
Add a kind marker for subtrees
207
1755.3.7 by John Arbash Meinel
Clean up and write tests for permissions. Now we use fstat which should be cheap, and lets us check the permissions and the file size
208
    def test_get_umask(self):
209
        if sys.platform == 'win32':
210
            # umask always returns '0', no way to set it
211
            self.assertEqual(0, osutils.get_umask())
212
            return
213
214
        orig_umask = osutils.get_umask()
215
        try:
216
            os.umask(0222)
217
            self.assertEqual(0222, osutils.get_umask())
218
            os.umask(0022)
219
            self.assertEqual(0022, osutils.get_umask())
220
            os.umask(0002)
221
            self.assertEqual(0002, osutils.get_umask())
222
            os.umask(0027)
223
            self.assertEqual(0027, osutils.get_umask())
224
        finally:
225
            os.umask(orig_umask)
226
1957.1.15 by John Arbash Meinel
Review feedback from Robert
227
    def assertFormatedDelta(self, expected, seconds):
228
        """Assert osutils.format_delta formats as expected"""
229
        actual = osutils.format_delta(seconds)
230
        self.assertEqual(expected, actual)
231
1957.1.4 by John Arbash Meinel
create a helper for formatting a time delta
232
    def test_format_delta(self):
1957.1.15 by John Arbash Meinel
Review feedback from Robert
233
        self.assertFormatedDelta('0 seconds ago', 0)
234
        self.assertFormatedDelta('1 second ago', 1)
235
        self.assertFormatedDelta('10 seconds ago', 10)
236
        self.assertFormatedDelta('59 seconds ago', 59)
237
        self.assertFormatedDelta('89 seconds ago', 89)
238
        self.assertFormatedDelta('1 minute, 30 seconds ago', 90)
239
        self.assertFormatedDelta('3 minutes, 0 seconds ago', 180)
240
        self.assertFormatedDelta('3 minutes, 1 second ago', 181)
241
        self.assertFormatedDelta('10 minutes, 15 seconds ago', 615)
242
        self.assertFormatedDelta('30 minutes, 59 seconds ago', 1859)
243
        self.assertFormatedDelta('31 minutes, 0 seconds ago', 1860)
244
        self.assertFormatedDelta('60 minutes, 0 seconds ago', 3600)
245
        self.assertFormatedDelta('89 minutes, 59 seconds ago', 5399)
246
        self.assertFormatedDelta('1 hour, 30 minutes ago', 5400)
247
        self.assertFormatedDelta('2 hours, 30 minutes ago', 9017)
248
        self.assertFormatedDelta('10 hours, 0 minutes ago', 36000)
249
        self.assertFormatedDelta('24 hours, 0 minutes ago', 86400)
250
        self.assertFormatedDelta('35 hours, 59 minutes ago', 129599)
251
        self.assertFormatedDelta('36 hours, 0 minutes ago', 129600)
252
        self.assertFormatedDelta('36 hours, 0 minutes ago', 129601)
253
        self.assertFormatedDelta('36 hours, 1 minute ago', 129660)
254
        self.assertFormatedDelta('36 hours, 1 minute ago', 129661)
255
        self.assertFormatedDelta('84 hours, 10 minutes ago', 303002)
1957.1.4 by John Arbash Meinel
create a helper for formatting a time delta
256
257
        # We handle when time steps the wrong direction because computers
258
        # don't have synchronized clocks.
1957.1.15 by John Arbash Meinel
Review feedback from Robert
259
        self.assertFormatedDelta('84 hours, 10 minutes in the future', -303002)
260
        self.assertFormatedDelta('1 second in the future', -1)
261
        self.assertFormatedDelta('2 seconds in the future', -2)
1957.1.4 by John Arbash Meinel
create a helper for formatting a time delta
262
2091.3.7 by Aaron Bentley
Rename real_parent to dereferenced_path
263
    def test_dereference_path(self):
2949.5.1 by Alexander Belchenko
selftest: use SymlinkFeature instead of TestSkipped where appropriate
264
        self.requireFeature(SymlinkFeature)
2091.3.5 by Aaron Bentley
Move realpath functionality into osutils
265
        cwd = osutils.realpath('.')
266
        os.mkdir('bar')
267
        bar_path = osutils.pathjoin(cwd, 'bar')
268
        # Using './' to avoid bug #1213894 (first path component not
269
        # dereferenced) in Python 2.4.1 and earlier
270
        self.assertEqual(bar_path, osutils.realpath('./bar'))
271
        os.symlink('bar', 'foo')
272
        self.assertEqual(bar_path, osutils.realpath('./foo'))
273
        
274
        # Does not dereference terminal symlinks
275
        foo_path = osutils.pathjoin(cwd, 'foo')
2091.3.7 by Aaron Bentley
Rename real_parent to dereferenced_path
276
        self.assertEqual(foo_path, osutils.dereference_path('./foo'))
2091.3.5 by Aaron Bentley
Move realpath functionality into osutils
277
278
        # Dereferences parent symlinks
279
        os.mkdir('bar/baz')
280
        baz_path = osutils.pathjoin(bar_path, 'baz')
2091.3.7 by Aaron Bentley
Rename real_parent to dereferenced_path
281
        self.assertEqual(baz_path, osutils.dereference_path('./foo/baz'))
2091.3.5 by Aaron Bentley
Move realpath functionality into osutils
282
283
        # Dereferences parent symlinks that are the first path element
2091.3.7 by Aaron Bentley
Rename real_parent to dereferenced_path
284
        self.assertEqual(baz_path, osutils.dereference_path('foo/baz'))
2091.3.5 by Aaron Bentley
Move realpath functionality into osutils
285
286
        # Dereferences parent symlinks in absolute paths
287
        foo_baz_path = osutils.pathjoin(foo_path, 'baz')
2091.3.7 by Aaron Bentley
Rename real_parent to dereferenced_path
288
        self.assertEqual(baz_path, osutils.dereference_path(foo_baz_path))
2091.3.5 by Aaron Bentley
Move realpath functionality into osutils
289
2568.1.1 by John Arbash Meinel
(Elliot Murphy) Use os.lstat rather than os.stat for osutils.make_readonly/make_writeable
290
    def test_changing_access(self):
291
        f = file('file', 'w')
292
        f.write('monkey')
293
        f.close()
294
295
        # Make a file readonly
296
        osutils.make_readonly('file')
2949.6.2 by Alexander Belchenko
more changes osutils.lstat -> os.lstat
297
        mode = os.lstat('file').st_mode
2568.1.1 by John Arbash Meinel
(Elliot Murphy) Use os.lstat rather than os.stat for osutils.make_readonly/make_writeable
298
        self.assertEqual(mode, mode & 0777555)
299
300
        # Make a file writable
301
        osutils.make_writable('file')
2949.6.2 by Alexander Belchenko
more changes osutils.lstat -> os.lstat
302
        mode = os.lstat('file').st_mode
2568.1.1 by John Arbash Meinel
(Elliot Murphy) Use os.lstat rather than os.stat for osutils.make_readonly/make_writeable
303
        self.assertEqual(mode, mode | 0200)
304
305
        if osutils.has_symlinks():
306
            # should not error when handed a symlink
307
            os.symlink('nonexistent', 'dangling')
308
            osutils.make_readonly('dangling')
309
            osutils.make_writable('dangling')
310
2324.2.1 by Dmitry Vasiliev
kind_marker() optimization
311
    def test_kind_marker(self):
312
        self.assertEqual("", osutils.kind_marker("file"))
313
        self.assertEqual("/", osutils.kind_marker(osutils._directory_kind))
314
        self.assertEqual("@", osutils.kind_marker("symlink"))
315
        self.assertRaises(errors.BzrError, osutils.kind_marker, "unknown")
316
317
1534.3.1 by Robert Collins
* bzrlib.osutils.safe_unicode now exists to provide parameter coercion
318
class TestSafeUnicode(TestCase):
319
320
    def test_from_ascii_string(self):
321
        self.assertEqual(u'foobar', osutils.safe_unicode('foobar'))
322
1534.3.2 by Robert Collins
An extra test for John.
323
    def test_from_unicode_string_ascii_contents(self):
1534.3.1 by Robert Collins
* bzrlib.osutils.safe_unicode now exists to provide parameter coercion
324
        self.assertEqual(u'bargam', osutils.safe_unicode(u'bargam'))
325
1534.3.2 by Robert Collins
An extra test for John.
326
    def test_from_unicode_string_unicode_contents(self):
327
        self.assertEqual(u'bargam\xae', osutils.safe_unicode(u'bargam\xae'))
328
1534.3.1 by Robert Collins
* bzrlib.osutils.safe_unicode now exists to provide parameter coercion
329
    def test_from_utf8_string(self):
330
        self.assertEqual(u'foo\xae', osutils.safe_unicode('foo\xc2\xae'))
331
332
    def test_bad_utf8_string(self):
1185.65.29 by Robert Collins
Implement final review suggestions.
333
        self.assertRaises(BzrBadParameterNotUnicode,
334
                          osutils.safe_unicode,
335
                          '\xbb\xbb')
1666.1.6 by Robert Collins
Make knit the default format.
336
337
2249.5.8 by John Arbash Meinel
Add osutils.safe_utf8 and safe_revision_id for the new revision_id work.
338
class TestSafeUtf8(TestCase):
339
340
    def test_from_ascii_string(self):
341
        f = 'foobar'
342
        self.assertEqual('foobar', osutils.safe_utf8(f))
343
344
    def test_from_unicode_string_ascii_contents(self):
345
        self.assertEqual('bargam', osutils.safe_utf8(u'bargam'))
346
347
    def test_from_unicode_string_unicode_contents(self):
348
        self.assertEqual('bargam\xc2\xae', osutils.safe_utf8(u'bargam\xae'))
349
350
    def test_from_utf8_string(self):
351
        self.assertEqual('foo\xc2\xae', osutils.safe_utf8('foo\xc2\xae'))
352
353
    def test_bad_utf8_string(self):
354
        self.assertRaises(BzrBadParameterNotUnicode,
355
                          osutils.safe_utf8, '\xbb\xbb')
356
357
358
class TestSafeRevisionId(TestCase):
359
360
    def test_from_ascii_string(self):
2858.2.1 by Martin Pool
Remove most calls to safe_file_id and safe_revision_id.
361
        # this shouldn't give a warning because it's getting an ascii string
2309.4.4 by John Arbash Meinel
Change what warnings are raised, and add tests that they are used.
362
        self.assertEqual('foobar', osutils.safe_revision_id('foobar'))
2249.5.8 by John Arbash Meinel
Add osutils.safe_utf8 and safe_revision_id for the new revision_id work.
363
364
    def test_from_unicode_string_ascii_contents(self):
2309.4.4 by John Arbash Meinel
Change what warnings are raised, and add tests that they are used.
365
        self.assertEqual('bargam',
366
                         osutils.safe_revision_id(u'bargam', warn=False))
367
368
    def test_from_unicode_deprecated(self):
369
        self.assertEqual('bargam',
370
            self.callDeprecated([osutils._revision_id_warning],
371
                                osutils.safe_revision_id, u'bargam'))
2249.5.8 by John Arbash Meinel
Add osutils.safe_utf8 and safe_revision_id for the new revision_id work.
372
373
    def test_from_unicode_string_unicode_contents(self):
374
        self.assertEqual('bargam\xc2\xae',
2309.4.4 by John Arbash Meinel
Change what warnings are raised, and add tests that they are used.
375
                         osutils.safe_revision_id(u'bargam\xae', warn=False))
2249.5.8 by John Arbash Meinel
Add osutils.safe_utf8 and safe_revision_id for the new revision_id work.
376
377
    def test_from_utf8_string(self):
378
        self.assertEqual('foo\xc2\xae',
379
                         osutils.safe_revision_id('foo\xc2\xae'))
380
2249.5.9 by John Arbash Meinel
Update WorkingTree to use safe_revision_id when appropriate
381
    def test_none(self):
382
        """Currently, None is a valid revision_id"""
383
        self.assertEqual(None, osutils.safe_revision_id(None))
384
2249.5.8 by John Arbash Meinel
Add osutils.safe_utf8 and safe_revision_id for the new revision_id work.
385
2294.1.4 by John Arbash Meinel
Add safe_file_id as a helper in osutils.
386
class TestSafeFileId(TestCase):
387
388
    def test_from_ascii_string(self):
2309.4.4 by John Arbash Meinel
Change what warnings are raised, and add tests that they are used.
389
        self.assertEqual('foobar', osutils.safe_file_id('foobar'))
2294.1.4 by John Arbash Meinel
Add safe_file_id as a helper in osutils.
390
391
    def test_from_unicode_string_ascii_contents(self):
2309.4.4 by John Arbash Meinel
Change what warnings are raised, and add tests that they are used.
392
        self.assertEqual('bargam', osutils.safe_file_id(u'bargam', warn=False))
393
394
    def test_from_unicode_deprecated(self):
395
        self.assertEqual('bargam',
396
            self.callDeprecated([osutils._file_id_warning],
397
                                osutils.safe_file_id, u'bargam'))
2294.1.4 by John Arbash Meinel
Add safe_file_id as a helper in osutils.
398
399
    def test_from_unicode_string_unicode_contents(self):
400
        self.assertEqual('bargam\xc2\xae',
2309.4.4 by John Arbash Meinel
Change what warnings are raised, and add tests that they are used.
401
                         osutils.safe_file_id(u'bargam\xae', warn=False))
2294.1.4 by John Arbash Meinel
Add safe_file_id as a helper in osutils.
402
403
    def test_from_utf8_string(self):
404
        self.assertEqual('foo\xc2\xae',
405
                         osutils.safe_file_id('foo\xc2\xae'))
406
407
    def test_none(self):
408
        """Currently, None is a valid revision_id"""
409
        self.assertEqual(None, osutils.safe_file_id(None))
410
411
1685.1.31 by John Arbash Meinel
Adding tests for the rest of the _win32 functions.
412
class TestWin32Funcs(TestCase):
413
    """Test that the _win32 versions of os utilities return appropriate paths."""
414
415
    def test_abspath(self):
416
        self.assertEqual('C:/foo', osutils._win32_abspath('C:\\foo'))
417
        self.assertEqual('C:/foo', osutils._win32_abspath('C:/foo'))
2279.4.1 by Alexander Belchenko
Reimplementation of ntpath.abspath in Python for Windows98: unicode safe, UNC path safe
418
        self.assertEqual('//HOST/path', osutils._win32_abspath(r'\\HOST\path'))
419
        self.assertEqual('//HOST/path', osutils._win32_abspath('//HOST/path'))
1685.1.31 by John Arbash Meinel
Adding tests for the rest of the _win32 functions.
420
421
    def test_realpath(self):
422
        self.assertEqual('C:/foo', osutils._win32_realpath('C:\\foo'))
423
        self.assertEqual('C:/foo', osutils._win32_realpath('C:/foo'))
424
425
    def test_pathjoin(self):
426
        self.assertEqual('path/to/foo', osutils._win32_pathjoin('path', 'to', 'foo'))
427
        self.assertEqual('C:/foo', osutils._win32_pathjoin('path\\to', 'C:\\foo'))
428
        self.assertEqual('C:/foo', osutils._win32_pathjoin('path/to', 'C:/foo'))
429
        self.assertEqual('path/to/foo', osutils._win32_pathjoin('path/to/', 'foo'))
430
        self.assertEqual('/foo', osutils._win32_pathjoin('C:/path/to/', '/foo'))
431
        self.assertEqual('/foo', osutils._win32_pathjoin('C:\\path\\to\\', '\\foo'))
432
433
    def test_normpath(self):
434
        self.assertEqual('path/to/foo', osutils._win32_normpath(r'path\\from\..\to\.\foo'))
435
        self.assertEqual('path/to/foo', osutils._win32_normpath('path//from/../to/./foo'))
436
437
    def test_getcwd(self):
1711.5.2 by John Arbash Meinel
win32 likes to return lowercase drive letters sometimes, and uppercase at other times. normalize this
438
        cwd = osutils._win32_getcwd()
439
        os_cwd = os.getcwdu()
440
        self.assertEqual(os_cwd[1:].replace('\\', '/'), cwd[1:])
441
        # win32 is inconsistent whether it returns lower or upper case
442
        # and even if it was consistent the user might type the other
443
        # so we force it to uppercase
444
        # running python.exe under cmd.exe return capital C:\\
445
        # running win32 python inside a cygwin shell returns lowercase
446
        self.assertEqual(os_cwd[0].upper(), cwd[0])
447
448
    def test_fixdrive(self):
449
        self.assertEqual('H:/foo', osutils._win32_fixdrive('h:/foo'))
450
        self.assertEqual('H:/foo', osutils._win32_fixdrive('H:/foo'))
451
        self.assertEqual('C:\\foo', osutils._win32_fixdrive('c:\\foo'))
1685.1.31 by John Arbash Meinel
Adding tests for the rest of the _win32 functions.
452
2279.4.1 by Alexander Belchenko
Reimplementation of ntpath.abspath in Python for Windows98: unicode safe, UNC path safe
453
    def test_win98_abspath(self):
454
        # absolute path
455
        self.assertEqual('C:/foo', osutils._win98_abspath('C:\\foo'))
456
        self.assertEqual('C:/foo', osutils._win98_abspath('C:/foo'))
457
        # UNC path
458
        self.assertEqual('//HOST/path', osutils._win98_abspath(r'\\HOST\path'))
459
        self.assertEqual('//HOST/path', osutils._win98_abspath('//HOST/path'))
460
        # relative path
461
        cwd = osutils.getcwd().rstrip('/')
462
        drive = osutils._nt_splitdrive(cwd)[0]
463
        self.assertEqual(cwd+'/path', osutils._win98_abspath('path'))
464
        self.assertEqual(drive+'/path', osutils._win98_abspath('/path'))
465
        # unicode path
466
        u = u'\u1234'
467
        self.assertEqual(cwd+'/'+u, osutils._win98_abspath(u))
468
1685.1.31 by John Arbash Meinel
Adding tests for the rest of the _win32 functions.
469
470
class TestWin32FuncsDirs(TestCaseInTempDir):
471
    """Test win32 functions that create files."""
472
    
473
    def test_getcwd(self):
2279.4.1 by Alexander Belchenko
Reimplementation of ntpath.abspath in Python for Windows98: unicode safe, UNC path safe
474
        if win32utils.winver == 'Windows 98':
475
            raise TestSkipped('Windows 98 cannot handle unicode filenames')
1685.1.31 by John Arbash Meinel
Adding tests for the rest of the _win32 functions.
476
        # Make sure getcwd can handle unicode filenames
477
        try:
1830.3.9 by John Arbash Meinel
Use a directory name that doesn't get messed up on Mac for getcwd() test.
478
            os.mkdir(u'mu-\xb5')
1685.1.31 by John Arbash Meinel
Adding tests for the rest of the _win32 functions.
479
        except UnicodeError:
480
            raise TestSkipped("Unable to create Unicode filename")
481
1830.3.9 by John Arbash Meinel
Use a directory name that doesn't get messed up on Mac for getcwd() test.
482
        os.chdir(u'mu-\xb5')
1685.1.31 by John Arbash Meinel
Adding tests for the rest of the _win32 functions.
483
        # TODO: jam 20060427 This will probably fail on Mac OSX because
484
        #       it will change the normalization of B\xe5gfors
485
        #       Consider using a different unicode character, or make
486
        #       osutils.getcwd() renormalize the path.
1830.3.9 by John Arbash Meinel
Use a directory name that doesn't get messed up on Mac for getcwd() test.
487
        self.assertEndsWith(osutils._win32_getcwd(), u'mu-\xb5')
1685.1.31 by John Arbash Meinel
Adding tests for the rest of the _win32 functions.
488
2825.7.1 by Robert Collins
* Partial commits are now approximately 40% faster by walking over the
489
    def test_minimum_path_selection(self):
490
        self.assertEqual(set(),
491
            osutils.minimum_path_selection([]))
492
        self.assertEqual(set(['a', 'b']),
493
            osutils.minimum_path_selection(['a', 'b']))
494
        self.assertEqual(set(['a/', 'b']),
495
            osutils.minimum_path_selection(['a/', 'b']))
496
        self.assertEqual(set(['a/', 'b']),
497
            osutils.minimum_path_selection(['a/c', 'a/', 'b']))
498
1685.1.31 by John Arbash Meinel
Adding tests for the rest of the _win32 functions.
499
    def test_mkdtemp(self):
500
        tmpdir = osutils._win32_mkdtemp(dir='.')
501
        self.assertFalse('\\' in tmpdir)
502
503
    def test_rename(self):
504
        a = open('a', 'wb')
505
        a.write('foo\n')
506
        a.close()
507
        b = open('b', 'wb')
508
        b.write('baz\n')
509
        b.close()
510
511
        osutils._win32_rename('b', 'a')
512
        self.failUnlessExists('a')
513
        self.failIfExists('b')
514
        self.assertFileEqual('baz\n', 'a')
515
1711.7.6 by John Arbash Meinel
Change _win32_rename() so that it raises ENOENT *before* it tries any renaming.
516
    def test_rename_missing_file(self):
517
        a = open('a', 'wb')
518
        a.write('foo\n')
519
        a.close()
520
521
        try:
522
            osutils._win32_rename('b', 'a')
523
        except (IOError, OSError), e:
524
            self.assertEqual(errno.ENOENT, e.errno)
525
        self.assertFileEqual('foo\n', 'a')
526
527
    def test_rename_missing_dir(self):
528
        os.mkdir('a')
529
        try:
530
            osutils._win32_rename('b', 'a')
531
        except (IOError, OSError), e:
532
            self.assertEqual(errno.ENOENT, e.errno)
533
534
    def test_rename_current_dir(self):
535
        os.mkdir('a')
536
        os.chdir('a')
537
        # You can't rename the working directory
538
        # doing rename non-existant . usually
539
        # just raises ENOENT, since non-existant
540
        # doesn't exist.
541
        try:
542
            osutils._win32_rename('b', '.')
543
        except (IOError, OSError), e:
544
            self.assertEqual(errno.ENOENT, e.errno)
545
1996.3.14 by John Arbash Meinel
lazy_import osutils and sign_my_commits
546
    def test_splitpath(self):
547
        def check(expected, path):
548
            self.assertEqual(expected, osutils.splitpath(path))
549
550
        check(['a'], 'a')
551
        check(['a', 'b'], 'a/b')
552
        check(['a', 'b'], 'a/./b')
553
        check(['a', '.b'], 'a/.b')
554
        check(['a', '.b'], 'a\\.b')
555
556
        self.assertRaises(errors.BzrError, osutils.splitpath, 'a/../b')
557
1685.1.31 by John Arbash Meinel
Adding tests for the rest of the _win32 functions.
558
1830.3.11 by John Arbash Meinel
Create a mac version of 'getcwd()' which normalizes the path.
559
class TestMacFuncsDirs(TestCaseInTempDir):
560
    """Test mac special functions that require directories."""
561
562
    def test_getcwd(self):
563
        # On Mac, this will actually create Ba\u030agfors
564
        # but chdir will still work, because it accepts both paths
565
        try:
566
            os.mkdir(u'B\xe5gfors')
567
        except UnicodeError:
568
            raise TestSkipped("Unable to create Unicode filename")
569
570
        os.chdir(u'B\xe5gfors')
571
        self.assertEndsWith(osutils._mac_getcwd(), u'B\xe5gfors')
572
573
    def test_getcwd_nonnorm(self):
574
        # Test that _mac_getcwd() will normalize this path
575
        try:
576
            os.mkdir(u'Ba\u030agfors')
577
        except UnicodeError:
578
            raise TestSkipped("Unable to create Unicode filename")
579
580
        os.chdir(u'Ba\u030agfors')
581
        self.assertEndsWith(osutils._mac_getcwd(), u'B\xe5gfors')
582
1996.3.14 by John Arbash Meinel
lazy_import osutils and sign_my_commits
583
1666.1.6 by Robert Collins
Make knit the default format.
584
class TestSplitLines(TestCase):
585
586
    def test_split_unicode(self):
587
        self.assertEqual([u'foo\n', u'bar\xae'],
588
                         osutils.split_lines(u'foo\nbar\xae'))
589
        self.assertEqual([u'foo\n', u'bar\xae\n'],
590
                         osutils.split_lines(u'foo\nbar\xae\n'))
591
592
    def test_split_with_carriage_returns(self):
593
        self.assertEqual(['foo\rbar\n'],
594
                         osutils.split_lines('foo\rbar\n'))
1753.1.1 by Robert Collins
(rbc, jam, mbp)Add bzrlib.osutils.walkdirs, an optimised walk-and-stat routine.
595
596
597
class TestWalkDirs(TestCaseInTempDir):
598
599
    def test_walkdirs(self):
600
        tree = [
601
            '.bzr',
602
            '0file',
603
            '1dir/',
604
            '1dir/0file',
605
            '1dir/1dir/',
606
            '2file'
607
            ]
608
        self.build_tree(tree)
609
        expected_dirblocks = [
1897.1.1 by Robert Collins
Add some useful summary data to osutils.walkdirs output.
610
                (('', '.'),
611
                 [('0file', '0file', 'file'),
612
                  ('1dir', '1dir', 'directory'),
613
                  ('2file', '2file', 'file'),
614
                 ]
615
                ),
616
                (('1dir', './1dir'),
617
                 [('1dir/0file', '0file', 'file'),
618
                  ('1dir/1dir', '1dir', 'directory'),
619
                 ]
620
                ),
621
                (('1dir/1dir', './1dir/1dir'),
622
                 [
623
                 ]
624
                ),
1753.1.1 by Robert Collins
(rbc, jam, mbp)Add bzrlib.osutils.walkdirs, an optimised walk-and-stat routine.
625
            ]
626
        result = []
627
        found_bzrdir = False
1897.1.1 by Robert Collins
Add some useful summary data to osutils.walkdirs output.
628
        for dirdetail, dirblock in osutils.walkdirs('.'):
1753.1.1 by Robert Collins
(rbc, jam, mbp)Add bzrlib.osutils.walkdirs, an optimised walk-and-stat routine.
629
            if len(dirblock) and dirblock[0][1] == '.bzr':
630
                # this tests the filtering of selected paths
631
                found_bzrdir = True
632
                del dirblock[0]
1897.1.1 by Robert Collins
Add some useful summary data to osutils.walkdirs output.
633
            result.append((dirdetail, dirblock))
1753.1.1 by Robert Collins
(rbc, jam, mbp)Add bzrlib.osutils.walkdirs, an optimised walk-and-stat routine.
634
635
        self.assertTrue(found_bzrdir)
636
        self.assertEqual(expected_dirblocks,
1897.1.1 by Robert Collins
Add some useful summary data to osutils.walkdirs output.
637
            [(dirinfo, [line[0:3] for line in block]) for dirinfo, block in result])
1757.2.8 by Robert Collins
Teach walkdirs to walk a subdir of a tree.
638
        # you can search a subdir only, with a supplied prefix.
639
        result = []
1897.1.1 by Robert Collins
Add some useful summary data to osutils.walkdirs output.
640
        for dirblock in osutils.walkdirs('./1dir', '1dir'):
1757.2.8 by Robert Collins
Teach walkdirs to walk a subdir of a tree.
641
            result.append(dirblock)
642
        self.assertEqual(expected_dirblocks[1:],
1897.1.1 by Robert Collins
Add some useful summary data to osutils.walkdirs output.
643
            [(dirinfo, [line[0:3] for line in block]) for dirinfo, block in result])
1757.2.8 by Robert Collins
Teach walkdirs to walk a subdir of a tree.
644
2255.7.27 by John Arbash Meinel
Add a _walkdirs_utf8 which returns utf8 paths instead of Unicode. Approx 20% faster in walking utf8 filesystems
645
    def test__walkdirs_utf8(self):
646
        tree = [
647
            '.bzr',
648
            '0file',
649
            '1dir/',
650
            '1dir/0file',
651
            '1dir/1dir/',
652
            '2file'
653
            ]
654
        self.build_tree(tree)
655
        expected_dirblocks = [
656
                (('', '.'),
657
                 [('0file', '0file', 'file'),
658
                  ('1dir', '1dir', 'directory'),
659
                  ('2file', '2file', 'file'),
660
                 ]
661
                ),
662
                (('1dir', './1dir'),
663
                 [('1dir/0file', '0file', 'file'),
664
                  ('1dir/1dir', '1dir', 'directory'),
665
                 ]
666
                ),
667
                (('1dir/1dir', './1dir/1dir'),
668
                 [
669
                 ]
670
                ),
671
            ]
672
        result = []
673
        found_bzrdir = False
674
        for dirdetail, dirblock in osutils._walkdirs_utf8('.'):
675
            if len(dirblock) and dirblock[0][1] == '.bzr':
676
                # this tests the filtering of selected paths
677
                found_bzrdir = True
678
                del dirblock[0]
679
            result.append((dirdetail, dirblock))
680
681
        self.assertTrue(found_bzrdir)
682
        self.assertEqual(expected_dirblocks,
683
            [(dirinfo, [line[0:3] for line in block]) for dirinfo, block in result])
684
        # you can search a subdir only, with a supplied prefix.
685
        result = []
686
        for dirblock in osutils.walkdirs('./1dir', '1dir'):
687
            result.append(dirblock)
688
        self.assertEqual(expected_dirblocks[1:],
689
            [(dirinfo, [line[0:3] for line in block]) for dirinfo, block in result])
690
2255.7.32 by John Arbash Meinel
Add tests that the walkdirs variants work on unicode paths.
691
    def _filter_out_stat(self, result):
692
        """Filter out the stat value from the walkdirs result"""
693
        for dirdetail, dirblock in result:
694
            new_dirblock = []
695
            for info in dirblock:
696
                # Ignore info[3] which is the stat
697
                new_dirblock.append((info[0], info[1], info[2], info[4]))
698
            dirblock[:] = new_dirblock
699
700
    def test_unicode_walkdirs(self):
701
        """Walkdirs should always return unicode paths."""
702
        name0 = u'0file-\xb6'
703
        name1 = u'1dir-\u062c\u0648'
704
        name2 = u'2file-\u0633'
705
        tree = [
706
            name0,
707
            name1 + '/',
708
            name1 + '/' + name0,
709
            name1 + '/' + name1 + '/',
710
            name2,
711
            ]
712
        try:
713
            self.build_tree(tree)
714
        except UnicodeError:
715
            raise TestSkipped('Could not represent Unicode chars'
716
                              ' in current encoding.')
717
        expected_dirblocks = [
718
                ((u'', u'.'),
719
                 [(name0, name0, 'file', './' + name0),
720
                  (name1, name1, 'directory', './' + name1),
721
                  (name2, name2, 'file', './' + name2),
722
                 ]
723
                ),
724
                ((name1, './' + name1),
725
                 [(name1 + '/' + name0, name0, 'file', './' + name1
726
                                                        + '/' + name0),
727
                  (name1 + '/' + name1, name1, 'directory', './' + name1
728
                                                            + '/' + name1),
729
                 ]
730
                ),
731
                ((name1 + '/' + name1, './' + name1 + '/' + name1),
732
                 [
733
                 ]
734
                ),
735
            ]
736
        result = list(osutils.walkdirs('.'))
737
        self._filter_out_stat(result)
738
        self.assertEqual(expected_dirblocks, result)
739
        result = list(osutils.walkdirs(u'./'+name1, name1))
740
        self._filter_out_stat(result)
741
        self.assertEqual(expected_dirblocks[1:], result)
742
743
    def test_unicode__walkdirs_utf8(self):
744
        """Walkdirs_utf8 should always return utf8 paths.
745
746
        The abspath portion might be in unicode or utf-8
747
        """
748
        name0 = u'0file-\xb6'
749
        name1 = u'1dir-\u062c\u0648'
750
        name2 = u'2file-\u0633'
751
        tree = [
752
            name0,
753
            name1 + '/',
754
            name1 + '/' + name0,
755
            name1 + '/' + name1 + '/',
756
            name2,
757
            ]
758
        try:
759
            self.build_tree(tree)
760
        except UnicodeError:
761
            raise TestSkipped('Could not represent Unicode chars'
762
                              ' in current encoding.')
763
        name0 = name0.encode('utf8')
764
        name1 = name1.encode('utf8')
765
        name2 = name2.encode('utf8')
766
767
        expected_dirblocks = [
768
                (('', '.'),
769
                 [(name0, name0, 'file', './' + name0),
770
                  (name1, name1, 'directory', './' + name1),
771
                  (name2, name2, 'file', './' + name2),
772
                 ]
773
                ),
774
                ((name1, './' + name1),
775
                 [(name1 + '/' + name0, name0, 'file', './' + name1
776
                                                        + '/' + name0),
777
                  (name1 + '/' + name1, name1, 'directory', './' + name1
778
                                                            + '/' + name1),
779
                 ]
780
                ),
781
                ((name1 + '/' + name1, './' + name1 + '/' + name1),
782
                 [
783
                 ]
784
                ),
785
            ]
786
        result = []
787
        # For ease in testing, if walkdirs_utf8 returns Unicode, assert that
788
        # all abspaths are Unicode, and encode them back into utf8.
789
        for dirdetail, dirblock in osutils._walkdirs_utf8('.'):
790
            self.assertIsInstance(dirdetail[0], str)
791
            if isinstance(dirdetail[1], unicode):
2324.2.4 by Dmitry Vasiliev
Fixed test_unicode__walkdirs_utf8 test
792
                dirdetail = (dirdetail[0], dirdetail[1].encode('utf8'))
793
                dirblock = [list(info) for info in dirblock]
2255.7.32 by John Arbash Meinel
Add tests that the walkdirs variants work on unicode paths.
794
                for info in dirblock:
795
                    self.assertIsInstance(info[4], unicode)
796
                    info[4] = info[4].encode('utf8')
797
            new_dirblock = []
798
            for info in dirblock:
799
                self.assertIsInstance(info[0], str)
800
                self.assertIsInstance(info[1], str)
801
                self.assertIsInstance(info[4], str)
802
                # Remove the stat information
803
                new_dirblock.append((info[0], info[1], info[2], info[4]))
804
            result.append((dirdetail, new_dirblock))
805
        self.assertEqual(expected_dirblocks, result)
806
807
    def test_unicode__walkdirs_unicode_to_utf8(self):
808
        """walkdirs_unicode_to_utf8 should be a safe fallback everywhere
809
810
        The abspath portion should be in unicode
811
        """
812
        name0u = u'0file-\xb6'
813
        name1u = u'1dir-\u062c\u0648'
814
        name2u = u'2file-\u0633'
815
        tree = [
816
            name0u,
817
            name1u + '/',
818
            name1u + '/' + name0u,
819
            name1u + '/' + name1u + '/',
820
            name2u,
821
            ]
822
        try:
823
            self.build_tree(tree)
824
        except UnicodeError:
825
            raise TestSkipped('Could not represent Unicode chars'
826
                              ' in current encoding.')
827
        name0 = name0u.encode('utf8')
828
        name1 = name1u.encode('utf8')
829
        name2 = name2u.encode('utf8')
830
831
        # All of the abspaths should be in unicode, all of the relative paths
832
        # should be in utf8
833
        expected_dirblocks = [
834
                (('', '.'),
835
                 [(name0, name0, 'file', './' + name0u),
836
                  (name1, name1, 'directory', './' + name1u),
837
                  (name2, name2, 'file', './' + name2u),
838
                 ]
839
                ),
840
                ((name1, './' + name1u),
841
                 [(name1 + '/' + name0, name0, 'file', './' + name1u
842
                                                        + '/' + name0u),
843
                  (name1 + '/' + name1, name1, 'directory', './' + name1u
844
                                                            + '/' + name1u),
845
                 ]
846
                ),
847
                ((name1 + '/' + name1, './' + name1u + '/' + name1u),
848
                 [
849
                 ]
850
                ),
851
            ]
852
        result = list(osutils._walkdirs_unicode_to_utf8('.'))
853
        self._filter_out_stat(result)
854
        self.assertEqual(expected_dirblocks, result)
855
1773.3.1 by Robert Collins
Add path_prefix_key and compare_paths_prefix_order utility functions.
856
    def assertPathCompare(self, path_less, path_greater):
857
        """check that path_less and path_greater compare correctly."""
858
        self.assertEqual(0, osutils.compare_paths_prefix_order(
859
            path_less, path_less))
860
        self.assertEqual(0, osutils.compare_paths_prefix_order(
861
            path_greater, path_greater))
862
        self.assertEqual(-1, osutils.compare_paths_prefix_order(
863
            path_less, path_greater))
864
        self.assertEqual(1, osutils.compare_paths_prefix_order(
865
            path_greater, path_less))
866
867
    def test_compare_paths_prefix_order(self):
868
        # root before all else
869
        self.assertPathCompare("/", "/a")
870
        # alpha within a dir
871
        self.assertPathCompare("/a", "/b")
872
        self.assertPathCompare("/b", "/z")
873
        # high dirs before lower.
874
        self.assertPathCompare("/z", "/a/a")
1773.3.2 by Robert Collins
New corner case from John Meinel, showing up the need to check the directory lexographically outside of a single tree's root. Fixed.
875
        # except if the deeper dir should be output first
876
        self.assertPathCompare("/a/b/c", "/d/g")
1773.3.1 by Robert Collins
Add path_prefix_key and compare_paths_prefix_order utility functions.
877
        # lexical betwen dirs of the same height
878
        self.assertPathCompare("/a/z", "/z/z")
879
        self.assertPathCompare("/a/c/z", "/a/d/e")
880
881
        # this should also be consistent for no leading / paths
882
        # root before all else
883
        self.assertPathCompare("", "a")
884
        # alpha within a dir
885
        self.assertPathCompare("a", "b")
886
        self.assertPathCompare("b", "z")
887
        # high dirs before lower.
888
        self.assertPathCompare("z", "a/a")
1773.3.2 by Robert Collins
New corner case from John Meinel, showing up the need to check the directory lexographically outside of a single tree's root. Fixed.
889
        # except if the deeper dir should be output first
890
        self.assertPathCompare("a/b/c", "d/g")
1773.3.1 by Robert Collins
Add path_prefix_key and compare_paths_prefix_order utility functions.
891
        # lexical betwen dirs of the same height
892
        self.assertPathCompare("a/z", "z/z")
893
        self.assertPathCompare("a/c/z", "a/d/e")
894
1773.3.3 by Robert Collins
Add new tests John Meinel asked for.
895
    def test_path_prefix_sorting(self):
896
        """Doing a sort on path prefix should match our sample data."""
897
        original_paths = [
898
            'a',
899
            'a/b',
900
            'a/b/c',
901
            'b',
902
            'b/c',
903
            'd',
904
            'd/e',
905
            'd/e/f',
906
            'd/f',
907
            'd/g',
908
            'g',
909
            ]
910
911
        dir_sorted_paths = [
912
            'a',
913
            'b',
914
            'd',
915
            'g',
916
            'a/b',
917
            'a/b/c',
918
            'b/c',
919
            'd/e',
920
            'd/f',
921
            'd/g',
922
            'd/e/f',
923
            ]
924
925
        self.assertEqual(
926
            dir_sorted_paths,
927
            sorted(original_paths, key=osutils.path_prefix_key))
928
        # using the comparison routine shoudl work too:
929
        self.assertEqual(
930
            dir_sorted_paths,
931
            sorted(original_paths, cmp=osutils.compare_paths_prefix_order))
1711.4.10 by John Arbash Meinel
Pull out sys.stdout.encoding handling into a separate function so it can be tested, and used elsewhere.
932
933
1907.3.1 by John Arbash Meinel
create a copy_tree wrapper around walkdirs()
934
class TestCopyTree(TestCaseInTempDir):
935
    
936
    def test_copy_basic_tree(self):
937
        self.build_tree(['source/', 'source/a', 'source/b/', 'source/b/c'])
938
        osutils.copy_tree('source', 'target')
2095.3.1 by Martin Pool
Tests shouldn't assume os.listdir returns sorted results
939
        self.assertEqual(['a', 'b'], sorted(os.listdir('target')))
1907.3.1 by John Arbash Meinel
create a copy_tree wrapper around walkdirs()
940
        self.assertEqual(['c'], os.listdir('target/b'))
941
942
    def test_copy_tree_target_exists(self):
943
        self.build_tree(['source/', 'source/a', 'source/b/', 'source/b/c',
944
                         'target/'])
945
        osutils.copy_tree('source', 'target')
2095.3.1 by Martin Pool
Tests shouldn't assume os.listdir returns sorted results
946
        self.assertEqual(['a', 'b'], sorted(os.listdir('target')))
1907.3.1 by John Arbash Meinel
create a copy_tree wrapper around walkdirs()
947
        self.assertEqual(['c'], os.listdir('target/b'))
948
1907.3.2 by John Arbash Meinel
Updated the copy_tree function to allow overriding functionality.
949
    def test_copy_tree_symlinks(self):
2949.5.1 by Alexander Belchenko
selftest: use SymlinkFeature instead of TestSkipped where appropriate
950
        self.requireFeature(SymlinkFeature)
1907.3.2 by John Arbash Meinel
Updated the copy_tree function to allow overriding functionality.
951
        self.build_tree(['source/'])
952
        os.symlink('a/generic/path', 'source/lnk')
953
        osutils.copy_tree('source', 'target')
954
        self.assertEqual(['lnk'], os.listdir('target'))
955
        self.assertEqual('a/generic/path', os.readlink('target/lnk'))
956
957
    def test_copy_tree_handlers(self):
958
        processed_files = []
959
        processed_links = []
960
        def file_handler(from_path, to_path):
961
            processed_files.append(('f', from_path, to_path))
962
        def dir_handler(from_path, to_path):
963
            processed_files.append(('d', from_path, to_path))
964
        def link_handler(from_path, to_path):
965
            processed_links.append((from_path, to_path))
966
        handlers = {'file':file_handler,
967
                    'directory':dir_handler,
968
                    'symlink':link_handler,
969
                   }
970
971
        self.build_tree(['source/', 'source/a', 'source/b/', 'source/b/c'])
972
        if osutils.has_symlinks():
973
            os.symlink('a/generic/path', 'source/lnk')
974
        osutils.copy_tree('source', 'target', handlers=handlers)
975
976
        self.assertEqual([('d', 'source', 'target'),
977
                          ('f', 'source/a', 'target/a'),
978
                          ('d', 'source/b', 'target/b'),
979
                          ('f', 'source/b/c', 'target/b/c'),
980
                         ], processed_files)
981
        self.failIfExists('target')
982
        if osutils.has_symlinks():
983
            self.assertEqual([('source/lnk', 'target/lnk')], processed_links)
984
1907.3.1 by John Arbash Meinel
create a copy_tree wrapper around walkdirs()
985
2192.1.2 by Alexander Belchenko
Tests for osutils.get_terminal_encoding()
986
#class TestTerminalEncoding has been moved to test_osutils_encodings.py
987
# [bialix] 2006/12/26
1711.4.10 by John Arbash Meinel
Pull out sys.stdout.encoding handling into a separate function so it can be tested, and used elsewhere.
988
1963.1.5 by John Arbash Meinel
Create an osutils helper function for modifying the environment
989
990
class TestSetUnsetEnv(TestCase):
991
    """Test updating the environment"""
992
993
    def setUp(self):
994
        super(TestSetUnsetEnv, self).setUp()
995
996
        self.assertEqual(None, os.environ.get('BZR_TEST_ENV_VAR'),
997
                         'Environment was not cleaned up properly.'
998
                         ' Variable BZR_TEST_ENV_VAR should not exist.')
999
        def cleanup():
1000
            if 'BZR_TEST_ENV_VAR' in os.environ:
1001
                del os.environ['BZR_TEST_ENV_VAR']
1002
1003
        self.addCleanup(cleanup)
1004
1005
    def test_set(self):
1006
        """Test that we can set an env variable"""
1007
        old = osutils.set_or_unset_env('BZR_TEST_ENV_VAR', 'foo')
1008
        self.assertEqual(None, old)
1009
        self.assertEqual('foo', os.environ.get('BZR_TEST_ENV_VAR'))
1010
1011
    def test_double_set(self):
1012
        """Test that we get the old value out"""
1013
        osutils.set_or_unset_env('BZR_TEST_ENV_VAR', 'foo')
1014
        old = osutils.set_or_unset_env('BZR_TEST_ENV_VAR', 'bar')
1015
        self.assertEqual('foo', old)
1016
        self.assertEqual('bar', os.environ.get('BZR_TEST_ENV_VAR'))
1017
1018
    def test_unicode(self):
1019
        """Environment can only contain plain strings
1020
        
1021
        So Unicode strings must be encoded.
1022
        """
2785.1.5 by Alexander Belchenko
support for non-ascii BZR_HOME in show_version()
1023
        uni_val, env_val = probe_unicode_in_user_encoding()
1024
        if uni_val is None:
1963.1.5 by John Arbash Meinel
Create an osutils helper function for modifying the environment
1025
            raise TestSkipped('Cannot find a unicode character that works in'
1026
                              ' encoding %s' % (bzrlib.user_encoding,))
1027
1028
        old = osutils.set_or_unset_env('BZR_TEST_ENV_VAR', uni_val)
1029
        self.assertEqual(env_val, os.environ.get('BZR_TEST_ENV_VAR'))
1030
1031
    def test_unset(self):
1032
        """Test that passing None will remove the env var"""
1033
        osutils.set_or_unset_env('BZR_TEST_ENV_VAR', 'foo')
1034
        old = osutils.set_or_unset_env('BZR_TEST_ENV_VAR', None)
1035
        self.assertEqual('foo', old)
1036
        self.assertEqual(None, os.environ.get('BZR_TEST_ENV_VAR'))
1037
        self.failIf('BZR_TEST_ENV_VAR' in os.environ)
1038
2215.6.2 by James Henstridge
add some simple tests for local_time_offset()
1039
1040
class TestLocalTimeOffset(TestCase):
1041
1042
    def test_local_time_offset(self):
1043
        """Test that local_time_offset() returns a sane value."""
1044
        offset = osutils.local_time_offset()
1045
        self.assertTrue(isinstance(offset, int))
2215.6.3 by James Henstridge
narrow the range that the local_time_offset() test uses
1046
        # Test that the offset is no more than a eighteen hours in
1047
        # either direction.
1048
        # Time zone handling is system specific, so it is difficult to
1049
        # do more specific tests, but a value outside of this range is
1050
        # probably wrong.
1051
        eighteen_hours = 18 * 3600
1052
        self.assertTrue(-eighteen_hours < offset < eighteen_hours)
2215.6.2 by James Henstridge
add some simple tests for local_time_offset()
1053
1054
    def test_local_time_offset_with_timestamp(self):
1055
        """Test that local_time_offset() works with a timestamp."""
1056
        offset = osutils.local_time_offset(1000000000.1234567)
1057
        self.assertTrue(isinstance(offset, int))
2215.6.3 by James Henstridge
narrow the range that the local_time_offset() test uses
1058
        eighteen_hours = 18 * 3600
1059
        self.assertTrue(-eighteen_hours < offset < eighteen_hours)
2922.1.2 by John Arbash Meinel
Add tests for sha_file_by_name.
1060
1061
1062
class TestShaFileByName(TestCaseInTempDir):
1063
1064
    def test_sha_empty(self):
1065
        self.build_tree_contents([('foo', '')])
1066
        expected_sha = osutils.sha_string('')
1067
        self.assertEqual(expected_sha, osutils.sha_file_by_name('foo'))
1068
1069
    def test_sha_mixed_endings(self):
1070
        text = 'test\r\nwith\nall\rpossible line endings\r\n'
1071
        self.build_tree_contents([('foo', text)])
1072
        expected_sha = osutils.sha_string(text)
1073
        self.assertEqual(expected_sha, osutils.sha_file_by_name('foo'))