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
|
#!/usr/bin/env python3
from __future__ import annotations
from contextlib import ExitStack
import os
from pathlib import Path
import shutil
import sys
import tempfile
import warnings
import pytest
import pdoc.render
here = Path(__file__).parent.absolute()
snapshot_dir = here / "testdata"
class Snapshot:
id: str
specs: list[str]
render_options: dict
with_output_directory: bool
min_version: tuple[int, int]
warnings: list[str]
def __init__(
self,
id: str,
specs: list[str] | None = None,
render_options: dict | None = None,
with_output_directory: bool = False,
min_version: tuple[int, int] = (3, 7),
warnings: list[str] | None = None,
):
self.id = id
self.specs = specs or [f"{id}.py"]
self.render_options = render_options or {}
self.with_output_directory = with_output_directory
self.min_version = min_version
self.warnings = warnings or []
def __repr__(self):
return f"Snapshot({self.id})"
def make(self, format: str) -> str:
with ExitStack() as stack:
if format != "repr":
for w in self.warnings:
stack.enter_context(pytest.warns(match=w))
pdoc.render.configure(**self.render_options)
pdoc.render.env.globals["__version__"] = "$VERSION"
if self.with_output_directory:
if format == "repr":
return "(skipped)"
with tempfile.TemporaryDirectory() as tmpdirname:
tmpdir = Path(tmpdirname)
# noinspection PyTypeChecker
pdoc.pdoc(*self.specs, output_directory=Path(tmpdir)) # type: ignore
rendered = "<style>iframe {width: 100%; min-height: 50vh}</style>\n"
for f in sorted(tmpdir.glob("**/*"), reverse=True):
if not f.is_file():
continue
rendered += (
f"<h3>{f.relative_to(tmpdir).as_posix()}</h3>\n"
+ '<iframe srcdoc="\n'
+ f.read_text("utf8")
.replace("&", "&")
.replace('"', """)
+ '\n"></iframe>\n\n'
)
else:
if format == "repr":
mod_name = pdoc.extract.walk_specs(self.specs)[0]
mod = pdoc.doc.Module.from_name(mod_name)
with pdoc.extract.mock_some_common_side_effects():
rendered = pdoc.render.repr_module(mod)
else:
rendered = pdoc.pdoc(*self.specs)
pdoc.render.configure()
pdoc.render.env.globals["__version__"] = pdoc.__version__
return rendered
def outfile(self, format: str) -> Path:
return (snapshot_dir / self.id).with_suffix(
{
"html": ".html",
"repr": ".txt",
}[format]
)
snapshots = [
Snapshot("ast_parsing"),
Snapshot("collections_abc"),
Snapshot("demo"),
Snapshot("enums", min_version=(3, 13)),
Snapshot("flavors_google"),
Snapshot("flavors_numpy"),
Snapshot("flavors_rst"),
Snapshot(
"example_customtemplate",
["demo.py"],
{"template_directory": here / ".." / "examples" / "custom-template"},
),
Snapshot(
"example_darkmode",
["demo.py"],
{"template_directory": here / ".." / "examples" / "dark-mode"},
),
Snapshot(
"example_mkdocs",
["demo.py"],
{"template_directory": here / ".." / "examples" / "mkdocs" / "pdoc-template"},
),
Snapshot("demo_long"),
Snapshot("demo_eager"),
Snapshot("demopackage", ["demopackage", "!demopackage.child_excluded"]),
Snapshot(
"demopackage_dir",
["demopackage", "demopackage2", "!demopackage.child_excluded"],
render_options={
"edit_url_map": {
"demopackage.child_b": "https://gitlab.example.com/foo/bar/-/blob/main/demopackage/child_b",
"demopackage.child_c": "https://custom.example.com/demopackage/child_c",
"demopackage": "https://github.com/mitmproxy/pdoc/tree/main/test/testdata/demopackage/",
}
},
with_output_directory=True,
),
Snapshot("misc"),
Snapshot("misc_py310", min_version=(3, 10)),
Snapshot("misc_py312", min_version=(3, 12)),
Snapshot("misc_py313", min_version=(3, 13)),
Snapshot("misc_py313", min_version=(3, 14)),
Snapshot("math_demo", render_options={"math": True}),
Snapshot("math_misc", render_options={"math": True}),
Snapshot("mermaid_demo", render_options={"mermaid": True}),
Snapshot(
"render_options",
["render_options", "math_demo"],
render_options={
"show_source": False,
"logo": "https://placedog.net/500?random",
"logo_link": "https://example.com/",
"footer_text": "custom footer text",
"search": False,
"favicon": "https://pdoc.dev/favicon.svg",
},
with_output_directory=True,
),
Snapshot("pyo3_sample_library", specs=["pdoc_pyo3_sample_library"]),
Snapshot("top_level_reimports", ["top_level_reimports"]),
Snapshot("type_checking_imports", ["type_checking_imports.main"]),
Snapshot("typed_dict", min_version=(3, 13)),
Snapshot("type_stubs", ["type_stubs"], min_version=(3, 10)),
Snapshot(
"visibility",
render_options={
"include_undocumented": False,
},
),
Snapshot("with_pydantic"),
]
@pytest.mark.parametrize("snapshot", snapshots, ids=[x.id for x in snapshots])
@pytest.mark.parametrize("format", ["html", "repr"])
def test_snapshots(snapshot: Snapshot, format: str, monkeypatch):
"""
Compare pdoc's rendered output against stored snapshots.
"""
monkeypatch.chdir(snapshot_dir)
if sys.version_info < snapshot.min_version:
pytest.skip(
f"Snapshot only works on Python {'.'.join(str(x) for x in snapshot.min_version)} and above."
)
expected = snapshot.outfile(format).read_text("utf8")
actual = snapshot.make(format)
assert actual == expected, (
f"Rendered output does not match for snapshot {snapshot.id}. "
"Run `python3 ./test/test_snapshot.py` to update snapshots."
)
if __name__ == "__main__":
warnings.simplefilter("error")
if not shutil.which("nodejs") and not shutil.which("node"):
print(
"Snapshots include precompiled search indices, "
"but this system does not have Node.js installed to render them. Aborting."
)
sys.exit(1)
os.chdir(snapshot_dir)
skipped_some = False
for snapshot in snapshots:
if len(sys.argv) > 1 and snapshot.id not in sys.argv:
continue
if sys.version_info < snapshot.min_version:
print(
f"Skipping {snapshot} as it requires a more recent version of Python."
)
skipped_some = True
continue
for format in ["html", "repr"]:
print(f"Rendering {snapshot} to {format}...")
rendered = snapshot.make(format)
snapshot.outfile(format).write_bytes(rendered.encode())
print("All snapshots rendered!")
sys.exit(int(skipped_some))
|