##// END OF EJS Templates
changegroup: move file matcher from narrow extension...
changegroup: move file matcher from narrow extension Sparse changegroup generation requires the use of a matcher to filter which files are relevant. This commit moves the file matcher from the narrow extension to core and updates the narrow extension to use it. I'm not sure why the narrow extension was storing the matcher as a callable that resolved to a matcher. So I changed it to be a simple matcher instance. In addition, code from narrow to intersect the matcher with the local narrow spec is now performed automatically when the changegroup packer is created. If a matcher is not passed into getbundler() an alwaysmatcher() is assumed. This ensures that a matcher is always defined for all operations. Differential Revision: https://phab.mercurial-scm.org/D4011

File last commit:

r37958:6eca47f6 default
r38818:9c057acb default
Show More
test-simplekeyvaluefile.py
90 lines | 3.0 KiB | text/x-python | PythonLexer
/ tests / test-simplekeyvaluefile.py
Kostia Balytskyi
scmutil: add a simple key-value file helper...
r31553 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):
Kostia Balytskyi
scmutil: add simplekeyvaluefile reading test...
r32269 # lines need to contain the trailing '\n' to mock the real readlines
return [l for l in mockfile(path, self).read().splitlines(True)]
Kostia Balytskyi
scmutil: add a simple key-value file helper...
r31553
def __call__(self, path, mode, atomictemp):
return mockfile(path, self)
class testsimplekeyvaluefile(unittest.TestCase):
def setUp(self):
self.vfs = mockvfs()
Kostia Balytskyi
scmutil: add simplekeyvaluefile reading test...
r32269 def testbasicwritingiandreading(self):
Augie Fackler
tests: port test-simplekeyvaluefile.py to Python 3...
r37958 dw = {b'key1': b'value1', b'Key2': b'value2'}
scmutil.simplekeyvaluefile(self.vfs, b'kvfile').write(dw)
self.assertEqual(sorted(self.vfs.read(b'kvfile').split(b'\n')),
[b'', b'Key2=value2', b'key1=value1'])
dr = scmutil.simplekeyvaluefile(self.vfs, b'kvfile').read()
Kostia Balytskyi
scmutil: add simplekeyvaluefile reading test...
r32269 self.assertEqual(dr, dw)
Kostia Balytskyi
scmutil: add a simple key-value file helper...
r31553
Augie Fackler
cleanup: polyfill assertRaisesRegex so we can avoid assertRaisesRegexp...
r37733 if not getattr(unittest.TestCase, 'assertRaisesRegex', False):
# Python 3.7 deprecates the regex*p* version, but 2.7 lacks
# the regex version.
assertRaisesRegex = (# camelcase-required
unittest.TestCase.assertRaisesRegexp)
Kostia Balytskyi
scmutil: add a simple key-value file helper...
r31553 def testinvalidkeys(self):
Augie Fackler
tests: port test-simplekeyvaluefile.py to Python 3...
r37958 d = {b'0key1': b'value1', b'Key2': b'value2'}
Augie Fackler
cleanup: polyfill assertRaisesRegex so we can avoid assertRaisesRegexp...
r37733 with self.assertRaisesRegex(error.ProgrammingError,
Gregory Szorc
tests: use context manager form of assertRaises...
r32279 'keys must start with a letter.*'):
Augie Fackler
tests: port test-simplekeyvaluefile.py to Python 3...
r37958 scmutil.simplekeyvaluefile(self.vfs, b'kvfile').write(d)
Gregory Szorc
tests: use context manager form of assertRaises...
r32279
Augie Fackler
tests: port test-simplekeyvaluefile.py to Python 3...
r37958 d = {b'key1@': b'value1', b'Key2': b'value2'}
Augie Fackler
cleanup: polyfill assertRaisesRegex so we can avoid assertRaisesRegexp...
r37733 with self.assertRaisesRegex(error.ProgrammingError, 'invalid key.*'):
Augie Fackler
tests: port test-simplekeyvaluefile.py to Python 3...
r37958 scmutil.simplekeyvaluefile(self.vfs, b'kvfile').write(d)
Kostia Balytskyi
scmutil: add a simple key-value file helper...
r31553
def testinvalidvalues(self):
Augie Fackler
tests: port test-simplekeyvaluefile.py to Python 3...
r37958 d = {b'key1': b'value1', b'Key2': b'value2\n'}
Augie Fackler
cleanup: polyfill assertRaisesRegex so we can avoid assertRaisesRegexp...
r37733 with self.assertRaisesRegex(error.ProgrammingError, 'invalid val.*'):
Augie Fackler
tests: port test-simplekeyvaluefile.py to Python 3...
r37958 scmutil.simplekeyvaluefile(self.vfs, b'kvfile').write(d)
Kostia Balytskyi
scmutil: add a simple key-value file helper...
r31553
def testcorruptedfile(self):
Augie Fackler
tests: port test-simplekeyvaluefile.py to Python 3...
r37958 self.vfs.contents[b'badfile'] = b'ababagalamaga\n'
Augie Fackler
cleanup: polyfill assertRaisesRegex so we can avoid assertRaisesRegexp...
r37733 with self.assertRaisesRegex(error.CorruptedState,
Gregory Szorc
tests: use context manager form of assertRaises...
r32279 'dictionary.*element.*'):
Augie Fackler
tests: port test-simplekeyvaluefile.py to Python 3...
r37958 scmutil.simplekeyvaluefile(self.vfs, b'badfile').read()
Kostia Balytskyi
scmutil: add a simple key-value file helper...
r31553
Kostia Balytskyi
scmutil: make simplekeyvaluefile able to have a non-key-value first line...
r32270 def testfirstline(self):
Augie Fackler
tests: port test-simplekeyvaluefile.py to Python 3...
r37958 dw = {b'key1': b'value1'}
scmutil.simplekeyvaluefile(self.vfs, b'fl').write(dw, firstline=b'1.0')
self.assertEqual(self.vfs.read(b'fl'), b'1.0\nkey1=value1\n')
dr = scmutil.simplekeyvaluefile(self.vfs, b'fl')\
Kostia Balytskyi
scmutil: make simplekeyvaluefile able to have a non-key-value first line...
r32270 .read(firstlinenonkeyval=True)
Augie Fackler
tests: port test-simplekeyvaluefile.py to Python 3...
r37958 self.assertEqual(dr, {b'__firstline': b'1.0', b'key1': b'value1'})
Kostia Balytskyi
scmutil: make simplekeyvaluefile able to have a non-key-value first line...
r32270
Kostia Balytskyi
scmutil: add a simple key-value file helper...
r31553 if __name__ == "__main__":
silenttestrunner.main(__name__)