Mercurial > hg
view tests/test-hg-parseurl.py @ 51382:ed0b78b2a3aa
crecord: add a default regex to curseschunkselector
Whether there is a regex to search or not will affect if we can find
the next or the previous search hit.
author | Jordi Gutiérrez Hermoso <jordigh@octave.org> |
---|---|
date | Wed, 14 Feb 2024 22:46:41 -0500 |
parents | 6000f5b25c9b |
children | 493034cc3265 |
line wrap: on
line source
import unittest from mercurial.utils import urlutil class ParseRequestTests(unittest.TestCase): def testparse(self): self.assertEqual( urlutil.parseurl(b'http://example.com/no/anchor'), (b'http://example.com/no/anchor', (None, [])), ) self.assertEqual( urlutil.parseurl(b'http://example.com/an/anchor#foo'), (b'http://example.com/an/anchor', (b'foo', [])), ) self.assertEqual( urlutil.parseurl( b'http://example.com/no/anchor/branches', [b'foo'] ), (b'http://example.com/no/anchor/branches', (None, [b'foo'])), ) self.assertEqual( urlutil.parseurl( b'http://example.com/an/anchor/branches#bar', [b'foo'] ), (b'http://example.com/an/anchor/branches', (b'bar', [b'foo'])), ) self.assertEqual( urlutil.parseurl( b'http://example.com/an/anchor/branches-None#foo', None ), (b'http://example.com/an/anchor/branches-None', (b'foo', [])), ) self.assertEqual( urlutil.parseurl(b'http://example.com/'), (b'http://example.com/', (None, [])), ) self.assertEqual( urlutil.parseurl(b'http://example.com'), (b'http://example.com/', (None, [])), ) self.assertEqual( urlutil.parseurl(b'http://example.com#foo'), (b'http://example.com/', (b'foo', [])), ) if __name__ == '__main__': import silenttestrunner silenttestrunner.main(__name__)