summaryrefslogtreecommitdiff
path: root/test/test_tgplugin.py
blob: 38998c2a37a63c05be7b9fb9cdbc0ad0d3339579 (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
from mako.ext.turbogears import TGPlugin
from mako.testing.config import config
from mako.testing.fixtures import TemplateTest
from mako.testing.helpers import result_lines

tl = TGPlugin(
    options=dict(directories=[config.template_base]), extension="html"
)


class TestTGPlugin(TemplateTest):
    def test_basic(self):
        t = tl.load_template("/index.html")
        assert result_lines(t.render()) == ["this is index"]

    def test_subdir(self):
        t = tl.load_template("/subdir/index.html")
        assert result_lines(t.render()) == [
            "this is sub index",
            "this is include 2",
        ]

        assert (
            tl.load_template("/subdir/index.html").module_id
            == "_subdir_index_html"
        )

    def test_basic_dot(self):
        t = tl.load_template("index")
        assert result_lines(t.render()) == ["this is index"]

    def test_subdir_dot(self):
        t = tl.load_template("subdir.index")
        assert result_lines(t.render()) == [
            "this is sub index",
            "this is include 2",
        ]

        assert (
            tl.load_template("subdir.index").module_id == "_subdir_index_html"
        )

    def test_string(self):
        t = tl.load_template("foo", "hello world")
        assert t.render() == "hello world"

    def test_render(self):
        assert result_lines(tl.render({}, template="/index.html")) == [
            "this is index"
        ]
        assert result_lines(tl.render({}, template=("/index.html"))) == [
            "this is index"
        ]