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
|
import logging
import os
import pathlib
import sys
from unittest.mock import Mock, call
import autoapi.settings
from autoapi._objects import (
PythonClass,
PythonData,
PythonFunction,
PythonMethod,
PythonModule,
)
from packaging import version
import pytest
import sphinx
from sphinx.application import Sphinx
from sphinx.errors import ExtensionError
import sphinx.util.logging
sphinx_version = version.parse(sphinx.__version__).release
class TestSimpleModule:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder(
"pyexample",
warningiserror=True,
confoverrides={"exclude_patterns": ["manualapi.rst"]},
)
def test_integration(self, parse):
self.check_integration(parse, "_build/html/autoapi/example/index.html")
index_file = parse("_build/html/index.html")
toctree = index_file.select("li > a")
assert any(item.text == "API Reference" for item in toctree)
def check_integration(self, parse, example_path):
example_file = parse(example_path)
foo_sig = example_file.find(id="example.Foo")
assert foo_sig
assert foo_sig.find(class_="sig-name").text == "Foo"
assert foo_sig.find(class_="sig-param").text == "attr"
# Check that nested classes are documented
foo = foo_sig.parent
assert foo.find(id="example.Foo.Meta")
# Check that class attributes are documented
attr = foo.find(id="example.Foo.attr")
assert attr
assert attr.find(class_="pre").text.strip() == "property"
attr2 = foo.find(id="example.Foo.attr2")
assert "attr2" in attr2.text
# Check that attribute docstrings are used
assert attr2.parent.find("dd").text.startswith(
"This is the docstring of an instance attribute."
)
method_okay = foo.find(id="example.Foo.method_okay")
assert method_okay
args = method_okay.find_all(class_="sig-param")
assert len(args) == 2
assert args[0].text == "foo=None"
assert args[1].text == "bar=None"
method_multiline = foo.find(id="example.Foo.method_multiline")
assert method_multiline
args = method_multiline.find_all(class_="sig-param")
assert len(args) == 3
assert args[0].text == "foo=None"
assert args[1].text == "bar=None"
assert args[2].text == "baz=None"
method_tricky = foo.find(id="example.Foo.method_tricky")
assert method_tricky
args = method_tricky.find_all(class_="sig-param")
assert len(args) == 2
assert args[0].text == "foo=None"
assert args[1].text == "bar=dict(foo=1, bar=2)"
# Are constructor arguments from the class docstring parsed?
init_args = foo.parent.find_next(class_="field-list")
assert "Set an attribute" in init_args.text
# "self" should not be included in constructor arguments
assert len(foo_sig.find_all(class_="sig-param")) == 1
property_simple = foo.find(id="example.Foo.property_simple")
assert property_simple
assert (
property_simple.parent.find("dd").text.strip()
== "This property should parse okay."
)
my_cached_property = foo.find(id="example.Foo.my_cached_property")
assert my_cached_property
assert my_cached_property.find(class_="pre").text.strip() == "property"
# Overridden methods without their own docstring
# should inherit the parent's docstring
bar_method_okay = example_file.find(id="example.Bar.method_okay")
assert (
bar_method_okay.parent.find("dd").text.strip()
== "This method should parse okay"
)
assert not os.path.exists("_build/html/autoapi/method_multiline")
# Inherited constructor docstrings should be included in a merged
# (autoapi_python_class_content="both") class docstring only once.
two = example_file.find(id="example.Two")
assert two.parent.find("dd").text.count("One __init__") == 1
# Tuples should be rendered as tuples, not lists
a_tuple = example_file.find(id="example.A_TUPLE")
assert a_tuple.find(class_="property").text.endswith("('a', 'b')")
# Lists should be rendered as lists, not tuples
a_list = example_file.find(id="example.A_LIST")
assert a_list.find(class_="property").text.endswith("['c', 'd']")
# Assigning a class level attribute at the module level
# should not get documented as a module level attribute.
assert "dinglebop" not in example_file.text
index_file = parse("_build/html/index.html")
toctree = index_file.select("li > a")
assert any(item.text == "Foo" for item in toctree)
assert any(item.text == "Foo.Meta" for item in toctree)
def test_napoleon_integration_not_loaded(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
# Check that docstrings are not transformed without napoleon loaded
method_google = example_file.find(id="example.Foo.method_google_docs")
assert "Args" in method_google.parent.find("dd").text
assert "Returns" in method_google.parent.find("dd").text
def test_show_inheritance(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
bar = example_file.find(id="example.Bar")
bar_docstring = bar.parent.find("dd").contents[0]
assert bar_docstring.text.startswith("Bases:")
def test_long_signature(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
summary_row = example_file.find_all(class_="autosummary")[-1].find_all("tr")[-1]
assert summary_row
cells = summary_row.find_all("td")
assert (
cells[0].text.replace("\xa0", " ")
== "fn_with_long_sig(this, *[, function, has, quite])"
)
assert cells[1].text.strip() == "A function with a long signature."
class TestSimpleModuleManual:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder(
"pyexample",
warningiserror=True,
confoverrides={
"autoapi_generate_api_docs": False,
"autoapi_add_toctree_entry": False,
},
)
def test_manual_directives(self, parse):
example_file = parse("_build/html/manualapi.html")
assert example_file.find(id="example.decorator_okay")
def test_dataclass(self, parse):
example_file = parse("_build/html/manualapi.html")
typedattrs_sig = example_file.find(id="example.TypedAttrs")
assert typedattrs_sig
typedattrs = typedattrs_sig.parent
one = typedattrs.find(id="example.TypedAttrs.one")
assert one
one_value = one.find_all(class_="property")
assert one_value[0].text == ": str"
one_docstring = one.parent.find("dd").contents[0].text
assert one_docstring.strip() == "This is TypedAttrs.one."
two = typedattrs.find(id="example.TypedAttrs.two")
assert two
two_value = two.find_all(class_="property")
assert two_value[0].text == ": int"
assert two_value[1].text == " = 1"
two_docstring = two.parent.find("dd").contents[0].text
assert two_docstring.strip() == "This is TypedAttrs.two."
def test_data(self, parse):
example_file = parse("_build/html/manualapi.html")
typed_data = example_file.find(id="example.TYPED_DATA")
assert typed_data
typed_data_value = typed_data.find_all(class_="property")
assert typed_data_value[0].text == ": int"
assert typed_data_value[1].text == " = 1"
typed_data_docstring = typed_data.parent.find("dd").contents[0].text
assert typed_data_docstring.strip() == "This is TYPED_DATA."
def test_class(self, parse):
example_file = parse("_build/html/manualapi.html")
typed_cls = example_file.find(id="example.TypedClassInit")
assert typed_cls
arg = typed_cls.find(class_="sig-param")
assert arg.text == "one: int = 1"
typed_cls_docstring = typed_cls.parent.find("dd").contents[0].text
assert typed_cls_docstring.strip() == "This is TypedClassInit."
typed_method = example_file.find(id="example.TypedClassInit.typed_method")
assert typed_method
arg = typed_method.find(class_="sig-param")
assert arg.text == "two: int"
return_type = typed_method.find(class_="sig-return-typehint")
assert return_type.text == "int"
typed_method_docstring = typed_method.parent.find("dd").contents[0].text
assert typed_method_docstring.strip() == "This is TypedClassInit.typed_method."
def test_property(self, parse):
example_file = parse("_build/html/manualapi.html")
foo_sig = example_file.find(id="example.Foo")
assert foo_sig
foo = foo_sig.parent
property_simple = foo.find(id="example.Foo.property_simple")
assert property_simple
property_simple_value = property_simple.find_all(class_="property")
assert property_simple_value[-1].text == ": int"
property_simple_docstring = property_simple.parent.find("dd").text.strip()
assert property_simple_docstring == "This property should parse okay."
class TestMovedConfPy(TestSimpleModule):
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder(
"pymovedconfpy",
confdir="confpy",
warningiserror=True,
confoverrides={"exclude_patterns": ["manualapi.rst"]},
)
class TestSimpleModuleDifferentPrimaryDomain(TestSimpleModule):
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder(
"pyexample",
warningiserror=True,
confoverrides={
"exclude_patterns": ["manualapi.rst"],
"primary_domain": "cpp",
},
)
class TestSimpleStubModule:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder("pyiexample", warningiserror=True)
def test_integration(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
# Are pyi files preferred
assert "DoNotFindThis" not in example_file
foo_sig = example_file.find(id="example.Foo")
assert foo_sig
foo = foo_sig.parent
assert foo.find(id="example.Foo.Meta")
class_var = foo.find(id="example.Foo.another_class_var")
class_var_docstring = class_var.parent.find("dd").contents[0].text
assert class_var_docstring.strip() == "Another class var docstring"
class_var = foo.find(id="example.Foo.class_var_without_value")
class_var_docstring = class_var.parent.find("dd").contents[0].text
assert class_var_docstring.strip() == "A class var without a value."
method_okay = foo.find(id="example.Foo.method_okay")
assert method_okay
method_multiline = foo.find(id="example.Foo.method_multiline")
assert method_multiline
method_without_docstring = foo.find(id="example.Foo.method_without_docstring")
assert method_without_docstring
# Are constructor arguments from the class docstring parsed?
init_args = foo.parent.find_next(class_="field-list")
assert "Set an attribute" in init_args.text
class TestSimpleStubModuleNotPreferred:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder("pyiexample2", warningiserror=True)
def test_integration(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
# Are py files preferred
assert "DoNotFindThis" not in example_file
foo_sig = example_file.find(id="example.Foo")
assert foo_sig
class TestStubInitModuleInSubmodule:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder("pyisubmoduleinit", warningiserror=True)
def test_integration(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
# Documentation should list
# submodule_foo instead of __init__
assert example_file.find(title="submodule_foo")
assert not example_file.find(title="__init__")
class TestPy3Module:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder("py3example")
def test_integration(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
assert "Initialize self" not in example_file
assert "a new type" not in example_file
def test_inheritance(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
# Test that members are not inherited from standard library classes.
assert example_file.find(id="example.MyException")
assert not example_file.find(id="example.MyException.args")
# With the exception of abstract base classes.
assert example_file.find(id="example.My123")
assert example_file.find(id="example.My123.__contains__")
assert example_file.find(id="example.My123.index")
# Test that classes inherit instance attributes
exc = example_file.find(id="example.InheritError")
assert exc
message = example_file.find(id="example.InheritError.my_message")
assert message
message_docstring = message.parent.find("dd").text.strip()
assert message_docstring == "My message."
# Test that classes inherit from the whole mro
exc = example_file.find(id="example.SubInheritError")
assert exc
message = example_file.find(id="example.SubInheritError.my_message")
message_docstring = message.parent.find("dd").text.strip()
assert message_docstring == "My message."
message = example_file.find(id="example.SubInheritError.my_other_message")
assert message
message_docstring = message.parent.find("dd").text.strip()
assert message_docstring == "My other message."
# Test that inherited instance attributes include the docstring
exc = example_file.find(id="example.DuplicateInheritError")
assert exc
message = example_file.find(id="example.DuplicateInheritError.my_message")
assert message
message_docstring = message.parent.find("dd").text.strip()
assert message_docstring == "My message."
def test_annotations(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
software = example_file.find(id="example.software")
assert software
software_value = software.find(class_="property").contents[-1]
assert software_value.text.endswith('''"sphin'x"''')
more_software = example_file.find(id="example.more_software")
assert more_software
more_software_value = more_software.find(class_="property").contents[-1]
assert more_software_value.text.endswith("""'sphinx"autoapi'""")
interesting = example_file.find(id="example.interesting_string")
assert interesting
interesting_value = interesting.find(class_="property").contents[-1]
assert interesting_value.text.endswith("'interesting\"fun\\'\\\\\\'string'")
code_snippet = example_file.find(id="example.code_snippet")
assert code_snippet
code_snippet_value = code_snippet.find(class_="property").contents[-1]
assert code_snippet_value.text == "Multiline-String"
max_rating = example_file.find(id="example.max_rating")
assert max_rating
max_rating_value = max_rating.find_all(class_="property")
assert max_rating_value[0].text == ": int"
assert max_rating_value[1].text == " = 10"
# TODO: This should either not have a value
# or should display the value as part of the type declaration.
# This prevents setting warningiserror.
assert example_file.find(id="example.is_valid")
ratings = example_file.find(id="example.ratings")
assert ratings
ratings_value = ratings.find_all(class_="property")
assert "List[int]" in ratings_value[0].text
rating_names = example_file.find(id="example.rating_names")
assert rating_names
rating_names_value = rating_names.find_all(class_="property")
assert "Dict[int, str]" in rating_names_value[0].text
f = example_file.find(id="example.f")
assert f
assert f.find(class_="sig-param").text == "start: int"
assert f.find(class_="sig-return-typehint").text == "Iterable[int]"
mixed_list = example_file.find(id="example.mixed_list")
assert mixed_list
mixed_list_value = mixed_list.find_all(class_="property")
if sphinx_version >= (6,):
assert "List[str | int]" in mixed_list_value[0].text
else:
assert "List[Union[str, int]]" in mixed_list_value[0].text
f2 = example_file.find(id="example.f2")
assert f2
arg = f2.find(class_="sig-param")
assert arg.contents[0].text == "not_yet_a"
assert arg.find("a").text == "A"
f3 = example_file.find(id="example.f3")
assert f3
arg = f3.find(class_="sig-param")
assert arg.contents[0].text == "imported"
assert arg.find("a").text == "example2.B"
returns = f3.find(class_="sig-return-typehint")
assert returns.find("a").text == "example2.B"
is_an_a = example_file.find(id="example.A.is_an_a")
assert is_an_a
is_an_a_value = is_an_a.find_all(class_="property")
assert "ClassVar" in is_an_a_value[0].text
assert example_file.find(id="example.A.instance_var")
# Locals are excluded
assert not example_file.find(id="example.A.local_variable_typed")
assert not example_file.find(id="example.A.local_variable_untyped")
# Assignments to subobjects are excluded
assert not example_file.find(id="example.A.subobject_variable")
global_a = example_file.find(id="example.global_a")
assert global_a
global_a_value = global_a.find_all(class_="property")
assert global_a_value[0].text == ": A"
assert example_file.find(id="example.SomeMetaclass")
def test_overload(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
overloaded_func = example_file.find(id="example.overloaded_func")
assert overloaded_func
arg = overloaded_func.find(class_="sig-param")
assert arg.text == "a: float"
overloaded_func = overloaded_func.next_sibling.next_sibling
arg = overloaded_func.find(class_="sig-param")
assert arg.text == "a: str"
docstring = overloaded_func.next_sibling.next_sibling
assert docstring.tag != "dt"
assert docstring.text.strip() == "Overloaded function"
overloaded_method = example_file.find(id="example.A.overloaded_method")
assert overloaded_method
arg = overloaded_method.find(class_="sig-param")
assert arg.text == "a: float"
overloaded_method = overloaded_method.next_sibling.next_sibling
arg = overloaded_method.find(class_="sig-param")
assert arg.text == "a: str"
docstring = overloaded_method.next_sibling.next_sibling
assert docstring.tag != "dt"
assert docstring.text.strip() == "Overloaded method"
overloaded_class_method = example_file.find(
id="example.A.overloaded_class_method"
)
assert overloaded_class_method
arg = overloaded_class_method.find(class_="sig-param")
assert arg.text == "a: float"
overloaded_class_method = overloaded_class_method.next_sibling.next_sibling
arg = overloaded_class_method.find(class_="sig-param")
assert arg.text == "a: str"
docstring = overloaded_class_method.next_sibling.next_sibling
assert docstring.tag != "dt"
assert docstring.text.strip() == "Overloaded class method"
assert example_file.find(id="example.undoc_overloaded_func")
assert example_file.find(id="example.A.undoc_overloaded_method")
c = example_file.find(id="example.C")
assert c
arg = c.find(class_="sig-param")
assert arg.text == "a: int"
c = c.next_sibling.next_sibling
arg = c.find(class_="sig-param")
assert arg.text == "a: float"
docstring = c.next_sibling.next_sibling
assert docstring.tag != "dt"
# D inherits overloaded constructor
d = example_file.find(id="example.D")
assert d
arg = d.find(class_="sig-param")
assert arg.text == "a: int"
d = d.next_sibling.next_sibling
arg = d.find(class_="sig-param")
assert arg.text == "a: float"
docstring = d.next_sibling.next_sibling
assert docstring.tag != "dt"
def test_async(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
async_method = example_file.find(id="example.A.async_method")
assert async_method.find(class_="property").text.strip() == "async"
async_function = example_file.find(id="example.async_function")
assert async_function.find(class_="property").text.strip() == "async"
def test_py3_hiding_undoc_overloaded_members(builder, parse):
confoverrides = {"autoapi_options": ["members", "special-members"]}
builder("py3example", confoverrides=confoverrides)
example_file = parse("_build/html/autoapi/example/index.html")
overloaded_func = example_file.find(id="example.overloaded_func")
assert overloaded_func
overloaded_method = example_file.find(id="example.A.overloaded_method")
assert overloaded_method
assert not example_file.find(id="example.undoc_overloaded_func")
assert not example_file.find(id="example.A.undoc_overloaded_method")
class TestAnnotationCommentsModule:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder("pyannotationcommentsexample", warningiserror=True)
def test_integration(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
max_rating = example_file.find(id="example.max_rating")
assert max_rating
max_rating_value = max_rating.find_all(class_="property")
assert max_rating_value[0].text == ": int"
assert max_rating_value[1].text == " = 10"
ratings = example_file.find(id="example.ratings")
assert ratings
ratings_value = ratings.find_all(class_="property")
assert "List[int]" in ratings_value[0].text
rating_names = example_file.find(id="example.rating_names")
assert rating_names
rating_names_value = rating_names.find_all(class_="property")
assert "Dict[int, str]" in rating_names_value[0].text
f = example_file.find(id="example.f")
assert f
assert f.find(class_="sig-param").text == "start: int"
assert f.find(class_="sig-return-typehint").text == "Iterable[int]"
mixed_list = example_file.find(id="example.mixed_list")
assert mixed_list
mixed_list_value = mixed_list.find_all(class_="property")
if sphinx_version >= (6,):
assert "List[str | int]" in mixed_list_value[0].text
else:
assert "List[Union[str, int]]" in mixed_list_value[0].text
f2 = example_file.find(id="example.f2")
assert f2
arg = f2.find(class_="sig-param")
assert arg.contents[0].text == "not_yet_a"
assert arg.find("a").text == "A"
is_an_a = example_file.find(id="example.A.is_an_a")
assert is_an_a
is_an_a_value = is_an_a.find_all(class_="property")
assert "ClassVar" in is_an_a_value[0].text
assert example_file.find(id="example.A.instance_var")
global_a = example_file.find(id="example.global_a")
assert global_a
global_a_value = global_a.find_all(class_="property")
assert global_a_value[0].text == ": A"
@pytest.mark.skipif(
sys.version_info < (3, 8), reason="Positional only arguments need Python >=3.8"
)
class TestPositionalOnlyArgumentsModule:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder("py38positionalparams", warningiserror=True)
def test_integration(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
f_simple = example_file.find(id="example.f_simple")
assert "f_simple(a, b, /, c, d, *, e, f)" in f_simple.text
if sphinx_version >= (6,):
f_comment = example_file.find(id="example.f_comment")
assert (
"f_comment(a: int, b: int, /, c: int | None, d: int | None, *, e: float, f: float)"
in f_comment.text
)
f_annotation = example_file.find(id="example.f_annotation")
assert (
"f_annotation(a: int, b: int, /, c: int | None, d: int | None, *, e: float, f: float)"
in f_annotation.text
)
f_arg_comment = example_file.find(id="example.f_arg_comment")
assert (
"f_arg_comment(a: int, b: int, /, c: int | None, d: int | None, *, e: float, f: float)"
in f_arg_comment.text
)
else:
f_comment = example_file.find(id="example.f_comment")
assert (
"f_comment(a: int, b: int, /, c: Optional[int], d: Optional[int], *, e: float, f: float)"
in f_comment.text
)
f_annotation = example_file.find(id="example.f_annotation")
assert (
"f_annotation(a: int, b: int, /, c: Optional[int], d: Optional[int], *, e: float, f: float)"
in f_annotation.text
)
f_arg_comment = example_file.find(id="example.f_arg_comment")
assert (
"f_arg_comment(a: int, b: int, /, c: Optional[int], d: Optional[int], *, e: float, f: float)"
in f_arg_comment.text
)
f_no_cd = example_file.find(id="example.f_no_cd")
assert "f_no_cd(a: int, b: int, /, *, e: float, f: float)" in f_no_cd.text
@pytest.mark.network
@pytest.mark.skipif(
sys.version_info < (3, 10), reason="Union pipe syntax requires Python >=3.10"
)
class TestPipeUnionModule:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder("py310unionpipe", warningiserror=True)
def test_integration(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
simple = example_file.find(id="example.simple")
args = simple.find_all(class_="sig-param")
assert len(args) == 1
links = args[0].select("span > a")
assert len(links) == 1
assert links[0].text == "pathlib.Path"
optional = example_file.find(id="example.optional")
args = optional.find_all(class_="sig-param")
assert len(args) == 1
links = args[0].select("span > a")
assert len(links) == 2
assert links[0].text == "pathlib.Path"
assert links[1].text == "None"
union = example_file.find(id="example.union")
args = union.find_all(class_="sig-param")
assert len(args) == 1
links = args[0].select("span > a")
assert len(links) == 2
assert links[0].text == "pathlib.Path"
assert links[1].text == "None"
pipe = example_file.find(id="example.pipe")
args = pipe.find_all(class_="sig-param")
assert len(args) == 1
links = args[0].select("span > a")
assert len(links) == 2
assert links[0].text == "pathlib.Path"
assert links[1].text == "None"
@pytest.mark.network
@pytest.mark.skipif(
sys.version_info < (3, 12), reason="PEP-695 support requires Python >=3.12"
)
class TestPEP695:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder("pep695", warningiserror=True)
def test_integration(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
alias = example_file.find(id="example.MyTypeAliasA")
properties = alias.find_all(class_="property")
assert len(properties) == 2
annotation = properties[0].text
assert annotation == ": TypeAlias"
value = properties[1].text
assert value == " = tuple[str, int]"
alias = example_file.find(id="example.MyTypeAliasB")
properties = alias.find_all(class_="property")
assert len(properties) == 2
annotation = properties[0].text
assert annotation == ": TypeAlias"
value = properties[1].text
assert value == " = tuple[str, int]"
def test_napoleon_integration_loaded(builder, parse):
confoverrides = {
"exclude_patterns": ["manualapi.rst"],
"extensions": [
"autoapi.extension",
"sphinx.ext.autodoc",
"sphinx.ext.napoleon",
],
}
builder("pyexample", warningiserror=True, confoverrides=confoverrides)
example_file = parse("_build/html/autoapi/example/index.html")
method_google = example_file.find(id="example.Foo.method_google_docs")
params, returns, return_type = method_google.parent.select(".field-list > dt")
assert params.text == "Parameters:"
assert returns.text == "Returns:"
assert return_type.text == "Return type:"
class TestSimplePackage:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder("pypackageexample", warningiserror=True)
def test_integration_with_package(self, parse):
example_file = parse("_build/html/autoapi/package/index.html")
entries = example_file.find_all(class_="toctree-l1")
assert any(entry.text == "package.submodule" for entry in entries)
assert example_file.find(id="package.function")
example_foo_file = parse("_build/html/autoapi/package/submodule/index.html")
submodule = example_foo_file.find(id="package.submodule.Class")
assert submodule
method_okay = submodule.parent.find(id="package.submodule.Class.method_okay")
assert method_okay
index_file = parse("_build/html/index.html")
toctree = index_file.select("li > a")
assert any(item.text == "API Reference" for item in toctree)
assert any(item.text == "package.submodule" for item in toctree)
assert any(item.text == "Class" for item in toctree)
assert any(item.text == "function()" for item in toctree)
def test_simple_no_false_warnings(builder, caplog):
logger = sphinx.util.logging.getLogger("autoapi")
logger.logger.addHandler(caplog.handler)
builder("pypackageexample", warningiserror=True)
assert "Cannot resolve" not in caplog.text
def _test_class_content(builder, parse, class_content):
confoverrides = {
"autoapi_python_class_content": class_content,
"exclude_patterns": ["manualapi.rst"],
}
builder("pyexample", warningiserror=True, confoverrides=confoverrides)
example_file = parse("_build/html/autoapi/example/index.html")
foo = example_file.find(id="example.Foo").parent.find("dd")
if class_content == "init":
assert "Can we parse arguments" not in foo.text
else:
assert "Can we parse arguments" in foo.text
if class_content not in ("both", "init"):
assert "Constructor docstring" not in foo.text
else:
assert "Constructor docstring" in foo.text
def test_class_class_content(builder, parse):
_test_class_content(builder, parse, "class")
def test_both_class_content(builder, parse):
_test_class_content(builder, parse, "both")
def test_init_class_content(builder, parse):
_test_class_content(builder, parse, "init")
def test_hiding_private_members(builder, parse):
confoverrides = {"autoapi_options": ["members", "undoc-members", "special-members"]}
builder("pypackageexample", warningiserror=True, confoverrides=confoverrides)
example_file = parse("_build/html/autoapi/package/index.html")
entries = example_file.find_all(class_="toctree-l1")
assert all("private" not in entry.text for entry in entries)
assert not pathlib.Path(
"_build/html/autoapi/package/_private_module/index.html"
).exists()
def test_hiding_inheritance(builder, parse):
confoverrides = {
"autoapi_options": ["members", "undoc-members", "special-members"],
"exclude_patterns": ["manualapi.rst"],
}
builder("pyexample", warningiserror=True, confoverrides=confoverrides)
example_file = parse("_build/html/autoapi/example/index.html")
assert "Bases:" not in example_file.find(id="example.Foo").parent.find("dd").text
def test_hiding_imported_members(builder, parse):
confoverrides = {"autoapi_options": ["members", "undoc-members"]}
builder("pypackagecomplex", confoverrides=confoverrides)
subpackage_file = parse("_build/html/autoapi/complex/subpackage/index.html")
assert not subpackage_file.find(id="complex.subpackage.public_chain")
package_file = parse("_build/html/autoapi/complex/index.html")
assert not package_file.find(id="complex.public_chain")
submodule_file = parse("_build/html/autoapi/complex/subpackage/index.html")
assert not submodule_file.find(id="complex.subpackage.now_public_function")
def test_imports_into_modules_always_hidden(builder, parse):
confoverrides = {
"autoapi_options": ["members", "undoc-members", "imported-members"]
}
builder("pypackagecomplex", confoverrides=confoverrides)
submodule_file = parse("_build/html/autoapi/complex/submodule/index.html")
assert not submodule_file.find(id="complex.submodule.imported_function")
def test_inherited_members(builder, parse):
confoverrides = {
"autoapi_options": ["members", "inherited-members", "undoc-members"],
"exclude_patterns": ["manualapi.rst"],
}
builder("pyexample", warningiserror=True, confoverrides=confoverrides)
example_file = parse("_build/html/autoapi/example/index.html")
bar = example_file.find(id="example.Bar")
assert bar
assert bar.parent.find(id="example.Bar.method_okay")
def test_skipping_members(builder, parse):
builder("pyskipexample", warningiserror=True)
example_file = parse("_build/html/autoapi/example/index.html")
assert not example_file.find(id="example.foo")
assert not example_file.find(id="example.Bar")
assert not example_file.find(id="example.Bar.m")
assert example_file.find(id="example.Baf")
assert not example_file.find(id="example.Baf.m")
assert not example_file.find(id="example.baz")
assert example_file.find(id="example.anchor")
@pytest.mark.parametrize(
"value,order",
[
("bysource", ["Foo", "decorator_okay", "Bar"]),
("alphabetical", ["Bar", "Foo", "decorator_okay"]),
("groupwise", ["Bar", "Foo", "decorator_okay"]),
],
)
def test_order_members(builder, parse, value, order):
confoverrides = {
"autoapi_member_order": value,
"exclude_patterns": ["manualapi.rst"],
}
builder("pyexample", warningiserror=True, confoverrides=confoverrides)
example_file = parse("_build/html/autoapi/example/index.html")
indexes = [example_file.find(id=f"example.{name}").sourceline for name in order]
assert indexes == sorted(indexes)
class _CompareInstanceType:
def __init__(self, type_):
self.type = type_
def __eq__(self, other):
return self.type is type(other)
def __repr__(self):
return f"<expect type {self.type.__name__}>"
def test_skip_members_hook(builder):
os.chdir("tests/python/pyskipexample")
emit_firstresult_patch = None
class MockSphinx(Sphinx):
def __init__(self, *args, **kwargs):
nonlocal emit_firstresult_patch
emit_firstresult_patch = Mock(wraps=self.emit_firstresult)
self.emit_firstresult = emit_firstresult_patch
super().__init__(*args, **kwargs)
app = MockSphinx(
srcdir=".",
confdir=".",
outdir="_build/html",
doctreedir="_build/.doctrees",
buildername="html",
warningiserror=True,
confoverrides={
"suppress_warnings": [
"app.add_node",
"app.add_directive",
"app.add_role",
]
},
)
app.build()
options = ["members", "undoc-members", "special-members"]
mock_calls = [
call(
"autoapi-skip-member",
"module",
"example",
_CompareInstanceType(PythonModule),
False,
options,
),
call(
"autoapi-skip-member",
"function",
"example.foo",
_CompareInstanceType(PythonFunction),
False,
options,
),
call(
"autoapi-skip-member",
"class",
"example.Bar",
_CompareInstanceType(PythonClass),
False,
options,
),
call(
"autoapi-skip-member",
"class",
"example.Baf",
_CompareInstanceType(PythonClass),
False,
options,
),
call(
"autoapi-skip-member",
"data",
"example.baz",
_CompareInstanceType(PythonData),
False,
options,
),
call(
"autoapi-skip-member",
"data",
"example.anchor",
_CompareInstanceType(PythonData),
False,
options,
),
call(
"autoapi-skip-member",
"method",
"example.Baf.m",
_CompareInstanceType(PythonMethod),
False,
options,
),
]
for mock_call in mock_calls:
assert mock_call in emit_firstresult_patch.mock_calls
class TestComplexPackage:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
# We don't set warningiserror=True because we test that invalid imports
# do not fail the build
builder("pypackagecomplex")
def test_public_chain_resolves(self, parse):
submodule_file = parse(
"_build/html/autoapi/complex/subpackage/submodule/index.html"
)
assert submodule_file.find(id="complex.subpackage.submodule.public_chain")
subpackage_file = parse("_build/html/autoapi/complex/subpackage/index.html")
assert subpackage_file.find(id="complex.subpackage.public_chain")
package_file = parse("_build/html/autoapi/complex/index.html")
assert package_file.find(id="complex.public_chain")
def test_private_made_public(self, parse):
submodule_file = parse("_build/html/autoapi/complex/subpackage/index.html")
assert submodule_file.find(id="complex.subpackage.now_public_function")
def test_multiple_import_locations(self, parse):
submodule_file = parse(
"_build/html/autoapi/complex/subpackage/submodule/index.html"
)
assert submodule_file.find(
id="complex.subpackage.submodule.public_multiple_imports"
)
subpackage_file = parse("_build/html/autoapi/complex/subpackage/index.html")
assert subpackage_file.find(id="complex.subpackage.public_multiple_imports")
package_file = parse("_build/html/autoapi/complex/index.html")
assert package_file.find(id="complex.public_multiple_imports")
def test_simple_wildcard_imports(self, parse):
wildcard_file = parse("_build/html/autoapi/complex/wildcard/index.html")
assert wildcard_file.find(id="complex.wildcard.public_chain")
assert wildcard_file.find(id="complex.wildcard.now_public_function")
assert wildcard_file.find(id="complex.wildcard.public_multiple_imports")
assert wildcard_file.find(id="complex.wildcard.module_level_function")
def test_wildcard_all_imports(self, parse):
wildcard_file = parse("_build/html/autoapi/complex/wildall/index.html")
assert not wildcard_file.find(id="complex.wildall.not_all")
assert not wildcard_file.find(id="complex.wildall.NotAllClass")
assert not wildcard_file.find(id="complex.wildall.does_not_exist")
assert wildcard_file.find(id="complex.wildall.SimpleClass")
assert wildcard_file.find(id="complex.wildall.simple_function")
assert wildcard_file.find(id="complex.wildall.public_chain")
assert wildcard_file.find(id="complex.wildall.module_level_function")
def test_no_imports_in_module_with_all(self, parse):
foo_file = parse("_build/html/autoapi/complex/foo/index.html")
assert not foo_file.find(id="complex.foo.module_level_function")
def test_all_overrides_import_in_module_with_all(self, parse):
foo_file = parse("_build/html/autoapi/complex/foo/index.html")
assert foo_file.find(id="complex.foo.PublicClass")
def test_parses_unicode_file(self, parse):
foo_file = parse("_build/html/autoapi/complex/unicode_data/index.html")
assert foo_file.find(id="complex.unicode_data.unicode_str")
def test_nested_parse_directive(self, parse):
package_file = parse("_build/html/autoapi/complex/index.html")
complex = package_file.find(id="complex")
assert "This heading will be removed" not in complex.parent.text
assert complex.parent.find("section")["id"] != "this-heading-will-be-removed"
class TestComplexPackageParallel(TestComplexPackage):
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder("pypackagecomplex", parallel=2)
def test_caching(builder, rebuild):
mtimes = (0, 0)
def record_mtime():
nonlocal mtimes
mtime = 0
for root, _, files in os.walk("_build/html/autoapi"):
for name in files:
this_mtime = os.path.getmtime(os.path.join(root, name))
mtime = max(mtime, this_mtime)
mtimes = (*mtimes[1:], mtime)
builder("pypackagecomplex", confoverrides={"autoapi_keep_files": True})
record_mtime()
rebuild(confoverrides={"autoapi_keep_files": True})
record_mtime()
assert mtimes[1] == mtimes[0]
# Check that adding a file rebuilds the docs
extra_file = "complex/new.py"
with open(extra_file, "w") as out_f:
out_f.write("\n")
try:
rebuild(confoverrides={"autoapi_keep_files": True})
finally:
os.remove(extra_file)
record_mtime()
assert mtimes[1] != mtimes[0]
# Removing a file also rebuilds the docs
rebuild(confoverrides={"autoapi_keep_files": True})
record_mtime()
assert mtimes[1] != mtimes[0]
# Changing not keeping files always builds
rebuild()
record_mtime()
assert mtimes[1] != mtimes[0]
class TestImplicitNamespacePackage:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
# TODO: Cannot set warningiserror=True because namespaces are not added
# to the toctree automatically.
builder("py3implicitnamespace")
def test_sibling_import_from_namespace(self, parse):
example_file = parse("_build/html/autoapi/namespace/example/index.html")
assert example_file.find(id="namespace.example.first_method")
def test_sub_sibling_import_from_namespace(self, parse):
example_file = parse("_build/html/autoapi/namespace/example/index.html")
assert example_file.find(id="namespace.example.second_sub_method")
def test_custom_jinja_filters(builder, parse, tmp_path):
py_templates = tmp_path / "python"
py_templates.mkdir()
orig_py_templates = pathlib.Path(autoapi.settings.TEMPLATE_DIR) / "python"
orig_template = (orig_py_templates / "class.rst").read_text()
(py_templates / "class.rst").write_text(
orig_template.replace("obj.docstring", "obj.docstring|prepare_docstring")
)
confoverrides = {
"autoapi_prepare_jinja_env": (
lambda jinja_env: jinja_env.filters.update(
{
"prepare_docstring": (
lambda docstring: "This is using custom filters.\n"
)
}
)
),
"autoapi_template_dir": str(tmp_path),
"exclude_patterns": ["manualapi.rst"],
}
builder("pyexample", warningiserror=True, confoverrides=confoverrides)
example_file = parse("_build/html/autoapi/example/index.html")
foo = example_file.find(id="example.Foo").parent.find("dd")
assert "This is using custom filters." in foo.text
def test_string_module_attributes(builder):
"""Test toggle for multi-line string attribute values (GitHub #267)."""
keep_rst = {
"autoapi_keep_files": True,
}
builder("py3example", confoverrides=keep_rst)
example_path = os.path.join("autoapi", "example", "index.rst")
with open(example_path, encoding="utf8") as example_handle:
example_file = example_handle.read()
code_snippet_contents = [
".. py:data:: code_snippet",
" :value: Multiline-String",
"",
" .. raw:: html",
"",
" <details><summary>Show Value</summary>",
"",
" .. code-block:: python",
"",
' """The following is some code:',
" ", # <--- Line array monstrosity to preserve these leading spaces
" # -*- coding: utf-8 -*-",
" from __future__ import absolute_import, division, print_function, unicode_literals",
" # from future.builtins.disabled import *",
" # from builtins import *",
" ",
""" print("chunky o'block")""",
' """',
"",
" .. raw:: html",
"",
" </details>",
]
assert "\n".join(code_snippet_contents) in example_file
class TestAutodocTypehintsPackage:
"""Test integrations with the autodoc.typehints extension."""
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder("pyautodoc_typehints", warningiserror=True)
def test_renders_typehint(self, parse):
example_file = parse("_build/html/autoapi/example/index.html")
test = example_file.find(id="example.A.test")
args = test.parent.select(".field-list > dd")
assert args[0].text.startswith("a (int)")
def test_renders_typehint_in_second_module(self, parse):
example2_file = parse("_build/html/autoapi/example2/index.html")
test = example2_file.find(id="example2.B.test")
args = test.parent.select(".field-list > dd")
assert args[0].text.startswith("a (int)")
def test_no_files_found(builder):
"""Test that building does not fail when no sources files are found."""
with pytest.raises(ExtensionError) as exc_info:
builder("pyemptyexample")
assert os.path.dirname(__file__) in str(exc_info.value)
class TestMdSource:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder(
"pyexample",
warningiserror=True,
confoverrides={"source_suffix": ["md"]},
)
class TestMemberOrder:
@pytest.fixture(autouse=True, scope="class")
def built(self, builder):
builder(
"pyexample",
warningiserror=True,
confoverrides={
"autodoc_member_order": "bysource",
"autoapi_generate_api_docs": False,
"autoapi_add_toctree_entry": False,
},
)
def test_line_number_order(self, parse):
example_file = parse("_build/html/manualapi.html")
method_tricky = example_file.find(id="example.Foo.method_tricky")
method_sphinx_docs = example_file.find(id="example.Foo.method_sphinx_docs")
assert method_tricky.sourceline < method_sphinx_docs.sourceline
def test_nothing_to_render_raises_warning(builder, caplog):
caplog.set_level(logging.WARNING, logger="autoapi._mapper")
if sphinx_version >= (8, 1):
status = builder("pynorender", warningiserror=True)
assert status
else:
with pytest.raises(sphinx.errors.SphinxWarning):
builder("pynorender", warningiserror=True)
assert any(
"No modules were rendered" in record.message for record in caplog.records
)
class TestStdLib:
"""Check that modules with standard library names are still documented."""
@pytest.fixture(autouse=True)
def built(self, builder):
builder("pystdlib")
def test_integration(self, parse):
json_file = parse("_build/html/autoapi/json/index.html")
json_mod = json_file.find(id="json")
assert "json is the same name" in json_mod.parent.text
assert json_file.find(id="json.JSONDecoder")
decode = json_file.find(id="json.JSONDecoder.decode")
assert decode
wrap_docstring = decode.parent.find("dd").text.strip()
assert wrap_docstring == "Decode a string."
myjson_file = parse("_build/html/autoapi/myjson/index.html")
# Find members that are not inherited from local standard library classes.
ctx = myjson_file.find(id="myjson.MyJSONDecoder")
assert ctx
meth = myjson_file.find(id="myjson.MyJSONDecoder.my_method")
assert meth
meth_docstring = meth.parent.find("dd").text.strip()
assert meth_docstring == "This is a method."
# Find members that are inherited from local standard library classes.
decode = myjson_file.find(id="myjson.MyJSONDecoder.decode")
assert decode
myast_file = parse("_build/html/autoapi/myast/index.html")
# Find members that are not inherited from standard library classes.
visitor = myast_file.find(id="myast.MyVisitor")
assert visitor
meth = myast_file.find(id="myast.MyVisitor.my_visit")
assert meth
meth_docstring = meth.parent.find("dd").text.strip()
assert meth_docstring == "My visit method."
# Find members that are inherited from standard library classes.
meth = myast_file.find(id="myast.MyVisitor.visit")
assert not meth
|