Mercurial > public > mercurial-scm > python-hglib
view tests/test-grep.py @ 127:53387d1e620b
client: connect to repo if necessary when using "with" statement
While the '__exit__' closes the connection to the server, the __enter__ method
does not open it. Without this patch, a disconnected repo cannot be used with a
context managed unless you explicitely call the "open" method.
author | Paul Tonelli <paul.tonelli@logilab.fr> |
---|---|
date | Mon, 16 Jun 2014 18:29:06 +0200 |
parents | 9bd819da245a |
children | 1b47146a4a2c |
line wrap: on
line source
import common class test_grep(common.basetest): def test_basic(self): self.append('a', 'a\n') self.append('b', 'ab\n') self.client.commit('first', addremove=True) # no match self.assertEquals(list(self.client.grep('c')), []) self.assertEquals(list(self.client.grep('a')), [('a', '0', 'a'), ('b', '0', 'ab')]) self.assertEquals(list(self.client.grep('a', 'a')), [('a', '0', 'a')]) self.assertEquals(list(self.client.grep('b')), [('b', '0', 'ab')]) def test_options(self): self.append('a', 'a\n') self.append('b', 'ab\n') rev, node = self.client.commit('first', addremove=True) self.assertEquals([('a', '0', '+', 'a'), ('b', '0', '+', 'ab')], list(self.client.grep('a', all=True))) self.assertEquals([('a', '0'), ('b', '0')], list(self.client.grep('a', fileswithmatches=True))) self.assertEquals([('a', '0', '1', 'a'), ('b', '0', '1', 'ab')], list(self.client.grep('a', line=True))) self.assertEquals([('a', '0', 'test', 'a'), ('b', '0', 'test', 'ab')], list(self.client.grep('a', user=True))) self.assertEquals([('a', '0', '1', '+', 'test'), ('b', '0', '1', '+', 'test')], list(self.client.grep('a', all=True, user=True, line=True, fileswithmatches=True)))