100
load_tests = load_tests_apply_scenarios
97
def load_tests(basic_tests, module, loader):
98
suite = loader.suiteClass()
99
dir_reader_tests, remaining_tests = tests.split_suite_by_condition(
100
basic_tests, tests.condition_isinstance(TestDirReader))
101
tests.multiply_tests(dir_reader_tests, dir_reader_scenarios(), suite)
102
suite.addTest(remaining_tests)
103
106
class TestContainsWhitespace(tests.TestCase):
105
108
def test_contains_whitespace(self):
106
self.assertTrue(osutils.contains_whitespace(u' '))
107
self.assertTrue(osutils.contains_whitespace(u'hello there'))
108
self.assertTrue(osutils.contains_whitespace(u'hellothere\n'))
109
self.assertTrue(osutils.contains_whitespace(u'hello\nthere'))
110
self.assertTrue(osutils.contains_whitespace(u'hello\rthere'))
111
self.assertTrue(osutils.contains_whitespace(u'hello\tthere'))
109
self.failUnless(osutils.contains_whitespace(u' '))
110
self.failUnless(osutils.contains_whitespace(u'hello there'))
111
self.failUnless(osutils.contains_whitespace(u'hellothere\n'))
112
self.failUnless(osutils.contains_whitespace(u'hello\nthere'))
113
self.failUnless(osutils.contains_whitespace(u'hello\rthere'))
114
self.failUnless(osutils.contains_whitespace(u'hello\tthere'))
113
116
# \xa0 is "Non-breaking-space" which on some python locales thinks it
114
117
# is whitespace, but we do not.
115
self.assertFalse(osutils.contains_whitespace(u''))
116
self.assertFalse(osutils.contains_whitespace(u'hellothere'))
117
self.assertFalse(osutils.contains_whitespace(u'hello\xa0there'))
118
self.failIf(osutils.contains_whitespace(u''))
119
self.failIf(osutils.contains_whitespace(u'hellothere'))
120
self.failIf(osutils.contains_whitespace(u'hello\xa0there'))
120
123
class TestRename(tests.TestCaseInTempDir):
231
234
self.assertFalse(osutils.is_inside_or_parent_of_any(dirs, fn))
234
class TestLstat(tests.TestCaseInTempDir):
236
def test_lstat_matches_fstat(self):
237
# On Windows, lstat and fstat don't always agree, primarily in the
238
# 'st_ino' and 'st_dev' fields. So we force them to be '0' in our
239
# custom implementation.
240
if sys.platform == 'win32':
241
# We only have special lstat/fstat if we have the extension.
242
# Without it, we may end up re-reading content when we don't have
243
# to, but otherwise it doesn't effect correctness.
244
self.requireFeature(test__walkdirs_win32.win32_readdir_feature)
245
f = open('test-file.txt', 'wb')
246
self.addCleanup(f.close)
247
f.write('some content\n')
249
self.assertEqualStat(osutils.fstat(f.fileno()),
250
osutils.lstat('test-file.txt'))
253
237
class TestRmTree(tests.TestCaseInTempDir):
255
239
def test_rmtree(self):
1099
1080
# Ensure the message contains the file name
1100
1081
self.assertContainsRe(str(e), "\./test-unreadable")
1103
def test_walkdirs_encoding_error(self):
1104
# <https://bugs.launchpad.net/bzr/+bug/488519>
1105
# walkdirs didn't raise a useful message when the filenames
1106
# are not using the filesystem's encoding
1108
# require a bytestring based filesystem
1109
self.requireFeature(tests.ByteStringNamedFilesystem)
1120
self.build_tree(tree)
1122
# rename the 1file to a latin-1 filename
1123
os.rename("./1file", "\xe8file")
1124
if "\xe8file" not in os.listdir("."):
1125
self.skip("Lack filesystem that preserves arbitrary bytes")
1127
self._save_platform_info()
1128
win32utils.winver = None # Avoid the win32 detection code
1129
osutils._fs_enc = 'UTF-8'
1131
# this should raise on error
1133
for dirdetail, dirblock in osutils.walkdirs('.'):
1136
self.assertRaises(errors.BadFilenameEncoding, attempt)
1138
1083
def test__walkdirs_utf8(self):
1724
1669
class TestReCompile(tests.TestCase):
1726
def _deprecated_re_compile_checked(self, *args, **kwargs):
1727
return self.applyDeprecated(symbol_versioning.deprecated_in((2, 2, 0)),
1728
osutils.re_compile_checked, *args, **kwargs)
1730
1671
def test_re_compile_checked(self):
1731
r = self._deprecated_re_compile_checked(r'A*', re.IGNORECASE)
1672
r = osutils.re_compile_checked(r'A*', re.IGNORECASE)
1732
1673
self.assertTrue(r.match('aaaa'))
1733
1674
self.assertTrue(r.match('aAaA'))
1735
1676
def test_re_compile_checked_error(self):
1736
1677
# like https://bugs.launchpad.net/bzr/+bug/251352
1738
# Due to possible test isolation error, re.compile is not lazy at
1739
# this point. We re-install lazy compile.
1740
lazy_regex.install_lazy_compile()
1741
1678
err = self.assertRaises(
1742
1679
errors.BzrCommandError,
1743
self._deprecated_re_compile_checked, '*', re.IGNORECASE, 'test case')
1680
osutils.re_compile_checked, '*', re.IGNORECASE, 'test case')
1744
1681
self.assertEqual(
1745
'Invalid regular expression in test case: '
1746
'"*" nothing to repeat',
1682
"Invalid regular expression in test case: '*': "
1683
"nothing to repeat",
1750
1687
class TestDirReader(tests.TestCaseInTempDir):
1752
scenarios = dir_reader_scenarios()
1754
1689
# Set by load_tests
1755
1690
_dir_reader_class = None
1756
1691
_native_to_unicode = None
1915
1853
self.assertIsInstance(concurrency, int)
1917
1855
def test_local_concurrency_environment_variable(self):
1918
self.overrideEnv('BZR_CONCURRENCY', '2')
1856
os.environ['BZR_CONCURRENCY'] = '2'
1919
1857
self.assertEqual(2, osutils.local_concurrency(use_cache=False))
1920
self.overrideEnv('BZR_CONCURRENCY', '3')
1858
os.environ['BZR_CONCURRENCY'] = '3'
1921
1859
self.assertEqual(3, osutils.local_concurrency(use_cache=False))
1922
self.overrideEnv('BZR_CONCURRENCY', 'foo')
1860
os.environ['BZR_CONCURRENCY'] = 'foo'
1923
1861
self.assertEqual(1, osutils.local_concurrency(use_cache=False))
1925
1863
def test_option_concurrency(self):
1926
self.overrideEnv('BZR_CONCURRENCY', '1')
1864
os.environ['BZR_CONCURRENCY'] = '1'
1927
1865
self.run_bzr('rocks --concurrency 42')
1928
# Command line overrides environment variable
1866
# Command line overrides envrionment variable
1929
1867
self.assertEquals('42', os.environ['BZR_CONCURRENCY'])
1930
1868
self.assertEquals(42, osutils.local_concurrency(use_cache=False))
2001
1927
def test_defaults_to_BZR_COLUMNS(self):
2002
1928
# BZR_COLUMNS is set by the test framework
2003
1929
self.assertNotEqual('12', os.environ['BZR_COLUMNS'])
2004
self.overrideEnv('BZR_COLUMNS', '12')
1930
os.environ['BZR_COLUMNS'] = '12'
2005
1931
self.assertEqual(12, osutils.terminal_width())
2007
def test_BZR_COLUMNS_0_no_limit(self):
2008
self.overrideEnv('BZR_COLUMNS', '0')
2009
self.assertEqual(None, osutils.terminal_width())
2011
1933
def test_falls_back_to_COLUMNS(self):
2012
self.overrideEnv('BZR_COLUMNS', None)
1934
del os.environ['BZR_COLUMNS']
2013
1935
self.assertNotEqual('42', os.environ['COLUMNS'])
2014
1936
self.set_fake_tty()
2015
self.overrideEnv('COLUMNS', '42')
1937
os.environ['COLUMNS'] = '42'
2016
1938
self.assertEqual(42, osutils.terminal_width())
2018
1940
def test_tty_default_without_columns(self):
2019
self.overrideEnv('BZR_COLUMNS', None)
2020
self.overrideEnv('COLUMNS', None)
1941
del os.environ['BZR_COLUMNS']
1942
del os.environ['COLUMNS']
2022
1944
def terminal_size(w, h):
2048
1970
self.overrideAttr(termios, 'TIOCGWINSZ')
2049
1971
del termios.TIOCGWINSZ
2050
self.overrideEnv('BZR_COLUMNS', None)
2051
self.overrideEnv('COLUMNS', None)
1972
del os.environ['BZR_COLUMNS']
1973
del os.environ['COLUMNS']
2052
1974
# Whatever the result is, if we don't raise an exception, it's ok.
2053
1975
osutils.terminal_width()
2056
class TestCreationOps(tests.TestCaseInTempDir):
2057
_test_needs_features = [features.chown_feature]
2060
tests.TestCaseInTempDir.setUp(self)
2061
self.overrideAttr(os, 'chown', self._dummy_chown)
2063
# params set by call to _dummy_chown
2064
self.path = self.uid = self.gid = None
2066
def _dummy_chown(self, path, uid, gid):
2067
self.path, self.uid, self.gid = path, uid, gid
2069
def test_copy_ownership_from_path(self):
2070
"""copy_ownership_from_path test with specified src."""
2072
f = open('test_file', 'wt')
2073
osutils.copy_ownership_from_path('test_file', ownsrc)
2076
self.assertEquals(self.path, 'test_file')
2077
self.assertEquals(self.uid, s.st_uid)
2078
self.assertEquals(self.gid, s.st_gid)
2080
def test_copy_ownership_nonesrc(self):
2081
"""copy_ownership_from_path test with src=None."""
2082
f = open('test_file', 'wt')
2083
# should use parent dir for permissions
2084
osutils.copy_ownership_from_path('test_file')
2087
self.assertEquals(self.path, 'test_file')
2088
self.assertEquals(self.uid, s.st_uid)
2089
self.assertEquals(self.gid, s.st_gid)
2092
class TestGetuserUnicode(tests.TestCase):
2094
def test_ascii_user(self):
2095
self.overrideEnv('LOGNAME', 'jrandom')
2096
self.assertEqual(u'jrandom', osutils.getuser_unicode())
2098
def test_unicode_user(self):
2099
ue = osutils.get_user_encoding()
2100
uni_val, env_val = tests.probe_unicode_in_user_encoding()
2102
raise tests.TestSkipped(
2103
'Cannot find a unicode character that works in encoding %s'
2104
% (osutils.get_user_encoding(),))
2105
uni_username = u'jrandom' + uni_val
2106
encoded_username = uni_username.encode(ue)
2107
self.overrideEnv('LOGNAME', encoded_username)
2108
self.assertEqual(uni_username, osutils.getuser_unicode())
2109
self.overrideEnv('LOGNAME', u'jrandom\xb6'.encode(ue))
2110
self.assertEqual(u'jrandom\xb6', osutils.getuser_unicode())
2112
def test_no_username_bug_660174(self):
2113
self.requireFeature(features.win32_feature)
2114
for name in ('LOGNAME', 'USER', 'LNAME', 'USERNAME'):
2115
self.overrideEnv(name, None)
2116
self.assertEqual(u'UNKNOWN', osutils.getuser_unicode())
2119
class TestBackupNames(tests.TestCase):
2122
super(TestBackupNames, self).setUp()
2125
def backup_exists(self, name):
2126
return name in self.backups
2128
def available_backup_name(self, name):
2129
backup_name = osutils.available_backup_name(name, self.backup_exists)
2130
self.backups.append(backup_name)
2133
def assertBackupName(self, expected, name):
2134
self.assertEqual(expected, self.available_backup_name(name))
2136
def test_empty(self):
2137
self.assertBackupName('file.~1~', 'file')
2139
def test_existing(self):
2140
self.available_backup_name('file')
2141
self.available_backup_name('file')
2142
self.assertBackupName('file.~3~', 'file')
2143
# Empty slots are found, this is not a strict requirement and may be
2144
# revisited if we test against all implementations.
2145
self.backups.remove('file.~2~')
2146
self.assertBackupName('file.~2~', 'file')
2149
class TestFindExecutableInPath(tests.TestCase):
2151
def test_windows(self):
2152
if sys.platform != 'win32':
2153
raise tests.TestSkipped('test requires win32')
2154
self.assertTrue(osutils.find_executable_on_path('explorer') is not None)
2156
osutils.find_executable_on_path('explorer.exe') is not None)
2158
osutils.find_executable_on_path('EXPLORER.EXE') is not None)
2160
osutils.find_executable_on_path('THIS SHOULD NOT EXIST') is None)
2161
self.assertTrue(osutils.find_executable_on_path('file.txt') is None)
2163
def test_other(self):
2164
if sys.platform == 'win32':
2165
raise tests.TestSkipped('test requires non-win32')
2166
self.assertTrue(osutils.find_executable_on_path('sh') is not None)
2168
osutils.find_executable_on_path('THIS SHOULD NOT EXIST') is None)