25
26
from bzrlib.tests import (
30
UnicodeFilenameFeature,
31
from bzrlib.tests.features import backslashdir_feature
32
32
from bzrlib.win32utils import glob_expand, get_app_path
35
class _BackslashDirSeparatorFeature(tests.Feature):
39
os.lstat(os.getcwd() + '\\')
45
def feature_name(self):
46
return "Filesystem treats '\\' as a directory separator."
48
BackslashDirSeparatorFeature = _BackslashDirSeparatorFeature()
51
class _RequiredModuleFeature(Feature):
53
def __init__(self, mod_name):
54
self.mod_name = mod_name
55
super(_RequiredModuleFeature, self).__init__()
59
__import__(self.mod_name)
64
def feature_name(self):
67
Win32RegistryFeature = _RequiredModuleFeature('_winreg')
68
CtypesFeature = _RequiredModuleFeature('ctypes')
69
Win32comShellFeature = _RequiredModuleFeature('win32com.shell')
33
from bzrlib.tests import (
38
Win32RegistryFeature = features.ModuleAvailableFeature('_winreg')
39
CtypesFeature = features.ModuleAvailableFeature('ctypes')
40
Win32comShellFeature = features.ModuleAvailableFeature('win32com.shell')
41
Win32ApiFeature = features.ModuleAvailableFeature('win32api')
275
249
def test_unicode_dir(self):
276
250
# we should handle unicode paths without errors
277
self.requireFeature(UnicodeFilenameFeature)
251
self.requireFeature(features.UnicodeFilenameFeature)
278
252
os.mkdir(u'\u1234')
279
253
win32utils.set_file_attr_hidden(u'\u1234')
281
255
def test_dot_bzr_in_unicode_dir(self):
282
256
# we should not raise traceback if we try to set hidden attribute
283
257
# on .bzr directory below unicode path
284
self.requireFeature(UnicodeFilenameFeature)
258
self.requireFeature(features.UnicodeFilenameFeature)
285
259
os.makedirs(u'\u1234\\.bzr')
286
260
path = osutils.abspath(u'\u1234\\.bzr')
287
261
win32utils.set_file_attr_hidden(path)
292
264
class Test_CommandLineToArgv(tests.TestCaseInTempDir):
294
def assertCommandLine(self, expected, line, single_quotes_allowed=False):
266
def assertCommandLine(self, expected, line, argv=None,
267
single_quotes_allowed=False):
295
268
# Strictly speaking we should respect parameter order versus glob
296
269
# expansions, but it's not really worth the effort here
297
argv = win32utils._command_line_to_argv(line,
272
argv = win32utils._command_line_to_argv(line, argv,
298
273
single_quotes_allowed=single_quotes_allowed)
299
274
self.assertEqual(expected, sorted(argv))
329
304
def test_single_quote_support(self):
330
305
self.assertCommandLine(["add", "let's-do-it.txt"],
331
"add let's-do-it.txt")
332
self.assertCommandLine(["add", "lets do it.txt"],
333
"add 'lets do it.txt'", single_quotes_allowed=True)
306
"add let's-do-it.txt",
307
["add", "let's-do-it.txt"])
308
self.expectFailure("Using single quotes breaks trimming from argv",
309
self.assertCommandLine, ["add", "lets do it.txt"],
310
"add 'lets do it.txt'", ["add", "'lets", "do", "it.txt'"],
311
single_quotes_allowed=True)
335
313
def test_case_insensitive_globs(self):
336
self.requireFeature(tests.CaseInsCasePresFilenameFeature)
314
if os.path.normcase("AbC") == "AbC":
315
self.skip("Test requires case insensitive globbing function")
337
316
self.build_tree(['a/', 'a/b.c', 'a/c.c', 'a/c.h'])
338
317
self.assertCommandLine([u'A/b.c'], 'A/B*')
340
319
def test_backslashes(self):
341
self.requireFeature(BackslashDirSeparatorFeature)
320
self.requireFeature(backslashdir_feature)
342
321
self.build_tree(['a/', 'a/b.c', 'a/c.c', 'a/c.h'])
343
322
self.assertCommandLine([u'a/b.c'], 'a\\b*')
324
def test_with_pdb(self):
325
"""Check stripping Python arguments before bzr script per lp:587868"""
326
self.assertCommandLine([u"rocks"], "-m pdb rocks", ["rocks"])
327
self.build_tree(['d/', 'd/f1', 'd/f2'])
328
self.assertCommandLine([u"rm", u"x*"], "-m pdb rm x*", ["rm", u"x*"])
329
self.assertCommandLine([u"add", u"d/f1", u"d/f2"], "-m pdb add d/*",
333
class TestGetEnvironUnicode(tests.TestCase):
334
"""Tests for accessing the environment via the windows wide api"""
336
_test_needs_features = [CtypesFeature, features.win32_feature]
339
super(TestGetEnvironUnicode, self).setUp()
340
self.overrideEnv("TEST", "1")
343
"""In the normal case behaves the same as os.environ access"""
344
self.assertEqual("1", win32utils.get_environ_unicode("TEST"))
346
def test_unset(self):
347
"""A variable not present in the environment gives None by default"""
348
del os.environ["TEST"]
349
self.assertIs(None, win32utils.get_environ_unicode("TEST"))
351
def test_unset_default(self):
352
"""A variable not present in the environment gives passed default"""
353
del os.environ["TEST"]
354
self.assertIs("a", win32utils.get_environ_unicode("TEST", "a"))
356
def test_unicode(self):
357
"""A non-ascii variable is returned as unicode"""
358
unicode_val = u"\xa7" # non-ascii character present in many encodings
360
bytes_val = unicode_val.encode(osutils.get_user_encoding())
361
except UnicodeEncodeError:
362
self.skip("Couldn't encode non-ascii string to place in environ")
363
os.environ["TEST"] = bytes_val
364
self.assertEqual(unicode_val, win32utils.get_environ_unicode("TEST"))
367
"""A variable bigger than heuristic buffer size is still accessible"""
368
big_val = "x" * (2<<10)
369
os.environ["TEST"] = big_val
370
self.assertEqual(big_val, win32utils.get_environ_unicode("TEST"))
372
def test_unexpected_error(self):
373
"""An error from the underlying platform function is propogated"""
374
ERROR_INVALID_PARAMETER = 87
375
SetLastError = win32utils.ctypes.windll.kernel32.SetLastError
376
def failer(*args, **kwargs):
377
SetLastError(ERROR_INVALID_PARAMETER)
379
self.overrideAttr(win32utils.get_environ_unicode, "_c_function",
381
e = self.assertRaises(WindowsError,
382
win32utils.get_environ_unicode, "TEST")
383
self.assertEqual(e.winerror, ERROR_INVALID_PARAMETER)