Greg Ward | 3dc94e1 | 2002-08-22 18:37:50 +0000 | [diff] [blame] | 1 | # |
Greg Ward | 6186410 | 2004-06-03 01:59:41 +0000 | [diff] [blame] | 2 | # Test suite for the textwrap module. |
Greg Ward | 3dc94e1 | 2002-08-22 18:37:50 +0000 | [diff] [blame] | 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$ |
| 9 | # |
| 10 | |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 11 | import unittest |
| 12 | |
Antoine Pitrou | 389dec8 | 2013-08-12 22:39:09 +0200 | [diff] [blame] | 13 | from textwrap import TextWrapper, wrap, fill, dedent, indent, shorten |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 14 | |
| 15 | |
Greg Ward | 13c53c6 | 2002-08-22 18:57:26 +0000 | [diff] [blame] | 16 | class BaseTestCase(unittest.TestCase): |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 17 | '''Parent class with utility methods for textwrap tests.''' |
| 18 | |
| 19 | def show(self, textin): |
| 20 | if isinstance(textin, list): |
| 21 | result = [] |
| 22 | for i in range(len(textin)): |
| 23 | result.append(" %d: %r" % (i, textin[i])) |
R David Murray | 1585b70 | 2012-09-08 13:13:25 -0400 | [diff] [blame] | 24 | result = "\n".join(result) if result else " no lines" |
Guido van Rossum | 3172c5d | 2007-10-16 18:12:55 +0000 | [diff] [blame] | 25 | elif isinstance(textin, str): |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 26 | result = " %s\n" % repr(textin) |
| 27 | return result |
| 28 | |
| 29 | |
| 30 | def check(self, result, expect): |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 31 | self.assertEqual(result, expect, |
Greg Ward | 9ad15a3 | 2002-08-22 19:47:27 +0000 | [diff] [blame] | 32 | 'expected:\n%s\nbut got:\n%s' % ( |
| 33 | self.show(expect), self.show(result))) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 34 | |
Guido van Rossum | eb287a2 | 2002-10-02 15:47:32 +0000 | [diff] [blame] | 35 | def check_wrap(self, text, width, expect, **kwargs): |
| 36 | result = wrap(text, width, **kwargs) |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 37 | self.check(result, expect) |
| 38 | |
Greg Ward | d1a72a0 | 2002-10-31 16:11:18 +0000 | [diff] [blame] | 39 | def check_split(self, text, expect): |
| 40 | result = self.wrapper._split(text) |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 41 | self.assertEqual(result, expect, |
| 42 | "\nexpected %r\n" |
| 43 | "but got %r" % (expect, result)) |
Greg Ward | 715debd | 2002-08-22 21:16:25 +0000 | [diff] [blame] | 44 | |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 45 | |
Greg Ward | 13c53c6 | 2002-08-22 18:57:26 +0000 | [diff] [blame] | 46 | class WrapTestCase(BaseTestCase): |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 47 | |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 48 | def setUp(self): |
Greg Ward | f0ba764 | 2004-05-13 01:53:10 +0000 | [diff] [blame] | 49 | self.wrapper = TextWrapper(width=45) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 50 | |
Greg Ward | f676578 | 2002-08-22 18:35:49 +0000 | [diff] [blame] | 51 | def test_simple(self): |
Guido van Rossum | 327af77 | 2002-08-22 20:13:47 +0000 | [diff] [blame] | 52 | # Simple case: just words, spaces, and a bit of punctuation |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 53 | |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 54 | text = "Hello there, how are you this fine day? I'm glad to hear it!" |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 55 | |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 56 | self.check_wrap(text, 12, |
| 57 | ["Hello there,", |
| 58 | "how are you", |
| 59 | "this fine", |
| 60 | "day? I'm", |
| 61 | "glad to hear", |
| 62 | "it!"]) |
| 63 | self.check_wrap(text, 42, |
| 64 | ["Hello there, how are you this fine day?", |
| 65 | "I'm glad to hear it!"]) |
| 66 | self.check_wrap(text, 80, [text]) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 67 | |
R David Murray | 1585b70 | 2012-09-08 13:13:25 -0400 | [diff] [blame] | 68 | def test_empty_string(self): |
| 69 | # Check that wrapping the empty string returns an empty list. |
| 70 | self.check_wrap("", 6, []) |
| 71 | self.check_wrap("", 6, [], drop_whitespace=False) |
| 72 | |
| 73 | def test_empty_string_with_initial_indent(self): |
| 74 | # Check that the empty string is not indented. |
| 75 | self.check_wrap("", 6, [], initial_indent="++") |
| 76 | self.check_wrap("", 6, [], initial_indent="++", drop_whitespace=False) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 77 | |
Greg Ward | f676578 | 2002-08-22 18:35:49 +0000 | [diff] [blame] | 78 | def test_whitespace(self): |
Guido van Rossum | 327af77 | 2002-08-22 20:13:47 +0000 | [diff] [blame] | 79 | # Whitespace munging and end-of-sentence detection |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 80 | |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 81 | text = """\ |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 82 | This is a paragraph that already has |
| 83 | line breaks. But some of its lines are much longer than the others, |
| 84 | so it needs to be wrapped. |
| 85 | Some lines are \ttabbed too. |
| 86 | What a mess! |
| 87 | """ |
| 88 | |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 89 | expect = ["This is a paragraph that already has line", |
| 90 | "breaks. But some of its lines are much", |
| 91 | "longer than the others, so it needs to be", |
| 92 | "wrapped. Some lines are tabbed too. What a", |
| 93 | "mess!"] |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 94 | |
Greg Ward | f0ba764 | 2004-05-13 01:53:10 +0000 | [diff] [blame] | 95 | wrapper = TextWrapper(45, fix_sentence_endings=True) |
| 96 | result = wrapper.wrap(text) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 97 | self.check(result, expect) |
| 98 | |
Greg Ward | f0ba764 | 2004-05-13 01:53:10 +0000 | [diff] [blame] | 99 | result = wrapper.fill(text) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 100 | self.check(result, '\n'.join(expect)) |
| 101 | |
Hynek Schlawack | d527259 | 2012-05-19 13:33:11 +0200 | [diff] [blame] | 102 | text = "\tTest\tdefault\t\ttabsize." |
| 103 | expect = [" Test default tabsize."] |
| 104 | self.check_wrap(text, 80, expect) |
| 105 | |
| 106 | text = "\tTest\tcustom\t\ttabsize." |
| 107 | expect = [" Test custom tabsize."] |
| 108 | self.check_wrap(text, 80, expect, tabsize=4) |
| 109 | |
Greg Ward | f0ba764 | 2004-05-13 01:53:10 +0000 | [diff] [blame] | 110 | def test_fix_sentence_endings(self): |
| 111 | wrapper = TextWrapper(60, fix_sentence_endings=True) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 112 | |
Greg Ward | f0ba764 | 2004-05-13 01:53:10 +0000 | [diff] [blame] | 113 | # SF #847346: ensure that fix_sentence_endings=True does the |
| 114 | # right thing even on input short enough that it doesn't need to |
| 115 | # be wrapped. |
| 116 | text = "A short line. Note the single space." |
| 117 | expect = ["A short line. Note the single space."] |
| 118 | self.check(wrapper.wrap(text), expect) |
| 119 | |
| 120 | # Test some of the hairy end cases that _fix_sentence_endings() |
| 121 | # is supposed to handle (the easy stuff is tested in |
| 122 | # test_whitespace() above). |
| 123 | text = "Well, Doctor? What do you think?" |
| 124 | expect = ["Well, Doctor? What do you think?"] |
| 125 | self.check(wrapper.wrap(text), expect) |
| 126 | |
| 127 | text = "Well, Doctor?\nWhat do you think?" |
| 128 | self.check(wrapper.wrap(text), expect) |
| 129 | |
| 130 | text = 'I say, chaps! Anyone for "tennis?"\nHmmph!' |
| 131 | expect = ['I say, chaps! Anyone for "tennis?" Hmmph!'] |
| 132 | self.check(wrapper.wrap(text), expect) |
| 133 | |
| 134 | wrapper.width = 20 |
| 135 | expect = ['I say, chaps!', 'Anyone for "tennis?"', 'Hmmph!'] |
| 136 | self.check(wrapper.wrap(text), expect) |
| 137 | |
| 138 | text = 'And she said, "Go to hell!"\nCan you believe that?' |
| 139 | expect = ['And she said, "Go to', |
| 140 | 'hell!" Can you', |
| 141 | 'believe that?'] |
| 142 | self.check(wrapper.wrap(text), expect) |
| 143 | |
| 144 | wrapper.width = 60 |
| 145 | expect = ['And she said, "Go to hell!" Can you believe that?'] |
| 146 | self.check(wrapper.wrap(text), expect) |
Tim Peters | 27f8836 | 2004-07-08 04:22:35 +0000 | [diff] [blame] | 147 | |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 148 | text = 'File stdio.h is nice.' |
| 149 | expect = ['File stdio.h is nice.'] |
| 150 | self.check(wrapper.wrap(text), expect) |
| 151 | |
Greg Ward | f676578 | 2002-08-22 18:35:49 +0000 | [diff] [blame] | 152 | def test_wrap_short(self): |
Guido van Rossum | 327af77 | 2002-08-22 20:13:47 +0000 | [diff] [blame] | 153 | # Wrapping to make short lines longer |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 154 | |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 155 | text = "This is a\nshort paragraph." |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 156 | |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 157 | self.check_wrap(text, 20, ["This is a short", |
| 158 | "paragraph."]) |
| 159 | self.check_wrap(text, 40, ["This is a short paragraph."]) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 160 | |
| 161 | |
Guido van Rossum | eb287a2 | 2002-10-02 15:47:32 +0000 | [diff] [blame] | 162 | def test_wrap_short_1line(self): |
| 163 | # Test endcases |
| 164 | |
| 165 | text = "This is a short line." |
| 166 | |
| 167 | self.check_wrap(text, 30, ["This is a short line."]) |
| 168 | self.check_wrap(text, 30, ["(1) This is a short line."], |
| 169 | initial_indent="(1) ") |
| 170 | |
| 171 | |
Greg Ward | f676578 | 2002-08-22 18:35:49 +0000 | [diff] [blame] | 172 | def test_hyphenated(self): |
Guido van Rossum | 327af77 | 2002-08-22 20:13:47 +0000 | [diff] [blame] | 173 | # Test breaking hyphenated words |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 174 | |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 175 | text = ("this-is-a-useful-feature-for-" |
| 176 | "reformatting-posts-from-tim-peters'ly") |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 177 | |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 178 | self.check_wrap(text, 40, |
| 179 | ["this-is-a-useful-feature-for-", |
| 180 | "reformatting-posts-from-tim-peters'ly"]) |
| 181 | self.check_wrap(text, 41, |
| 182 | ["this-is-a-useful-feature-for-", |
| 183 | "reformatting-posts-from-tim-peters'ly"]) |
| 184 | self.check_wrap(text, 42, |
| 185 | ["this-is-a-useful-feature-for-reformatting-", |
| 186 | "posts-from-tim-peters'ly"]) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 187 | |
Greg Ward | 4040794 | 2005-03-05 02:53:17 +0000 | [diff] [blame] | 188 | def test_hyphenated_numbers(self): |
| 189 | # Test that hyphenated numbers (eg. dates) are not broken like words. |
| 190 | text = ("Python 1.0.0 was released on 1994-01-26. Python 1.0.1 was\n" |
| 191 | "released on 1994-02-15.") |
| 192 | |
| 193 | self.check_wrap(text, 30, ['Python 1.0.0 was released on', |
| 194 | '1994-01-26. Python 1.0.1 was', |
| 195 | 'released on 1994-02-15.']) |
| 196 | self.check_wrap(text, 40, ['Python 1.0.0 was released on 1994-01-26.', |
| 197 | 'Python 1.0.1 was released on 1994-02-15.']) |
| 198 | |
| 199 | text = "I do all my shopping at 7-11." |
| 200 | self.check_wrap(text, 25, ["I do all my shopping at", |
| 201 | "7-11."]) |
| 202 | self.check_wrap(text, 27, ["I do all my shopping at", |
| 203 | "7-11."]) |
| 204 | self.check_wrap(text, 29, ["I do all my shopping at 7-11."]) |
| 205 | |
Greg Ward | 9ad15a3 | 2002-08-22 19:47:27 +0000 | [diff] [blame] | 206 | def test_em_dash(self): |
Guido van Rossum | 327af77 | 2002-08-22 20:13:47 +0000 | [diff] [blame] | 207 | # Test text with em-dashes |
Greg Ward | 9ad15a3 | 2002-08-22 19:47:27 +0000 | [diff] [blame] | 208 | text = "Em-dashes should be written -- thus." |
| 209 | self.check_wrap(text, 25, |
| 210 | ["Em-dashes should be", |
| 211 | "written -- thus."]) |
| 212 | |
| 213 | # Probe the boundaries of the properly written em-dash, |
| 214 | # ie. " -- ". |
| 215 | self.check_wrap(text, 29, |
| 216 | ["Em-dashes should be written", |
| 217 | "-- thus."]) |
| 218 | expect = ["Em-dashes should be written --", |
| 219 | "thus."] |
| 220 | self.check_wrap(text, 30, expect) |
| 221 | self.check_wrap(text, 35, expect) |
| 222 | self.check_wrap(text, 36, |
| 223 | ["Em-dashes should be written -- thus."]) |
Guido van Rossum | 327af77 | 2002-08-22 20:13:47 +0000 | [diff] [blame] | 224 | |
Greg Ward | 9ad15a3 | 2002-08-22 19:47:27 +0000 | [diff] [blame] | 225 | # The improperly written em-dash is handled too, because |
| 226 | # it's adjacent to non-whitespace on both sides. |
| 227 | text = "You can also do--this or even---this." |
| 228 | expect = ["You can also do", |
| 229 | "--this or even", |
| 230 | "---this."] |
| 231 | self.check_wrap(text, 15, expect) |
| 232 | self.check_wrap(text, 16, expect) |
| 233 | expect = ["You can also do--", |
| 234 | "this or even---", |
| 235 | "this."] |
| 236 | self.check_wrap(text, 17, expect) |
| 237 | self.check_wrap(text, 19, expect) |
| 238 | expect = ["You can also do--this or even", |
| 239 | "---this."] |
| 240 | self.check_wrap(text, 29, expect) |
| 241 | self.check_wrap(text, 31, expect) |
| 242 | expect = ["You can also do--this or even---", |
| 243 | "this."] |
| 244 | self.check_wrap(text, 32, expect) |
| 245 | self.check_wrap(text, 35, expect) |
| 246 | |
| 247 | # All of the above behaviour could be deduced by probing the |
| 248 | # _split() method. |
| 249 | text = "Here's an -- em-dash and--here's another---and another!" |
Greg Ward | 9ad15a3 | 2002-08-22 19:47:27 +0000 | [diff] [blame] | 250 | expect = ["Here's", " ", "an", " ", "--", " ", "em-", "dash", " ", |
| 251 | "and", "--", "here's", " ", "another", "---", |
| 252 | "and", " ", "another!"] |
Greg Ward | d1a72a0 | 2002-10-31 16:11:18 +0000 | [diff] [blame] | 253 | self.check_split(text, expect) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 254 | |
Greg Ward | c6edb37 | 2002-08-22 21:27:05 +0000 | [diff] [blame] | 255 | text = "and then--bam!--he was gone" |
| 256 | expect = ["and", " ", "then", "--", "bam!", "--", |
| 257 | "he", " ", "was", " ", "gone"] |
Greg Ward | d1a72a0 | 2002-10-31 16:11:18 +0000 | [diff] [blame] | 258 | self.check_split(text, expect) |
Greg Ward | c6edb37 | 2002-08-22 21:27:05 +0000 | [diff] [blame] | 259 | |
| 260 | |
Greg Ward | 34f995b | 2002-08-22 21:10:07 +0000 | [diff] [blame] | 261 | def test_unix_options (self): |
| 262 | # Test that Unix-style command-line options are wrapped correctly. |
| 263 | # Both Optik (OptionParser) and Docutils rely on this behaviour! |
| 264 | |
| 265 | text = "You should use the -n option, or --dry-run in its long form." |
| 266 | self.check_wrap(text, 20, |
| 267 | ["You should use the", |
| 268 | "-n option, or --dry-", |
| 269 | "run in its long", |
| 270 | "form."]) |
| 271 | self.check_wrap(text, 21, |
| 272 | ["You should use the -n", |
| 273 | "option, or --dry-run", |
| 274 | "in its long form."]) |
| 275 | expect = ["You should use the -n option, or", |
| 276 | "--dry-run in its long form."] |
| 277 | self.check_wrap(text, 32, expect) |
| 278 | self.check_wrap(text, 34, expect) |
| 279 | self.check_wrap(text, 35, expect) |
| 280 | self.check_wrap(text, 38, expect) |
| 281 | expect = ["You should use the -n option, or --dry-", |
| 282 | "run in its long form."] |
| 283 | self.check_wrap(text, 39, expect) |
| 284 | self.check_wrap(text, 41, expect) |
| 285 | expect = ["You should use the -n option, or --dry-run", |
| 286 | "in its long form."] |
| 287 | self.check_wrap(text, 42, expect) |
| 288 | |
Greg Ward | 24a1c9c | 2002-08-22 21:12:54 +0000 | [diff] [blame] | 289 | # Again, all of the above can be deduced from _split(). |
| 290 | text = "the -n option, or --dry-run or --dryrun" |
Greg Ward | 24a1c9c | 2002-08-22 21:12:54 +0000 | [diff] [blame] | 291 | expect = ["the", " ", "-n", " ", "option,", " ", "or", " ", |
| 292 | "--dry-", "run", " ", "or", " ", "--dryrun"] |
Greg Ward | d1a72a0 | 2002-10-31 16:11:18 +0000 | [diff] [blame] | 293 | self.check_split(text, expect) |
| 294 | |
| 295 | def test_funky_hyphens (self): |
| 296 | # Screwy edge cases cooked up by David Goodger. All reported |
| 297 | # in SF bug #596434. |
| 298 | self.check_split("what the--hey!", ["what", " ", "the", "--", "hey!"]) |
| 299 | self.check_split("what the--", ["what", " ", "the--"]) |
| 300 | self.check_split("what the--.", ["what", " ", "the--."]) |
| 301 | self.check_split("--text--.", ["--text--."]) |
| 302 | |
Greg Ward | cc55cb9 | 2003-05-07 01:19:22 +0000 | [diff] [blame] | 303 | # When I first read bug #596434, this is what I thought David |
| 304 | # was talking about. I was wrong; these have always worked |
| 305 | # fine. The real problem is tested in test_funky_parens() |
| 306 | # below... |
Greg Ward | d1a72a0 | 2002-10-31 16:11:18 +0000 | [diff] [blame] | 307 | self.check_split("--option", ["--option"]) |
| 308 | self.check_split("--option-opt", ["--option-", "opt"]) |
Greg Ward | cc55cb9 | 2003-05-07 01:19:22 +0000 | [diff] [blame] | 309 | self.check_split("foo --option-opt bar", |
| 310 | ["foo", " ", "--option-", "opt", " ", "bar"]) |
| 311 | |
Greg Ward | 6186410 | 2004-06-03 01:59:41 +0000 | [diff] [blame] | 312 | def test_punct_hyphens(self): |
| 313 | # Oh bother, SF #965425 found another problem with hyphens -- |
| 314 | # hyphenated words in single quotes weren't handled correctly. |
| 315 | # In fact, the bug is that *any* punctuation around a hyphenated |
| 316 | # word was handled incorrectly, except for a leading "--", which |
| 317 | # was special-cased for Optik and Docutils. So test a variety |
| 318 | # of styles of punctuation around a hyphenated word. |
| 319 | # (Actually this is based on an Optik bug report, #813077). |
| 320 | self.check_split("the 'wibble-wobble' widget", |
| 321 | ['the', ' ', "'wibble-", "wobble'", ' ', 'widget']) |
| 322 | self.check_split('the "wibble-wobble" widget', |
| 323 | ['the', ' ', '"wibble-', 'wobble"', ' ', 'widget']) |
| 324 | self.check_split("the (wibble-wobble) widget", |
| 325 | ['the', ' ', "(wibble-", "wobble)", ' ', 'widget']) |
| 326 | self.check_split("the ['wibble-wobble'] widget", |
| 327 | ['the', ' ', "['wibble-", "wobble']", ' ', 'widget']) |
| 328 | |
Greg Ward | cc55cb9 | 2003-05-07 01:19:22 +0000 | [diff] [blame] | 329 | def test_funky_parens (self): |
| 330 | # Second part of SF bug #596434: long option strings inside |
| 331 | # parentheses. |
| 332 | self.check_split("foo (--option) bar", |
| 333 | ["foo", " ", "(--option)", " ", "bar"]) |
| 334 | |
| 335 | # Related stuff -- make sure parens work in simpler contexts. |
| 336 | self.check_split("foo (bar) baz", |
| 337 | ["foo", " ", "(bar)", " ", "baz"]) |
| 338 | self.check_split("blah (ding dong), wubba", |
| 339 | ["blah", " ", "(ding", " ", "dong),", |
| 340 | " ", "wubba"]) |
Greg Ward | 24a1c9c | 2002-08-22 21:12:54 +0000 | [diff] [blame] | 341 | |
R David Murray | 1585b70 | 2012-09-08 13:13:25 -0400 | [diff] [blame] | 342 | def test_drop_whitespace_false(self): |
| 343 | # Check that drop_whitespace=False preserves whitespace. |
| 344 | # SF patch #1581073 |
| 345 | text = " This is a sentence with much whitespace." |
| 346 | self.check_wrap(text, 10, |
| 347 | [" This is a", " ", "sentence ", |
| 348 | "with ", "much white", "space."], |
| 349 | drop_whitespace=False) |
| 350 | |
| 351 | def test_drop_whitespace_false_whitespace_only(self): |
| 352 | # Check that drop_whitespace=False preserves a whitespace-only string. |
| 353 | self.check_wrap(" ", 6, [" "], drop_whitespace=False) |
| 354 | |
| 355 | def test_drop_whitespace_false_whitespace_only_with_indent(self): |
| 356 | # Check that a whitespace-only string gets indented (when |
| 357 | # drop_whitespace is False). |
| 358 | self.check_wrap(" ", 6, [" "], drop_whitespace=False, |
| 359 | initial_indent=" ") |
| 360 | |
| 361 | def test_drop_whitespace_whitespace_only(self): |
| 362 | # Check drop_whitespace on a whitespace-only string. |
| 363 | self.check_wrap(" ", 6, []) |
| 364 | |
| 365 | def test_drop_whitespace_leading_whitespace(self): |
| 366 | # Check that drop_whitespace does not drop leading whitespace (if |
| 367 | # followed by non-whitespace). |
Greg Ward | 24cbbcb | 2002-12-09 16:27:15 +0000 | [diff] [blame] | 368 | # SF bug #622849 reported inconsistent handling of leading |
| 369 | # whitespace; let's test that a bit, shall we? |
| 370 | text = " This is a sentence with leading whitespace." |
| 371 | self.check_wrap(text, 50, |
| 372 | [" This is a sentence with leading whitespace."]) |
| 373 | self.check_wrap(text, 30, |
| 374 | [" This is a sentence with", "leading whitespace."]) |
| 375 | |
R David Murray | 1585b70 | 2012-09-08 13:13:25 -0400 | [diff] [blame] | 376 | def test_drop_whitespace_whitespace_line(self): |
| 377 | # Check that drop_whitespace skips the whole line if a non-leading |
| 378 | # line consists only of whitespace. |
| 379 | text = "abcd efgh" |
| 380 | # Include the result for drop_whitespace=False for comparison. |
| 381 | self.check_wrap(text, 6, ["abcd", " ", "efgh"], |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 382 | drop_whitespace=False) |
R David Murray | 1585b70 | 2012-09-08 13:13:25 -0400 | [diff] [blame] | 383 | self.check_wrap(text, 6, ["abcd", "efgh"]) |
| 384 | |
| 385 | def test_drop_whitespace_whitespace_only_with_indent(self): |
| 386 | # Check that initial_indent is not applied to a whitespace-only |
| 387 | # string. This checks a special case of the fact that dropping |
| 388 | # whitespace occurs before indenting. |
| 389 | self.check_wrap(" ", 6, [], initial_indent="++") |
| 390 | |
| 391 | def test_drop_whitespace_whitespace_indent(self): |
| 392 | # Check that drop_whitespace does not drop whitespace indents. |
| 393 | # This checks a special case of the fact that dropping whitespace |
| 394 | # occurs before indenting. |
| 395 | self.check_wrap("abcd efgh", 6, [" abcd", " efgh"], |
| 396 | initial_indent=" ", subsequent_indent=" ") |
Guido van Rossum | d8faa36 | 2007-04-27 19:54:29 +0000 | [diff] [blame] | 397 | |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 398 | def test_split(self): |
Guido van Rossum | 327af77 | 2002-08-22 20:13:47 +0000 | [diff] [blame] | 399 | # Ensure that the standard _split() method works as advertised |
| 400 | # in the comments |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 401 | |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 402 | text = "Hello there -- you goof-ball, use the -b option!" |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 403 | |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 404 | result = self.wrapper._split(text) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 405 | self.check(result, |
| 406 | ["Hello", " ", "there", " ", "--", " ", "you", " ", "goof-", |
| 407 | "ball,", " ", "use", " ", "the", " ", "-b", " ", "option!"]) |
| 408 | |
Alexandre Vassalotti | 5f8ced2 | 2008-05-16 00:03:33 +0000 | [diff] [blame] | 409 | def test_break_on_hyphens(self): |
| 410 | # Ensure that the break_on_hyphens attributes work |
| 411 | text = "yaba daba-doo" |
| 412 | self.check_wrap(text, 10, ["yaba daba-", "doo"], |
| 413 | break_on_hyphens=True) |
| 414 | self.check_wrap(text, 10, ["yaba", "daba-doo"], |
| 415 | break_on_hyphens=False) |
| 416 | |
Greg Ward | 4912857 | 2003-05-07 00:54:42 +0000 | [diff] [blame] | 417 | def test_bad_width(self): |
| 418 | # Ensure that width <= 0 is caught. |
| 419 | text = "Whatever, it doesn't matter." |
| 420 | self.assertRaises(ValueError, wrap, text, 0) |
| 421 | self.assertRaises(ValueError, wrap, text, -1) |
| 422 | |
Antoine Pitrou | 7c59bc6 | 2008-12-13 23:20:54 +0000 | [diff] [blame] | 423 | def test_no_split_at_umlaut(self): |
| 424 | text = "Die Empf\xe4nger-Auswahl" |
| 425 | self.check_wrap(text, 13, ["Die", "Empf\xe4nger-", "Auswahl"]) |
| 426 | |
| 427 | def test_umlaut_followed_by_dash(self): |
| 428 | text = "aa \xe4\xe4-\xe4\xe4" |
| 429 | self.check_wrap(text, 7, ["aa \xe4\xe4-", "\xe4\xe4"]) |
| 430 | |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 431 | |
Serhiy Storchaka | acc9f3f | 2013-10-15 21:22:54 +0300 | [diff] [blame] | 432 | class MaxLinesTestCase(BaseTestCase): |
| 433 | text = "Hello there, how are you this fine day? I'm glad to hear it!" |
| 434 | |
| 435 | def test_simple(self): |
| 436 | self.check_wrap(self.text, 12, |
| 437 | ["Hello [...]"], |
| 438 | max_lines=0) |
| 439 | self.check_wrap(self.text, 12, |
| 440 | ["Hello [...]"], |
| 441 | max_lines=1) |
| 442 | self.check_wrap(self.text, 12, |
| 443 | ["Hello there,", |
| 444 | "how [...]"], |
| 445 | max_lines=2) |
| 446 | self.check_wrap(self.text, 13, |
| 447 | ["Hello there,", |
| 448 | "how are [...]"], |
| 449 | max_lines=2) |
| 450 | self.check_wrap(self.text, 80, [self.text], max_lines=1) |
| 451 | self.check_wrap(self.text, 12, |
| 452 | ["Hello there,", |
| 453 | "how are you", |
| 454 | "this fine", |
| 455 | "day? I'm", |
| 456 | "glad to hear", |
| 457 | "it!"], |
| 458 | max_lines=6) |
| 459 | |
| 460 | def test_spaces(self): |
| 461 | # strip spaces before placeholder |
| 462 | self.check_wrap(self.text, 12, |
| 463 | ["Hello there,", |
| 464 | "how are you", |
| 465 | "this fine", |
| 466 | "day? [...]"], |
| 467 | max_lines=4) |
| 468 | # placeholder at the start of line |
| 469 | self.check_wrap(self.text, 6, |
| 470 | ["Hello", |
| 471 | "[...]"], |
| 472 | max_lines=2) |
| 473 | # final spaces |
| 474 | self.check_wrap(self.text + ' ' * 10, 12, |
| 475 | ["Hello there,", |
| 476 | "how are you", |
| 477 | "this fine", |
| 478 | "day? I'm", |
| 479 | "glad to hear", |
| 480 | "it!"], |
| 481 | max_lines=6) |
| 482 | |
| 483 | def test_placeholder(self): |
| 484 | self.check_wrap(self.text, 12, |
| 485 | ["Hello..."], |
| 486 | max_lines=1, |
| 487 | placeholder='...') |
| 488 | self.check_wrap(self.text, 12, |
| 489 | ["Hello there,", |
| 490 | "how are..."], |
| 491 | max_lines=2, |
| 492 | placeholder='...') |
| 493 | # long placeholder and indentation |
| 494 | with self.assertRaises(ValueError): |
| 495 | wrap(self.text, 16, initial_indent=' ', |
| 496 | max_lines=1, placeholder=' [truncated]...') |
| 497 | with self.assertRaises(ValueError): |
| 498 | wrap(self.text, 16, subsequent_indent=' ', |
| 499 | max_lines=2, placeholder=' [truncated]...') |
| 500 | self.check_wrap(self.text, 16, |
| 501 | [" Hello there,", |
| 502 | " [truncated]..."], |
| 503 | max_lines=2, |
| 504 | initial_indent=' ', |
| 505 | subsequent_indent=' ', |
| 506 | placeholder=' [truncated]...') |
| 507 | self.check_wrap(self.text, 16, |
| 508 | [" [truncated]..."], |
| 509 | max_lines=1, |
| 510 | initial_indent=' ', |
| 511 | subsequent_indent=' ', |
| 512 | placeholder=' [truncated]...') |
| 513 | self.check_wrap(self.text, 80, [self.text], placeholder='.' * 1000) |
| 514 | |
| 515 | |
Greg Ward | fd030e4 | 2002-08-22 19:02:37 +0000 | [diff] [blame] | 516 | class LongWordTestCase (BaseTestCase): |
| 517 | def setUp(self): |
| 518 | self.wrapper = TextWrapper() |
Greg Ward | 24cbbcb | 2002-12-09 16:27:15 +0000 | [diff] [blame] | 519 | self.text = '''\ |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 520 | Did you say "supercalifragilisticexpialidocious?" |
| 521 | How *do* you spell that odd word, anyways? |
| 522 | ''' |
Greg Ward | fd030e4 | 2002-08-22 19:02:37 +0000 | [diff] [blame] | 523 | |
| 524 | def test_break_long(self): |
Guido van Rossum | 327af77 | 2002-08-22 20:13:47 +0000 | [diff] [blame] | 525 | # Wrap text with long words and lots of punctuation |
Greg Ward | fd030e4 | 2002-08-22 19:02:37 +0000 | [diff] [blame] | 526 | |
| 527 | self.check_wrap(self.text, 30, |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 528 | ['Did you say "supercalifragilis', |
| 529 | 'ticexpialidocious?" How *do*', |
| 530 | 'you spell that odd word,', |
| 531 | 'anyways?']) |
Greg Ward | fd030e4 | 2002-08-22 19:02:37 +0000 | [diff] [blame] | 532 | self.check_wrap(self.text, 50, |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 533 | ['Did you say "supercalifragilisticexpialidocious?"', |
| 534 | 'How *do* you spell that odd word, anyways?']) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 535 | |
Raymond Hettinger | c11dbcd | 2003-08-30 14:43:55 +0000 | [diff] [blame] | 536 | # SF bug 797650. Prevent an infinite loop by making sure that at |
| 537 | # least one character gets split off on every pass. |
| 538 | self.check_wrap('-'*10+'hello', 10, |
| 539 | ['----------', |
| 540 | ' h', |
| 541 | ' e', |
| 542 | ' l', |
| 543 | ' l', |
| 544 | ' o'], |
| 545 | subsequent_indent = ' '*15) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 546 | |
Georg Brandl | fceab5a | 2008-01-19 20:08:23 +0000 | [diff] [blame] | 547 | # bug 1146. Prevent a long word to be wrongly wrapped when the |
| 548 | # preceding word is exactly one character shorter than the width |
| 549 | self.check_wrap(self.text, 12, |
| 550 | ['Did you say ', |
| 551 | '"supercalifr', |
| 552 | 'agilisticexp', |
| 553 | 'ialidocious?', |
| 554 | '" How *do*', |
| 555 | 'you spell', |
| 556 | 'that odd', |
| 557 | 'word,', |
| 558 | 'anyways?']) |
| 559 | |
Guido van Rossum | 327af77 | 2002-08-22 20:13:47 +0000 | [diff] [blame] | 560 | def test_nobreak_long(self): |
| 561 | # Test with break_long_words disabled |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 562 | self.wrapper.break_long_words = 0 |
| 563 | self.wrapper.width = 30 |
Greg Ward | ee41384 | 2002-08-22 18:55:38 +0000 | [diff] [blame] | 564 | expect = ['Did you say', |
| 565 | '"supercalifragilisticexpialidocious?"', |
| 566 | 'How *do* you spell that odd', |
| 567 | 'word, anyways?' |
Guido van Rossum | 327af77 | 2002-08-22 20:13:47 +0000 | [diff] [blame] | 568 | ] |
Greg Ward | fd030e4 | 2002-08-22 19:02:37 +0000 | [diff] [blame] | 569 | result = self.wrapper.wrap(self.text) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 570 | self.check(result, expect) |
| 571 | |
| 572 | # Same thing with kwargs passed to standalone wrap() function. |
Greg Ward | fd030e4 | 2002-08-22 19:02:37 +0000 | [diff] [blame] | 573 | result = wrap(self.text, width=30, break_long_words=0) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 574 | self.check(result, expect) |
| 575 | |
Serhiy Storchaka | acc9f3f | 2013-10-15 21:22:54 +0300 | [diff] [blame] | 576 | def test_max_lines_long(self): |
| 577 | self.check_wrap(self.text, 12, |
| 578 | ['Did you say ', |
| 579 | '"supercalifr', |
| 580 | 'agilisticexp', |
| 581 | '[...]'], |
| 582 | max_lines=4) |
| 583 | |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 584 | |
Greg Ward | 13c53c6 | 2002-08-22 18:57:26 +0000 | [diff] [blame] | 585 | class IndentTestCases(BaseTestCase): |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 586 | |
| 587 | # called before each test method |
| 588 | def setUp(self): |
Greg Ward | f69d3c9 | 2002-08-22 19:06:45 +0000 | [diff] [blame] | 589 | self.text = '''\ |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 590 | This paragraph will be filled, first without any indentation, |
| 591 | and then with some (including a hanging indent).''' |
| 592 | |
| 593 | |
Greg Ward | f676578 | 2002-08-22 18:35:49 +0000 | [diff] [blame] | 594 | def test_fill(self): |
Guido van Rossum | 327af77 | 2002-08-22 20:13:47 +0000 | [diff] [blame] | 595 | # Test the fill() method |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 596 | |
| 597 | expect = '''\ |
| 598 | This paragraph will be filled, first |
| 599 | without any indentation, and then with |
| 600 | some (including a hanging indent).''' |
| 601 | |
Greg Ward | f69d3c9 | 2002-08-22 19:06:45 +0000 | [diff] [blame] | 602 | result = fill(self.text, 40) |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 603 | self.check(result, expect) |
| 604 | |
| 605 | |
Greg Ward | f676578 | 2002-08-22 18:35:49 +0000 | [diff] [blame] | 606 | def test_initial_indent(self): |
Guido van Rossum | 327af77 | 2002-08-22 20:13:47 +0000 | [diff] [blame] | 607 | # Test initial_indent parameter |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 608 | |
Greg Ward | f69d3c9 | 2002-08-22 19:06:45 +0000 | [diff] [blame] | 609 | expect = [" This paragraph will be filled,", |
| 610 | "first without any indentation, and then", |
| 611 | "with some (including a hanging indent)."] |
| 612 | result = wrap(self.text, 40, initial_indent=" ") |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 613 | self.check(result, expect) |
| 614 | |
Greg Ward | f69d3c9 | 2002-08-22 19:06:45 +0000 | [diff] [blame] | 615 | expect = "\n".join(expect) |
| 616 | result = fill(self.text, 40, initial_indent=" ") |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 617 | self.check(result, expect) |
| 618 | |
| 619 | |
Greg Ward | f676578 | 2002-08-22 18:35:49 +0000 | [diff] [blame] | 620 | def test_subsequent_indent(self): |
Guido van Rossum | 327af77 | 2002-08-22 20:13:47 +0000 | [diff] [blame] | 621 | # Test subsequent_indent parameter |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 622 | |
| 623 | expect = '''\ |
| 624 | * This paragraph will be filled, first |
| 625 | without any indentation, and then |
| 626 | with some (including a hanging |
| 627 | indent).''' |
| 628 | |
Greg Ward | f69d3c9 | 2002-08-22 19:06:45 +0000 | [diff] [blame] | 629 | result = fill(self.text, 40, |
| 630 | initial_indent=" * ", subsequent_indent=" ") |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 631 | self.check(result, expect) |
| 632 | |
| 633 | |
Greg Ward | 9e082f4 | 2003-05-08 01:58:26 +0000 | [diff] [blame] | 634 | # Despite the similar names, DedentTestCase is *not* the inverse |
| 635 | # of IndentTestCase! |
| 636 | class DedentTestCase(unittest.TestCase): |
| 637 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 638 | def assertUnchanged(self, text): |
| 639 | """assert that dedent() has no effect on 'text'""" |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 640 | self.assertEqual(text, dedent(text)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 641 | |
Greg Ward | 9e082f4 | 2003-05-08 01:58:26 +0000 | [diff] [blame] | 642 | def test_dedent_nomargin(self): |
| 643 | # No lines indented. |
| 644 | text = "Hello there.\nHow are you?\nOh good, I'm glad." |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 645 | self.assertUnchanged(text) |
Greg Ward | 9e082f4 | 2003-05-08 01:58:26 +0000 | [diff] [blame] | 646 | |
| 647 | # Similar, with a blank line. |
| 648 | text = "Hello there.\n\nBoo!" |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 649 | self.assertUnchanged(text) |
Greg Ward | 9e082f4 | 2003-05-08 01:58:26 +0000 | [diff] [blame] | 650 | |
| 651 | # Some lines indented, but overall margin is still zero. |
| 652 | text = "Hello there.\n This is indented." |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 653 | self.assertUnchanged(text) |
Greg Ward | 9e082f4 | 2003-05-08 01:58:26 +0000 | [diff] [blame] | 654 | |
| 655 | # Again, add a blank line. |
| 656 | text = "Hello there.\n\n Boo!\n" |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 657 | self.assertUnchanged(text) |
Greg Ward | 9e082f4 | 2003-05-08 01:58:26 +0000 | [diff] [blame] | 658 | |
| 659 | def test_dedent_even(self): |
| 660 | # All lines indented by two spaces. |
| 661 | text = " Hello there.\n How are ya?\n Oh good." |
| 662 | expect = "Hello there.\nHow are ya?\nOh good." |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 663 | self.assertEqual(expect, dedent(text)) |
Greg Ward | 9e082f4 | 2003-05-08 01:58:26 +0000 | [diff] [blame] | 664 | |
| 665 | # Same, with blank lines. |
| 666 | text = " Hello there.\n\n How are ya?\n Oh good.\n" |
| 667 | expect = "Hello there.\n\nHow are ya?\nOh good.\n" |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 668 | self.assertEqual(expect, dedent(text)) |
Greg Ward | 9e082f4 | 2003-05-08 01:58:26 +0000 | [diff] [blame] | 669 | |
| 670 | # Now indent one of the blank lines. |
| 671 | text = " Hello there.\n \n How are ya?\n Oh good.\n" |
| 672 | expect = "Hello there.\n\nHow are ya?\nOh good.\n" |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 673 | self.assertEqual(expect, dedent(text)) |
Greg Ward | 9e082f4 | 2003-05-08 01:58:26 +0000 | [diff] [blame] | 674 | |
| 675 | def test_dedent_uneven(self): |
| 676 | # Lines indented unevenly. |
| 677 | text = '''\ |
| 678 | def foo(): |
| 679 | while 1: |
| 680 | return foo |
| 681 | ''' |
| 682 | expect = '''\ |
| 683 | def foo(): |
| 684 | while 1: |
| 685 | return foo |
| 686 | ''' |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 687 | self.assertEqual(expect, dedent(text)) |
Greg Ward | 9e082f4 | 2003-05-08 01:58:26 +0000 | [diff] [blame] | 688 | |
| 689 | # Uneven indentation with a blank line. |
| 690 | text = " Foo\n Bar\n\n Baz\n" |
| 691 | expect = "Foo\n Bar\n\n Baz\n" |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 692 | self.assertEqual(expect, dedent(text)) |
Greg Ward | 9e082f4 | 2003-05-08 01:58:26 +0000 | [diff] [blame] | 693 | |
| 694 | # Uneven indentation with a whitespace-only line. |
| 695 | text = " Foo\n Bar\n \n Baz\n" |
| 696 | expect = "Foo\n Bar\n\n Baz\n" |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 697 | self.assertEqual(expect, dedent(text)) |
Greg Ward | 9e082f4 | 2003-05-08 01:58:26 +0000 | [diff] [blame] | 698 | |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 699 | # dedent() should not mangle internal tabs |
| 700 | def test_dedent_preserve_internal_tabs(self): |
| 701 | text = " hello\tthere\n how are\tyou?" |
| 702 | expect = "hello\tthere\nhow are\tyou?" |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 703 | self.assertEqual(expect, dedent(text)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 704 | |
| 705 | # make sure that it preserves tabs when it's not making any |
| 706 | # changes at all |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 707 | self.assertEqual(expect, dedent(expect)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 708 | |
| 709 | # dedent() should not mangle tabs in the margin (i.e. |
| 710 | # tabs and spaces both count as margin, but are *not* |
| 711 | # considered equivalent) |
| 712 | def test_dedent_preserve_margin_tabs(self): |
| 713 | text = " hello there\n\thow are you?" |
| 714 | self.assertUnchanged(text) |
| 715 | |
| 716 | # same effect even if we have 8 spaces |
| 717 | text = " hello there\n\thow are you?" |
| 718 | self.assertUnchanged(text) |
| 719 | |
| 720 | # dedent() only removes whitespace that can be uniformly removed! |
| 721 | text = "\thello there\n\thow are you?" |
| 722 | expect = "hello there\nhow are you?" |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 723 | self.assertEqual(expect, dedent(text)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 724 | |
| 725 | text = " \thello there\n \thow are you?" |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 726 | self.assertEqual(expect, dedent(text)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 727 | |
| 728 | text = " \t hello there\n \t how are you?" |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 729 | self.assertEqual(expect, dedent(text)) |
Thomas Wouters | 0e3f591 | 2006-08-11 14:57:12 +0000 | [diff] [blame] | 730 | |
| 731 | text = " \thello there\n \t how are you?" |
| 732 | expect = "hello there\n how are you?" |
Ezio Melotti | b3aedd4 | 2010-11-20 19:04:17 +0000 | [diff] [blame] | 733 | self.assertEqual(expect, dedent(text)) |
Greg Ward | 9e082f4 | 2003-05-08 01:58:26 +0000 | [diff] [blame] | 734 | |
| 735 | |
Nick Coghlan | 4fae8cd | 2012-06-11 23:07:51 +1000 | [diff] [blame] | 736 | # Test textwrap.indent |
| 737 | class IndentTestCase(unittest.TestCase): |
| 738 | # The examples used for tests. If any of these change, the expected |
| 739 | # results in the various test cases must also be updated. |
| 740 | # The roundtrip cases are separate, because textwrap.dedent doesn't |
| 741 | # handle Windows line endings |
| 742 | ROUNDTRIP_CASES = ( |
| 743 | # Basic test case |
| 744 | "Hi.\nThis is a test.\nTesting.", |
| 745 | # Include a blank line |
| 746 | "Hi.\nThis is a test.\n\nTesting.", |
| 747 | # Include leading and trailing blank lines |
| 748 | "\nHi.\nThis is a test.\nTesting.\n", |
| 749 | ) |
| 750 | CASES = ROUNDTRIP_CASES + ( |
| 751 | # Use Windows line endings |
| 752 | "Hi.\r\nThis is a test.\r\nTesting.\r\n", |
| 753 | # Pathological case |
| 754 | "\nHi.\r\nThis is a test.\n\r\nTesting.\r\n\n", |
| 755 | ) |
| 756 | |
| 757 | def test_indent_nomargin_default(self): |
| 758 | # indent should do nothing if 'prefix' is empty. |
| 759 | for text in self.CASES: |
| 760 | self.assertEqual(indent(text, ''), text) |
| 761 | |
| 762 | def test_indent_nomargin_explicit_default(self): |
| 763 | # The same as test_indent_nomargin, but explicitly requesting |
| 764 | # the default behaviour by passing None as the predicate |
| 765 | for text in self.CASES: |
| 766 | self.assertEqual(indent(text, '', None), text) |
| 767 | |
| 768 | def test_indent_nomargin_all_lines(self): |
| 769 | # The same as test_indent_nomargin, but using the optional |
| 770 | # predicate argument |
| 771 | predicate = lambda line: True |
| 772 | for text in self.CASES: |
| 773 | self.assertEqual(indent(text, '', predicate), text) |
| 774 | |
| 775 | def test_indent_no_lines(self): |
| 776 | # Explicitly skip indenting any lines |
| 777 | predicate = lambda line: False |
| 778 | for text in self.CASES: |
| 779 | self.assertEqual(indent(text, ' ', predicate), text) |
| 780 | |
| 781 | def test_roundtrip_spaces(self): |
| 782 | # A whitespace prefix should roundtrip with dedent |
| 783 | for text in self.ROUNDTRIP_CASES: |
| 784 | self.assertEqual(dedent(indent(text, ' ')), text) |
| 785 | |
| 786 | def test_roundtrip_tabs(self): |
| 787 | # A whitespace prefix should roundtrip with dedent |
| 788 | for text in self.ROUNDTRIP_CASES: |
| 789 | self.assertEqual(dedent(indent(text, '\t\t')), text) |
| 790 | |
| 791 | def test_roundtrip_mixed(self): |
| 792 | # A whitespace prefix should roundtrip with dedent |
| 793 | for text in self.ROUNDTRIP_CASES: |
| 794 | self.assertEqual(dedent(indent(text, ' \t \t ')), text) |
| 795 | |
| 796 | def test_indent_default(self): |
| 797 | # Test default indenting of lines that are not whitespace only |
| 798 | prefix = ' ' |
| 799 | expected = ( |
| 800 | # Basic test case |
| 801 | " Hi.\n This is a test.\n Testing.", |
| 802 | # Include a blank line |
| 803 | " Hi.\n This is a test.\n\n Testing.", |
| 804 | # Include leading and trailing blank lines |
| 805 | "\n Hi.\n This is a test.\n Testing.\n", |
| 806 | # Use Windows line endings |
| 807 | " Hi.\r\n This is a test.\r\n Testing.\r\n", |
| 808 | # Pathological case |
| 809 | "\n Hi.\r\n This is a test.\n\r\n Testing.\r\n\n", |
| 810 | ) |
| 811 | for text, expect in zip(self.CASES, expected): |
| 812 | self.assertEqual(indent(text, prefix), expect) |
| 813 | |
| 814 | def test_indent_explicit_default(self): |
| 815 | # Test default indenting of lines that are not whitespace only |
| 816 | prefix = ' ' |
| 817 | expected = ( |
| 818 | # Basic test case |
| 819 | " Hi.\n This is a test.\n Testing.", |
| 820 | # Include a blank line |
| 821 | " Hi.\n This is a test.\n\n Testing.", |
| 822 | # Include leading and trailing blank lines |
| 823 | "\n Hi.\n This is a test.\n Testing.\n", |
| 824 | # Use Windows line endings |
| 825 | " Hi.\r\n This is a test.\r\n Testing.\r\n", |
| 826 | # Pathological case |
| 827 | "\n Hi.\r\n This is a test.\n\r\n Testing.\r\n\n", |
| 828 | ) |
| 829 | for text, expect in zip(self.CASES, expected): |
| 830 | self.assertEqual(indent(text, prefix, None), expect) |
| 831 | |
| 832 | def test_indent_all_lines(self): |
| 833 | # Add 'prefix' to all lines, including whitespace-only ones. |
| 834 | prefix = ' ' |
| 835 | expected = ( |
| 836 | # Basic test case |
| 837 | " Hi.\n This is a test.\n Testing.", |
| 838 | # Include a blank line |
| 839 | " Hi.\n This is a test.\n \n Testing.", |
| 840 | # Include leading and trailing blank lines |
| 841 | " \n Hi.\n This is a test.\n Testing.\n", |
| 842 | # Use Windows line endings |
| 843 | " Hi.\r\n This is a test.\r\n Testing.\r\n", |
| 844 | # Pathological case |
| 845 | " \n Hi.\r\n This is a test.\n \r\n Testing.\r\n \n", |
| 846 | ) |
| 847 | predicate = lambda line: True |
| 848 | for text, expect in zip(self.CASES, expected): |
| 849 | self.assertEqual(indent(text, prefix, predicate), expect) |
| 850 | |
| 851 | def test_indent_empty_lines(self): |
| 852 | # Add 'prefix' solely to whitespace-only lines. |
| 853 | prefix = ' ' |
| 854 | expected = ( |
| 855 | # Basic test case |
| 856 | "Hi.\nThis is a test.\nTesting.", |
| 857 | # Include a blank line |
| 858 | "Hi.\nThis is a test.\n \nTesting.", |
| 859 | # Include leading and trailing blank lines |
| 860 | " \nHi.\nThis is a test.\nTesting.\n", |
| 861 | # Use Windows line endings |
| 862 | "Hi.\r\nThis is a test.\r\nTesting.\r\n", |
| 863 | # Pathological case |
| 864 | " \nHi.\r\nThis is a test.\n \r\nTesting.\r\n \n", |
| 865 | ) |
| 866 | predicate = lambda line: not line.strip() |
| 867 | for text, expect in zip(self.CASES, expected): |
| 868 | self.assertEqual(indent(text, prefix, predicate), expect) |
| 869 | |
| 870 | |
Antoine Pitrou | 389dec8 | 2013-08-12 22:39:09 +0200 | [diff] [blame] | 871 | class ShortenTestCase(BaseTestCase): |
| 872 | |
Serhiy Storchaka | acc9f3f | 2013-10-15 21:22:54 +0300 | [diff] [blame] | 873 | def check_shorten(self, text, width, expect, **kwargs): |
| 874 | result = shorten(text, width, **kwargs) |
| 875 | self.check(result, expect) |
| 876 | |
Antoine Pitrou | 389dec8 | 2013-08-12 22:39:09 +0200 | [diff] [blame] | 877 | def test_simple(self): |
| 878 | # Simple case: just words, spaces, and a bit of punctuation |
| 879 | text = "Hello there, how are you this fine day? I'm glad to hear it!" |
| 880 | |
Antoine Pitrou | c593056 | 2013-08-16 22:31:12 +0200 | [diff] [blame] | 881 | self.check_shorten(text, 18, "Hello there, [...]") |
Antoine Pitrou | 389dec8 | 2013-08-12 22:39:09 +0200 | [diff] [blame] | 882 | self.check_shorten(text, len(text), text) |
| 883 | self.check_shorten(text, len(text) - 1, |
| 884 | "Hello there, how are you this fine day? " |
Antoine Pitrou | c593056 | 2013-08-16 22:31:12 +0200 | [diff] [blame] | 885 | "I'm glad to [...]") |
Antoine Pitrou | 389dec8 | 2013-08-12 22:39:09 +0200 | [diff] [blame] | 886 | |
| 887 | def test_placeholder(self): |
| 888 | text = "Hello there, how are you this fine day? I'm glad to hear it!" |
| 889 | |
| 890 | self.check_shorten(text, 17, "Hello there,$$", placeholder='$$') |
| 891 | self.check_shorten(text, 18, "Hello there, how$$", placeholder='$$') |
| 892 | self.check_shorten(text, 18, "Hello there, $$", placeholder=' $$') |
| 893 | self.check_shorten(text, len(text), text, placeholder='$$') |
| 894 | self.check_shorten(text, len(text) - 1, |
| 895 | "Hello there, how are you this fine day? " |
| 896 | "I'm glad to hear$$", placeholder='$$') |
| 897 | |
| 898 | def test_empty_string(self): |
| 899 | self.check_shorten("", 6, "") |
| 900 | |
| 901 | def test_whitespace(self): |
| 902 | # Whitespace collapsing |
| 903 | text = """ |
| 904 | This is a paragraph that already has |
| 905 | line breaks and \t tabs too.""" |
| 906 | self.check_shorten(text, 62, |
| 907 | "This is a paragraph that already has line " |
| 908 | "breaks and tabs too.") |
| 909 | self.check_shorten(text, 61, |
| 910 | "This is a paragraph that already has line " |
Antoine Pitrou | c593056 | 2013-08-16 22:31:12 +0200 | [diff] [blame] | 911 | "breaks and [...]") |
Antoine Pitrou | 389dec8 | 2013-08-12 22:39:09 +0200 | [diff] [blame] | 912 | |
| 913 | self.check_shorten("hello world! ", 12, "hello world!") |
Antoine Pitrou | c593056 | 2013-08-16 22:31:12 +0200 | [diff] [blame] | 914 | self.check_shorten("hello world! ", 11, "hello [...]") |
Antoine Pitrou | 389dec8 | 2013-08-12 22:39:09 +0200 | [diff] [blame] | 915 | # The leading space is trimmed from the placeholder |
| 916 | # (it would be ugly otherwise). |
Antoine Pitrou | c593056 | 2013-08-16 22:31:12 +0200 | [diff] [blame] | 917 | self.check_shorten("hello world! ", 10, "[...]") |
Antoine Pitrou | 389dec8 | 2013-08-12 22:39:09 +0200 | [diff] [blame] | 918 | |
| 919 | def test_width_too_small_for_placeholder(self): |
Serhiy Storchaka | acc9f3f | 2013-10-15 21:22:54 +0300 | [diff] [blame] | 920 | shorten("x" * 20, width=8, placeholder="(......)") |
Antoine Pitrou | 389dec8 | 2013-08-12 22:39:09 +0200 | [diff] [blame] | 921 | with self.assertRaises(ValueError): |
Serhiy Storchaka | acc9f3f | 2013-10-15 21:22:54 +0300 | [diff] [blame] | 922 | shorten("x" * 20, width=8, placeholder="(.......)") |
Antoine Pitrou | 389dec8 | 2013-08-12 22:39:09 +0200 | [diff] [blame] | 923 | |
| 924 | def test_first_word_too_long_but_placeholder_fits(self): |
Antoine Pitrou | c593056 | 2013-08-16 22:31:12 +0200 | [diff] [blame] | 925 | self.check_shorten("Helloo", 5, "[...]") |
Antoine Pitrou | 389dec8 | 2013-08-12 22:39:09 +0200 | [diff] [blame] | 926 | |
Greg Ward | f676578 | 2002-08-22 18:35:49 +0000 | [diff] [blame] | 927 | |
Greg Ward | 90c0b07 | 2002-08-22 18:11:10 +0000 | [diff] [blame] | 928 | if __name__ == '__main__': |
Antoine Pitrou | 389dec8 | 2013-08-12 22:39:09 +0200 | [diff] [blame] | 929 | unittest.main() |