D3373: tests: port test-hg-parseurl.py to unittest

durin42 (Augie Fackler) phabricator at mercurial-scm.org
Mon Apr 16 09:23:11 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG11d128a14ec0: tests: port test-hg-parseurl.py to unittest (authored by durin42, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D3373?vs=8278&id=8307

REVISION DETAIL
  https://phab.mercurial-scm.org/D3373

AFFECTED FILES
  tests/test-hg-parseurl.py
  tests/test-hg-parseurl.py.out

CHANGE DETAILS

diff --git a/tests/test-hg-parseurl.py.out b/tests/test-hg-parseurl.py.out
deleted file mode 100644
--- a/tests/test-hg-parseurl.py.out
+++ /dev/null
@@ -1,8 +0,0 @@
-http://example.com/no/anchor, branches: (None, [])
-http://example.com/an/anchor, branches: ('foo', [])
-http://example.com/no/anchor/branches, branches: (None, ['foo'])
-http://example.com/an/anchor/branches, branches: ('bar', ['foo'])
-http://example.com/an/anchor/branches-None, branches: ('foo', [])
-http://example.com/, branches: (None, [])
-http://example.com/, branches: (None, [])
-http://example.com/, branches: ('foo', [])
diff --git a/tests/test-hg-parseurl.py b/tests/test-hg-parseurl.py
--- a/tests/test-hg-parseurl.py
+++ b/tests/test-hg-parseurl.py
@@ -1,17 +1,34 @@
 from __future__ import absolute_import, print_function
 
+import unittest
+
 from mercurial import (
     hg,
 )
 
-def testparse(url, branch=[]):
-    print('%s, branches: %r' % hg.parseurl(url, branch))
+class ParseRequestTests(unittest.TestCase):
+    def testparse(self):
 
-testparse('http://example.com/no/anchor')
-testparse('http://example.com/an/anchor#foo')
-testparse('http://example.com/no/anchor/branches', branch=['foo'])
-testparse('http://example.com/an/anchor/branches#bar', branch=['foo'])
-testparse('http://example.com/an/anchor/branches-None#foo', branch=None)
-testparse('http://example.com/')
-testparse('http://example.com')
-testparse('http://example.com#foo')
+        self.assertEqual(hg.parseurl('http://example.com/no/anchor'),
+                         ('http://example.com/no/anchor', (None, [])))
+        self.assertEqual(hg.parseurl('http://example.com/an/anchor#foo'),
+                         ('http://example.com/an/anchor', ('foo', [])))
+        self.assertEqual(
+            hg.parseurl('http://example.com/no/anchor/branches', ['foo']),
+            ('http://example.com/no/anchor/branches', (None, ['foo'])))
+        self.assertEqual(
+            hg.parseurl('http://example.com/an/anchor/branches#bar', ['foo']),
+            ('http://example.com/an/anchor/branches', ('bar', ['foo'])))
+        self.assertEqual(hg.parseurl(
+            'http://example.com/an/anchor/branches-None#foo', None),
+            ('http://example.com/an/anchor/branches-None', ('foo', [])))
+        self.assertEqual(hg.parseurl('http://example.com/'),
+                         ('http://example.com/', (None, [])))
+        self.assertEqual(hg.parseurl('http://example.com'),
+                         ('http://example.com/', (None, [])))
+        self.assertEqual(hg.parseurl('http://example.com#foo'),
+                         ('http://example.com/', ('foo', [])))
+
+if __name__ == '__main__':
+    import silenttestrunner
+    silenttestrunner.main(__name__)



To: durin42, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list