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 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407
|
import contextlib
import inspect
import os
import os.path as op
import re
import subprocess
import sys
from io import StringIO
from pathlib import Path
from shutil import copyfile
from typing import Any, Generator, Optional, Tuple, Union
from unittest import mock
import pytest
import codespell_lib as cs_
from codespell_lib._codespell import (
EX_CONFIG,
EX_DATAERR,
EX_OK,
EX_USAGE,
uri_regex_def,
)
def test_constants() -> None:
"""Test our EX constants."""
assert EX_OK == 0
assert EX_USAGE == 64
assert EX_DATAERR == 65
assert EX_CONFIG == 78
class MainWrapper:
"""Compatibility wrapper for when we used to return the count."""
@staticmethod
def main(
*args: Any,
count: bool = True,
std: bool = False,
) -> Union[int, Tuple[int, str, str]]:
args = tuple(str(arg) for arg in args)
if count:
args = ("--count", *args)
code = cs_.main(*args)
frame = inspect.currentframe()
assert frame is not None
frame = frame.f_back
assert frame is not None
capsys = frame.f_locals["capsys"]
stdout, stderr = capsys.readouterr()
assert code in (EX_OK, EX_USAGE, EX_DATAERR, EX_CONFIG)
if code == EX_DATAERR: # have some misspellings
code = int(stderr.split("\n")[-2])
elif code == EX_OK and count:
code = int(stderr.split("\n")[-2])
assert code == 0
if std:
return (code, stdout, stderr)
return code
cs = MainWrapper()
def run_codespell(
args: Tuple[Any, ...] = (),
cwd: Optional[Path] = None,
) -> int:
"""Run codespell."""
args = tuple(str(arg) for arg in args)
proc = subprocess.run( # noqa: S603
["codespell", "--count", *args], # noqa: S607
cwd=cwd,
capture_output=True,
encoding="utf-8",
check=False,
)
return int(proc.stderr.split("\n")[-2])
def test_command(tmp_path: Path) -> None:
"""Test running the codespell executable."""
# With no arguments does "."
assert run_codespell(cwd=tmp_path) == 0
(tmp_path / "bad.txt").write_text("abandonned\nAbandonned\nABANDONNED\nAbAnDoNnEd")
assert run_codespell(cwd=tmp_path) == 4
def test_basic(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test some basic functionality."""
assert cs.main("_does_not_exist_") == 0
fname = tmp_path / "tmp"
fname.touch()
result = cs.main("-D", "foo", fname, std=True)
assert isinstance(result, tuple)
code, _, stderr = result
assert code == EX_USAGE, "missing dictionary"
assert "cannot find dictionary" in stderr
assert cs.main(fname) == 0, "empty file"
with fname.open("a") as f:
f.write("this is a test file\n")
assert cs.main(fname) == 0, "good"
with fname.open("a") as f:
f.write("abandonned\n")
assert cs.main(fname) == 1, "bad"
with fname.open("a") as f:
f.write("abandonned\n")
assert cs.main(fname) == 2, "worse"
with fname.open("a") as f:
f.write("tim\ngonna\n")
assert cs.main(fname) == 2, "with a name"
assert cs.main("--builtin", "clear,rare,names,informal", fname) == 4
with fname.open("w") as f: # overwrite the file
f.write("var = 'nwe must check codespell likes escapes nin strings'\n")
assert cs.main(fname) == 1, "checking our string escape test word is bad"
# the first one is missed because the apostrophe means its not currently
# treated as a word on its own
with fname.open("w") as f: # overwrite the file
f.write("var = '\\nwe must check codespell likes escapes \\nin strings'\n")
assert cs.main(fname) == 0, "with string escape"
result = cs.main(fname, "--builtin", "foo", std=True)
assert isinstance(result, tuple)
code, _, stderr = result
assert code == EX_USAGE # bad type
assert "Unknown builtin dictionary" in stderr
result = cs.main(fname, "-D", tmp_path / "foo", std=True)
assert isinstance(result, tuple)
code, _, stderr = result
assert code == EX_USAGE # bad dict
assert "cannot find dictionary" in stderr
fname.unlink()
with (tmp_path / "bad.txt").open("w", newline="") as f:
f.write(
"abandonned\nAbandonned\nABANDONNED\nAbAnDoNnEd\nabandonned\rAbandonned\r\nABANDONNED \n AbAnDoNnEd" # noqa: E501
)
assert cs.main(tmp_path) == 8
result = cs.main("-w", tmp_path, std=True)
assert isinstance(result, tuple)
code, _, stderr = result
assert code == 0
assert "FIXED:" in stderr
with (tmp_path / "bad.txt").open(newline="") as f:
new_content = f.read()
assert cs.main(tmp_path) == 0
assert (
new_content
== "abandoned\nAbandoned\nABANDONED\nabandoned\nabandoned\rAbandoned\r\nABANDONED \n abandoned" # noqa: E501
)
(tmp_path / "bad.txt").write_text("abandonned abandonned\n")
assert cs.main(tmp_path) == 2
result = cs.main("-q", "16", "-w", tmp_path, count=False, std=True)
assert isinstance(result, tuple)
code, stdout, stderr = result
assert code == 0
assert not stdout
assert not stderr
assert cs.main(tmp_path) == 0
# empty directory
(tmp_path / "empty").mkdir()
assert cs.main(tmp_path) == 0
def test_default_word_parsing(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
fname = tmp_path / "backtick"
with fname.open("a") as f:
f.write("`abandonned`\n")
assert cs.main(fname) == 1, "bad"
fname = tmp_path / "apostrophe"
fname.write_text("woudn't\n", encoding="utf-8") # U+0027
assert cs.main(fname) == 1, "misspelling containing typewriter apostrophe U+0027"
fname.write_text("woudn’t\n", encoding="utf-8") # U+2019 # noqa: RUF001
assert cs.main(fname) == 1, "misspelling containing typographic apostrophe U+2019"
def test_bad_glob(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
# disregard invalid globs, properly handle escaped globs
g = tmp_path / "glob"
g.mkdir()
fname = g / "[b-a].txt"
fname.write_text("abandonned\n")
assert cs.main(g) == 1
# bad glob is invalid
result = cs.main("--skip", "[b-a].txt", g, std=True)
assert isinstance(result, tuple)
code, _, stderr = result
if sys.hexversion < 0x030A05F0: # Python < 3.10.5 raises re.error
assert code == EX_USAGE, "invalid glob"
assert "invalid glob" in stderr
else: # Python >= 3.10.5 does not match
assert code == 1
# properly escaped glob is valid, and matches glob-like file name
assert cs.main("--skip", "[[]b-a[]].txt", g) == 0
@pytest.mark.skipif(sys.platform != "linux", reason="Only supported on Linux")
def test_permission_error(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test permission error handling."""
fname = tmp_path / "unreadable.txt"
fname.write_text("abandonned\n")
result = cs.main(fname, std=True)
assert isinstance(result, tuple)
_, _, stderr = result
assert "WARNING:" not in stderr
fname.chmod(0o000)
result = cs.main(fname, std=True)
assert isinstance(result, tuple)
_, _, stderr = result
assert "WARNING:" in stderr
def test_interactivity(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test interaction"""
# Windows can't read a currently-opened file, so here we use
# NamedTemporaryFile just to get a good name
fname = tmp_path / "tmp"
fname.touch()
try:
assert cs.main(fname) == 0, "empty file"
fname.write_text("abandonned\n")
with mock.patch.object(sys, "argv", ("-i", "-1", fname)):
with pytest.raises(SystemExit) as e:
cs.main("-i", "-1", fname)
assert e.type is SystemExit
assert e.value.code != 0
with FakeStdin("n\n"):
result = cs.main("-w", "-i", "3", fname, std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == 0
assert "==>" in stdout
with FakeStdin("x\ny\n"):
assert cs.main("-w", "-i", "3", fname) == 0
assert cs.main(fname) == 0
finally:
fname.unlink()
# New example
fname = tmp_path / "tmp2"
fname.write_text("abandonned\n")
try:
assert cs.main(fname) == 1
with FakeStdin(" "): # blank input -> Y
assert cs.main("-w", "-i", "3", fname) == 0
assert cs.main(fname) == 0
finally:
fname.unlink()
# multiple options
fname = tmp_path / "tmp3"
fname.write_text("ackward\n")
try:
assert cs.main(fname) == 1
with FakeStdin(" \n"): # blank input -> nothing
assert cs.main("-w", "-i", "3", fname) == 0
assert cs.main(fname) == 1
with FakeStdin("0\n"): # blank input -> nothing
assert cs.main("-w", "-i", "3", fname) == 0
assert cs.main(fname) == 0
assert fname.read_text() == "awkward\n"
fname.write_text("ackward\n")
assert cs.main(fname) == 1
with FakeStdin("x\n1\n"): # blank input -> nothing
result = cs.main("-w", "-i", "3", fname, std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == 0
assert "a valid option" in stdout
assert cs.main(fname) == 0
assert fname.read_text() == "backward\n"
finally:
fname.unlink()
def test_summary(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test summary functionality."""
fname = tmp_path / "tmp"
fname.touch()
result = cs.main(fname, std=True, count=False)
assert isinstance(result, tuple)
code, stdout, stderr = result
assert code == 0
assert not stdout
assert not stderr, "no output"
result = cs.main(fname, "--summary", std=True)
assert isinstance(result, tuple)
code, stdout, stderr = result
assert code == 0
assert stderr == "0\n"
assert "SUMMARY" in stdout
assert len(stdout.split("\n")) == 5
fname.write_text("abandonned\nabandonned")
assert code == 0
result = cs.main(fname, "--summary", std=True)
assert isinstance(result, tuple)
code, stdout, stderr = result
assert stderr == "2\n"
assert "SUMMARY" in stdout
assert len(stdout.split("\n")) == 7
assert "abandonned" in stdout.split()[-2]
def test_ignore_dictionary(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test ignore dictionary functionality."""
bad_name = tmp_path / "bad.txt"
bad_name.write_text(
"1 abandonned 1\n"
"2 abandonned 2\n"
"3 abandonned 3\r\n"
"4 abilty 4\n"
"5 abilty 5\n"
"6 abilty 6\r\n"
"7 ackward 7\n"
"8 ackward 8\n"
"9 ackward 9\r\n"
"abondon\n"
)
assert cs.main(bad_name) == 10
fname = tmp_path / "ignore.txt"
fname.write_text("abandonned\nabilty\r\nackward")
assert cs.main("-I", fname, bad_name) == 1
# missing file in ignore list
fname_missing = tmp_path / "missing.txt"
result = cs.main("-I", fname_missing, bad_name, std=True)
assert isinstance(result, tuple)
code, _, stderr = result
assert code == EX_USAGE
assert "ERROR:" in stderr
# comma-separated list of files
fname_dummy1 = tmp_path / "dummy1.txt"
fname_dummy1.touch()
fname_dummy2 = tmp_path / "dummy2.txt"
fname_dummy2.touch()
assert cs.main("-I", fname_dummy1, "-I", fname, "-I", fname_dummy2, bad_name) == 1
assert cs.main("-I", f"{fname_dummy1},{fname},{fname_dummy2}", bad_name) == 1
def test_ignore_words_with_cases(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test case-sensitivity implemented for -I and -L options in #3272."""
bad_name = tmp_path / "MIS.txt"
bad_name.write_text(
"1 MIS (Management Information System) 1\n2 Les Mis (1980 musical) 2\n3 mis 3\n"
)
assert cs.main(bad_name) == 3
assert cs.main(bad_name, "-f") == 4
fname = tmp_path / "ignore.txt"
fname.write_text("miS")
assert cs.main("-I", fname, bad_name) == 3
assert cs.main("-LmiS", bad_name) == 3
assert cs.main("-I", fname, "-f", bad_name) == 4
assert cs.main("-LmiS", "-f", bad_name) == 4
fname.write_text("MIS")
assert cs.main("-I", fname, bad_name) == 2
assert cs.main("-LMIS", bad_name) == 2
assert cs.main("-I", fname, "-f", bad_name) == 2
assert cs.main("-LMIS", "-f", bad_name) == 2
fname.write_text("MIS\nMis")
assert cs.main("-I", fname, bad_name) == 1
assert cs.main("-LMIS,Mis", bad_name) == 1
assert cs.main("-I", fname, "-f", bad_name) == 1
assert cs.main("-LMIS,Mis", "-f", bad_name) == 1
fname.write_text("mis")
assert cs.main("-I", fname, bad_name) == 0
assert cs.main("-Lmis", bad_name) == 0
assert cs.main("-I", fname, "-f", bad_name) == 0
assert cs.main("-Lmis", "-f", bad_name) == 0
def test_ignore_word_list(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test ignore word list functionality."""
(tmp_path / "bad.txt").write_text("abandonned\nabondon\nabilty\n")
assert cs.main(tmp_path) == 3
assert cs.main("-Labandonned,someword", "-Labilty", tmp_path) == 1
@pytest.mark.parametrize(
("content", "expected_error_count"),
[
# recommended form
("abandonned abondon abilty # codespell:ignore abondon", 2),
("abandonned abondon abilty // codespell:ignore abondon,abilty", 1),
(
"abandonned abondon abilty /* codespell:ignore abandonned,abondon,abilty",
0,
),
# ignore unused ignore
("abandonned abondon abilty # codespell:ignore nomenklatur", 3),
# wildcard form
("abandonned abondon abilty # codespell:ignore ", 0),
("abandonned abondon abilty # codespell:ignore", 0),
("abandonned abondon abilty # codespell:ignore\n", 0),
("abandonned abondon abilty # codespell:ignore\r\n", 0),
("abandonned abondon abilty # codespell:ignore # noqa: E501\n", 0),
("abandonned abondon abilty # codespell:ignore # noqa: E501\n", 0),
("abandonned abondon abilty # codespell:ignore# noqa: E501\n", 0),
("abandonned abondon abilty # codespell:ignore, noqa: E501\n", 0),
("abandonned abondon abilty #codespell:ignore\n", 0),
# ignore these for safety
("abandonned abondon abilty # codespell:ignorenoqa: E501\n", 3),
("abandonned abondon abilty codespell:ignore\n", 3),
("abandonned abondon abilty codespell:ignore\n", 3),
# ignore these as they aren't valid
("abandonned abondon abilty # codespell:igore\n", 4),
# showcase different comment markers
("abandonned abondon abilty ' codespell:ignore\n", 0),
('abandonned abondon abilty " codespell:ignore\n', 0),
("abandonned abondon abilty ;; codespell:ignore\n", 0),
("abandonned abondon abilty /* codespell:ignore */\n", 0),
# prose examples
(
"You could also use line based igore ( codespell:ignore ) to igore ",
0,
),
("You could also use line based igore (codespell:ignore) to igore ", 0),
(
"You could also use line based igore (codespell:ignore igore) to igore ",
0,
),
(
"You could also use line based igore (codespell:ignore igare) to igore ",
2,
),
],
)
def test_inline_ignores(
tmpdir: pytest.TempPathFactory,
capsys: pytest.CaptureFixture[str],
content: str,
expected_error_count: int,
) -> None:
d = str(tmpdir)
with open(op.join(d, "bad.txt"), "w", encoding="utf-8") as f:
f.write(content)
assert cs.main(d) == expected_error_count
def test_custom_regex(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test custom word regex."""
(tmp_path / "bad.txt").write_text("abandonned_abondon\n")
assert cs.main(tmp_path) == 0
assert cs.main("-r", "[a-z]+", tmp_path) == 2
result = cs.main("-r", "[a-z]+", "--write-changes", tmp_path, std=True)
assert isinstance(result, tuple)
code, _, stderr = result
assert code == EX_USAGE
assert "ERROR:" in stderr
def test_exclude_file(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test exclude file functionality."""
bad_name = tmp_path / "bad.txt"
# check all possible combinations of lines to ignore and ignores
combinations = "".join(
f"{n} abandonned {n}\n"
f"{n} abandonned {n}\r\n"
f"{n} abandonned {n} \n"
f"{n} abandonned {n} \r\n"
for n in range(1, 5)
)
bad_name.write_bytes(
(combinations + "5 abandonned 5\n6 abandonned 6").encode("utf-8")
)
assert cs.main(bad_name) == 18
fname = tmp_path / "tmp.txt"
fname.write_bytes(
b"1 abandonned 1\n"
b"2 abandonned 2\r\n"
b"3 abandonned 3 \n"
b"4 abandonned 4 \r\n"
b"6 abandonned 6\n"
)
assert cs.main(bad_name) == 18
assert cs.main("-x", fname, bad_name) == 1
# comma-separated list of files
fname_dummy1 = tmp_path / "dummy1.txt"
fname_dummy1.touch()
fname_dummy2 = tmp_path / "dummy2.txt"
fname_dummy2.touch()
assert cs.main("-x", fname_dummy1, "-x", fname, "-x", fname_dummy2, bad_name) == 1
assert cs.main("-x", f"{fname_dummy1},{fname},{fname_dummy2}", bad_name) == 1
def test_encoding(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test encoding handling."""
# Some simple Unicode things
fname = tmp_path / "tmp"
fname.touch()
# with CaptureStdout() as sio:
assert cs.main(fname) == 0
fname.write_bytes("naïve\n".encode())
assert cs.main(fname) == 0
assert cs.main("-e", fname) == 0
with fname.open("ab") as f:
f.write(b"naieve\n")
assert cs.main(fname) == 1
# Encoding detection (only try ISO 8859-1 because UTF-8 is the default)
fname.write_bytes(b"Speling error, non-ASCII: h\xe9t\xe9rog\xe9n\xe9it\xe9\n")
# check warnings about wrong encoding are enabled with "-q 0"
result = cs.main("-q", "0", fname, std=True, count=True)
assert isinstance(result, tuple)
code, stdout, stderr = result
assert code == 1
assert "Speling" in stdout
assert "iso-8859-1" in stderr
# check warnings about wrong encoding are disabled with "-q 1"
result = cs.main("-q", "1", fname, std=True, count=True)
assert isinstance(result, tuple)
code, stdout, stderr = result
assert code == 1
assert "Speling" in stdout
assert "iso-8859-1" not in stderr
# Binary file warning
fname.write_bytes(b"\x00\x00naiive\x00\x00")
result = cs.main(fname, std=True, count=False)
assert isinstance(result, tuple)
code, stdout, stderr = result
assert code == 0
assert not stdout
assert not stderr
result = cs.main("-q", "0", fname, std=True, count=False)
assert isinstance(result, tuple)
code, stdout, stderr = result
assert code == 0
assert not stdout
assert "WARNING: Binary file" in stderr
def test_unknown_encoding_chardet(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test opening a file with unknown encoding using chardet"""
fname = tmp_path / "tmp"
fname.touch()
assert cs.main("--hard-encoding-detection", fname) == 0
def test_ignore(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test ignoring of files and directories."""
goodtxt = tmp_path / "good.txt"
goodtxt.write_text("this file is okay")
assert cs.main(tmp_path) == 0
badtxt = tmp_path / "bad.txt"
badtxt.write_text("abandonned")
assert cs.main(tmp_path) == 1
assert cs.main("--skip=bad*", tmp_path) == 0
assert cs.main("--skip=bad.txt", tmp_path) == 0
subdir = tmp_path / "ignoredir"
subdir.mkdir()
(subdir / "bad.txt").write_text("abandonned")
assert cs.main(tmp_path) == 2
assert cs.main("--skip=bad*", tmp_path) == 0
assert cs.main("--skip=whatever.txt,bad*,whatelse.txt", tmp_path) == 0
assert cs.main("--skip=whatever.txt,\n bad* ,", tmp_path) == 0
assert cs.main("--skip=*ignoredir*", tmp_path) == 1
assert cs.main("--skip=ignoredir", tmp_path) == 1
assert cs.main("--skip=*ignoredir/bad*", tmp_path) == 1
assert cs.main(f"--skip={tmp_path}", tmp_path) == 0
badjs = tmp_path / "bad.js"
copyfile(badtxt, badjs)
assert cs.main("--skip=*.js", goodtxt, badtxt, badjs) == 1
def test_check_filename(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test filename check."""
fname = tmp_path / "abandonned.txt"
# Empty file
fname.touch()
assert cs.main("-f", tmp_path) == 1
# Normal file with contents
fname.write_text(".")
assert cs.main("-f", tmp_path) == 1
# Normal file with binary contents
fname.write_bytes(b"\x00\x00naiive\x00\x00")
assert cs.main("-f", tmp_path) == 1
@pytest.mark.skipif(
(not hasattr(os, "mkfifo") or not callable(os.mkfifo)), reason="requires os.mkfifo"
)
def test_check_filename_irregular_file(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test irregular file filename check."""
# Irregular file (!isfile())
os.mkfifo(tmp_path / "abandonned")
assert cs.main("-f", tmp_path) == 1
def test_check_hidden(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test ignoring of hidden files."""
# visible file
#
# tmp_path
# └── test.txt
#
fname = tmp_path / "test.txt"
fname.write_text("erorr\n")
assert cs.main(fname) == 1
assert cs.main(tmp_path) == 1
# hidden file
#
# tmp_path
# └── .test.txt
#
hidden_file = tmp_path / ".test.txt"
fname.rename(hidden_file)
assert cs.main(hidden_file) == 0
assert cs.main(tmp_path) == 0
assert cs.main("--check-hidden", hidden_file) == 1
assert cs.main("--check-hidden", tmp_path) == 1
# hidden file with typo in name
#
# tmp_path
# └── .abandonned.txt
#
typo_file = tmp_path / ".abandonned.txt"
hidden_file.rename(typo_file)
assert cs.main(typo_file) == 0
assert cs.main(tmp_path) == 0
assert cs.main("--check-hidden", typo_file) == 1
assert cs.main("--check-hidden", tmp_path) == 1
assert cs.main("--check-hidden", "--check-filenames", typo_file) == 2
assert cs.main("--check-hidden", "--check-filenames", tmp_path) == 2
# hidden directory
#
# tmp_path
# ├── .abandonned
# │ ├── .abandonned.txt
# │ └── subdir
# │ └── .abandonned.txt
# └── .abandonned.txt
#
assert cs.main(tmp_path) == 0
assert cs.main("--check-hidden", tmp_path) == 1
assert cs.main("--check-hidden", "--check-filenames", tmp_path) == 2
hidden = tmp_path / ".abandonned"
hidden.mkdir()
copyfile(typo_file, hidden / typo_file.name)
subdir = hidden / "subdir"
subdir.mkdir()
copyfile(typo_file, subdir / typo_file.name)
assert cs.main(tmp_path) == 0
assert cs.main("--check-hidden", tmp_path) == 3
assert cs.main("--check-hidden", "--check-filenames", tmp_path) == 8
# check again with a relative path
try:
rel = op.relpath(tmp_path)
except ValueError:
# Windows: path is on mount 'C:', start on mount 'D:'
pass
else:
assert cs.main(rel) == 0
assert cs.main("--check-hidden", rel) == 3
assert cs.main("--check-hidden", "--check-filenames", rel) == 8
# hidden subdirectory
#
# tmp_path
# ├── .abandonned
# │ ├── .abandonned.txt
# │ └── subdir
# │ └── .abandonned.txt
# ├── .abandonned.txt
# └── subdir
# └── .abandonned
# └── .abandonned.txt
subdir = tmp_path / "subdir"
subdir.mkdir()
hidden = subdir / ".abandonned"
hidden.mkdir()
copyfile(typo_file, hidden / typo_file.name)
assert cs.main(tmp_path) == 0
assert cs.main("--check-hidden", tmp_path) == 4
assert cs.main("--check-hidden", "--check-filenames", tmp_path) == 11
def test_case_handling(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test that capitalized entries get detected properly."""
# Some simple Unicode things
fname = tmp_path / "tmp"
fname.touch()
# with CaptureStdout() as sio:
assert cs.main(fname) == 0
fname.write_bytes(b"this has an ACII error")
result = cs.main(fname, std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == 1
assert "ASCII" in stdout
result = cs.main("-w", fname, std=True)
assert isinstance(result, tuple)
code, _, stderr = result
assert code == 0
assert "FIXED" in stderr
assert fname.read_text(encoding="utf-8") == "this has an ASCII error"
def _helper_test_case_handling_in_fixes(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
reason: bool,
) -> None:
dictionary_name = tmp_path / "dictionary.txt"
if reason:
dictionary_name.write_text("adoptor->adopter, adaptor, reason\n")
else:
dictionary_name.write_text("adoptor->adopter, adaptor,\n")
# the misspelled word is entirely lowercase
fname = tmp_path / "bad.txt"
fname.write_text("early adoptor\n")
result = cs.main("-D", dictionary_name, fname, std=True)
assert isinstance(result, tuple)
_, stdout, _ = result
# all suggested fixes must be lowercase too
assert "adopter, adaptor" in stdout
# the reason, if any, must not be modified
if reason:
assert "reason" in stdout
# the misspelled word is capitalized
fname.write_text("Early Adoptor\n")
result = cs.main("-D", dictionary_name, fname, std=True)
assert isinstance(result, tuple)
_, stdout, _ = result
# all suggested fixes must be capitalized too
assert "Adopter, Adaptor" in stdout
# the reason, if any, must not be modified
if reason:
assert "reason" in stdout
# the misspelled word is entirely uppercase
fname.write_text("EARLY ADOPTOR\n")
result = cs.main("-D", dictionary_name, fname, std=True)
assert isinstance(result, tuple)
_, stdout, _ = result
# all suggested fixes must be uppercase too
assert "ADOPTER, ADAPTOR" in stdout
# the reason, if any, must not be modified
if reason:
assert "reason" in stdout
# the misspelled word mixes lowercase and uppercase
fname.write_text("EaRlY AdOpToR\n")
result = cs.main("-D", dictionary_name, fname, std=True)
assert isinstance(result, tuple)
_, stdout, _ = result
# all suggested fixes should be lowercase
assert "adopter, adaptor" in stdout
# the reason, if any, must not be modified
if reason:
assert "reason" in stdout
def test_case_handling_in_fixes(
tmp_path: Path, capsys: pytest.CaptureFixture[str]
) -> None:
"""Test that the case of fixes is similar to the misspelled word."""
_helper_test_case_handling_in_fixes(tmp_path, capsys, reason=False)
_helper_test_case_handling_in_fixes(tmp_path, capsys, reason=True)
def test_context(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test context options."""
(tmp_path / "context.txt").write_text(
"line 1\nline 2\nline 3 abandonned\nline 4\nline 5"
)
# symmetric context, fully within file
result = cs.main("-C", "1", tmp_path, std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == 1
lines = stdout.split("\n")
assert len(lines) == 5
assert lines[0] == ": line 2"
assert lines[1] == "> line 3 abandonned"
assert lines[2] == ": line 4"
# requested context is bigger than the file
result = cs.main("-C", "10", tmp_path, std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == 1
lines = stdout.split("\n")
assert len(lines) == 7
assert lines[0] == ": line 1"
assert lines[1] == ": line 2"
assert lines[2] == "> line 3 abandonned"
assert lines[3] == ": line 4"
assert lines[4] == ": line 5"
# only before context
result = cs.main("-B", "2", tmp_path, std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == 1
lines = stdout.split("\n")
assert len(lines) == 5
assert lines[0] == ": line 1"
assert lines[1] == ": line 2"
assert lines[2] == "> line 3 abandonned"
# only after context
result = cs.main("-A", "1", tmp_path, std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == 1
lines = stdout.split("\n")
assert len(lines) == 4
assert lines[0] == "> line 3 abandonned"
assert lines[1] == ": line 4"
# asymmetric context
result = cs.main("-B", "2", "-A", "1", tmp_path, std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == 1
lines = stdout.split("\n")
assert len(lines) == 6
assert lines[0] == ": line 1"
assert lines[1] == ": line 2"
assert lines[2] == "> line 3 abandonned"
assert lines[3] == ": line 4"
# both '-C' and '-A' on the command line
result = cs.main("-C", "2", "-A", "1", tmp_path, std=True)
assert isinstance(result, tuple)
code, _, stderr = result
assert code == EX_USAGE
lines = stderr.split("\n")
assert "ERROR" in lines[0]
# both '-C' and '-B' on the command line
result = cs.main("-C", "2", "-B", "1", tmp_path, std=True)
assert isinstance(result, tuple)
code, _, stderr = result
assert code == EX_USAGE
lines = stderr.split("\n")
assert "ERROR" in lines[0]
def test_ignore_regex_option(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test ignore regex option functionality."""
# Invalid regex.
result = cs.main("--ignore-regex=(", std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == EX_USAGE
assert "usage:" in stdout
fname = tmp_path / "flag.txt"
fname.write_text("# Please see http://example.com/abandonned for info\n")
# Test file has 1 invalid entry, and it's not ignored by default.
assert cs.main(fname) == 1
# An empty regex is the default value, and nothing is ignored.
assert cs.main(fname, "--ignore-regex=") == 1
assert cs.main(fname, '--ignore-regex=""') == 1
# Non-matching regex results in nothing being ignored.
assert cs.main(fname, "--ignore-regex=^$") == 1
# A word can be ignored.
assert cs.main(fname, "--ignore-regex=abandonned") == 0
# Ignoring part of the word can result in odd behavior.
assert cs.main(fname, "--ignore-regex=nn") == 0
fname.write_text("abandonned donn\n")
# Test file has 2 invalid entries.
assert cs.main(fname) == 2
# Ignoring donn breaks them both.
assert cs.main(fname, "--ignore-regex=donn") == 0
# Adding word breaks causes only one to be ignored.
assert cs.main(fname, r"--ignore-regex=\bdonn\b") == 1
def test_ignore_multiline_regex_option(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test ignore regex option functionality."""
# Invalid regex.
result = cs.main("--ignore-multiline-regex=(", std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == EX_USAGE
assert "usage:" in stdout
fname = tmp_path / "flag.txt"
fname.write_text(
"""
Please see http://example.com/abandonned for info
# codespell:ignore-begin
'''
abandonned
abandonned
'''
# codespell:ignore-end
abandonned
"""
)
assert cs.main(fname) == 4
assert (
cs.main(
fname,
"--ignore-multiline-regex",
"codespell:ignore-begin.*codespell:ignore-end",
)
== 2
)
def test_uri_regex_option(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test --uri-regex option functionality."""
# Invalid regex.
result = cs.main("--uri-regex=(", std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == EX_USAGE
assert "usage:" in stdout
fname = tmp_path / "flag.txt"
fname.write_text("# Please see http://abandonned.com for info\n")
# By default, the standard regex is used.
assert cs.main(fname) == 1
assert cs.main(fname, "--uri-ignore-words-list=abandonned") == 0
# If empty, nothing matches.
assert cs.main(fname, "--uri-regex=", "--uri-ignore-words-list=abandonned") == 0
# Can manually match urls.
assert (
cs.main(fname, "--uri-regex=\\bhttp.*\\b", "--uri-ignore-words-list=abandonned")
== 0
)
# Can also match arbitrary content.
fname.write_text("abandonned")
assert cs.main(fname) == 1
assert cs.main(fname, "--uri-ignore-words-list=abandonned") == 1
assert cs.main(fname, "--uri-regex=.*") == 1
assert cs.main(fname, "--uri-regex=.*", "--uri-ignore-words-list=abandonned") == 0
def test_uri_ignore_words_list_option_uri(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test ignore regex option functionality."""
fname = tmp_path / "flag.txt"
fname.write_text("# Please see http://example.com/abandonned for info\n")
# Test file has 1 invalid entry, and it's not ignored by default.
assert cs.main(fname) == 1
# An empty list is the default value, and nothing is ignored.
assert cs.main(fname, "--uri-ignore-words-list=") == 1
# Non-matching regex results in nothing being ignored.
assert cs.main(fname, "--uri-ignore-words-list=foo,example") == 1
# A word can be ignored.
assert cs.main(fname, "--uri-ignore-words-list=abandonned") == 0
assert cs.main(fname, "--uri-ignore-words-list=foo,abandonned,bar") == 0
assert cs.main(fname, "--uri-ignore-words-list=*") == 0
# The match must be for the complete word.
assert cs.main(fname, "--uri-ignore-words-list=abandonn") == 1
fname.write_text("abandonned http://example.com/abandonned\n")
# Test file has 2 invalid entries.
assert cs.main(fname) == 2
# Ignoring the value in the URI won't ignore the word completely.
assert cs.main(fname, "--uri-ignore-words-list=abandonned") == 1
assert cs.main(fname, "--uri-ignore-words-list=*") == 1
# The regular --ignore-words-list will ignore both.
assert cs.main(fname, "--ignore-words-list=abandonned") == 0
variation_option = "--uri-ignore-words-list=abandonned"
# Variations where an error is ignored.
for variation in (
"# Please see http://abandonned for info\n",
'# Please see "http://abandonned" for info\n',
# This variation could be un-ignored, but it'd require a
# more complex regex as " is valid in parts of URIs.
'# Please see "http://foo"abandonned for info\n',
"# Please see https://abandonned for info\n",
"# Please see ftp://abandonned for info\n",
"# Please see http://example/abandonned for info\n",
"# Please see http://example.com/abandonned for info\n",
"# Please see http://exam.com/ple#abandonned for info\n",
"# Please see http://exam.com/ple?abandonned for info\n",
"# Please see http://127.0.0.1/abandonned for info\n",
"# Please see http://[2001:0db8:85a3:0000:0000:8a2e:0370"
":7334]/abandonned for info\n",
):
fname.write_text(variation)
assert cs.main(fname) == 1, variation
assert cs.main(fname, variation_option) == 0, variation
# Variations where no error is ignored.
for variation in (
"# Please see abandonned/ for info\n",
"# Please see http:abandonned for info\n",
"# Please see foo/abandonned for info\n",
"# Please see http://foo abandonned for info\n",
):
fname.write_text(variation)
assert cs.main(fname) == 1, variation
assert cs.main(fname, variation_option) == 1, variation
def test_uri_ignore_words_list_option_email(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
) -> None:
"""Test ignore regex option functionality."""
fname = tmp_path / "flag.txt"
fname.write_text("# Please see example@abandonned.com for info\n")
# Test file has 1 invalid entry, and it's not ignored by default.
assert cs.main(fname) == 1
# An empty list is the default value, and nothing is ignored.
assert cs.main(fname, "--uri-ignore-words-list=") == 1
# Non-matching regex results in nothing being ignored.
assert cs.main(fname, "--uri-ignore-words-list=foo,example") == 1
# A word can be ignored.
assert cs.main(fname, "--uri-ignore-words-list=abandonned") == 0
assert cs.main(fname, "--uri-ignore-words-list=foo,abandonned,bar") == 0
assert cs.main(fname, "--uri-ignore-words-list=*") == 0
# The match must be for the complete word.
assert cs.main(fname, "--uri-ignore-words-list=abandonn") == 1
fname.write_text("abandonned example@abandonned.com\n")
# Test file has 2 invalid entries.
assert cs.main(fname) == 2
# Ignoring the value in the URI won't ignore the word completely.
assert cs.main(fname, "--uri-ignore-words-list=abandonned") == 1
assert cs.main(fname, "--uri-ignore-words-list=*") == 1
# The regular --ignore-words-list will ignore both.
assert cs.main(fname, "--ignore-words-list=abandonned") == 0
variation_option = "--uri-ignore-words-list=abandonned"
# Variations where an error is ignored.
for variation in (
"# Please see example@abandonned for info\n",
"# Please see abandonned@example for info\n",
"# Please see abandonned@example.com for info\n",
"# Please see mailto:abandonned@example.com?subject=Test for info\n",
):
fname.write_text(variation)
assert cs.main(fname) == 1, variation
assert cs.main(fname, variation_option) == 0, variation
# Variations where no error is ignored.
for variation in (
"# Please see example @ abandonned for info\n",
"# Please see abandonned@ example for info\n",
"# Please see mailto:foo@example.com?subject=Test abandonned for info\n",
):
fname.write_text(variation)
assert cs.main(fname) == 1, variation
assert cs.main(fname, variation_option) == 1, variation
def test_uri_regex_def() -> None:
uri_regex = re.compile(uri_regex_def)
# Tests based on https://mathiasbynens.be/demo/url-regex
true_positives = (
"http://foo.com/blah_blah",
"http://foo.com/blah_blah/",
"http://foo.com/blah_blah_(wikipedia)",
"http://foo.com/blah_blah_(wikipedia)_(again)",
"http://www.example.com/wpstyle/?p=364",
"https://www.example.com/foo/?bar=baz&inga=42&quux",
"http://✪df.ws/123",
"http://userid:password@example.com:8080",
"http://userid:password@example.com:8080/",
"http://userid@example.com",
"http://userid@example.com/",
"http://userid@example.com:8080",
"http://userid@example.com:8080/",
"http://userid:password@example.com",
"http://userid:password@example.com/",
"http://142.42.1.1/",
"http://142.42.1.1:8080/",
"http://➡.ws/䨹",
"http://⌘.ws",
"http://⌘.ws/",
"http://foo.com/blah_(wikipedia)#cite-1",
"http://foo.com/blah_(wikipedia)_blah#cite-1",
"http://foo.com/unicode_(✪)_in_parens",
"http://foo.com/(something)?after=parens",
"http://☺.damowmow.com/",
"http://code.google.com/events/#&product=browser",
"http://j.mp",
"ftp://foo.bar/baz",
"http://foo.bar/?q=Test%20URL-encoded%20stuff",
"http://مثال.إختبار",
"http://例子.测试",
"http://उदाहरण.परीक्षा",
"http://-.~_!$&'()*+,;=:%40:80%2f::::::@example.com",
"http://1337.net",
"http://a.b-c.de",
"http://223.255.255.254",
)
true_negatives = (
"http://",
"//",
"//a",
"///a",
"///",
"foo.com",
"rdar://1234",
"h://test",
"://should.fail",
"ftps://foo.bar/",
)
false_positives = (
"http://.",
"http://..",
"http://../",
"http://?",
"http://??",
"http://??/",
"http://#",
"http://##",
"http://##/",
"http:///a",
"http://-error-.invalid/",
"http://a.b--c.de/",
"http://-a.b.co",
"http://a.b-.co",
"http://0.0.0.0",
"http://10.1.1.0",
"http://10.1.1.255",
"http://224.1.1.1",
"http://1.1.1.1.1",
"http://123.123.123",
"http://3628126748",
"http://.www.foo.bar/",
"http://www.foo.bar./",
"http://.www.foo.bar./",
"http://10.1.1.1",
)
boilerplate = "Surrounding text %s more text"
for uri in true_positives + false_positives:
assert uri_regex.findall(uri) == [uri], uri
assert uri_regex.findall(boilerplate % uri) == [uri], uri
for uri in true_negatives:
assert not uri_regex.findall(uri), uri
assert not uri_regex.findall(boilerplate % uri), uri
def test_quiet_level_32(
tmp_path: Path,
tmpdir: pytest.TempPathFactory,
capsys: pytest.CaptureFixture[str],
) -> None:
d = tmp_path / "files"
d.mkdir()
conf = str(tmp_path / "setup.cfg")
with open(conf, "w", encoding="utf-8") as f:
# It must contain a "codespell" section.
f.write("[codespell]\n")
args = ("--config", conf)
# Config files should NOT be in output.
result = cs.main(str(d), *args, "--quiet-level=32", std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == 0
assert "Used config files:" not in stdout
# Config files SHOULD be in output.
result = cs.main(str(d), *args, "--quiet-level=2", std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == 0
assert "Used config files:" in stdout
assert "setup.cfg" in stdout
def test_ill_formed_ini_config_file(
tmp_path: Path,
tmpdir: pytest.TempPathFactory,
capsys: pytest.CaptureFixture[str],
) -> None:
d = tmp_path / "files"
d.mkdir()
conf = str(tmp_path / "setup.cfg")
with open(conf, "w", encoding="utf-8") as f:
# It should contain but lacks a section.
f.write("foobar =\n")
args = ("--config", conf)
# Should not raise a configparser.Error exception.
result = cs.main(str(d), *args, std=True)
assert isinstance(result, tuple)
code, _, stderr = result
assert code == 78
assert "ill-formed config file" in stderr
@pytest.mark.parametrize("kind", ["cfg", "cfg_multiline", "toml", "toml_list"])
def test_config_toml(
tmp_path: Path,
capsys: pytest.CaptureFixture[str],
kind: str,
) -> None:
"""Test loading options from a config file or toml."""
d = tmp_path / "files"
d.mkdir()
(d / "bad.txt").write_text("abandonned donn\n")
(d / "good.txt").write_text("good")
(d / "abandonned.txt").write_text("")
# Should fail when checking all files.
result = cs.main(d, "--check-filenames", count=True, std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
# Code in this case is not exit code, but count of misspellings.
assert code == 3
assert "bad.txt" in stdout
assert "abandonned.txt" in stdout
if kind.startswith("cfg"):
conffile = tmp_path / "setup.cfg"
args = ("--config", conffile)
if kind == "cfg":
text = """\
[codespell]
skip = bad.txt, whatever.txt
count =
"""
else:
assert kind == "cfg_multiline"
text = """\
[codespell]
skip = whatever.txt,
bad.txt ,
,
count =
"""
conffile.write_text(text)
else:
if sys.version_info < (3, 11):
pytest.importorskip("tomli")
tomlfile = tmp_path / "pyproject.toml"
args = ("--toml", tomlfile)
if kind == "toml":
text = """\
[tool.codespell]
skip = 'bad.txt,whatever.txt'
check-filenames = false
count = true
"""
else:
assert kind == "toml_list"
text = """\
[tool.codespell]
skip = ['bad.txt', 'whatever.txt']
check-filenames = false
count = true
"""
tomlfile.write_text(text)
# Should pass when skipping bad.txt or abandonned.txt
result = cs.main(d, *args, std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
assert code == 0
assert "bad.txt" not in stdout
assert "abandonned.txt" not in stdout
# And both should automatically work if they're in cwd
cwd = Path.cwd()
try:
os.chdir(tmp_path)
result = cs.main(d, count=True, std=True)
assert isinstance(result, tuple)
code, stdout, _ = result
finally:
os.chdir(cwd)
assert code == 0
assert "bad.txt" not in stdout
assert "abandonned.txt" not in stdout
@contextlib.contextmanager
def FakeStdin(text: str) -> Generator[None, None, None]:
oldin = sys.stdin
try:
in_ = StringIO(text)
sys.stdin = in_
yield
finally:
sys.stdin = oldin
def run_codespell_stdin(
text: str,
args: Tuple[Any, ...],
cwd: Optional[Path] = None,
) -> int:
"""Run codespell in stdin mode and return number of lines in output."""
proc = subprocess.run( # noqa: S603
["codespell", *args, "-"], # noqa: S607
cwd=cwd,
input=text,
capture_output=True,
encoding="utf-8",
check=False,
)
output = proc.stdout
# get number of lines
return output.count("\n")
def test_stdin(tmp_path: Path) -> None:
"""Test running the codespell executable."""
input_file_lines = 4
text = ""
for _ in range(input_file_lines):
text += "abandonned\n"
for single_line_per_error in (True, False):
args: Tuple[str, ...] = ()
if single_line_per_error:
args = ("--stdin-single-line",)
# we expect 'input_file_lines' number of lines with
# --stdin-single-line and input_file_lines * 2 lines without it
assert run_codespell_stdin(
text, args=args, cwd=tmp_path
) == input_file_lines * (2 - int(single_line_per_error))
|