~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to turbozpt/tests/test_zpt.py

clean up dusty parts of turbozpt

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
from loggerhead.zptsupport import load_template
2
 
 
3
 
RENDERED = u"<html>\n<head>\n<title>%s</title>\n</head>\n\
4
 
<body>\n<div>Hello, %s</div>\n</body>\n</html>"
5
 
 
 
1
from turbozpt import TurboZpt
 
2
from turbogears import controllers
 
3
from turbogears import testutil
 
4
import turbogears
 
5
import cherrypy
 
6
 
 
7
RENDERED="<html>\n<head>\n<title>%s</title>\n</head>\n<body>\n<div>Hello, %s</div>\n</body>\n</html>\n"
6
8
 
7
9
def test_template_lookup():
8
 
    template = load_template("loggerhead.tests.simple")
 
10
    tc = TurboZpt()
 
11
    template = tc.load_template("turbozpt.tests.simple")
9
12
    assert template
10
13
    TITLE="test"
11
14
    NAME="World"
12
15
    info = dict(title=TITLE, name=NAME)
13
 
    s = template.expand(**info)
14
 
    assert s.startswith(RENDERED % (TITLE, NAME))
 
16
    t = template(**info)
 
17
    assert str(t).startswith(RENDERED % (TITLE, NAME))
 
18
 
 
19
class TestRoot(controllers.Root):
 
20
    def index(self, name, title="test"):
 
21
        return dict(name=name, title=title)
 
22
    index = turbogears.expose(html="zpt:turbozpt.tests.simple")(index)
 
23
 
 
24
def test_real_life_situation():
 
25
    cherrypy.root = TestRoot()
 
26
    TITLE="test dave"
 
27
    NAME="Dave"
 
28
    testutil.createRequest("/?name=%s" % NAME)
 
29
    print cherrypy.response.body
 
30
    assert cherrypy.response.body[0].startswith(RENDERED % ("test", NAME))