##// END OF EJS Templates
revisions: allow "x123" to refer to nodeid prefix "123"...
revisions: allow "x123" to refer to nodeid prefix "123" When resolving "123" to a revision, we try to interpret it as revnum before we try to interpret it as a nodeid hex prefix. This can lead to the shortest valid prefix being longer than necessary. This patch lets us write such nodeids in a shorter form by prefixing them with "x" instead of adding more hex digits until they're longer than the longest decimal revnum. On my hg repo with almost 69k revisions, turning this feature on saves on average 0.4% on the average nodeid length. That clearly doesn't justify this patch. However, it becomes more usefule when combined with the earlier patches in this series that let you disambiguate nodeid prefixes within a configured revset. Note that we attempt to resolve symbols as nodeid prefixes after we've exhausted all other posibilities, so this is a backwards compatible change (only queries that would previously fail may now succeed). I've still hidden this feature behind an experiemntal config option so we can roll it back if needed. Differential Revision: https://phab.mercurial-scm.org/D4041

File last commit:

r37732:5dd71e9a default
r38891:7848f284 default
Show More
test-hg-parseurl.py
34 lines | 1.4 KiB | text/x-python | PythonLexer
/ tests / test-hg-parseurl.py
Robert Stanca
py3: use print_function in test-hg-parseurl.py
r28746 from __future__ import absolute_import, print_function
Yuya Nishihara
test-hg-parseurl: stop direct symbol import of mercurial.hg.parseurl
r28806
Augie Fackler
tests: port test-hg-parseurl.py to unittest...
r37731 import unittest
Yuya Nishihara
test-hg-parseurl: stop direct symbol import of mercurial.hg.parseurl
r28806 from mercurial import (
hg,
Robert Stanca
py3: use absolute_import in test-hg-parseurl.py
r28745 )
Martijn Pieters
hg: allow hg.parseurl(url, None)...
r8174
Augie Fackler
tests: port test-hg-parseurl.py to unittest...
r37731 class ParseRequestTests(unittest.TestCase):
def testparse(self):
Martijn Pieters
hg: allow hg.parseurl(url, None)...
r8174
Augie Fackler
tests: add b prefixes to test-hg-parseurl.py...
r37732 self.assertEqual(hg.parseurl(b'http://example.com/no/anchor'),
(b'http://example.com/no/anchor', (None, [])))
self.assertEqual(hg.parseurl(b'http://example.com/an/anchor#foo'),
(b'http://example.com/an/anchor', (b'foo', [])))
Augie Fackler
tests: port test-hg-parseurl.py to unittest...
r37731 self.assertEqual(
Augie Fackler
tests: add b prefixes to test-hg-parseurl.py...
r37732 hg.parseurl(b'http://example.com/no/anchor/branches', [b'foo']),
(b'http://example.com/no/anchor/branches', (None, [b'foo'])))
Augie Fackler
tests: port test-hg-parseurl.py to unittest...
r37731 self.assertEqual(
Augie Fackler
tests: add b prefixes to test-hg-parseurl.py...
r37732 hg.parseurl(b'http://example.com/an/anchor/branches#bar', [b'foo']),
(b'http://example.com/an/anchor/branches', (b'bar', [b'foo'])))
Augie Fackler
tests: port test-hg-parseurl.py to unittest...
r37731 self.assertEqual(hg.parseurl(
Augie Fackler
tests: add b prefixes to test-hg-parseurl.py...
r37732 b'http://example.com/an/anchor/branches-None#foo', None),
(b'http://example.com/an/anchor/branches-None', (b'foo', [])))
self.assertEqual(hg.parseurl(b'http://example.com/'),
(b'http://example.com/', (None, [])))
self.assertEqual(hg.parseurl(b'http://example.com'),
(b'http://example.com/', (None, [])))
self.assertEqual(hg.parseurl(b'http://example.com#foo'),
(b'http://example.com/', (b'foo', [])))
Augie Fackler
tests: port test-hg-parseurl.py to unittest...
r37731
if __name__ == '__main__':
import silenttestrunner
silenttestrunner.main(__name__)