87
85
if test__walkdirs_win32.Win32ReadDirFeature.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()
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 test_default_values(self):
1932
self.assertEquals(80, osutils.default_terminal_width)
1934
def test_defaults_to_BZR_COLUMNS(self):
1935
# BZR_COLUMNS is set by the test framework
1936
self.assertEquals('80', os.environ['BZR_COLUMNS'])
1937
os.environ['BZR_COLUMNS'] = '12'
1938
self.assertEquals(12, osutils.terminal_width())
1940
def test_tty_default_without_columns(self):
1941
del os.environ['BZR_COLUMNS']
1942
del os.environ['COLUMNS']
1943
orig_stdout = sys.stdout
1945
sys.stdout = orig_stdout
1946
self.addCleanup(restore)
1948
class I_am_a_tty(object):
1952
sys.stdout = I_am_a_tty()
1953
self.assertEquals(None, osutils.terminal_width())
1955
def test_non_tty_default_without_columns(self):
1956
del os.environ['BZR_COLUMNS']
1957
del os.environ['COLUMNS']
1958
orig_stdout = sys.stdout
1960
sys.stdout = orig_stdout
1961
self.addCleanup(restore)
1963
self.assertEquals(None, osutils.terminal_width())
1965
def test_no_TIOCGWINSZ(self):
1966
self.requireFeature(TermIOSFeature)
1967
termios = TermIOSFeature.module
1968
# bug 63539 is about a termios without TIOCGWINSZ attribute
1970
orig = termios.TIOCGWINSZ
1971
except AttributeError:
1972
# We won't remove TIOCGWINSZ, because it doesn't exist anyway :)
1976
termios.TIOCGWINSZ = orig
1977
self.addCleanup(restore)
1978
del termios.TIOCGWINSZ
1979
del os.environ['BZR_COLUMNS']
1980
del os.environ['COLUMNS']
1981
self.assertIs(None, osutils.terminal_width())