aboutsummaryrefslogtreecommitdiff
path: root/tests/introspect/graphviz.test.py
blob: c445ba8d0dae32da38fbe5acf61268aff11889a2 (plain)
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
"""Tests for the Graphviz DOT / SVG renderer in :mod:`edify.introspect.graphviz`."""

import builtins
import importlib
import sys
from collections.abc import Mapping, Sequence
from types import ModuleType

import pytest

from edify import RegexBuilder
from edify.elements.types.base import BaseElement
from edify.elements.types.captures import (
    BackReferenceElement,
    CaptureElement,
    NamedBackReferenceElement,
    NamedCaptureElement,
)
from edify.elements.types.chars import (
    CharElement,
    StringElement,
)
from edify.elements.types.groups import (
    AnyOfElement,
    AssertAheadElement,
    AssertBehindElement,
    AssertNotAheadElement,
    AssertNotBehindElement,
    GroupElement,
    SubexpressionElement,
)
from edify.elements.types.leaves import (
    DigitElement,
    EndOfInputElement,
    StartOfInputElement,
    WordElement,
)
from edify.elements.types.quantifiers import (
    AtLeastElement,
    AtMostElement,
    BetweenElement,
    BetweenLazyElement,
    ExactlyElement,
    OneOrMoreElement,
    OneOrMoreLazyElement,
    OptionalElement,
    ZeroOrMoreElement,
    ZeroOrMoreLazyElement,
)
from edify.errors.introspect import MissingGraphvizDependencyError
from edify.introspect import graphviz as graphviz_module
from edify.introspect.graphviz import (
    render_dot,
    render_graphviz_svg,
)


def _dot(*elements: BaseElement) -> str:
    return render_dot(tuple(elements))


def test_empty_pattern_produces_direct_start_to_end_edge():
    output = _dot()
    assert "start -> end;" in output
    assert "digraph edify_pattern" in output


def test_single_digit_pattern_creates_one_labeled_node():
    output = _dot(DigitElement())
    assert 'label="digit"' in output
    assert "start -> n_1" in output
    assert "n_1 -> end" in output


def test_header_configures_left_to_right_layout_and_menlo_font():
    output = _dot(DigitElement())
    assert "rankdir=LR" in output
    assert 'fontname="Menlo"' in output


def test_start_and_end_terminals_are_circles():
    output = _dot(DigitElement())
    assert 'start [label="START", shape=circle]' in output
    assert 'end   [label="END",   shape=circle]' in output


def test_one_or_more_digit_folds_quantifier_as_second_line():
    output = _dot(OneOrMoreElement(child=DigitElement()))
    assert 'label="digit\\n(one or more)"' in output


def test_one_or_more_lazy_appends_lazy_marker_to_phrase():
    output = _dot(OneOrMoreLazyElement(child=DigitElement()))
    assert "one or more (lazy)" in output


def test_zero_or_more_reads_as_zero_or_more_phrase():
    output = _dot(ZeroOrMoreElement(child=DigitElement()))
    assert "zero or more" in output


def test_zero_or_more_lazy_appends_lazy_marker():
    output = _dot(ZeroOrMoreLazyElement(child=DigitElement()))
    assert "zero or more (lazy)" in output


def test_optional_reads_as_optional_phrase():
    output = _dot(OptionalElement(child=DigitElement()))
    assert "optional" in output


def test_exactly_reads_as_exactly_n_phrase():
    output = _dot(ExactlyElement(times=4, child=DigitElement()))
    assert "exactly 4" in output


def test_at_least_reads_as_at_least_n_phrase():
    output = _dot(AtLeastElement(times=3, child=DigitElement()))
    assert "at least 3" in output


def test_at_most_reads_as_at_most_n_phrase():
    output = _dot(AtMostElement(times=5, child=DigitElement()))
    assert "at most 5" in output


def test_between_reads_as_lower_to_upper_phrase():
    output = _dot(BetweenElement(lower=2, upper=5, child=DigitElement()))
    assert "2 to 5" in output


def test_between_lazy_appends_lazy_marker():
    output = _dot(BetweenLazyElement(lower=2, upper=5, child=DigitElement()))
    assert "2 to 5 (lazy)" in output


def test_alternation_creates_fork_and_merge_junction_points():
    output = _dot(
        AnyOfElement(
            children=(
                StringElement(value="cat"),
                StringElement(value="dog"),
                StringElement(value="fish"),
            )
        )
    )
    assert "shape=point, width=0.08" in output
    assert output.count("shape=point") == 2
    assert output.count("fork_") >= 1
    assert output.count("merge_") >= 1


def test_alternation_emits_edge_from_fork_and_to_merge_for_each_branch():
    output = _dot(
        AnyOfElement(
            children=(
                StringElement(value="cat"),
                StringElement(value="dog"),
                StringElement(value="fish"),
            )
        )
    )
    assert output.count("fork_1 ->") == 3
    assert output.count("-> merge_2") == 3


def test_empty_alternation_becomes_nothing_placeholder():
    output = _dot(AnyOfElement(children=()))
    assert 'label="nothing"' in output


def test_named_capture_wraps_children_in_dashed_cluster():
    output = _dot(
        NamedCaptureElement(
            name="year",
            children=(ExactlyElement(times=4, child=DigitElement()),),
        )
    )
    assert 'label="saved as \\"year\\""' in output
    assert 'style="dashed,rounded"' in output
    assert "subgraph cluster_" in output


def test_unnamed_capture_wraps_children_in_captured_cluster():
    output = _dot(CaptureElement(children=(DigitElement(),)))
    assert 'label="captured"' in output


def test_empty_capture_becomes_captured_empty_placeholder():
    output = _dot(CaptureElement(children=()))
    assert "captured (empty)" in output


def test_group_wraps_children_in_grouped_cluster():
    output = _dot(GroupElement(children=(DigitElement(),)))
    assert 'label="grouped"' in output


def test_subexpression_flattens_into_a_plain_sequence():
    output = _dot(SubexpressionElement(children=(DigitElement(), WordElement())))
    assert "cluster_" not in output
    assert 'label="digit"' in output
    assert 'label="word character"' in output


def test_empty_subexpression_becomes_empty_placeholder():
    output = _dot(SubexpressionElement(children=()))
    assert "empty subexpression" in output


def test_start_of_input_reads_as_text_starts_here():
    output = _dot(StartOfInputElement())
    assert 'label="text starts here"' in output


def test_end_of_input_reads_as_text_ends_here():
    output = _dot(EndOfInputElement())
    assert 'label="text ends here"' in output


def test_backreference_reads_as_match_same_text_as_group_n():
    output = _dot(BackReferenceElement(index=2))
    assert "match same text as group 2" in output


def test_named_backreference_reads_as_match_same_text_as_name():
    output = _dot(NamedBackReferenceElement(name="year"))
    assert 'match same text as \\"year\\"' in output


def test_assert_ahead_wraps_children_in_must_be_followed_by_cluster():
    output = _dot(AssertAheadElement(children=(DigitElement(),)))
    assert '"must be followed by"' in output


def test_assert_not_ahead_wraps_children_in_must_not_be_followed_by_cluster():
    output = _dot(AssertNotAheadElement(children=(DigitElement(),)))
    assert "must NOT be followed by" in output


def test_assert_behind_wraps_children_in_must_be_preceded_by_cluster():
    output = _dot(AssertBehindElement(children=(DigitElement(),)))
    assert "must be preceded by" in output


def test_assert_not_behind_wraps_children_in_must_not_be_preceded_by_cluster():
    output = _dot(AssertNotBehindElement(children=(DigitElement(),)))
    assert "must NOT be preceded by" in output


def test_character_literal_display_strips_regex_escaping():
    output = _dot(CharElement(value="\\-"))
    assert '"\\"-\\""' in output


def test_quantifier_wrapping_complex_child_uses_cluster_not_inline_label():
    inner = AnyOfElement(children=(StringElement(value="a"), StringElement(value="b")))
    output = _dot(OneOrMoreElement(child=inner))
    assert '"one or more"' in output
    assert "subgraph cluster_" in output


def test_unknown_element_type_produces_question_mark_label():
    class MysteryElement(BaseElement):
        pass

    output = _dot(MysteryElement())
    assert "?MysteryElement" in output


def test_node_identifiers_are_unique_and_sequential_across_prefixes():
    output = _dot(
        DigitElement(),
        AnyOfElement(children=(StringElement(value="a"), StringElement(value="b"))),
    )
    assert "n_1" in output
    assert "fork_2" in output
    assert "merge_3" in output
    assert "n_4" in output
    assert "n_5" in output


def test_dot_label_escapes_embedded_quotes():
    assert 'a\\"b' in _dot(StringElement(value='a"b'))


def test_dot_label_doubles_embedded_backslashes():
    assert "\\\\" in _dot(CharElement(value="\\"))


def test_two_line_quantifier_label_preserves_the_newline_escape():
    output = _dot(OneOrMoreElement(child=DigitElement()))
    assert "digit\\n(one or more)" in output
    assert "digit\\\\n" not in output


def test_render_dot_end_to_end_via_builder():
    dot = RegexBuilder().any_of("cat", "dog", "fish").to_regex()
    output = render_dot(dot.elements)
    assert 'label="\\"cat\\""' in output
    assert 'label="\\"dog\\""' in output
    assert 'label="\\"fish\\""' in output


def test_render_graphviz_svg_returns_svg_string_when_graphviz_available():
    regex = RegexBuilder().digit().to_regex()
    output = render_graphviz_svg(regex.elements)
    assert output.startswith("<?xml") or output.startswith("<svg")
    assert "</svg>" in output


def test_module_level_import_falls_back_to_none_when_graphviz_missing(
    monkeypatch: pytest.MonkeyPatch,
):
    saved_module = sys.modules.pop("graphviz", None)
    real_import = builtins.__import__

    def blocking_import(
        name: str,
        module_globals: Mapping[str, object] | None = None,
        module_locals: Mapping[str, object] | None = None,
        fromlist: Sequence[str] = (),
        level: int = 0,
    ) -> ModuleType:
        if name == "graphviz":
            raise ImportError("graphviz missing")
        return real_import(name, module_globals, module_locals, fromlist, level)

    monkeypatch.setattr(builtins, "__import__", blocking_import)
    monkeypatch.setitem(sys.modules, "graphviz", None)
    reloaded = importlib.reload(graphviz_module)
    try:
        regex = RegexBuilder().digit().to_regex()
        with pytest.raises(MissingGraphvizDependencyError):
            reloaded.render_graphviz_svg(regex.elements)
    finally:
        monkeypatch.undo()
        if saved_module is not None:
            sys.modules["graphviz"] = saved_module
        importlib.reload(graphviz_module)


def test_nested_capture_inside_alternation_renders_cluster_inside_fork_merge():
    outer = AnyOfElement(
        children=(
            NamedCaptureElement(name="left", children=(DigitElement(),)),
            NamedCaptureElement(name="right", children=(WordElement(),)),
        )
    )
    output = _dot(outer)
    assert output.count("subgraph cluster_") == 2
    assert '"saved as \\"left\\""' in output
    assert '"saved as \\"right\\""' in output


def test_lookaround_inside_capture_renders_nested_clusters():
    inner = AssertAheadElement(children=(DigitElement(),))
    output = _dot(CaptureElement(children=(inner,)))
    assert '"captured"' in output
    assert '"must be followed by"' in output


def test_visualize_svg_end_to_end_delegates_to_renderer():
    regex = RegexBuilder().digit().to_regex()
    svg = regex.visualize(format="svg", engine="graphviz")
    assert "</svg>" in svg