1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
|
# pylint: skip-file
# type: ignore
#
# tests.test_string_functions.py is part of the docformatter project
#
# Copyright (C) 2012-2023 Steven Myint
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
"""Module for testing functions that manipulate text.
This module contains tests for string functions. String functions are
those:
reindent()
find_shortest_indentation()
normalize_line()
normalize_line_endings()
normalize_summary()
remove_section_headers()
split_first_sentence()
split_summary_and_description()
strip_leading_blank_lines()
strip_quotes()
strip_newlines()
"""
# Third Party Imports
import pytest
# docformatter Package Imports
import docformatter
class TestIndenters:
"""Class for testing the indentation related function.
Includes tests for:
- reindent()
- find_shortest_indentation()
"""
@pytest.mark.unit
def test_reindent(self):
"""Should add four spaces to the beginning of each docstring line."""
assert """\
This should be dedented.
1. This too.
2. And this.
""" == docformatter.reindent(
"""\
This should be dedented.
1. This too.
2. And this.
""",
indentation=" ",
)
@pytest.mark.unit
def test_reindent_should_expand_tabs_to_indentation(self):
"""Should convert tabs to indentation type (four spaces)."""
assert """\
This should be dedented.
1. This too.
2. And this.
""" == docformatter.reindent(
"""\
This should be dedented.
1. This too.
\t2. And this.
""",
indentation=" ",
)
@pytest.mark.unit
def test_reindent_with_no_indentation_expand_tabs(self):
"""Should convert tabs to indentation type (four spaces)."""
assert """\
The below should be indented with spaces:
1. This too.
2. And this.
""" == docformatter.reindent(
"""\
The below should be indented with spaces:
\t1. This too.
\t2. And this.
""",
indentation="",
)
@pytest.mark.unit
def test_reindent_should_maintain_indentation(self):
"""Should make no changes with existing indentation same as type."""
description = """\
Parameters:
- a
- b
"""
assert description == docformatter.reindent(
description,
indentation=" ",
)
@pytest.mark.unit
def test_reindent_tab_indentation(self):
"""Should maintain tabs for the indentation."""
assert """\
\tThis should be indented with a tab.
\tSo should this.
""" == docformatter.reindent(
"""\
\tThis should be indented with a tab.
\tSo should this.
""",
indentation="\t",
)
@pytest.mark.unit
def testfind_shortest_indentation(self):
"""Should find the shortest indentation to be one space."""
assert " " == docformatter.find_shortest_indentation(
[" ", " b", " a"],
)
class TestNormalizers:
"""Class for testing the string normalizing functions.
Includes tests for:
- normalize_line()
- normalize_line_endings()
- normalize_summary()
"""
@pytest.mark.unit
def test_normalize_summary(self):
"""Add period and strip spaces to line."""
assert "This is a sentence." == docformatter.normalize_summary(
"This is a sentence "
)
@pytest.mark.unit
def test_normalize_summary_multiline(self):
"""Add period to line even with line return character."""
assert "This \n\t is\na sentence." == docformatter.normalize_summary(
"This \n\t is\na sentence "
)
@pytest.mark.unit
def test_normalize_summary_with_different_punctuation(self):
"""Do not add period for line ending in question mark."""
summary = "This is a question?"
assert summary == docformatter.normalize_summary(summary)
@pytest.mark.unit
def test_normalize_summary_formatted_as_title(self):
"""Do not add period for markup title (line begins with #).
See issue #56.
"""
summary = "# This is a title"
assert summary == docformatter.normalize_summary(summary)
@pytest.mark.unit
def test_normalize_summary_capitalize_first_letter(self):
"""Capitalize the first letter of the summary.
See issue #76. See requirement docformatter_4.5.1.
"""
assert (
"This is a summary that needs to be capped."
== docformatter.normalize_summary(
"this is a summary that needs to be capped"
)
)
assert "Don't lower case I'm." == docformatter.normalize_summary(
"don't lower case I'm"
)
@pytest.mark.unit
def test_normalize_summary_capitalize_first_letter_with_period(self):
"""Capitalize the first letter of the summary even when ends in period.
See issue #184. See requirement docformatter_4.5.1.
"""
assert (
"This is a summary that needs to be capped."
== docformatter.normalize_summary(
"this is a summary that needs to be capped."
)
)
@pytest.mark.unit
def test_normalize_summary_dont_capitalize_first_letter_if_variable(self):
"""Capitalize the first word unless it looks like a variable."""
assert (
"num_iterations should not be capitalized in this summary."
== docformatter.normalize_summary(
"num_iterations should not be capitalized in this summary"
)
)
class TestSplitters:
"""Class for testing the string splitting function.
Includes tests for:
- split_first_sentence()
- split_summary_and_description()
"""
@pytest.mark.unit
def test_split_first_sentence(self):
""""""
assert (
"This is a sentence.",
" More stuff. And more stuff. .!@#$%",
) == docformatter.split_first_sentence(
"This is a sentence. More stuff. And more stuff. .!@#$%"
)
assert (
"This e.g. sentence.",
" More stuff. And more stuff. .!@#$%",
) == docformatter.split_first_sentence(
"This e.g. sentence. More stuff. And more stuff. .!@#$%"
)
assert (
"This is the first:",
"\none\ntwo",
) == docformatter.split_first_sentence("This is the first:\none\ntwo")
@pytest.mark.unit
def test_split_summary_and_description(self):
""""""
assert (
"This is the first.",
"This is the second. This is the third.",
) == docformatter.split_summary_and_description(
"This is the first. This is the second. This is the third."
)
@pytest.mark.unit
def test_split_summary_and_description_complex(self):
""""""
assert (
"This is the first",
"\nThis is the second. This is the third.",
) == docformatter.split_summary_and_description(
"This is the first\n\nThis is the second. This is the third."
)
@pytest.mark.unit
def test_split_summary_and_description_more_complex(self):
""""""
assert (
"This is the first.",
"This is the second. This is the third.",
) == docformatter.split_summary_and_description(
"This is the first.\nThis is the second. This is the third."
)
@pytest.mark.unit
def test_split_summary_and_description_with_list(self):
""""""
assert (
"This is the first",
"- one\n- two",
) == docformatter.split_summary_and_description(
"This is the first\n- one\n- two"
)
@pytest.mark.unit
def test_split_summary_and_description_with_list_of_parameters(self):
""""""
assert (
"This is the first",
"one - one\ntwo - two",
) == docformatter.split_summary_and_description(
"This is the first\none - one\ntwo - two"
)
@pytest.mark.unit
def test_split_summary_and_description_with_capital(self):
""""""
assert (
"This is the first\nWashington",
"",
) == docformatter.split_summary_and_description(
"This is the first\nWashington"
)
@pytest.mark.unit
def test_split_summary_and_description_with_list_on_other_line(self):
""""""
assert (
"Test",
" test\n @blah",
) == docformatter.split_summary_and_description(
"""\
Test
test
@blah
"""
)
@pytest.mark.unit
def test_split_summary_and_description_with_other_symbol(self):
""""""
assert (
"This is the first",
"@ one\n@ two",
) == docformatter.split_summary_and_description(
"This is the first\n@ one\n@ two"
)
@pytest.mark.unit
def test_split_summary_and_description_with_colon(self):
""""""
assert (
"This is the first:",
"one\ntwo",
) == docformatter.split_summary_and_description(
"This is the first:\none\ntwo"
)
@pytest.mark.unit
def test_split_summary_and_description_with_exclamation(self):
""""""
assert (
"This is the first!",
"one\ntwo",
) == docformatter.split_summary_and_description(
"This is the first!\none\ntwo"
)
@pytest.mark.unit
def test_split_summary_and_description_with_question_mark(self):
""""""
assert (
"This is the first?",
"one\ntwo",
) == docformatter.split_summary_and_description(
"This is the first?\none\ntwo"
)
@pytest.mark.unit
def test_split_summary_and_description_with_quote(self):
""""""
assert (
'This is the first\n"one".',
"",
) == docformatter.split_summary_and_description(
'This is the first\n"one".'
)
assert (
"This is the first\n'one'.",
"",
) == docformatter.split_summary_and_description(
"This is the first\n'one'."
)
assert (
"This is the first\n``one``.",
"",
) == docformatter.split_summary_and_description(
"This is the first\n``one``."
)
@pytest.mark.unit
def test_split_summary_and_description_with_punctuation(self):
""""""
assert (
(
"""\
Try this and this and this and this and this and this and this at
https://example.com/""",
"""
Parameters
----------
email : string""",
)
== docformatter.split_summary_and_description(
"""\
Try this and this and this and this and this and this and this at
https://example.com/
Parameters
----------
email : string
"""
)
)
@pytest.mark.unit
def test_split_summary_and_description_without_punctuation(self):
""""""
assert (
(
"""\
Try this and this and this and this and this and this and this at
this other line""",
"""
Parameters
----------
email : string""",
)
== docformatter.split_summary_and_description(
"""\
Try this and this and this and this and this and this and this at
this other line
Parameters
----------
email : string
"""
)
)
@pytest.mark.unit
def test_split_summary_and_description_with_abbreviation(self):
""""""
for text in [
"Test e.g. now" "Test i.e. now",
"Test Dr. now",
"Test Mr. now",
"Test Mrs. now",
"Test Ms. now",
]:
assert (text, "") == docformatter.split_summary_and_description(
text
)
@pytest.mark.unit
def test_split_summary_and_description_with_url(self):
"""Retain URL on second line with summary."""
text = '''\
"""Sequence of package managers as defined by `XKCD #1654: Universal Install Script
<https://xkcd.com/1654/>`_.
See the corresponding :issue:`implementation rationale in issue #10 <10>`.
"""\
'''
assert (
'"""Sequence of package managers as defined by `XKCD #1654: Universal Install Script\n'
"<https://xkcd.com/1654/>`_.",
"\nSee the corresponding :issue:`implementation rationale in issue #10 <10>`."
'\n"""',
) == docformatter.split_summary_and_description(text)
class TestStrippers:
"""Class for testing the string stripping functions.
Includes tests for:
- strip_leading_blank_lines()
- strip_quotes()
- strip_newlines()
- strip_docstring()
"""
@pytest.mark.unit
def test_remove_section_header(self):
"""Remove section header directives."""
assert "foo\nbar\n" == docformatter.remove_section_header(
"----\nfoo\nbar\n"
)
line = "foo\nbar\n"
assert line == docformatter.remove_section_header(line)
line = " \nfoo\nbar\n"
assert line == docformatter.remove_section_header(line)
|