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
|
from __future__ import annotations
import collections.abc
import re
import sys
import types
import typing
from functools import cmp_to_key
from io import StringIO
from pathlib import Path
from textwrap import dedent, indent
from types import FunctionType, ModuleType
from typing import ( # noqa: UP035
IO,
Any,
AnyStr,
Callable,
Dict,
Generic,
List,
Mapping,
Match,
NewType,
Optional,
Pattern,
Tuple,
Type,
TypeVar,
Union,
)
from unittest.mock import create_autospec, patch
import pytest
import typing_extensions
from sphinx.application import Sphinx
from sphinx.config import Config
from sphinx_autodoc_typehints import (
_resolve_type_guarded_imports,
backfill_type_hints,
format_annotation,
get_annotation_args,
get_annotation_class_name,
get_annotation_module,
normalize_source_lines,
process_docstring,
)
if typing.TYPE_CHECKING:
from sphinx.testing.util import SphinxTestApp
from sphobjinv import Inventory
try:
import nptyping
except ImportError:
nptyping = None # type: ignore[assignment]
T = TypeVar("T")
U_co = TypeVar("U_co", covariant=True)
V_contra = TypeVar("V_contra", contravariant=True)
X = TypeVar("X", str, int)
Y = TypeVar("Y", bound=str)
Z = TypeVar("Z", bound="A")
S = TypeVar("S", bound="miss") # type: ignore[name-defined] # miss not defined on purpose # noqa: F821
W = NewType("W", str)
P = typing_extensions.ParamSpec("P")
P_args = P.args # type:ignore[attr-defined]
P_kwargs = P.kwargs # type:ignore[attr-defined]
P_co = typing_extensions.ParamSpec("P_co", covariant=True) # type: ignore[misc]
P_contra = typing_extensions.ParamSpec("P_contra", contravariant=True) # type: ignore[misc]
P_bound = typing_extensions.ParamSpec("P_bound", bound=str) # type: ignore[misc]
# Mypy does not support recursive type aliases, but
# other type checkers do.
RecList = Union[int, List["RecList"]] # noqa: UP006
MutualRecA = Union[bool, List["MutualRecB"]] # noqa: UP006
MutualRecB = Union[str, List["MutualRecA"]] # noqa: UP006
class A:
def get_type(self) -> type:
return type(self)
class Inner: ...
class B(Generic[T]):
name = "Foo" # This is set to make sure the correct class name ("B") is picked up
class C(B[str]): ...
class D(typing_extensions.Protocol): ...
class E(typing_extensions.Protocol[T]): # type: ignore[misc]
...
class Slotted:
__slots__ = ()
class Metaclass(type): ...
class HintedMethods:
@classmethod
def from_magic(cls: type[T]) -> T: # type: ignore[empty-body]
...
def method(self: T) -> T: # type: ignore[empty-body]
...
PY310_PLUS = sys.version_info >= (3, 10)
PY312_PLUS = sys.version_info >= (3, 12)
if sys.version_info >= (3, 9): # noqa: UP036
AbcCallable = collections.abc.Callable # type: ignore[type-arg]
else:
# We could also set AbcCallable = typing.Callable and x fail the tests that
# use AbcCallable when in versions less than 3.9.
class MyGenericAlias(typing._VariadicGenericAlias, _root=True): # noqa: SLF001
def __getitem__(self, params): # noqa: ANN001, ANN204
result = super().__getitem__(params)
# Make a copy so we don't change the name of a cached annotation
result = result.copy_with(result.__args__)
result.__module__ = "collections.abc"
return result
AbcCallable = MyGenericAlias(collections.abc.Callable, (), special=True)
AbcCallable.__module__ = "collections.abc"
@pytest.mark.parametrize(
("annotation", "module", "class_name", "args"),
[
pytest.param(str, "builtins", "str", (), id="str"),
pytest.param(None, "builtins", "None", (), id="None"),
pytest.param(ModuleType, "types", "ModuleType", (), id="ModuleType"),
pytest.param(FunctionType, "types", "FunctionType", (), id="FunctionType"),
pytest.param(types.CodeType, "types", "CodeType", (), id="CodeType"),
pytest.param(types.CoroutineType, "types", "CoroutineType", (), id="CoroutineType"),
pytest.param(Any, "typing", "Any", (), id="Any"),
pytest.param(AnyStr, "typing", "AnyStr", (), id="AnyStr"),
pytest.param(Dict, "typing", "Dict", (), id="Dict"), # noqa: UP006
pytest.param(Dict[str, int], "typing", "Dict", (str, int), id="Dict_parametrized"), # noqa: UP006
pytest.param(Dict[T, int], "typing", "Dict", (T, int), id="Dict_typevar"), # type: ignore[valid-type] # noqa: UP006
pytest.param(Tuple, "typing", "Tuple", (), id="Tuple"), # noqa: UP006
pytest.param(Tuple[str, int], "typing", "Tuple", (str, int), id="Tuple_parametrized"), # noqa: UP006
pytest.param(Union[str, int], "typing", "Union", (str, int), id="Union"),
pytest.param(Callable, "typing", "Callable", (), id="Callable"),
pytest.param(Callable[..., str], "typing", "Callable", (..., str), id="Callable_returntype"),
pytest.param(Callable[[int, str], str], "typing", "Callable", (int, str, str), id="Callable_all_types"),
pytest.param(
AbcCallable[[int, str], str], # type: ignore[type-arg,misc,valid-type]
"collections.abc",
"Callable",
(int, str, str),
id="collections.abc.Callable_all_types",
),
pytest.param(Pattern, "typing", "Pattern", (), id="Pattern"),
pytest.param(Pattern[str], "typing", "Pattern", (str,), id="Pattern_parametrized"),
pytest.param(Match, "typing", "Match", (), id="Match"),
pytest.param(Match[str], "typing", "Match", (str,), id="Match_parametrized"),
pytest.param(IO, "typing", "IO", (), id="IO"),
pytest.param(W, "typing", "NewType", (str,), id="W"),
pytest.param(P, "typing", "ParamSpec", (), id="P"),
pytest.param(P_args, "typing", "ParamSpecArgs", (), id="P_args"),
pytest.param(P_kwargs, "typing", "ParamSpecKwargs", (), id="P_kwargs"),
pytest.param(Metaclass, __name__, "Metaclass", (), id="Metaclass"),
pytest.param(Slotted, __name__, "Slotted", (), id="Slotted"),
pytest.param(A, __name__, "A", (), id="A"),
pytest.param(B, __name__, "B", (), id="B"),
pytest.param(C, __name__, "C", (), id="C"),
pytest.param(D, __name__, "D", (), id="D"),
pytest.param(E, __name__, "E", (), id="E"),
pytest.param(E[int], __name__, "E", (int,), id="E_parametrized"),
pytest.param(A.Inner, __name__, "A.Inner", (), id="Inner"),
],
)
def test_parse_annotation(annotation: Any, module: str, class_name: str, args: tuple[Any, ...]) -> None:
got_mod = get_annotation_module(annotation)
got_cls = get_annotation_class_name(annotation, module)
got_args = get_annotation_args(annotation, module, class_name)
assert (got_mod, got_cls, got_args) == (module, class_name, args)
_CASES = [
pytest.param(str, ":py:class:`str`", id="str"),
pytest.param(int, ":py:class:`int`", id="int"),
pytest.param(StringIO, ":py:class:`~io.StringIO`", id="StringIO"),
pytest.param(FunctionType, ":py:class:`~types.FunctionType`", id="FunctionType"),
pytest.param(ModuleType, ":py:class:`~types.ModuleType`", id="ModuleType"),
pytest.param(type(None), ":py:obj:`None`", id="type None"),
pytest.param(type, ":py:class:`type`", id="type"),
pytest.param(collections.abc.Callable, ":py:class:`~collections.abc.Callable`", id="abc-Callable"),
pytest.param(Type, ":py:class:`~typing.Type`", id="typing-Type"), # noqa: UP006
pytest.param(Type[A], rf":py:class:`~typing.Type`\ \[:py:class:`~{__name__}.A`]", id="typing-A"), # noqa: UP006
pytest.param(Any, ":py:data:`~typing.Any`", id="Any"),
pytest.param(AnyStr, ":py:data:`~typing.AnyStr`", id="AnyStr"),
pytest.param(Generic[T], r":py:class:`~typing.Generic`\ \[:py:class:`~typing.TypeVar`\ \(``T``)]", id="Generic"),
pytest.param(Mapping, ":py:class:`~typing.Mapping`", id="Mapping"),
pytest.param(
Mapping[T, int], # type: ignore[valid-type]
r":py:class:`~typing.Mapping`\ \[:py:class:`~typing.TypeVar`\ \(``T``), :py:class:`int`]",
id="Mapping-T-int",
),
pytest.param(
Mapping[str, V_contra], # type: ignore[valid-type]
r":py:class:`~typing.Mapping`\ \[:py:class:`str`, :py:class:`~typing.TypeVar`\ \("
"``V_contra``, contravariant=True)]",
id="Mapping-T-int-contra",
),
pytest.param(
Mapping[T, U_co], # type: ignore[valid-type]
r":py:class:`~typing.Mapping`\ \[:py:class:`~typing.TypeVar`\ \(``T``), "
r":py:class:`~typing.TypeVar`\ \(``U_co``, covariant=True)]",
id="Mapping-T-int-co",
),
pytest.param(
Mapping[str, bool],
r":py:class:`~typing.Mapping`\ \[:py:class:`str`, :py:class:`bool`]",
id="Mapping-str-bool",
),
pytest.param(Dict, ":py:class:`~typing.Dict`", id="Dict"), # noqa: UP006
pytest.param(
Dict[T, int], # type: ignore[valid-type] # noqa: UP006
r":py:class:`~typing.Dict`\ \[:py:class:`~typing.TypeVar`\ \(``T``), :py:class:`int`]",
id="Dict-T-int",
),
pytest.param(
Dict[str, V_contra], # type: ignore[valid-type] # noqa: UP006
r":py:class:`~typing.Dict`\ \[:py:class:`str`, :py:class:`~typing.TypeVar`\ \(``V_contra``, "
r"contravariant=True)]",
id="Dict-T-int-contra",
),
pytest.param(
Dict[T, U_co], # type: ignore[valid-type] # noqa: UP006
r":py:class:`~typing.Dict`\ \[:py:class:`~typing.TypeVar`\ \(``T``),"
r" :py:class:`~typing.TypeVar`\ \(``U_co``, covariant=True)]",
id="Dict-T-int-co",
),
pytest.param(
Dict[str, bool], # noqa: UP006
r":py:class:`~typing.Dict`\ \[:py:class:`str`, :py:class:`bool`]",
id="Dict-str-bool", # noqa: RUF100, UP006
),
pytest.param(Tuple, ":py:data:`~typing.Tuple`", id="Tuple"), # noqa: UP006
pytest.param(
Tuple[str, bool], # noqa: UP006
r":py:data:`~typing.Tuple`\ \[:py:class:`str`, :py:class:`bool`]",
id="Tuple-str-bool", # noqa: RUF100, UP006
),
pytest.param(
Tuple[int, int, int], # noqa: UP006
r":py:data:`~typing.Tuple`\ \[:py:class:`int`, :py:class:`int`, :py:class:`int`]",
id="Tuple-int-int-int",
),
pytest.param(
Tuple[str, ...], # noqa: UP006
r":py:data:`~typing.Tuple`\ \[:py:class:`str`, :py:data:`...<Ellipsis>`]",
id="Tuple-str-Ellipsis",
),
pytest.param(Union, ":py:data:`~typing.Union`", id="Union"),
pytest.param(
Union[str, bool], r":py:data:`~typing.Union`\ \[:py:class:`str`, :py:class:`bool`]", id="Union-str-bool"
),
pytest.param(
Union[str, bool, None],
r":py:data:`~typing.Union`\ \[:py:class:`str`, :py:class:`bool`, :py:obj:`None`]",
id="Union-str-bool-None",
),
pytest.param(
Union[str, Any], r":py:data:`~typing.Union`\ \[:py:class:`str`, :py:data:`~typing.Any`]", id="Union-str-Any"
),
pytest.param(Optional[str], r":py:data:`~typing.Optional`\ \[:py:class:`str`]", id="Optional-str"),
pytest.param(Union[str, None], r":py:data:`~typing.Optional`\ \[:py:class:`str`]", id="Optional-str-None"),
pytest.param(
Optional[Union[str, bool]],
r":py:data:`~typing.Union`\ \[:py:class:`str`, :py:class:`bool`, :py:obj:`None`]",
id="Optional-Union-str-bool",
),
pytest.param(Callable, ":py:data:`~typing.Callable`", id="Callable"),
pytest.param(
Callable[..., int],
r":py:data:`~typing.Callable`\ \[:py:data:`...<Ellipsis>`, :py:class:`int`]",
id="Callable-Ellipsis-int",
),
pytest.param(
Callable[[int], int],
r":py:data:`~typing.Callable`\ \[\[:py:class:`int`], :py:class:`int`]",
id="Callable-int-int",
),
pytest.param(
Callable[[int, str], bool],
r":py:data:`~typing.Callable`\ \[\[:py:class:`int`, :py:class:`str`], :py:class:`bool`]",
id="Callable-int-str-bool",
),
pytest.param(
Callable[[int, str], None],
r":py:data:`~typing.Callable`\ \[\[:py:class:`int`, :py:class:`str`], :py:obj:`None`]",
id="Callable-int-str",
),
pytest.param(
Callable[[T], T],
r":py:data:`~typing.Callable`\ \[\[:py:class:`~typing.TypeVar`\ \(``T``)],"
r" :py:class:`~typing.TypeVar`\ \(``T``)]",
id="Callable-T-T",
),
pytest.param(
AbcCallable[[int, str], bool], # type: ignore[valid-type,misc,type-arg]
r":py:class:`~collections.abc.Callable`\ \[\[:py:class:`int`, :py:class:`str`], :py:class:`bool`]",
id="AbcCallable-int-str-bool",
),
pytest.param(Pattern, ":py:class:`~typing.Pattern`", id="Pattern"),
pytest.param(Pattern[str], r":py:class:`~typing.Pattern`\ \[:py:class:`str`]", id="Pattern-str"),
pytest.param(IO, ":py:class:`~typing.IO`", id="IO"),
pytest.param(IO[str], r":py:class:`~typing.IO`\ \[:py:class:`str`]", id="IO-str"),
pytest.param(Metaclass, f":py:class:`~{__name__}.Metaclass`", id="Metaclass"),
pytest.param(A, f":py:class:`~{__name__}.A`", id="A"),
pytest.param(B, f":py:class:`~{__name__}.B`", id="B"),
pytest.param(B[int], rf":py:class:`~{__name__}.B`\ \[:py:class:`int`]", id="B-int"),
pytest.param(C, f":py:class:`~{__name__}.C`", id="C"),
pytest.param(D, f":py:class:`~{__name__}.D`", id="D"),
pytest.param(E, f":py:class:`~{__name__}.E`", id="E"),
pytest.param(E[int], rf":py:class:`~{__name__}.E`\ \[:py:class:`int`]", id="E-int"),
pytest.param(W, rf":py:{'class' if PY310_PLUS else 'func'}:`~typing.NewType`\ \(``W``, :py:class:`str`)", id="W"),
pytest.param(T, r":py:class:`~typing.TypeVar`\ \(``T``)", id="T"),
pytest.param(U_co, r":py:class:`~typing.TypeVar`\ \(``U_co``, covariant=True)", id="U-co"),
pytest.param(V_contra, r":py:class:`~typing.TypeVar`\ \(``V_contra``, contravariant=True)", id="V-contra"),
pytest.param(X, r":py:class:`~typing.TypeVar`\ \(``X``, :py:class:`str`, :py:class:`int`)", id="X"),
pytest.param(Y, r":py:class:`~typing.TypeVar`\ \(``Y``, bound= :py:class:`str`)", id="Y"),
pytest.param(Z, r":py:class:`~typing.TypeVar`\ \(``Z``, bound= A)", id="Z"),
pytest.param(S, r":py:class:`~typing.TypeVar`\ \(``S``, bound= miss)", id="S"),
# ParamSpec should behave like TypeVar, except for missing constraints
pytest.param(
P, rf":py:class:`~typing.ParamSpec`\ \(``P``{', bound= :py:obj:`None`' if PY312_PLUS else ''})", id="P"
),
pytest.param(
P_co,
rf":py:class:`~typing.ParamSpec`\ \(``P_co``{', bound= :py:obj:`None`' if PY312_PLUS else ''}, covariant=True)",
id="P_co",
),
pytest.param(
P_contra,
rf":py:class:`~typing.ParamSpec`\ \(``P_contra``{', bound= :py:obj:`None`' if PY312_PLUS else ''}"
", contravariant=True)",
id="P-contra",
),
pytest.param(P_bound, r":py:class:`~typing.ParamSpec`\ \(``P_bound``, bound= :py:class:`str`)", id="P-bound"),
# ## These test for correct internal tuple rendering, even if not all are valid Tuple types
# Zero-length tuple remains
pytest.param(Tuple[()], ":py:data:`~typing.Tuple`", id="Tuple-p"), # noqa: UP006
# Internal single tuple with simple types is flattened in the output
pytest.param(Tuple[(int,)], r":py:data:`~typing.Tuple`\ \[:py:class:`int`]", id="Tuple-p-int"), # noqa: UP006
pytest.param(
Tuple[(int, int)], # noqa: UP006
r":py:data:`~typing.Tuple`\ \[:py:class:`int`, :py:class:`int`]",
id="Tuple-p-int-int", # noqa: RUF100, UP006
),
# Ellipsis in single tuple also gets flattened
pytest.param(
Tuple[(int, ...)], # noqa: UP006
r":py:data:`~typing.Tuple`\ \[:py:class:`int`, :py:data:`...<Ellipsis>`]",
id="Tuple-p-Ellipsis",
),
pytest.param(
RecList, r":py:data:`~typing.Union`\ \[:py:class:`int`, :py:class:`~typing.List`\ \[RecList]]", id="RecList"
),
pytest.param(
MutualRecA,
r":py:data:`~typing.Union`\ \[:py:class:`bool`, :py:class:`~typing.List`\ \[MutualRecB]]",
id="MutualRecA",
),
]
if nptyping is not None:
_CASES.extend(
[ # Internal tuple with following additional type cannot be flattened (specific to nptyping?)
# These cases will fail if nptyping restructures its internal module hierarchy
pytest.param(
nptyping.NDArray[nptyping.Shape["*"], nptyping.Float],
(
":py:class:`~nptyping.ndarray.NDArray`\\ \\[:py:class:`~nptyping.base_meta_classes.Shape`\\ \\[*], "
":py:class:`~numpy.float64`]"
),
id="NDArray-star-float",
),
pytest.param(
nptyping.NDArray[nptyping.Shape["64"], nptyping.Float],
(
":py:class:`~nptyping.ndarray.NDArray`\\ \\[:py:class:`~nptyping.base_meta_classes.Shape`\\ \\[64],"
" :py:class:`~numpy.float64`]"
),
id="NDArray-64-float",
),
pytest.param(
nptyping.NDArray[nptyping.Shape["*, *"], nptyping.Float],
(
":py:class:`~nptyping.ndarray.NDArray`\\ \\[:py:class:`~nptyping.base_meta_classes.Shape`\\ \\[*, "
"*], :py:class:`~numpy.float64`]"
),
id="NDArray-star-star-float",
),
pytest.param(
nptyping.NDArray[nptyping.Shape["*, ..."], nptyping.Float],
":py:class:`~nptyping.ndarray.NDArray`\\ \\[:py:data:`~typing.Any`, :py:class:`~numpy.float64`]",
id="NDArray-star-Ellipsis-float",
),
pytest.param(
nptyping.NDArray[nptyping.Shape["*, 3"], nptyping.Float],
(
":py:class:`~nptyping.ndarray.NDArray`\\ \\[:py:class:`~nptyping.base_meta_classes.Shape`\\ \\[*, 3"
"], :py:class:`~numpy.float64`]"
),
id="NDArray-star-3-float",
),
pytest.param(
nptyping.NDArray[nptyping.Shape["3, ..."], nptyping.Float],
(
":py:class:`~nptyping.ndarray.NDArray`\\ \\[:py:class:`~nptyping.base_meta_classes.Shape`\\ \\[3, "
"...], :py:class:`~numpy.float64`]"
),
id="NDArray-3-Ellipsis-float",
),
],
)
@pytest.mark.parametrize(("annotation", "expected_result"), _CASES)
def test_format_annotation(inv: Inventory, annotation: Any, expected_result: str) -> None:
conf = create_autospec(Config, _annotation_globals=globals(), always_use_bars_union=False)
result = format_annotation(annotation, conf)
assert result == expected_result
# Test with the "simplify_optional_unions" flag turned off:
if re.match(r"^:py:data:`~typing\.Union`\\\[.*``None``.*]", expected_result):
# strip None - argument and copy string to avoid conflicts with
# subsequent tests
expected_result_not_simplified = expected_result.replace(", ``None``", "")
# encapsulate Union in typing.Optional
expected_result_not_simplified += ":py:data:`~typing.Optional`\\ \\["
expected_result_not_simplified += "]"
conf = create_autospec(
Config,
simplify_optional_unions=False,
_annotation_globals=globals(),
always_use_bars_union=False,
)
assert format_annotation(annotation, conf) == expected_result_not_simplified
# Test with the "fully_qualified" flag turned on
if "typing" in expected_result_not_simplified:
expected_result_not_simplified = expected_result_not_simplified.replace("~typing", "typing")
conf = create_autospec(
Config,
typehints_fully_qualified=True,
simplify_optional_unions=False,
_annotation_globals=globals(),
)
assert format_annotation(annotation, conf) == expected_result_not_simplified
# Test with the "fully_qualified" flag turned on
if "typing" in expected_result or "nptyping" in expected_result or __name__ in expected_result:
expected_result = expected_result.replace("~typing", "typing")
expected_result = expected_result.replace("~nptyping", "nptyping")
expected_result = expected_result.replace("~numpy", "numpy")
expected_result = expected_result.replace("~" + __name__, __name__)
conf = create_autospec(
Config,
typehints_fully_qualified=True,
_annotation_globals=globals(),
always_use_bars_union=False,
)
assert format_annotation(annotation, conf) == expected_result
# Test for the correct role (class vs data) using the official Sphinx inventory
if "typing" in expected_result:
m = re.match("^:py:(?P<role>class|data|func):`~(?P<name>[^`]+)`", result)
assert m, "No match"
name = m.group("name")
expected_role = next((o.role for o in inv.objects if o.name == name), None)
if expected_role:
if expected_role == "function":
expected_role = "func"
assert m.group("role") == expected_role
@pytest.mark.parametrize(
("annotation", "expected_result"),
[
("int | float", ":py:class:`int` | :py:class:`float`"),
("int | float | None", ":py:class:`int` | :py:class:`float` | :py:obj:`None`"),
("Union[int, float]", ":py:class:`int` | :py:class:`float`"),
("Union[int, float, None]", ":py:class:`int` | :py:class:`float` | :py:obj:`None`"),
("Optional[int | float]", ":py:class:`int` | :py:class:`float` | :py:obj:`None`"),
("Optional[Union[int, float]]", ":py:class:`int` | :py:class:`float` | :py:obj:`None`"),
("Union[int | float, str]", ":py:class:`int` | :py:class:`float` | :py:class:`str`"),
("Union[int, float] | str", ":py:class:`int` | :py:class:`float` | :py:class:`str`"),
],
)
@pytest.mark.skipif(not PY310_PLUS, reason="| union doesn't work before py310")
def test_always_use_bars_union(annotation: str, expected_result: str) -> None:
conf = create_autospec(Config, always_use_bars_union=True)
result = format_annotation(eval(annotation), conf) # noqa: S307
assert result == expected_result
@pytest.mark.parametrize("library", [typing, typing_extensions], ids=["typing", "typing_extensions"])
@pytest.mark.parametrize(
("annotation", "params", "expected_result"),
[
pytest.param("ClassVar", int, ":py:data:`~typing.ClassVar`\\ \\[:py:class:`int`]", id="ClassVar"),
pytest.param("NoReturn", None, ":py:data:`~typing.NoReturn`", id="NoReturn"),
pytest.param("Literal", ("a", 1), ":py:data:`~typing.Literal`\\ \\[``'a'``, ``1``]", id="Literal"),
pytest.param("Type", None, ":py:class:`~typing.Type`", id="Type-none"),
pytest.param("Type", (A,), rf":py:class:`~typing.Type`\ \[:py:class:`~{__name__}.A`]", id="Type-A"),
],
)
def test_format_annotation_both_libs(library: ModuleType, annotation: str, params: Any, expected_result: str) -> None:
try:
annotation_cls = getattr(library, annotation)
except AttributeError:
pytest.skip(f"{annotation} not available in the {library.__name__} module")
return # pragma: no cover
ann = annotation_cls if params is None else annotation_cls[params]
result = format_annotation(ann, create_autospec(Config))
assert result == expected_result
def test_process_docstring_slot_wrapper() -> None:
lines: list[str] = []
config = create_autospec(
Config,
typehints_fully_qualified=False,
simplify_optional_unions=False,
typehints_formatter=None,
autodoc_mock_imports=[],
)
app: Sphinx = create_autospec(Sphinx, config=config)
process_docstring(app, "class", "SlotWrapper", Slotted, None, lines)
assert not lines
def set_python_path() -> None:
test_path = Path(__file__).parent
# Add test directory to sys.path to allow imports of dummy module.
if str(test_path) not in sys.path:
sys.path.insert(0, str(test_path))
@pytest.mark.parametrize("always_document_param_types", [True, False], ids=["doc_param_type", "no_doc_param_type"])
@pytest.mark.sphinx("text", testroot="dummy")
@patch("sphinx.writers.text.MAXWIDTH", 2000)
def test_always_document_param_types(
app: SphinxTestApp,
status: StringIO,
warning: StringIO,
always_document_param_types: bool,
) -> None:
set_python_path()
app.config.always_document_param_types = always_document_param_types # create flag
app.config.autodoc_mock_imports = ["mailbox"] # create flag
# Prevent "document isn't included in any toctree" warnings
for f in Path(app.srcdir).glob("*.rst"):
f.unlink()
(Path(app.srcdir) / "index.rst").write_text(
dedent(
"""
.. autofunction:: dummy_module.undocumented_function
.. autoclass:: dummy_module.DataClass
:undoc-members:
:special-members: __init__
""",
),
)
app.build()
assert "build succeeded" in status.getvalue() # Build succeeded
assert not warning.getvalue().strip()
format_args = {}
for indentation_level in range(2):
key = f"undoc_params_{indentation_level}"
if always_document_param_types:
format_args[key] = indent('\n\n Parameters:\n **x** ("int")', " " * indentation_level)
else:
format_args[key] = ""
contents = (Path(app.srcdir) / "_build/text/index.txt").read_text()
expected_contents = """\
dummy_module.undocumented_function(x)
Hi{undoc_params_0}
Return type:
"str"
class dummy_module.DataClass(x)
Class docstring.{undoc_params_0}
__init__(x){undoc_params_1}
"""
expected_contents = dedent(expected_contents).format(**format_args)
assert contents == expected_contents
def maybe_fix_py310(expected_contents: str) -> str:
if sys.version_info >= (3, 11):
return expected_contents
if not PY310_PLUS:
return expected_contents.replace('"', "")
for old, new in [
('"str" | "None"', '"Optional"["str"]'),
]:
expected_contents = expected_contents.replace(old, new)
return expected_contents
@pytest.mark.sphinx("text", testroot="dummy")
@patch("sphinx.writers.text.MAXWIDTH", 2000)
def test_sphinx_output_future_annotations(app: SphinxTestApp, status: StringIO) -> None:
set_python_path()
app.config.master_doc = "future_annotations" # create flag
app.build()
assert "build succeeded" in status.getvalue() # Build succeeded
contents = (Path(app.srcdir) / "_build/text/future_annotations.txt").read_text()
expected_contents = """\
Dummy Module
************
dummy_module_future_annotations.function_with_py310_annotations(self, x, y, z=None)
Method docstring.
Parameters:
* **x** ("bool" | "None") -- foo
* **y** ("int" | "str" | "float") -- bar
* **z** ("str" | "None") -- baz
Return type:
"str"
"""
expected_contents = dedent(expected_contents)
expected_contents = maybe_fix_py310(dedent(expected_contents))
assert contents == expected_contents
@pytest.mark.sphinx("pseudoxml", testroot="dummy")
@patch("sphinx.writers.text.MAXWIDTH", 2000)
def test_sphinx_output_default_role(app: SphinxTestApp, status: StringIO) -> None:
set_python_path()
app.config.master_doc = "simple_default_role" # create flag
app.config.default_role = "literal"
app.build()
assert "build succeeded" in status.getvalue() # Build succeeded
contents_lines = (
(Path(app.srcdir) / "_build/pseudoxml/simple_default_role.pseudoxml").read_text(encoding="utf-8").splitlines()
)
list_item_idxs = [i for i, line in enumerate(contents_lines) if line.strip() == "<list_item>"]
foo_param = dedent("\n".join(contents_lines[list_item_idxs[0] : list_item_idxs[1]]))
expected_foo_param = """\
<list_item>
<paragraph>
<literal_strong>
x
(
<inline classes="sphinx_autodoc_typehints-type">
<literal classes="xref py py-class">
bool
)
\N{EN DASH}\N{SPACE}
<literal>
foo
""".rstrip()
expected_foo_param = dedent(expected_foo_param)
assert foo_param == expected_foo_param
@pytest.mark.parametrize(
("defaults_config_val", "expected"),
[
(None, '("int") -- bar'),
("comma", '("int", default: "1") -- bar'),
("braces", '("int" (default: "1")) -- bar'),
("braces-after", '("int") -- bar (default: "1")'),
("comma-after", Exception("needs to be one of")),
],
)
@pytest.mark.sphinx("text", testroot="dummy")
@patch("sphinx.writers.text.MAXWIDTH", 2000)
def test_sphinx_output_defaults(
app: SphinxTestApp,
status: StringIO,
defaults_config_val: str,
expected: str | Exception,
) -> None:
set_python_path()
app.config.master_doc = "simple" # create flag
app.config.typehints_defaults = defaults_config_val # create flag
if isinstance(expected, Exception):
with pytest.raises(Exception, match=re.escape(str(expected))):
app.build()
return
app.build()
assert "build succeeded" in status.getvalue()
contents = (Path(app.srcdir) / "_build/text/simple.txt").read_text()
expected_contents = f"""\
Simple Module
*************
dummy_module_simple.function(x, y=1)
Function docstring.
Parameters:
* **x** ("bool") -- foo
* **y** {expected}
Return type:
"str"
"""
assert contents == dedent(expected_contents)
@pytest.mark.parametrize(
("formatter_config_val", "expected"),
[
(None, ['("bool") -- foo', '("int") -- bar', '"str"']),
(lambda ann, conf: "Test", ["(Test) -- foo", "(Test) -- bar", "Test"]), # noqa: ARG005
("some string", Exception("needs to be callable or `None`")),
],
)
@pytest.mark.sphinx("text", testroot="dummy")
@patch("sphinx.writers.text.MAXWIDTH", 2000)
def test_sphinx_output_formatter(
app: SphinxTestApp,
status: StringIO,
formatter_config_val: str,
expected: tuple[str, ...] | Exception,
) -> None:
set_python_path()
app.config.master_doc = "simple" # create flag
app.config.typehints_formatter = formatter_config_val # create flag
if isinstance(expected, Exception):
with pytest.raises(Exception, match=re.escape(str(expected))):
app.build()
return
app.build()
assert "build succeeded" in status.getvalue()
contents = (Path(app.srcdir) / "_build/text/simple.txt").read_text()
expected_contents = f"""\
Simple Module
*************
dummy_module_simple.function(x, y=1)
Function docstring.
Parameters:
* **x** {expected[0]}
* **y** {expected[1]}
Return type:
{expected[2]}
"""
assert contents == dedent(expected_contents)
def test_normalize_source_lines_async_def() -> None:
source = """
async def async_function():
class InnerClass:
def __init__(self): ...
"""
expected = """
async def async_function():
class InnerClass:
def __init__(self): ...
"""
assert normalize_source_lines(dedent(source)) == dedent(expected)
def test_normalize_source_lines_def_starting_decorator_parameter() -> None:
source = """
@_with_parameters(
_Parameter("self", _Parameter.POSITIONAL_OR_KEYWORD),
*_proxy_instantiation_parameters,
_project_id,
_Parameter(
"node_numbers",
_Parameter.POSITIONAL_OR_KEYWORD,
default=None,
annotation=Optional[Iterable[int]],
),
)
def __init__(bound_args): # noqa: N805
...
"""
expected = """
@_with_parameters(
_Parameter("self", _Parameter.POSITIONAL_OR_KEYWORD),
*_proxy_instantiation_parameters,
_project_id,
_Parameter(
"node_numbers",
_Parameter.POSITIONAL_OR_KEYWORD,
default=None,
annotation=Optional[Iterable[int]],
),
)
def __init__(bound_args): # noqa: N805
...
"""
assert normalize_source_lines(dedent(source)) == dedent(expected)
@pytest.mark.parametrize("obj", [cmp_to_key, 1])
def test_default_no_signature(obj: Any) -> None:
config = create_autospec(
Config,
typehints_fully_qualified=False,
simplify_optional_unions=False,
typehints_formatter=None,
autodoc_mock_imports=[],
)
app: Sphinx = create_autospec(Sphinx, config=config)
lines: list[str] = []
process_docstring(app, "what", "name", obj, None, lines)
assert lines == []
@pytest.mark.parametrize("method", [HintedMethods.from_magic, HintedMethods().method])
def test_bound_class_method(method: FunctionType) -> None:
config = create_autospec(
Config,
typehints_fully_qualified=False,
simplify_optional_unions=False,
typehints_document_rtype=False,
always_document_param_types=True,
typehints_defaults=True,
typehints_formatter=None,
autodoc_mock_imports=[],
)
app: Sphinx = create_autospec(Sphinx, config=config)
process_docstring(app, "class", method.__qualname__, method, None, [])
def test_syntax_error_backfill() -> None:
# Regression test for #188
# fmt: off
def func(x): # type: ignore[no-untyped-def] # noqa: ANN001, ANN202
return x
# fmt: on
backfill_type_hints(func, "func")
@pytest.mark.sphinx("text", testroot="resolve-typing-guard")
def test_resolve_typing_guard_imports(app: SphinxTestApp, status: StringIO, warning: StringIO) -> None:
set_python_path()
app.config.autodoc_mock_imports = ["viktor"] # create flag
app.build()
out = status.getvalue()
assert "build succeeded" in out
err = warning.getvalue()
r = re.compile("WARNING: Failed guarded type import")
assert len(r.findall(err)) == 1
pat = r'WARNING: Failed guarded type import with ImportError\("cannot import name \'missing\' from \'functools\''
assert re.search(pat, err)
@pytest.mark.sphinx("text", testroot="resolve-typing-guard-tmp")
def test_resolve_typing_guard_attrs_imports(app: SphinxTestApp, status: StringIO, warning: StringIO) -> None:
set_python_path()
app.build()
assert "build succeeded" in status.getvalue()
assert not warning.getvalue()
def test_no_source_code_type_guard() -> None:
from csv import Error # noqa: PLC0415
_resolve_type_guarded_imports([], Error)
@pytest.mark.sphinx("text", testroot="dummy")
@patch("sphinx.writers.text.MAXWIDTH", 2000)
def test_sphinx_output_formatter_no_use_rtype(app: SphinxTestApp, status: StringIO) -> None:
set_python_path()
app.config.master_doc = "simple_no_use_rtype" # create flag
app.config.typehints_use_rtype = False
app.build()
assert "build succeeded" in status.getvalue()
text_path = Path(app.srcdir) / "_build" / "text" / "simple_no_use_rtype.txt"
text_contents = text_path.read_text().replace("–", "--") # noqa: RUF001 # keep ambiguous EN DASH
expected_contents = """\
Simple Module
*************
dummy_module_simple_no_use_rtype.function_no_returns(x, y=1)
Function docstring.
Parameters:
* **x** ("bool") -- foo
* **y** ("int") -- bar
Return type:
"str"
dummy_module_simple_no_use_rtype.function_returns_with_type(x, y=1)
Function docstring.
Parameters:
* **x** ("bool") -- foo
* **y** ("int") -- bar
Returns:
*CustomType* -- A string
dummy_module_simple_no_use_rtype.function_returns_with_compound_type(x, y=1)
Function docstring.
Parameters:
* **x** ("bool") -- foo
* **y** ("int") -- bar
Returns:
Union[str, int] -- A string or int
dummy_module_simple_no_use_rtype.function_returns_without_type(x, y=1)
Function docstring.
Parameters:
* **x** ("bool") -- foo
* **y** ("int") -- bar
Returns:
"str" -- A string
"""
assert text_contents == dedent(expected_contents)
@pytest.mark.sphinx("text", testroot="dummy")
@patch("sphinx.writers.text.MAXWIDTH", 2000)
def test_sphinx_output_with_use_signature(app: SphinxTestApp, status: StringIO) -> None:
set_python_path()
app.config.master_doc = "simple" # create flag
app.config.typehints_use_signature = True
app.build()
assert "build succeeded" in status.getvalue()
text_path = Path(app.srcdir) / "_build" / "text" / "simple.txt"
text_contents = text_path.read_text().replace("–", "--") # noqa: RUF001 # keep ambiguous EN DASH
expected_contents = """\
Simple Module
*************
dummy_module_simple.function(x: bool, y: int = 1)
Function docstring.
Parameters:
* **x** ("bool") -- foo
* **y** ("int") -- bar
Return type:
"str"
"""
assert text_contents == dedent(expected_contents)
@pytest.mark.sphinx("text", testroot="dummy")
@patch("sphinx.writers.text.MAXWIDTH", 2000)
def test_sphinx_output_with_use_signature_return(app: SphinxTestApp, status: StringIO) -> None:
set_python_path()
app.config.master_doc = "simple" # create flag
app.config.typehints_use_signature_return = True
app.build()
assert "build succeeded" in status.getvalue()
text_path = Path(app.srcdir) / "_build" / "text" / "simple.txt"
text_contents = text_path.read_text().replace("–", "--") # noqa: RUF001 # keep ambiguous EN DASH
expected_contents = """\
Simple Module
*************
dummy_module_simple.function(x, y=1) -> str
Function docstring.
Parameters:
* **x** ("bool") -- foo
* **y** ("int") -- bar
Return type:
"str"
"""
assert text_contents == dedent(expected_contents)
@pytest.mark.sphinx("text", testroot="dummy")
@patch("sphinx.writers.text.MAXWIDTH", 2000)
def test_sphinx_output_with_use_signature_and_return(app: SphinxTestApp, status: StringIO) -> None:
set_python_path()
app.config.master_doc = "simple" # create flag
app.config.typehints_use_signature = True
app.config.typehints_use_signature_return = True
app.build()
assert "build succeeded" in status.getvalue()
text_path = Path(app.srcdir) / "_build" / "text" / "simple.txt"
text_contents = text_path.read_text().replace("–", "--") # noqa: RUF001 # keep ambiguous EN DASH
expected_contents = """\
Simple Module
*************
dummy_module_simple.function(x: bool, y: int = 1) -> str
Function docstring.
Parameters:
* **x** ("bool") -- foo
* **y** ("int") -- bar
Return type:
"str"
"""
assert text_contents == dedent(expected_contents)
@pytest.mark.sphinx("text", testroot="dummy")
@patch("sphinx.writers.text.MAXWIDTH", 2000)
def test_default_annotation_without_typehints(app: SphinxTestApp, status: StringIO) -> None:
set_python_path()
app.config.master_doc = "without_complete_typehints" # create flag
app.config.typehints_defaults = "comma"
app.build()
assert "build succeeded" in status.getvalue()
text_path = Path(app.srcdir) / "_build" / "text" / "without_complete_typehints.txt"
text_contents = text_path.read_text().replace("–", "--") # noqa: RUF001 # keep ambiguous EN DASH
expected_contents = """\
Simple Module
*************
dummy_module_without_complete_typehints.function_with_some_defaults_and_without_typehints(x, y=None)
Function docstring.
Parameters:
* **x** -- foo
* **y** (default: "None") -- bar
dummy_module_without_complete_typehints.function_with_some_defaults_and_some_typehints(x, y=None)
Function docstring.
Parameters:
* **x** ("int") -- foo
* **y** (default: "None") -- bar
dummy_module_without_complete_typehints.function_with_some_defaults_and_more_typehints(x, y=None)
Function docstring.
Parameters:
* **x** ("int") -- foo
* **y** (default: "None") -- bar
Return type:
"str"
dummy_module_without_complete_typehints.function_with_defaults_and_some_typehints(x=0, y=None)
Function docstring.
Parameters:
* **x** ("int", default: "0") -- foo
* **y** (default: "None") -- bar
Return type:
"str"
"""
assert text_contents == dedent(expected_contents)
@pytest.mark.sphinx("text", testroot="dummy")
@patch("sphinx.writers.text.MAXWIDTH", 2000)
def test_wrong_module_path(app: SphinxTestApp, status: StringIO, warning: StringIO) -> None:
set_python_path()
app.config.master_doc = "wrong_module_path" # create flag
app.config.default_role = "literal"
app.config.nitpicky = True
app.config.nitpick_ignore = {("py:data", "typing.Optional")}
def fixup_module_name(mod: str) -> str:
if not mod.startswith("wrong_module_path"):
return mod
return "export_module" + mod.removeprefix("wrong_module_path")
app.config.suppress_warnings = ["config.cache"]
app.config.typehints_fixup_module_name = fixup_module_name
app.build()
assert "build succeeded" in status.getvalue() # Build succeeded
assert not warning.getvalue().strip()
|