-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_examples.py
42 lines (32 loc) · 1.14 KB
/
test_examples.py
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
import unittest
from contextlib import contextmanager
from logging import WARNING
from pathlib import Path
from tempfile import TemporaryDirectory
from typing import Generator
from mkdocs.commands.build import build
from mkdocs.config import load_config
repo_dir = Path(__file__).resolve().parent.parent
examples_dir = repo_dir.joinpath("examples")
@contextmanager
def tmp_build(config_file_path: Path) -> Generator[Path, None, None]:
with TemporaryDirectory() as tmp_dir_str:
tmp_dir = Path(tmp_dir_str)
with config_file_path.open(mode="rb") as f:
config = load_config(config_file=f)
config["site_dir"] = tmp_dir
build(config=config)
try:
yield tmp_dir
finally:
pass
class TestExamples(unittest.TestCase):
def test_example1(self) -> None:
with self.assertNoLogs(level=WARNING):
with tmp_build(examples_dir.joinpath("example1", "mkdocs.yml")) as tmp_dir:
# TODO: Write assertions. For now, just check that it does not fail.
pass
if __name__ == "__main__":
unittest.main(
failfast=True,
)