forked from mirrors/gecko-dev
--HG-- rename : third_party/python/hglib/LICENSE => third_party/python/python-hglib/LICENSE rename : third_party/python/hglib/hglib/__init__.py => third_party/python/python-hglib/hglib/__init__.py rename : third_party/python/hglib/hglib/client.py => third_party/python/python-hglib/hglib/client.py rename : third_party/python/hglib/hglib/context.py => third_party/python/python-hglib/hglib/context.py rename : third_party/python/hglib/hglib/error.py => third_party/python/python-hglib/hglib/error.py rename : third_party/python/hglib/hglib/merge.py => third_party/python/python-hglib/hglib/merge.py rename : third_party/python/hglib/hglib/templates.py => third_party/python/python-hglib/hglib/templates.py rename : third_party/python/hglib/hglib/util.py => third_party/python/python-hglib/hglib/util.py rename : third_party/python/hglib/setup.py => third_party/python/python-hglib/setup.py extra : rebase_source : 552d93c9e90c04171c8b627c8f4f4fa5ec506cc3
45 lines
1.9 KiB
Python
45 lines
1.9 KiB
Python
from tests import common
|
|
from hglib.util import b
|
|
|
|
class test_grep(common.basetest):
|
|
def test_basic(self):
|
|
self.append('a', 'a\n')
|
|
self.append('b', 'ab\n')
|
|
self.client.commit(b('first'), addremove=True)
|
|
|
|
# no match
|
|
self.assertEquals(list(self.client.grep(b('c'))), [])
|
|
|
|
self.assertEquals(list(self.client.grep(b('a'))),
|
|
[(b('a'), b('0'), b('a')), (b('b'), b('0'), b('ab'))])
|
|
self.assertEquals(list(self.client.grep(b('a'), b('a'))),
|
|
[(b('a'), b('0'), b('a'))])
|
|
|
|
self.assertEquals(list(self.client.grep(b('b'))),
|
|
[(b('b'), b('0'), b('ab'))])
|
|
|
|
def test_options(self):
|
|
self.append('a', 'a\n')
|
|
self.append('b', 'ab\n')
|
|
rev, node = self.client.commit(b('first'), addremove=True)
|
|
|
|
self.assertEquals([(b('a'), b('0'), b('+'), b('a')),
|
|
(b('b'), b('0'), b('+'), b('ab'))],
|
|
list(self.client.grep(b('a'), all=True)))
|
|
|
|
self.assertEquals([(b('a'), b('0')), (b('b'), b('0'))],
|
|
list(self.client.grep(b('a'), fileswithmatches=True)))
|
|
|
|
self.assertEquals([(b('a'), b('0'), b('1'), b('a')),
|
|
(b('b'), b('0'), b('1'), b('ab'))],
|
|
list(self.client.grep(b('a'), line=True)))
|
|
|
|
self.assertEquals([(b('a'), b('0'), b('test'), b('a')),
|
|
(b('b'), b('0'), b('test'), b('ab'))],
|
|
list(self.client.grep(b('a'), user=True)))
|
|
|
|
self.assertEquals([(b('a'), b('0'), b('1'), b('+'), b('test')),
|
|
(b('b'), b('0'), b('1'), b('+'), b('test'))],
|
|
list(self.client.grep(b('a'), all=True, user=True,
|
|
line=True,
|
|
fileswithmatches=True)))
|