84
82
dict(_dir_reader_class=_readdir_pyx.UTF8DirReader,
85
83
_native_to_unicode=_utf8_to_unicode)))
87
if test__walkdirs_win32.Win32ReadDirFeature.available():
85
if test__walkdirs_win32.win32_readdir_feature.available():
89
87
from bzrlib import _walkdirs_win32
90
# TODO: check on windows, it may be that we need to use/add
91
# safe_unicode instead of _fs_enc_to_unicode
94
90
dict(_dir_reader_class=_walkdirs_win32.Win32ReadDir,
95
_native_to_unicode=_fs_enc_to_unicode)))
91
_native_to_unicode=_already_unicode)))
96
92
except ImportError:
127
123
class TestRename(tests.TestCaseInTempDir):
125
def create_file(self, filename, content):
126
f = open(filename, 'wb')
132
def _fancy_rename(self, a, b):
133
osutils.fancy_rename(a, b, rename_func=os.rename,
134
unlink_func=os.unlink)
129
136
def test_fancy_rename(self):
130
137
# This should work everywhere
132
osutils.fancy_rename(a, b,
133
rename_func=os.rename,
134
unlink_func=os.unlink)
136
open('a', 'wb').write('something in a\n')
138
self.create_file('a', 'something in a\n')
139
self._fancy_rename('a', 'b')
138
140
self.failIfExists('a')
139
141
self.failUnlessExists('b')
140
142
self.check_file_contents('b', 'something in a\n')
142
open('a', 'wb').write('new something in a\n')
144
self.create_file('a', 'new something in a\n')
145
self._fancy_rename('b', 'a')
145
147
self.check_file_contents('a', 'something in a\n')
149
def test_fancy_rename_fails_source_missing(self):
150
# An exception should be raised, and the target should be left in place
151
self.create_file('target', 'data in target\n')
152
self.assertRaises((IOError, OSError), self._fancy_rename,
153
'missingsource', 'target')
154
self.failUnlessExists('target')
155
self.check_file_contents('target', 'data in target\n')
157
def test_fancy_rename_fails_if_source_and_target_missing(self):
158
self.assertRaises((IOError, OSError), self._fancy_rename,
159
'missingsource', 'missingtarget')
147
161
def test_rename(self):
148
162
# Rename should be semi-atomic on all platforms
149
open('a', 'wb').write('something in a\n')
163
self.create_file('a', 'something in a\n')
150
164
osutils.rename('a', 'b')
151
165
self.failIfExists('a')
152
166
self.failUnlessExists('b')
153
167
self.check_file_contents('b', 'something in a\n')
155
open('a', 'wb').write('new something in a\n')
169
self.create_file('a', 'new something in a\n')
156
170
osutils.rename('b', 'a')
158
172
self.check_file_contents('a', 'something in a\n')
366
380
# Instead blackbox.test_locale should check for localized
367
381
# dates once they do occur in output strings.
383
def test_format_date_with_offset_in_original_timezone(self):
384
self.assertEqual("Thu 1970-01-01 00:00:00 +0000",
385
osutils.format_date_with_offset_in_original_timezone(0))
386
self.assertEqual("Fri 1970-01-02 03:46:40 +0000",
387
osutils.format_date_with_offset_in_original_timezone(100000))
388
self.assertEqual("Fri 1970-01-02 05:46:40 +0200",
389
osutils.format_date_with_offset_in_original_timezone(100000, 7200))
369
391
def test_local_time_offset(self):
370
392
"""Test that local_time_offset() returns a sane value."""
371
393
offset = osutils.local_time_offset()
1160
1182
def test_force_walkdirs_utf8_nt(self):
1161
1183
# Disabled because the thunk of the whole walkdirs api is disabled.
1162
self.requireFeature(test__walkdirs_win32.Win32ReadDirFeature)
1184
self.requireFeature(test__walkdirs_win32.win32_readdir_feature)
1163
1185
self._save_platform_info()
1164
1186
win32utils.winver = 'Windows NT'
1165
1187
from bzrlib._walkdirs_win32 import Win32ReadDir
1166
1188
self.assertDirReaderIs(Win32ReadDir)
1168
1190
def test_force_walkdirs_utf8_98(self):
1169
self.requireFeature(test__walkdirs_win32.Win32ReadDirFeature)
1191
self.requireFeature(test__walkdirs_win32.win32_readdir_feature)
1170
1192
self._save_platform_info()
1171
1193
win32utils.winver = 'Windows 98'
1172
1194
self.assertDirReaderIs(osutils.UnicodeDirReader)
1323
1345
self.assertEqual(expected_dirblocks, result)
1325
1347
def test__walkdirs_utf8_win32readdir(self):
1326
self.requireFeature(test__walkdirs_win32.Win32ReadDirFeature)
1348
self.requireFeature(test__walkdirs_win32.win32_readdir_feature)
1327
1349
self.requireFeature(tests.UnicodeFilenameFeature)
1328
1350
from bzrlib._walkdirs_win32 import Win32ReadDir
1329
1351
self._save_platform_info()
1405
1427
def test__walkdirs_utf_win32_find_file_stat_directory(self):
1406
1428
"""make sure our Stat values are valid"""
1407
self.requireFeature(test__walkdirs_win32.Win32ReadDirFeature)
1429
self.requireFeature(test__walkdirs_win32.win32_readdir_feature)
1408
1430
self.requireFeature(tests.UnicodeFilenameFeature)
1409
1431
from bzrlib._walkdirs_win32 import Win32ReadDir
1410
1432
name0u = u'0dir-\u062c\u0648'
1836
1858
class TestConcurrency(tests.TestCase):
1861
super(TestConcurrency, self).setUp()
1862
orig = osutils._cached_local_concurrency
1864
osutils._cached_local_concurrency = orig
1865
self.addCleanup(restore)
1838
1867
def test_local_concurrency(self):
1839
1868
concurrency = osutils.local_concurrency()
1840
1869
self.assertIsInstance(concurrency, int)
1871
def test_local_concurrency_environment_variable(self):
1872
os.environ['BZR_CONCURRENCY'] = '2'
1873
self.assertEqual(2, osutils.local_concurrency(use_cache=False))
1874
os.environ['BZR_CONCURRENCY'] = '3'
1875
self.assertEqual(3, osutils.local_concurrency(use_cache=False))
1876
os.environ['BZR_CONCURRENCY'] = 'foo'
1877
self.assertEqual(1, osutils.local_concurrency(use_cache=False))
1879
def test_option_concurrency(self):
1880
os.environ['BZR_CONCURRENCY'] = '1'
1881
self.run_bzr('rocks --concurrency 42')
1882
# Command line overrides envrionment variable
1883
self.assertEquals('42', os.environ['BZR_CONCURRENCY'])
1884
self.assertEquals(42, osutils.local_concurrency(use_cache=False))
1843
1887
class TestFailedToLoadExtension(tests.TestCase):
1880
1924
r"bzr: warning: some compiled extensions could not be loaded; "
1881
1925
"see <https://answers\.launchpad\.net/bzr/\+faq/703>\n"
1929
class TestTerminalWidth(tests.TestCase):
1931
def replace_stdout(self, new):
1932
orig_stdout = sys.stdout
1934
sys.stdout = orig_stdout
1935
self.addCleanup(restore)
1938
def replace__terminal_size(self, new):
1939
orig__terminal_size = osutils._terminal_size
1941
osutils._terminal_size = orig__terminal_size
1942
self.addCleanup(restore)
1943
osutils._terminal_size = new
1945
def set_fake_tty(self):
1947
class I_am_a_tty(object):
1951
self.replace_stdout(I_am_a_tty())
1953
def test_default_values(self):
1954
self.assertEqual(80, osutils.default_terminal_width)
1956
def test_defaults_to_BZR_COLUMNS(self):
1957
# BZR_COLUMNS is set by the test framework
1958
self.assertNotEqual('12', os.environ['BZR_COLUMNS'])
1959
os.environ['BZR_COLUMNS'] = '12'
1960
self.assertEqual(12, osutils.terminal_width())
1962
def test_falls_back_to_COLUMNS(self):
1963
del os.environ['BZR_COLUMNS']
1964
self.assertNotEqual('42', os.environ['COLUMNS'])
1966
os.environ['COLUMNS'] = '42'
1967
self.assertEqual(42, osutils.terminal_width())
1969
def test_tty_default_without_columns(self):
1970
del os.environ['BZR_COLUMNS']
1971
del os.environ['COLUMNS']
1973
def terminal_size(w, h):
1977
# We need to override the osutils definition as it depends on the
1978
# running environment that we can't control (PQM running without a
1979
# controlling terminal is one example).
1980
self.replace__terminal_size(terminal_size)
1981
self.assertEqual(42, osutils.terminal_width())
1983
def test_non_tty_default_without_columns(self):
1984
del os.environ['BZR_COLUMNS']
1985
del os.environ['COLUMNS']
1986
self.replace_stdout(None)
1987
self.assertEqual(None, osutils.terminal_width())
1989
def test_no_TIOCGWINSZ(self):
1990
self.requireFeature(term_ios_feature)
1991
termios = term_ios_feature.module
1992
# bug 63539 is about a termios without TIOCGWINSZ attribute
1994
orig = termios.TIOCGWINSZ
1995
except AttributeError:
1996
# We won't remove TIOCGWINSZ, because it doesn't exist anyway :)
2000
termios.TIOCGWINSZ = orig
2001
self.addCleanup(restore)
2002
del termios.TIOCGWINSZ
2003
del os.environ['BZR_COLUMNS']
2004
del os.environ['COLUMNS']
2005
# Whatever the result is, if we don't raise an exception, it's ok.
2006
osutils.terminal_width()