##// END OF EJS Templates
windows: add win32com.shell to demandimport ignore list...
windows: add win32com.shell to demandimport ignore list Module 'appdirs' tries to import win32com.shell (and catch ImportError as an indication of failure) to check whether some further functionality should be implemented one or another way [1]. Of course, demandimport lets it down, so if we want appdirs to work we have to add it to demandimport's ignore list. The reason we want appdirs to work is becuase it is used by setuptools [2] to determine egg cache location. Only fairly recent versions of setuptools depend on this so people don't see this often. [1] https://github.com/ActiveState/appdirs/blob/master/appdirs.py#L560 [2] https://github.com/pypa/setuptools/blob/aae0a928119d2a178882c32bded02270e30d0273/pkg_resources/__init__.py#L1369

File last commit:

r31585:c6921568 default
r31990:3e03a4b9 default
Show More
test-simplekeyvaluefile.py
73 lines | 2.1 KiB | text/x-python | PythonLexer
/ tests / test-simplekeyvaluefile.py
from __future__ import absolute_import
import unittest
import silenttestrunner
from mercurial import (
error,
scmutil,
)
class mockfile(object):
def __init__(self, name, fs):
self.name = name
self.fs = fs
def __enter__(self):
return self
def __exit__(self, *args, **kwargs):
pass
def write(self, text):
self.fs.contents[self.name] = text
def read(self):
return self.fs.contents[self.name]
class mockvfs(object):
def __init__(self):
self.contents = {}
def read(self, path):
return mockfile(path, self).read()
def readlines(self, path):
return mockfile(path, self).read().split('\n')
def __call__(self, path, mode, atomictemp):
return mockfile(path, self)
class testsimplekeyvaluefile(unittest.TestCase):
def setUp(self):
self.vfs = mockvfs()
def testbasicwriting(self):
d = {'key1': 'value1', 'Key2': 'value2'}
scmutil.simplekeyvaluefile(self.vfs, 'kvfile').write(d)
self.assertEqual(sorted(self.vfs.read('kvfile').split('\n')),
['', 'Key2=value2', 'key1=value1'])
def testinvalidkeys(self):
d = {'0key1': 'value1', 'Key2': 'value2'}
self.assertRaises(error.ProgrammingError,
scmutil.simplekeyvaluefile(self.vfs, 'kvfile').write,
d)
d = {'key1@': 'value1', 'Key2': 'value2'}
self.assertRaises(error.ProgrammingError,
scmutil.simplekeyvaluefile(self.vfs, 'kvfile').write,
d)
def testinvalidvalues(self):
d = {'key1': 'value1', 'Key2': 'value2\n'}
self.assertRaises(error.ProgrammingError,
scmutil.simplekeyvaluefile(self.vfs, 'kvfile').write,
d)
def testcorruptedfile(self):
self.vfs.contents['badfile'] = 'ababagalamaga\n'
self.assertRaises(error.CorruptedState,
scmutil.simplekeyvaluefile(self.vfs, 'badfile').read)
if __name__ == "__main__":
silenttestrunner.main(__name__)