[Python-checkins] r82216 - tracker/instances/python-dev/extensions/local_replace.py

ezio.melotti python-checkins at python.org
Fri Jun 25 17:54:17 CEST 2010


Author: ezio.melotti
Date: Fri Jun 25 17:54:16 2010
New Revision: 82216

Log:
Add proper tests, some documentation and use double quotes for HTML attributes in local_replace.py.

Modified:
   tracker/instances/python-dev/extensions/local_replace.py

Modified: tracker/instances/python-dev/extensions/local_replace.py
==============================================================================
--- tracker/instances/python-dev/extensions/local_replace.py	(original)
+++ tracker/instances/python-dev/extensions/local_replace.py	Fri Jun 25 17:54:16 2010
@@ -1,19 +1,26 @@
 import re
 
 substitutions = [ (re.compile(r'\#(?P<ws>\s*)(?P<id>\d+)'),
-                   r"<a href='issue\g<id>'>#\g<ws>\g<id></a>" ),
+                   r'<a href="issue\g<id>">#\g<ws>\g<id></a>'),
                   (re.compile(r'\brevision(?P<ws>\s*)(?P<revision>\d+)'),
-                   r"<a href='http://svn.python.org/view?rev=\g<revision>&view=rev'>revision\g<ws>\g<revision></a>"),
+                   r'<a href="http://svn.python.org/view?rev=\g<revision>&view=rev">revision\g<ws>\g<revision></a>'),
                   (re.compile(r'\brev(?P<ws>\s*)(?P<revision>\d+)'),
-                   r"<a href='http://svn.python.org/view?rev=\g<revision>&view=rev'>rev\g<ws>\g<revision></a>"),
+                   r'<a href="http://svn.python.org/view?rev=\g<revision>&view=rev">rev\g<ws>\g<revision></a>'),
                   (re.compile(r'\b(?P<revstr>r|r\s+)(?P<revision>\d+)'),
-                   r"<a href='http://svn.python.org/view?rev=\g<revision>&view=rev'>\g<revstr>\g<revision></a>"),
+                   r'<a href="http://svn.python.org/view?rev=\g<revision>&view=rev">\g<revstr>\g<revision></a>'),
                   (re.compile(r'\b(?P<path>(?:Demo|Doc|Grammar|Include|Lib|Mac|Misc|Modules|Parser|PC|PCbuild|Python|RISCOS|Tools|Objects)/[-.a-zA-Z0-9_/]+[a-zA-Z0-9]/?)'),
                    r'<a href="http://svn.python.org/view/python/trunk/\g<path>">\g<path></a>'),
                    ]
 
 def localReplace(message):
-
+    """
+    Turn the following strings in HTML links:
+    #1234, # 1234  ->  <a href="issue1234">#1234</a>
+    r12345, r 12345, rev12345, rev 12345, revision12345, revision 12345
+        ->  <a href="http://svn.python.org/view?rev=12345&view=rev">r12345</a>
+    Lib/somefile.py, Modules/somemodule.c, Doc/somedocfile.rst, ...
+        ->  <a href="http://svn.python.org/view/python/trunk/Dir/filename.ext">Dir/filename.ext</a>
+    """
     for cre, replacement in substitutions:
         message = cre.sub(replacement, message)
 
@@ -34,9 +41,58 @@
     instance.registerUtil('clean_count', clean_count)
 
 if "__main__" == __name__:
-    print " revision 222", localReplace(" revision 222")
-    print " wordthatendswithr 222", localReplace(" wordthatendswithr 222")
-    print " r222", localReplace(" r222")
-    print " r 222", localReplace(" r 222")
-    print " #555", localReplace(" #555")
+    import unittest
+
+    class TestLocalReplace(unittest.TestCase):
+        def test_localReplace(self):
+            test_strings = [
+                ## r12345, r 12345, rev12345, rev 12345, revision12345, revision 12345
+                (' r222 ',
+                 ' <a href="http://svn.python.org/view?rev=222&view=rev">r222</a> '),
+                (' r 222 ',
+                 ' <a href="http://svn.python.org/view?rev=222&view=rev">r 222</a> '),
+                (' rev222 ',
+                 ' <a href="http://svn.python.org/view?rev=222&view=rev">rev222</a> '),
+                (' rev  222 ',
+                 ' <a href="http://svn.python.org/view?rev=222&view=rev">rev  222</a> '),
+                (' revision222 ',
+                 ' <a href="http://svn.python.org/view?rev=222&view=rev">revision222</a> '),
+                (' revision 222 ',
+                 ' <a href="http://svn.python.org/view?rev=222&view=rev">revision 222</a> '),
+                ('wordthatendswithr 222',
+                 'wordthatendswithr 222'),
+                #('http://svn.python.org/view/python/tags/r265 ',
+                 #'http://svn.python.org/view/python/tags/r265 '),
+
+                ##  #1234, # 1234
+                ## the lowest issue id is #1000, the highest is #1779871
+                #(' #1 ', ' #1 '),
+                #(' #10 ', ' #10 '),
+                #(' #999 ', ' #999 '),
+                #(' # 999 ', ' # 999 '),
+                (' #5555 ', ' <a href="issue5555">#5555</a> '),
+                (' # 5555 ', ' <a href="issue5555"># 5555</a> '),
+                (' #555555 ', ' <a href="issue555555">#555555</a> '),
+                (' # 555555 ', ' <a href="issue555555"># 555555</a> '),
+                #(' #2000000 ', ' #2000000 '),
+                #(' # 2000000 ', ' # 2000000 '),
+
+                ## Lib/somefile.py, Modules/somemodule.c, Doc/somedocfile.rst, ...
+                ('Lib/cgi.py',
+                 '<a href="http://svn.python.org/view/python/trunk/Lib/cgi.py">Lib/cgi.py</a>'),
+                #('/Lib/cgi.py',
+                 #'<a href="http://svn.python.org/view/python/trunk/Lib/cgi.py">/Lib/cgi.py</a>'),
+                ('the bug is in Lib/cgi.py.',
+                 'the bug is in <a href="http://svn.python.org/view/python/trunk/Lib/cgi.py">Lib/cgi.py</a>.'),
+                #('the bug is in /Lib/cgi.py.',
+                 #'the bug is in <a href="http://svn.python.org/view/python/trunk/Lib/cgi.py">/Lib/cgi.py</a>.'),
+                #('http://svn.python.org/view/python/tags/r265/Lib/cgi.py',
+                 #'http://svn.python.org/view/python/tags/r265/Lib/cgi.py'),
+                #('http://svn.python.org/view/python/tags/r265/Lib/cgi.py?view=markup',
+                 #'http://svn.python.org/view/python/tags/r265/Lib/cgi.py?view=markup'),
+            ]
+            for text, expected_result in test_strings:
+                self.assertEqual(expected_result, localReplace(text))
 
+    # run the tests when executed directly
+    unittest.main()


More information about the Python-checkins mailing list