home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / test_textwrap.py < prev    next >
Text File  |  2003-12-30  |  16KB  |  456 lines

  1. #
  2. # Test script for the textwrap module.
  3. #
  4. # Original tests written by Greg Ward <gward@python.net>.
  5. # Converted to PyUnit by Peter Hansen <peter@engcorp.com>.
  6. # Currently maintained by Greg Ward.
  7. #
  8. # $Id: test_textwrap.py,v 1.22.8.1 2003/08/30 14:52:35 rhettinger Exp $
  9. #
  10.  
  11. import unittest
  12. from test import test_support
  13.  
  14. from textwrap import TextWrapper, wrap, fill, dedent
  15.  
  16.  
  17. class BaseTestCase(unittest.TestCase):
  18.     '''Parent class with utility methods for textwrap tests.'''
  19.  
  20.     def show(self, textin):
  21.         if isinstance(textin, list):
  22.             result = []
  23.             for i in range(len(textin)):
  24.                 result.append("  %d: %r" % (i, textin[i]))
  25.             result = '\n'.join(result)
  26.         elif isinstance(textin, (str, unicode)):
  27.             result = "  %s\n" % repr(textin)
  28.         return result
  29.  
  30.  
  31.     def check(self, result, expect):
  32.         self.assertEquals(result, expect,
  33.             'expected:\n%s\nbut got:\n%s' % (
  34.                 self.show(expect), self.show(result)))
  35.  
  36.     def check_wrap(self, text, width, expect, **kwargs):
  37.         result = wrap(text, width, **kwargs)
  38.         self.check(result, expect)
  39.  
  40.     def check_split(self, text, expect):
  41.         result = self.wrapper._split(text)
  42.         self.assertEquals(result, expect,
  43.                           "\nexpected %r\n"
  44.                           "but got  %r" % (expect, result))
  45.  
  46.  
  47. class WrapTestCase(BaseTestCase):
  48.  
  49.     def setUp(self):
  50.         self.wrapper = TextWrapper(width=45, fix_sentence_endings=True)
  51.  
  52.     def test_simple(self):
  53.         # Simple case: just words, spaces, and a bit of punctuation
  54.  
  55.         text = "Hello there, how are you this fine day?  I'm glad to hear it!"
  56.  
  57.         self.check_wrap(text, 12,
  58.                         ["Hello there,",
  59.                          "how are you",
  60.                          "this fine",
  61.                          "day?  I'm",
  62.                          "glad to hear",
  63.                          "it!"])
  64.         self.check_wrap(text, 42,
  65.                         ["Hello there, how are you this fine day?",
  66.                          "I'm glad to hear it!"])
  67.         self.check_wrap(text, 80, [text])
  68.  
  69.  
  70.     def test_whitespace(self):
  71.         # Whitespace munging and end-of-sentence detection
  72.  
  73.         text = """\
  74. This is a paragraph that already has
  75. line breaks.  But some of its lines are much longer than the others,
  76. so it needs to be wrapped.
  77. Some lines are \ttabbed too.
  78. What a mess!
  79. """
  80.  
  81.         expect = ["This is a paragraph that already has line",
  82.                   "breaks.  But some of its lines are much",
  83.                   "longer than the others, so it needs to be",
  84.                   "wrapped.  Some lines are  tabbed too.  What a",
  85.                   "mess!"]
  86.  
  87.         result = self.wrapper.wrap(text)
  88.         self.check(result, expect)
  89.  
  90.         result = self.wrapper.fill(text)
  91.         self.check(result, '\n'.join(expect))
  92.  
  93.  
  94.     def test_wrap_short(self):
  95.         # Wrapping to make short lines longer
  96.  
  97.         text = "This is a\nshort paragraph."
  98.  
  99.         self.check_wrap(text, 20, ["This is a short",
  100.                                    "paragraph."])
  101.         self.check_wrap(text, 40, ["This is a short paragraph."])
  102.  
  103.  
  104.     def test_wrap_short_1line(self):
  105.         # Test endcases
  106.  
  107.         text = "This is a short line."
  108.  
  109.         self.check_wrap(text, 30, ["This is a short line."])
  110.         self.check_wrap(text, 30, ["(1) This is a short line."],
  111.                         initial_indent="(1) ")
  112.  
  113.  
  114.     def test_hyphenated(self):
  115.         # Test breaking hyphenated words
  116.  
  117.         text = ("this-is-a-useful-feature-for-"
  118.                 "reformatting-posts-from-tim-peters'ly")
  119.  
  120.         self.check_wrap(text, 40,
  121.                         ["this-is-a-useful-feature-for-",
  122.                          "reformatting-posts-from-tim-peters'ly"])
  123.         self.check_wrap(text, 41,
  124.                         ["this-is-a-useful-feature-for-",
  125.                          "reformatting-posts-from-tim-peters'ly"])
  126.         self.check_wrap(text, 42,
  127.                         ["this-is-a-useful-feature-for-reformatting-",
  128.                          "posts-from-tim-peters'ly"])
  129.  
  130.     def test_em_dash(self):
  131.         # Test text with em-dashes
  132.         text = "Em-dashes should be written -- thus."
  133.         self.check_wrap(text, 25,
  134.                         ["Em-dashes should be",
  135.                          "written -- thus."])
  136.  
  137.         # Probe the boundaries of the properly written em-dash,
  138.         # ie. " -- ".
  139.         self.check_wrap(text, 29,
  140.                         ["Em-dashes should be written",
  141.                          "-- thus."])
  142.         expect = ["Em-dashes should be written --",
  143.                   "thus."]
  144.         self.check_wrap(text, 30, expect)
  145.         self.check_wrap(text, 35, expect)
  146.         self.check_wrap(text, 36,
  147.                         ["Em-dashes should be written -- thus."])
  148.  
  149.         # The improperly written em-dash is handled too, because
  150.         # it's adjacent to non-whitespace on both sides.
  151.         text = "You can also do--this or even---this."
  152.         expect = ["You can also do",
  153.                   "--this or even",
  154.                   "---this."]
  155.         self.check_wrap(text, 15, expect)
  156.         self.check_wrap(text, 16, expect)
  157.         expect = ["You can also do--",
  158.                   "this or even---",
  159.                   "this."]
  160.         self.check_wrap(text, 17, expect)
  161.         self.check_wrap(text, 19, expect)
  162.         expect = ["You can also do--this or even",
  163.                   "---this."]
  164.         self.check_wrap(text, 29, expect)
  165.         self.check_wrap(text, 31, expect)
  166.         expect = ["You can also do--this or even---",
  167.                   "this."]
  168.         self.check_wrap(text, 32, expect)
  169.         self.check_wrap(text, 35, expect)
  170.  
  171.         # All of the above behaviour could be deduced by probing the
  172.         # _split() method.
  173.         text = "Here's an -- em-dash and--here's another---and another!"
  174.         expect = ["Here's", " ", "an", " ", "--", " ", "em-", "dash", " ",
  175.                   "and", "--", "here's", " ", "another", "---",
  176.                   "and", " ", "another!"]
  177.         self.check_split(text, expect)
  178.  
  179.         text = "and then--bam!--he was gone"
  180.         expect = ["and", " ", "then", "--", "bam!", "--",
  181.                   "he", " ", "was", " ", "gone"]
  182.         self.check_split(text, expect)
  183.  
  184.  
  185.     def test_unix_options (self):
  186.         # Test that Unix-style command-line options are wrapped correctly.
  187.         # Both Optik (OptionParser) and Docutils rely on this behaviour!
  188.  
  189.         text = "You should use the -n option, or --dry-run in its long form."
  190.         self.check_wrap(text, 20,
  191.                         ["You should use the",
  192.                          "-n option, or --dry-",
  193.                          "run in its long",
  194.                          "form."])
  195.         self.check_wrap(text, 21,
  196.                         ["You should use the -n",
  197.                          "option, or --dry-run",
  198.                          "in its long form."])
  199.         expect = ["You should use the -n option, or",
  200.                   "--dry-run in its long form."]
  201.         self.check_wrap(text, 32, expect)
  202.         self.check_wrap(text, 34, expect)
  203.         self.check_wrap(text, 35, expect)
  204.         self.check_wrap(text, 38, expect)
  205.         expect = ["You should use the -n option, or --dry-",
  206.                   "run in its long form."]
  207.         self.check_wrap(text, 39, expect)
  208.         self.check_wrap(text, 41, expect)
  209.         expect = ["You should use the -n option, or --dry-run",
  210.                   "in its long form."]
  211.         self.check_wrap(text, 42, expect)
  212.  
  213.         # Again, all of the above can be deduced from _split().
  214.         text = "the -n option, or --dry-run or --dryrun"
  215.         expect = ["the", " ", "-n", " ", "option,", " ", "or", " ",
  216.                   "--dry-", "run", " ", "or", " ", "--dryrun"]
  217.         self.check_split(text, expect)
  218.  
  219.     def test_funky_hyphens (self):
  220.         # Screwy edge cases cooked up by David Goodger.  All reported
  221.         # in SF bug #596434.
  222.         self.check_split("what the--hey!", ["what", " ", "the", "--", "hey!"])
  223.         self.check_split("what the--", ["what", " ", "the--"])
  224.         self.check_split("what the--.", ["what", " ", "the--."])
  225.         self.check_split("--text--.", ["--text--."])
  226.  
  227.         # When I first read bug #596434, this is what I thought David
  228.         # was talking about.  I was wrong; these have always worked
  229.         # fine.  The real problem is tested in test_funky_parens()
  230.         # below...
  231.         self.check_split("--option", ["--option"])
  232.         self.check_split("--option-opt", ["--option-", "opt"])
  233.         self.check_split("foo --option-opt bar",
  234.                          ["foo", " ", "--option-", "opt", " ", "bar"])
  235.  
  236.     def test_funky_parens (self):
  237.         # Second part of SF bug #596434: long option strings inside
  238.         # parentheses.
  239.         self.check_split("foo (--option) bar",
  240.                          ["foo", " ", "(--option)", " ", "bar"])
  241.  
  242.         # Related stuff -- make sure parens work in simpler contexts.
  243.         self.check_split("foo (bar) baz",
  244.                          ["foo", " ", "(bar)", " ", "baz"])
  245.         self.check_split("blah (ding dong), wubba",
  246.                          ["blah", " ", "(ding", " ", "dong),",
  247.                           " ", "wubba"])
  248.  
  249.     def test_initial_whitespace(self):
  250.         # SF bug #622849 reported inconsistent handling of leading
  251.         # whitespace; let's test that a bit, shall we?
  252.         text = " This is a sentence with leading whitespace."
  253.         self.check_wrap(text, 50,
  254.                         [" This is a sentence with leading whitespace."])
  255.         self.check_wrap(text, 30,
  256.                         [" This is a sentence with", "leading whitespace."])
  257.  
  258.     def test_unicode(self):
  259.         # *Very* simple test of wrapping Unicode strings.  I'm sure
  260.         # there's more to it than this, but let's at least make
  261.         # sure textwrap doesn't crash on Unicode input!
  262.         text = u"Hello there, how are you today?"
  263.         self.check_wrap(text, 50, [u"Hello there, how are you today?"])
  264.         self.check_wrap(text, 20, [u"Hello there, how are", "you today?"])
  265.         olines = self.wrapper.wrap(text)
  266.         assert isinstance(olines, list) and isinstance(olines[0], unicode)
  267.         otext = self.wrapper.fill(text)
  268.         assert isinstance(otext, unicode)
  269.  
  270.     def test_split(self):
  271.         # Ensure that the standard _split() method works as advertised
  272.         # in the comments
  273.  
  274.         text = "Hello there -- you goof-ball, use the -b option!"
  275.  
  276.         result = self.wrapper._split(text)
  277.         self.check(result,
  278.              ["Hello", " ", "there", " ", "--", " ", "you", " ", "goof-",
  279.               "ball,", " ", "use", " ", "the", " ", "-b", " ",  "option!"])
  280.  
  281.     def test_bad_width(self):
  282.         # Ensure that width <= 0 is caught.
  283.         text = "Whatever, it doesn't matter."
  284.         self.assertRaises(ValueError, wrap, text, 0)
  285.         self.assertRaises(ValueError, wrap, text, -1)
  286.  
  287.  
  288. class LongWordTestCase (BaseTestCase):
  289.     def setUp(self):
  290.         self.wrapper = TextWrapper()
  291.         self.text = '''\
  292. Did you say "supercalifragilisticexpialidocious?"
  293. How *do* you spell that odd word, anyways?
  294. '''
  295.  
  296.     def test_break_long(self):
  297.         # Wrap text with long words and lots of punctuation
  298.  
  299.         self.check_wrap(self.text, 30,
  300.                         ['Did you say "supercalifragilis',
  301.                          'ticexpialidocious?" How *do*',
  302.                          'you spell that odd word,',
  303.                          'anyways?'])
  304.         self.check_wrap(self.text, 50,
  305.                         ['Did you say "supercalifragilisticexpialidocious?"',
  306.                          'How *do* you spell that odd word, anyways?'])
  307.  
  308.         # SF bug 797650.  Prevent an infinite loop by making sure that at
  309.         # least one character gets split off on every pass.
  310.         self.check_wrap('-'*10+'hello', 10,
  311.                         ['----------',
  312.                          '               h',
  313.                          '               e',
  314.                          '               l',
  315.                          '               l',
  316.                          '               o'],
  317.                         subsequent_indent = ' '*15)
  318.  
  319.     def test_nobreak_long(self):
  320.         # Test with break_long_words disabled
  321.         self.wrapper.break_long_words = 0
  322.         self.wrapper.width = 30
  323.         expect = ['Did you say',
  324.                   '"supercalifragilisticexpialidocious?"',
  325.                   'How *do* you spell that odd',
  326.                   'word, anyways?'
  327.                   ]
  328.         result = self.wrapper.wrap(self.text)
  329.         self.check(result, expect)
  330.  
  331.         # Same thing with kwargs passed to standalone wrap() function.
  332.         result = wrap(self.text, width=30, break_long_words=0)
  333.         self.check(result, expect)
  334.  
  335.  
  336. class IndentTestCases(BaseTestCase):
  337.  
  338.     # called before each test method
  339.     def setUp(self):
  340.         self.text = '''\
  341. This paragraph will be filled, first without any indentation,
  342. and then with some (including a hanging indent).'''
  343.  
  344.  
  345.     def test_fill(self):
  346.         # Test the fill() method
  347.  
  348.         expect = '''\
  349. This paragraph will be filled, first
  350. without any indentation, and then with
  351. some (including a hanging indent).'''
  352.  
  353.         result = fill(self.text, 40)
  354.         self.check(result, expect)
  355.  
  356.  
  357.     def test_initial_indent(self):
  358.         # Test initial_indent parameter
  359.  
  360.         expect = ["     This paragraph will be filled,",
  361.                   "first without any indentation, and then",
  362.                   "with some (including a hanging indent)."]
  363.         result = wrap(self.text, 40, initial_indent="     ")
  364.         self.check(result, expect)
  365.  
  366.         expect = "\n".join(expect)
  367.         result = fill(self.text, 40, initial_indent="     ")
  368.         self.check(result, expect)
  369.  
  370.  
  371.     def test_subsequent_indent(self):
  372.         # Test subsequent_indent parameter
  373.  
  374.         expect = '''\
  375.   * This paragraph will be filled, first
  376.     without any indentation, and then
  377.     with some (including a hanging
  378.     indent).'''
  379.  
  380.         result = fill(self.text, 40,
  381.                       initial_indent="  * ", subsequent_indent="    ")
  382.         self.check(result, expect)
  383.  
  384.  
  385. # Despite the similar names, DedentTestCase is *not* the inverse
  386. # of IndentTestCase!
  387. class DedentTestCase(unittest.TestCase):
  388.  
  389.     def test_dedent_nomargin(self):
  390.         # No lines indented.
  391.         text = "Hello there.\nHow are you?\nOh good, I'm glad."
  392.         self.assertEquals(dedent(text), text)
  393.  
  394.         # Similar, with a blank line.
  395.         text = "Hello there.\n\nBoo!"
  396.         self.assertEquals(dedent(text), text)
  397.  
  398.         # Some lines indented, but overall margin is still zero.
  399.         text = "Hello there.\n  This is indented."
  400.         self.assertEquals(dedent(text), text)
  401.  
  402.         # Again, add a blank line.
  403.         text = "Hello there.\n\n  Boo!\n"
  404.         self.assertEquals(dedent(text), text)
  405.  
  406.     def test_dedent_even(self):
  407.         # All lines indented by two spaces.
  408.         text = "  Hello there.\n  How are ya?\n  Oh good."
  409.         expect = "Hello there.\nHow are ya?\nOh good."
  410.         self.assertEquals(dedent(text), expect)
  411.  
  412.         # Same, with blank lines.
  413.         text = "  Hello there.\n\n  How are ya?\n  Oh good.\n"
  414.         expect = "Hello there.\n\nHow are ya?\nOh good.\n"
  415.         self.assertEquals(dedent(text), expect)
  416.  
  417.         # Now indent one of the blank lines.
  418.         text = "  Hello there.\n  \n  How are ya?\n  Oh good.\n"
  419.         expect = "Hello there.\n\nHow are ya?\nOh good.\n"
  420.         self.assertEquals(dedent(text), expect)
  421.  
  422.     def test_dedent_uneven(self):
  423.         # Lines indented unevenly.
  424.         text = '''\
  425.         def foo():
  426.             while 1:
  427.                 return foo
  428.         '''
  429.         expect = '''\
  430. def foo():
  431.     while 1:
  432.         return foo
  433. '''
  434.         self.assertEquals(dedent(text), expect)
  435.  
  436.         # Uneven indentation with a blank line.
  437.         text = "  Foo\n    Bar\n\n   Baz\n"
  438.         expect = "Foo\n  Bar\n\n Baz\n"
  439.         self.assertEquals(dedent(text), expect)
  440.  
  441.         # Uneven indentation with a whitespace-only line.
  442.         text = "  Foo\n    Bar\n \n   Baz\n"
  443.         expect = "Foo\n  Bar\n\n Baz\n"
  444.         self.assertEquals(dedent(text), expect)
  445.  
  446.  
  447.  
  448. def test_main():
  449.     test_support.run_unittest(WrapTestCase,
  450.                               LongWordTestCase,
  451.                               IndentTestCases,
  452.                               DedentTestCase)
  453.  
  454. if __name__ == '__main__':
  455.     test_main()
  456.