2002-08-22 15:37:50 -03:00
|
|
|
#
|
|
|
|
# Test script for the textwrap module.
|
|
|
|
#
|
|
|
|
# Original tests written by Greg Ward <gward@python.net>.
|
|
|
|
# Converted to PyUnit by Peter Hansen <peter@engcorp.com>.
|
|
|
|
# Currently maintained by Greg Ward.
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
|
2002-08-22 15:11:10 -03:00
|
|
|
import unittest
|
2002-08-22 15:35:49 -03:00
|
|
|
from test import test_support
|
2002-08-22 15:11:10 -03:00
|
|
|
|
|
|
|
from textwrap import TextWrapper, wrap, fill
|
|
|
|
|
|
|
|
|
2002-08-22 15:57:26 -03:00
|
|
|
class BaseTestCase(unittest.TestCase):
|
2002-08-22 15:11:10 -03:00
|
|
|
'''Parent class with utility methods for textwrap tests.'''
|
|
|
|
|
|
|
|
def show(self, textin):
|
|
|
|
if isinstance(textin, list):
|
|
|
|
result = []
|
|
|
|
for i in range(len(textin)):
|
|
|
|
result.append(" %d: %r" % (i, textin[i]))
|
|
|
|
result = '\n'.join(result)
|
|
|
|
elif isinstance(textin, (str, unicode)):
|
|
|
|
result = " %s\n" % repr(textin)
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def check(self, result, expect):
|
2002-08-22 17:13:47 -03:00
|
|
|
self.assertEquals(result, expect,
|
2002-08-22 16:47:27 -03:00
|
|
|
'expected:\n%s\nbut got:\n%s' % (
|
|
|
|
self.show(expect), self.show(result)))
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 15:55:38 -03:00
|
|
|
def check_wrap (self, text, width, expect):
|
|
|
|
result = wrap(text, width)
|
|
|
|
self.check(result, expect)
|
|
|
|
|
2002-08-22 18:16:25 -03:00
|
|
|
def check_split (self, wrapper, text, expect):
|
|
|
|
result = wrapper._split(text)
|
|
|
|
self.assertEquals(result, expect,
|
|
|
|
"\nexpected %r\n"
|
|
|
|
"but got %r" % (expect, result))
|
|
|
|
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 15:57:26 -03:00
|
|
|
class WrapTestCase(BaseTestCase):
|
2002-08-22 15:11:10 -03:00
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
self.wrapper = TextWrapper(width=45, fix_sentence_endings=True)
|
|
|
|
|
2002-08-22 15:35:49 -03:00
|
|
|
def test_simple(self):
|
2002-08-22 17:13:47 -03:00
|
|
|
# Simple case: just words, spaces, and a bit of punctuation
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 15:55:38 -03:00
|
|
|
text = "Hello there, how are you this fine day? I'm glad to hear it!"
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 15:55:38 -03:00
|
|
|
self.check_wrap(text, 12,
|
|
|
|
["Hello there,",
|
|
|
|
"how are you",
|
|
|
|
"this fine",
|
|
|
|
"day? I'm",
|
|
|
|
"glad to hear",
|
|
|
|
"it!"])
|
|
|
|
self.check_wrap(text, 42,
|
|
|
|
["Hello there, how are you this fine day?",
|
|
|
|
"I'm glad to hear it!"])
|
|
|
|
self.check_wrap(text, 80, [text])
|
2002-08-22 15:11:10 -03:00
|
|
|
|
|
|
|
|
2002-08-22 15:35:49 -03:00
|
|
|
def test_whitespace(self):
|
2002-08-22 17:13:47 -03:00
|
|
|
# Whitespace munging and end-of-sentence detection
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 15:55:38 -03:00
|
|
|
text = """\
|
2002-08-22 15:11:10 -03:00
|
|
|
This is a paragraph that already has
|
|
|
|
line breaks. But some of its lines are much longer than the others,
|
|
|
|
so it needs to be wrapped.
|
|
|
|
Some lines are \ttabbed too.
|
|
|
|
What a mess!
|
|
|
|
"""
|
|
|
|
|
2002-08-22 15:55:38 -03:00
|
|
|
expect = ["This is a paragraph that already has line",
|
|
|
|
"breaks. But some of its lines are much",
|
|
|
|
"longer than the others, so it needs to be",
|
|
|
|
"wrapped. Some lines are tabbed too. What a",
|
|
|
|
"mess!"]
|
|
|
|
|
|
|
|
result = self.wrapper.wrap(text)
|
2002-08-22 15:11:10 -03:00
|
|
|
self.check(result, expect)
|
|
|
|
|
2002-08-22 15:55:38 -03:00
|
|
|
result = self.wrapper.fill(text)
|
2002-08-22 15:11:10 -03:00
|
|
|
self.check(result, '\n'.join(expect))
|
|
|
|
|
|
|
|
|
2002-08-22 15:35:49 -03:00
|
|
|
def test_wrap_short(self):
|
2002-08-22 17:13:47 -03:00
|
|
|
# Wrapping to make short lines longer
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 15:55:38 -03:00
|
|
|
text = "This is a\nshort paragraph."
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 15:55:38 -03:00
|
|
|
self.check_wrap(text, 20, ["This is a short",
|
|
|
|
"paragraph."])
|
|
|
|
self.check_wrap(text, 40, ["This is a short paragraph."])
|
2002-08-22 15:11:10 -03:00
|
|
|
|
|
|
|
|
2002-08-22 15:35:49 -03:00
|
|
|
def test_hyphenated(self):
|
2002-08-22 17:13:47 -03:00
|
|
|
# Test breaking hyphenated words
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 15:55:38 -03:00
|
|
|
text = ("this-is-a-useful-feature-for-"
|
|
|
|
"reformatting-posts-from-tim-peters'ly")
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 15:55:38 -03:00
|
|
|
self.check_wrap(text, 40,
|
|
|
|
["this-is-a-useful-feature-for-",
|
|
|
|
"reformatting-posts-from-tim-peters'ly"])
|
|
|
|
self.check_wrap(text, 41,
|
|
|
|
["this-is-a-useful-feature-for-",
|
|
|
|
"reformatting-posts-from-tim-peters'ly"])
|
|
|
|
self.check_wrap(text, 42,
|
|
|
|
["this-is-a-useful-feature-for-reformatting-",
|
|
|
|
"posts-from-tim-peters'ly"])
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 16:47:27 -03:00
|
|
|
def test_em_dash(self):
|
2002-08-22 17:13:47 -03:00
|
|
|
# Test text with em-dashes
|
2002-08-22 16:47:27 -03:00
|
|
|
text = "Em-dashes should be written -- thus."
|
|
|
|
self.check_wrap(text, 25,
|
|
|
|
["Em-dashes should be",
|
|
|
|
"written -- thus."])
|
|
|
|
|
|
|
|
# Probe the boundaries of the properly written em-dash,
|
|
|
|
# ie. " -- ".
|
|
|
|
self.check_wrap(text, 29,
|
|
|
|
["Em-dashes should be written",
|
|
|
|
"-- thus."])
|
|
|
|
expect = ["Em-dashes should be written --",
|
|
|
|
"thus."]
|
|
|
|
self.check_wrap(text, 30, expect)
|
|
|
|
self.check_wrap(text, 35, expect)
|
|
|
|
self.check_wrap(text, 36,
|
|
|
|
["Em-dashes should be written -- thus."])
|
2002-08-22 17:13:47 -03:00
|
|
|
|
2002-08-22 16:47:27 -03:00
|
|
|
# The improperly written em-dash is handled too, because
|
|
|
|
# it's adjacent to non-whitespace on both sides.
|
|
|
|
text = "You can also do--this or even---this."
|
|
|
|
expect = ["You can also do",
|
|
|
|
"--this or even",
|
|
|
|
"---this."]
|
|
|
|
self.check_wrap(text, 15, expect)
|
|
|
|
self.check_wrap(text, 16, expect)
|
|
|
|
expect = ["You can also do--",
|
|
|
|
"this or even---",
|
|
|
|
"this."]
|
|
|
|
self.check_wrap(text, 17, expect)
|
|
|
|
self.check_wrap(text, 19, expect)
|
|
|
|
expect = ["You can also do--this or even",
|
|
|
|
"---this."]
|
|
|
|
self.check_wrap(text, 29, expect)
|
|
|
|
self.check_wrap(text, 31, expect)
|
|
|
|
expect = ["You can also do--this or even---",
|
|
|
|
"this."]
|
|
|
|
self.check_wrap(text, 32, expect)
|
|
|
|
self.check_wrap(text, 35, expect)
|
|
|
|
|
|
|
|
# All of the above behaviour could be deduced by probing the
|
|
|
|
# _split() method.
|
|
|
|
text = "Here's an -- em-dash and--here's another---and another!"
|
|
|
|
expect = ["Here's", " ", "an", " ", "--", " ", "em-", "dash", " ",
|
|
|
|
"and", "--", "here's", " ", "another", "---",
|
|
|
|
"and", " ", "another!"]
|
2002-08-22 18:16:25 -03:00
|
|
|
self.check_split(self.wrapper, text, expect)
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 18:27:05 -03:00
|
|
|
text = "and then--bam!--he was gone"
|
|
|
|
expect = ["and", " ", "then", "--", "bam!", "--",
|
|
|
|
"he", " ", "was", " ", "gone"]
|
|
|
|
self.check_split(self.wrapper, text, expect)
|
|
|
|
|
|
|
|
|
2002-08-22 18:10:07 -03:00
|
|
|
def test_unix_options (self):
|
|
|
|
# Test that Unix-style command-line options are wrapped correctly.
|
|
|
|
# Both Optik (OptionParser) and Docutils rely on this behaviour!
|
|
|
|
|
|
|
|
text = "You should use the -n option, or --dry-run in its long form."
|
|
|
|
self.check_wrap(text, 20,
|
|
|
|
["You should use the",
|
|
|
|
"-n option, or --dry-",
|
|
|
|
"run in its long",
|
|
|
|
"form."])
|
|
|
|
self.check_wrap(text, 21,
|
|
|
|
["You should use the -n",
|
|
|
|
"option, or --dry-run",
|
|
|
|
"in its long form."])
|
|
|
|
expect = ["You should use the -n option, or",
|
|
|
|
"--dry-run in its long form."]
|
|
|
|
self.check_wrap(text, 32, expect)
|
|
|
|
self.check_wrap(text, 34, expect)
|
|
|
|
self.check_wrap(text, 35, expect)
|
|
|
|
self.check_wrap(text, 38, expect)
|
|
|
|
expect = ["You should use the -n option, or --dry-",
|
|
|
|
"run in its long form."]
|
|
|
|
self.check_wrap(text, 39, expect)
|
|
|
|
self.check_wrap(text, 41, expect)
|
|
|
|
expect = ["You should use the -n option, or --dry-run",
|
|
|
|
"in its long form."]
|
|
|
|
self.check_wrap(text, 42, expect)
|
|
|
|
|
2002-08-22 18:12:54 -03:00
|
|
|
# Again, all of the above can be deduced from _split().
|
|
|
|
text = "the -n option, or --dry-run or --dryrun"
|
|
|
|
expect = ["the", " ", "-n", " ", "option,", " ", "or", " ",
|
|
|
|
"--dry-", "run", " ", "or", " ", "--dryrun"]
|
2002-08-22 18:16:25 -03:00
|
|
|
self.check_split(self.wrapper, text, expect)
|
2002-08-22 18:12:54 -03:00
|
|
|
|
2002-08-22 15:11:10 -03:00
|
|
|
def test_split(self):
|
2002-08-22 17:13:47 -03:00
|
|
|
# Ensure that the standard _split() method works as advertised
|
|
|
|
# in the comments
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 15:55:38 -03:00
|
|
|
text = "Hello there -- you goof-ball, use the -b option!"
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 15:55:38 -03:00
|
|
|
result = self.wrapper._split(text)
|
2002-08-22 15:11:10 -03:00
|
|
|
self.check(result,
|
|
|
|
["Hello", " ", "there", " ", "--", " ", "you", " ", "goof-",
|
|
|
|
"ball,", " ", "use", " ", "the", " ", "-b", " ", "option!"])
|
|
|
|
|
|
|
|
|
2002-08-22 16:02:37 -03:00
|
|
|
class LongWordTestCase (BaseTestCase):
|
|
|
|
def setUp(self):
|
|
|
|
self.wrapper = TextWrapper()
|
|
|
|
self.text = '''
|
2002-08-22 15:11:10 -03:00
|
|
|
Did you say "supercalifragilisticexpialidocious?"
|
|
|
|
How *do* you spell that odd word, anyways?
|
|
|
|
'''
|
2002-08-22 16:02:37 -03:00
|
|
|
|
|
|
|
def test_break_long(self):
|
2002-08-22 17:13:47 -03:00
|
|
|
# Wrap text with long words and lots of punctuation
|
2002-08-22 16:02:37 -03:00
|
|
|
|
|
|
|
self.check_wrap(self.text, 30,
|
2002-08-22 15:55:38 -03:00
|
|
|
['Did you say "supercalifragilis',
|
|
|
|
'ticexpialidocious?" How *do*',
|
|
|
|
'you spell that odd word,',
|
|
|
|
'anyways?'])
|
2002-08-22 16:02:37 -03:00
|
|
|
self.check_wrap(self.text, 50,
|
2002-08-22 15:55:38 -03:00
|
|
|
['Did you say "supercalifragilisticexpialidocious?"',
|
|
|
|
'How *do* you spell that odd word, anyways?'])
|
2002-08-22 15:11:10 -03:00
|
|
|
|
|
|
|
|
2002-08-22 17:13:47 -03:00
|
|
|
def test_nobreak_long(self):
|
|
|
|
# Test with break_long_words disabled
|
2002-08-22 15:11:10 -03:00
|
|
|
self.wrapper.break_long_words = 0
|
|
|
|
self.wrapper.width = 30
|
2002-08-22 15:55:38 -03:00
|
|
|
expect = ['Did you say',
|
|
|
|
'"supercalifragilisticexpialidocious?"',
|
|
|
|
'How *do* you spell that odd',
|
|
|
|
'word, anyways?'
|
2002-08-22 17:13:47 -03:00
|
|
|
]
|
2002-08-22 16:02:37 -03:00
|
|
|
result = self.wrapper.wrap(self.text)
|
2002-08-22 15:11:10 -03:00
|
|
|
self.check(result, expect)
|
|
|
|
|
|
|
|
# Same thing with kwargs passed to standalone wrap() function.
|
2002-08-22 16:02:37 -03:00
|
|
|
result = wrap(self.text, width=30, break_long_words=0)
|
2002-08-22 15:11:10 -03:00
|
|
|
self.check(result, expect)
|
|
|
|
|
|
|
|
|
|
|
|
|
2002-08-22 15:57:26 -03:00
|
|
|
class IndentTestCases(BaseTestCase):
|
2002-08-22 15:11:10 -03:00
|
|
|
|
|
|
|
# called before each test method
|
|
|
|
def setUp(self):
|
2002-08-22 16:06:45 -03:00
|
|
|
self.text = '''\
|
2002-08-22 15:11:10 -03:00
|
|
|
This paragraph will be filled, first without any indentation,
|
|
|
|
and then with some (including a hanging indent).'''
|
|
|
|
|
|
|
|
|
2002-08-22 15:35:49 -03:00
|
|
|
def test_fill(self):
|
2002-08-22 17:13:47 -03:00
|
|
|
# Test the fill() method
|
2002-08-22 15:11:10 -03:00
|
|
|
|
|
|
|
expect = '''\
|
|
|
|
This paragraph will be filled, first
|
|
|
|
without any indentation, and then with
|
|
|
|
some (including a hanging indent).'''
|
|
|
|
|
2002-08-22 16:06:45 -03:00
|
|
|
result = fill(self.text, 40)
|
2002-08-22 15:11:10 -03:00
|
|
|
self.check(result, expect)
|
|
|
|
|
|
|
|
|
2002-08-22 15:35:49 -03:00
|
|
|
def test_initial_indent(self):
|
2002-08-22 17:13:47 -03:00
|
|
|
# Test initial_indent parameter
|
2002-08-22 15:11:10 -03:00
|
|
|
|
2002-08-22 16:06:45 -03:00
|
|
|
expect = [" This paragraph will be filled,",
|
|
|
|
"first without any indentation, and then",
|
|
|
|
"with some (including a hanging indent)."]
|
|
|
|
result = wrap(self.text, 40, initial_indent=" ")
|
2002-08-22 15:11:10 -03:00
|
|
|
self.check(result, expect)
|
|
|
|
|
2002-08-22 16:06:45 -03:00
|
|
|
expect = "\n".join(expect)
|
|
|
|
result = fill(self.text, 40, initial_indent=" ")
|
2002-08-22 15:11:10 -03:00
|
|
|
self.check(result, expect)
|
|
|
|
|
|
|
|
|
2002-08-22 15:35:49 -03:00
|
|
|
def test_subsequent_indent(self):
|
2002-08-22 17:13:47 -03:00
|
|
|
# Test subsequent_indent parameter
|
2002-08-22 15:11:10 -03:00
|
|
|
|
|
|
|
expect = '''\
|
|
|
|
* This paragraph will be filled, first
|
|
|
|
without any indentation, and then
|
|
|
|
with some (including a hanging
|
|
|
|
indent).'''
|
|
|
|
|
2002-08-22 16:06:45 -03:00
|
|
|
result = fill(self.text, 40,
|
|
|
|
initial_indent=" * ", subsequent_indent=" ")
|
2002-08-22 15:11:10 -03:00
|
|
|
self.check(result, expect)
|
|
|
|
|
|
|
|
|
2002-08-22 15:35:49 -03:00
|
|
|
def test_main():
|
|
|
|
suite = unittest.TestSuite()
|
|
|
|
suite.addTest(unittest.makeSuite(WrapTestCase))
|
2002-08-22 16:02:37 -03:00
|
|
|
suite.addTest(unittest.makeSuite(LongWordTestCase))
|
2002-08-22 15:35:49 -03:00
|
|
|
suite.addTest(unittest.makeSuite(IndentTestCases))
|
|
|
|
test_support.run_suite(suite)
|
|
|
|
|
2002-08-22 15:11:10 -03:00
|
|
|
if __name__ == '__main__':
|
2002-08-22 15:35:49 -03:00
|
|
|
test_main()
|