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
|
# -*- coding: utf-8 -*-
import pathlib
from pytest import fixture
from anytree import Node
from anytree.exporter import MermaidExporter
REFDATA = pathlib.Path(__file__).parent / "refdata" / "test_mermaidexporter"
from .util import assert_gen
@fixture
def root():
root = Node("root")
s0 = Node("sub0", parent=root, edge=2)
Node("sub0B", parent=s0, foo=4, edge=109)
Node("sub0A", parent=s0, edge="")
s1 = Node("sub1", parent=root, edge="")
Node("sub1A", parent=s1, edge=7)
Node('sub1"B', parent=s1, edge=8)
s1c = Node("su\\b1C", parent=s1, edge=22)
Node("sub1Ca", parent=s1c, edge=42)
yield root
def test_tree(tmp_path, root):
"""Tree."""
MermaidExporter(root).to_file(tmp_path / "tree.md")
assert_gen(tmp_path, REFDATA / "tree")
def test_tree_custom(tmp_path, root):
"""Tree Custom."""
def nodefunc(node):
return '("%s")' % (node.name)
def edgefunc(node, child):
return f"--{child.edge}-->"
options = [
"%% just an example comment",
"%% could be an option too",
]
MermaidExporter(
root,
options=options,
nodefunc=nodefunc,
edgefunc=edgefunc,
).to_file(tmp_path / "tree_custom.md")
assert_gen(tmp_path, REFDATA / "tree_custom")
def test_tree_filter(tmp_path, root):
"""Tree with Filter."""
MermaidExporter(root, filter_=lambda node: node.name.startswith("sub")).to_file(tmp_path / "tree_filter.md")
assert_gen(tmp_path, REFDATA / "tree_filter")
def test_tree_stop(tmp_path, root):
"""Tree with stop."""
MermaidExporter(root, stop=lambda node: node.name == "sub1").to_file(tmp_path / "tree_stop.md")
assert_gen(tmp_path, REFDATA / "tree_stop")
def test_tree_maxlevel(tmp_path, root):
"""Tree with maxlevel."""
MermaidExporter(root, maxlevel=2).to_file(tmp_path / "tree_maxlevel.md")
assert_gen(tmp_path, REFDATA / "tree_maxlevel")
|