jinja

Форк
0
/
test_debug.py 
117 строк · 3.6 Кб
1
import pickle
2
import re
3
from traceback import format_exception
4

5
import pytest
6

7
from jinja2 import ChoiceLoader
8
from jinja2 import DictLoader
9
from jinja2 import Environment
10
from jinja2 import TemplateSyntaxError
11

12

13
@pytest.fixture
14
def fs_env(filesystem_loader):
15
    """returns a new environment."""
16
    return Environment(loader=filesystem_loader)
17

18

19
class TestDebug:
20
    def assert_traceback_matches(self, callback, expected_tb):
21
        with pytest.raises(Exception) as exc_info:
22
            callback()
23

24
        tb = format_exception(exc_info.type, exc_info.value, exc_info.tb)
25
        m = re.search(expected_tb.strip(), "".join(tb))
26
        assert (
27
            m is not None
28
        ), f"Traceback did not match:\n\n{''.join(tb)}\nexpected:\n{expected_tb}"
29

30
    def test_runtime_error(self, fs_env):
31
        def test():
32
            tmpl.render(fail=lambda: 1 / 0)
33

34
        tmpl = fs_env.get_template("broken.html")
35
        self.assert_traceback_matches(
36
            test,
37
            r"""
38
  File ".*?broken.html", line 2, in (top-level template code|<module>)
39
    \{\{ fail\(\) \}\}(
40
    \^{12})?
41
  File ".*debug?.pyc?", line \d+, in <lambda>
42
    tmpl\.render\(fail=lambda: 1 / 0\)(
43
                             ~~\^~~)?
44
ZeroDivisionError: (int(eger)? )?division (or modulo )?by zero
45
""",
46
        )
47

48
    def test_syntax_error(self, fs_env):
49
        # The trailing .*? is for PyPy 2 and 3, which don't seem to
50
        # clear the exception's original traceback, leaving the syntax
51
        # error in the middle of other compiler frames.
52
        self.assert_traceback_matches(
53
            lambda: fs_env.get_template("syntaxerror.html"),
54
            """(?sm)
55
  File ".*?syntaxerror.html", line 4, in (template|<module>)
56
    \\{% endif %\\}.*?
57
(jinja2\\.exceptions\\.)?TemplateSyntaxError: Encountered unknown tag 'endif'. Jinja \
58
was looking for the following tags: 'endfor' or 'else'. The innermost block that needs \
59
to be closed is 'for'.
60
    """,
61
        )
62

63
    def test_regular_syntax_error(self, fs_env):
64
        def test():
65
            raise TemplateSyntaxError("wtf", 42)
66

67
        self.assert_traceback_matches(
68
            test,
69
            r"""
70
  File ".*debug.pyc?", line \d+, in test
71
    raise TemplateSyntaxError\("wtf", 42\)(
72
    \^{36})?
73
(jinja2\.exceptions\.)?TemplateSyntaxError: wtf
74
  line 42""",
75
        )
76

77
    def test_pickleable_syntax_error(self, fs_env):
78
        original = TemplateSyntaxError("bad template", 42, "test", "test.txt")
79
        unpickled = pickle.loads(pickle.dumps(original))
80
        assert str(original) == str(unpickled)
81
        assert original.name == unpickled.name
82

83
    def test_include_syntax_error_source(self, filesystem_loader):
84
        e = Environment(
85
            loader=ChoiceLoader(
86
                [
87
                    filesystem_loader,
88
                    DictLoader({"inc": "a\n{% include 'syntaxerror.html' %}\nb"}),
89
                ]
90
            )
91
        )
92
        t = e.get_template("inc")
93

94
        with pytest.raises(TemplateSyntaxError) as exc_info:
95
            t.render()
96

97
        assert exc_info.value.source is not None
98

99
    def test_local_extraction(self):
100
        from jinja2.debug import get_template_locals
101
        from jinja2.runtime import missing
102

103
        locals = get_template_locals(
104
            {
105
                "l_0_foo": 42,
106
                "l_1_foo": 23,
107
                "l_2_foo": 13,
108
                "l_0_bar": 99,
109
                "l_1_bar": missing,
110
                "l_0_baz": missing,
111
            }
112
        )
113
        assert locals == {"foo": 13, "bar": 99}
114

115
    def test_get_corresponding_lineno_traceback(self, fs_env):
116
        tmpl = fs_env.get_template("test.html")
117
        assert tmpl.get_corresponding_lineno(1) == 1
118

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.