2011-08-26 18:21:26 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
2014-09-01 03:54:45 +08:00
|
|
|
tests.templating
|
2014-09-21 22:47:38 +08:00
|
|
|
~~~~~~~~~~~~~~~~
|
2011-08-26 18:21:26 +08:00
|
|
|
|
|
|
|
Template functionality
|
|
|
|
|
2019-06-23 04:09:09 +08:00
|
|
|
:copyright: 2010 Pallets
|
|
|
|
:license: BSD-3-Clause
|
2011-08-26 18:21:26 +08:00
|
|
|
"""
|
2019-06-01 23:35:03 +08:00
|
|
|
import logging
|
2011-09-02 00:35:04 +08:00
|
|
|
|
2014-09-04 02:50:54 +08:00
|
|
|
import pytest
|
2019-06-01 23:35:03 +08:00
|
|
|
import werkzeug.serving
|
|
|
|
from jinja2 import TemplateNotFound
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2011-08-26 18:21:26 +08:00
|
|
|
import flask
|
2014-09-03 23:57:44 +08:00
|
|
|
|
2014-09-04 03:02:03 +08:00
|
|
|
|
2017-05-25 08:27:36 +08:00
|
|
|
def test_context_processing(app, client):
|
2014-09-04 02:50:54 +08:00
|
|
|
@app.context_processor
|
|
|
|
def context_processor():
|
2019-05-07 03:39:41 +08:00
|
|
|
return {"injected_value": 42}
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
2019-05-07 03:39:41 +08:00
|
|
|
return flask.render_template("context_template.html", value=23)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = client.get("/")
|
|
|
|
assert rv.data == b"<p>23|42"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_original_win(app, client):
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
2019-05-07 03:39:41 +08:00
|
|
|
return flask.render_template_string("{{ config }}", config=42)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = client.get("/")
|
|
|
|
assert rv.data == b"42"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_request_less_rendering(app, app_ctx):
|
2019-05-07 03:39:41 +08:00
|
|
|
app.config["WORLD_NAME"] = "Special World"
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2014-09-04 02:50:54 +08:00
|
|
|
@app.context_processor
|
|
|
|
def context_processor():
|
|
|
|
return dict(foo=42)
|
|
|
|
|
2019-06-02 00:22:20 +08:00
|
|
|
rv = flask.render_template_string("Hello {{ config.WORLD_NAME }} {{ foo }}")
|
2019-05-07 03:39:41 +08:00
|
|
|
assert rv == "Hello Special World 42"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_standard_context(app, client):
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
|
|
|
flask.g.foo = 23
|
2019-05-07 03:39:41 +08:00
|
|
|
flask.session["test"] = "aha"
|
|
|
|
return flask.render_template_string(
|
|
|
|
"""
|
2014-09-04 02:50:54 +08:00
|
|
|
{{ request.args.foo }}
|
|
|
|
{{ g.foo }}
|
|
|
|
{{ config.DEBUG }}
|
|
|
|
{{ session.test }}
|
2019-05-07 03:39:41 +08:00
|
|
|
"""
|
|
|
|
)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = client.get("/?foo=42")
|
|
|
|
assert rv.data.split() == [b"42", b"23", b"False", b"aha"]
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_escaping(app, client):
|
2019-05-07 03:39:41 +08:00
|
|
|
text = "<p>Hello World!"
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
2019-05-07 03:39:41 +08:00
|
|
|
return flask.render_template(
|
|
|
|
"escaping_template.html", text=text, html=flask.Markup(text)
|
|
|
|
)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
lines = client.get("/").data.splitlines()
|
2014-09-04 02:50:54 +08:00
|
|
|
assert lines == [
|
2019-05-07 03:39:41 +08:00
|
|
|
b"<p>Hello World!",
|
|
|
|
b"<p>Hello World!",
|
|
|
|
b"<p>Hello World!",
|
|
|
|
b"<p>Hello World!",
|
|
|
|
b"<p>Hello World!",
|
|
|
|
b"<p>Hello World!",
|
2014-09-04 02:50:54 +08:00
|
|
|
]
|
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_no_escaping(app, client):
|
2019-05-07 03:39:41 +08:00
|
|
|
text = "<p>Hello World!"
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2015-07-01 02:00:14 +08:00
|
|
|
def index():
|
2019-05-07 03:39:41 +08:00
|
|
|
return flask.render_template(
|
|
|
|
"non_escaping_template.txt", text=text, html=flask.Markup(text)
|
|
|
|
)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
lines = client.get("/").data.splitlines()
|
2015-07-01 02:00:14 +08:00
|
|
|
assert lines == [
|
2019-05-07 03:39:41 +08:00
|
|
|
b"<p>Hello World!",
|
|
|
|
b"<p>Hello World!",
|
|
|
|
b"<p>Hello World!",
|
|
|
|
b"<p>Hello World!",
|
|
|
|
b"<p>Hello World!",
|
|
|
|
b"<p>Hello World!",
|
|
|
|
b"<p>Hello World!",
|
|
|
|
b"<p>Hello World!",
|
2015-07-01 02:00:14 +08:00
|
|
|
]
|
|
|
|
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
def test_escaping_without_template_filename(app, client, req_ctx):
|
2019-05-07 03:39:41 +08:00
|
|
|
assert flask.render_template_string("{{ foo }}", foo="<test>") == "<test>"
|
|
|
|
assert flask.render_template("mail.txt", foo="<test>") == "<test> Mail"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_macros(app, req_ctx):
|
2019-05-07 03:39:41 +08:00
|
|
|
macro = flask.get_template_attribute("_macro.html", "hello")
|
|
|
|
assert macro("World") == "Hello World!"
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_template_filter(app):
|
2014-09-04 02:50:54 +08:00
|
|
|
@app.template_filter()
|
|
|
|
def my_reverse(s):
|
|
|
|
return s[::-1]
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
assert "my_reverse" in app.jinja_env.filters.keys()
|
|
|
|
assert app.jinja_env.filters["my_reverse"] == my_reverse
|
|
|
|
assert app.jinja_env.filters["my_reverse"]("abcd") == "dcba"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_add_template_filter(app):
|
2014-09-04 02:50:54 +08:00
|
|
|
def my_reverse(s):
|
|
|
|
return s[::-1]
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2014-09-04 02:50:54 +08:00
|
|
|
app.add_template_filter(my_reverse)
|
2019-05-07 03:39:41 +08:00
|
|
|
assert "my_reverse" in app.jinja_env.filters.keys()
|
|
|
|
assert app.jinja_env.filters["my_reverse"] == my_reverse
|
|
|
|
assert app.jinja_env.filters["my_reverse"]("abcd") == "dcba"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_template_filter_with_name(app):
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.template_filter("strrev")
|
2014-09-04 02:50:54 +08:00
|
|
|
def my_reverse(s):
|
|
|
|
return s[::-1]
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
assert "strrev" in app.jinja_env.filters.keys()
|
|
|
|
assert app.jinja_env.filters["strrev"] == my_reverse
|
|
|
|
assert app.jinja_env.filters["strrev"]("abcd") == "dcba"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_add_template_filter_with_name(app):
|
2014-09-04 02:50:54 +08:00
|
|
|
def my_reverse(s):
|
|
|
|
return s[::-1]
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
app.add_template_filter(my_reverse, "strrev")
|
|
|
|
assert "strrev" in app.jinja_env.filters.keys()
|
|
|
|
assert app.jinja_env.filters["strrev"] == my_reverse
|
|
|
|
assert app.jinja_env.filters["strrev"]("abcd") == "dcba"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_template_filter_with_template(app, client):
|
2014-09-04 02:50:54 +08:00
|
|
|
@app.template_filter()
|
|
|
|
def super_reverse(s):
|
|
|
|
return s[::-1]
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
2019-05-07 03:39:41 +08:00
|
|
|
return flask.render_template("template_filter.html", value="abcd")
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = client.get("/")
|
|
|
|
assert rv.data == b"dcba"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_add_template_filter_with_template(app, client):
|
2014-09-04 02:50:54 +08:00
|
|
|
def super_reverse(s):
|
|
|
|
return s[::-1]
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2014-09-04 02:50:54 +08:00
|
|
|
app.add_template_filter(super_reverse)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
2019-05-07 03:39:41 +08:00
|
|
|
return flask.render_template("template_filter.html", value="abcd")
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = client.get("/")
|
|
|
|
assert rv.data == b"dcba"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_template_filter_with_name_and_template(app, client):
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.template_filter("super_reverse")
|
2014-09-04 02:50:54 +08:00
|
|
|
def my_reverse(s):
|
|
|
|
return s[::-1]
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
2019-05-07 03:39:41 +08:00
|
|
|
return flask.render_template("template_filter.html", value="abcd")
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = client.get("/")
|
|
|
|
assert rv.data == b"dcba"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_add_template_filter_with_name_and_template(app, client):
|
2014-09-04 02:50:54 +08:00
|
|
|
def my_reverse(s):
|
|
|
|
return s[::-1]
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
app.add_template_filter(my_reverse, "super_reverse")
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
2019-05-07 03:39:41 +08:00
|
|
|
return flask.render_template("template_filter.html", value="abcd")
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = client.get("/")
|
|
|
|
assert rv.data == b"dcba"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_template_test(app):
|
2014-09-04 02:50:54 +08:00
|
|
|
@app.template_test()
|
|
|
|
def boolean(value):
|
|
|
|
return isinstance(value, bool)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
assert "boolean" in app.jinja_env.tests.keys()
|
|
|
|
assert app.jinja_env.tests["boolean"] == boolean
|
|
|
|
assert app.jinja_env.tests["boolean"](False)
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_add_template_test(app):
|
2014-09-04 02:50:54 +08:00
|
|
|
def boolean(value):
|
|
|
|
return isinstance(value, bool)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2014-09-04 02:50:54 +08:00
|
|
|
app.add_template_test(boolean)
|
2019-05-07 03:39:41 +08:00
|
|
|
assert "boolean" in app.jinja_env.tests.keys()
|
|
|
|
assert app.jinja_env.tests["boolean"] == boolean
|
|
|
|
assert app.jinja_env.tests["boolean"](False)
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_template_test_with_name(app):
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.template_test("boolean")
|
2014-09-04 02:50:54 +08:00
|
|
|
def is_boolean(value):
|
|
|
|
return isinstance(value, bool)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
assert "boolean" in app.jinja_env.tests.keys()
|
|
|
|
assert app.jinja_env.tests["boolean"] == is_boolean
|
|
|
|
assert app.jinja_env.tests["boolean"](False)
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_add_template_test_with_name(app):
|
2014-09-04 02:50:54 +08:00
|
|
|
def is_boolean(value):
|
|
|
|
return isinstance(value, bool)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
app.add_template_test(is_boolean, "boolean")
|
|
|
|
assert "boolean" in app.jinja_env.tests.keys()
|
|
|
|
assert app.jinja_env.tests["boolean"] == is_boolean
|
|
|
|
assert app.jinja_env.tests["boolean"](False)
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2017-05-25 08:27:36 +08:00
|
|
|
def test_template_test_with_template(app, client):
|
2014-09-04 02:50:54 +08:00
|
|
|
@app.template_test()
|
|
|
|
def boolean(value):
|
|
|
|
return isinstance(value, bool)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
2019-05-07 03:39:41 +08:00
|
|
|
return flask.render_template("template_test.html", value=False)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = client.get("/")
|
|
|
|
assert b"Success!" in rv.data
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_add_template_test_with_template(app, client):
|
2014-09-04 02:50:54 +08:00
|
|
|
def boolean(value):
|
|
|
|
return isinstance(value, bool)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2014-09-04 02:50:54 +08:00
|
|
|
app.add_template_test(boolean)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
2019-05-07 03:39:41 +08:00
|
|
|
return flask.render_template("template_test.html", value=False)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = client.get("/")
|
|
|
|
assert b"Success!" in rv.data
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_template_test_with_name_and_template(app, client):
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.template_test("boolean")
|
2014-09-04 02:50:54 +08:00
|
|
|
def is_boolean(value):
|
|
|
|
return isinstance(value, bool)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
2019-05-07 03:39:41 +08:00
|
|
|
return flask.render_template("template_test.html", value=False)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = client.get("/")
|
|
|
|
assert b"Success!" in rv.data
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_add_template_test_with_name_and_template(app, client):
|
2014-09-04 02:50:54 +08:00
|
|
|
def is_boolean(value):
|
|
|
|
return isinstance(value, bool)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
app.add_template_test(is_boolean, "boolean")
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
2019-05-07 03:39:41 +08:00
|
|
|
return flask.render_template("template_test.html", value=False)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = client.get("/")
|
|
|
|
assert b"Success!" in rv.data
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_add_template_global(app, app_ctx):
|
2014-09-04 02:50:54 +08:00
|
|
|
@app.template_global()
|
|
|
|
def get_stuff():
|
|
|
|
return 42
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
assert "get_stuff" in app.jinja_env.globals.keys()
|
|
|
|
assert app.jinja_env.globals["get_stuff"] == get_stuff
|
|
|
|
assert app.jinja_env.globals["get_stuff"](), 42
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = flask.render_template_string("{{ get_stuff() }}")
|
|
|
|
assert rv == "42"
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
|
|
|
|
def test_custom_template_loader(client):
|
2014-09-04 02:50:54 +08:00
|
|
|
class MyFlask(flask.Flask):
|
|
|
|
def create_global_jinja_loader(self):
|
|
|
|
from jinja2 import DictLoader
|
2019-05-07 03:39:41 +08:00
|
|
|
|
|
|
|
return DictLoader({"index.html": "Hello Custom World!"})
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2014-09-04 02:50:54 +08:00
|
|
|
app = MyFlask(__name__)
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
2019-05-07 03:39:41 +08:00
|
|
|
return flask.render_template("index.html")
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2014-09-04 02:50:54 +08:00
|
|
|
c = app.test_client()
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = c.get("/")
|
|
|
|
assert rv.data == b"Hello Custom World!"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_iterable_loader(app, client):
|
2014-09-04 02:50:54 +08:00
|
|
|
@app.context_processor
|
|
|
|
def context_processor():
|
2019-05-07 03:39:41 +08:00
|
|
|
return {"whiskey": "Jameson"}
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
@app.route("/")
|
2014-09-04 02:50:54 +08:00
|
|
|
def index():
|
|
|
|
return flask.render_template(
|
2019-05-07 03:39:41 +08:00
|
|
|
[
|
|
|
|
"no_template.xml", # should skip this one
|
|
|
|
"simple_template.html", # should render this
|
|
|
|
"context_template.html",
|
|
|
|
],
|
|
|
|
value=23,
|
|
|
|
)
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
rv = client.get("/")
|
|
|
|
assert rv.data == b"<h1>Jameson</h1>"
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
|
|
|
def test_templates_auto_reload(app):
|
2014-10-26 23:28:12 +08:00
|
|
|
# debug is False, config option is None
|
|
|
|
assert app.debug is False
|
2019-05-07 03:39:41 +08:00
|
|
|
assert app.config["TEMPLATES_AUTO_RELOAD"] is None
|
2014-10-26 23:28:12 +08:00
|
|
|
assert app.jinja_env.auto_reload is False
|
|
|
|
# debug is False, config option is False
|
2014-09-04 02:50:54 +08:00
|
|
|
app = flask.Flask(__name__)
|
2019-05-07 03:39:41 +08:00
|
|
|
app.config["TEMPLATES_AUTO_RELOAD"] = False
|
2014-10-26 23:28:12 +08:00
|
|
|
assert app.debug is False
|
|
|
|
assert app.jinja_env.auto_reload is False
|
|
|
|
# debug is False, config option is True
|
|
|
|
app = flask.Flask(__name__)
|
2019-05-07 03:39:41 +08:00
|
|
|
app.config["TEMPLATES_AUTO_RELOAD"] = True
|
2014-10-26 23:28:12 +08:00
|
|
|
assert app.debug is False
|
|
|
|
assert app.jinja_env.auto_reload is True
|
|
|
|
# debug is True, config option is None
|
|
|
|
app = flask.Flask(__name__)
|
2019-05-07 03:39:41 +08:00
|
|
|
app.config["DEBUG"] = True
|
|
|
|
assert app.config["TEMPLATES_AUTO_RELOAD"] is None
|
2014-10-26 23:28:12 +08:00
|
|
|
assert app.jinja_env.auto_reload is True
|
|
|
|
# debug is True, config option is False
|
|
|
|
app = flask.Flask(__name__)
|
2019-05-07 03:39:41 +08:00
|
|
|
app.config["DEBUG"] = True
|
|
|
|
app.config["TEMPLATES_AUTO_RELOAD"] = False
|
2014-10-26 23:28:12 +08:00
|
|
|
assert app.jinja_env.auto_reload is False
|
|
|
|
# debug is True, config option is True
|
|
|
|
app = flask.Flask(__name__)
|
2019-05-07 03:39:41 +08:00
|
|
|
app.config["DEBUG"] = True
|
|
|
|
app.config["TEMPLATES_AUTO_RELOAD"] = True
|
2014-10-26 23:28:12 +08:00
|
|
|
assert app.jinja_env.auto_reload is True
|
2014-09-04 02:50:54 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
|
2017-06-15 03:31:56 +08:00
|
|
|
def test_templates_auto_reload_debug_run(app, monkeypatch):
|
2016-06-15 09:15:33 +08:00
|
|
|
def run_simple_mock(*args, **kwargs):
|
2016-06-15 09:25:48 +08:00
|
|
|
pass
|
2016-06-15 09:15:33 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
monkeypatch.setattr(werkzeug.serving, "run_simple", run_simple_mock)
|
2016-06-15 09:15:33 +08:00
|
|
|
|
2017-06-15 03:31:56 +08:00
|
|
|
app.run()
|
2019-06-01 02:53:26 +08:00
|
|
|
assert not app.templates_auto_reload
|
|
|
|
assert not app.jinja_env.auto_reload
|
2017-06-15 03:31:56 +08:00
|
|
|
|
2016-06-15 09:15:33 +08:00
|
|
|
app.run(debug=True)
|
2019-06-01 02:53:26 +08:00
|
|
|
assert app.templates_auto_reload
|
|
|
|
assert app.jinja_env.auto_reload
|
2016-06-15 09:15:33 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2017-07-29 05:55:52 +08:00
|
|
|
def test_template_loader_debugging(test_apps, monkeypatch):
|
2014-09-04 02:50:54 +08:00
|
|
|
from blueprintapp import app
|
|
|
|
|
|
|
|
called = []
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2014-09-04 02:50:54 +08:00
|
|
|
class _TestHandler(logging.Handler):
|
2019-06-01 02:53:26 +08:00
|
|
|
def handle(self, record):
|
2014-09-04 02:50:54 +08:00
|
|
|
called.append(True)
|
|
|
|
text = str(record.msg)
|
|
|
|
assert '1: trying loader of application "blueprintapp"' in text
|
2019-05-07 03:39:41 +08:00
|
|
|
assert (
|
|
|
|
'2: trying loader of blueprint "admin" ' "(blueprintapp.apps.admin)"
|
|
|
|
) in text
|
|
|
|
assert (
|
|
|
|
'trying loader of blueprint "frontend" ' "(blueprintapp.apps.frontend)"
|
|
|
|
) in text
|
|
|
|
assert "Error: the template could not be found" in text
|
|
|
|
assert (
|
|
|
|
"looked up from an endpoint that belongs to " 'the blueprint "frontend"'
|
|
|
|
) in text
|
|
|
|
assert "See http://flask.pocoo.org/docs/blueprints/#templates" in text
|
2014-09-04 02:50:54 +08:00
|
|
|
|
|
|
|
with app.test_client() as c:
|
2019-05-07 03:39:41 +08:00
|
|
|
monkeypatch.setitem(app.config, "EXPLAIN_TEMPLATE_LOADING", True)
|
|
|
|
monkeypatch.setattr(logging.getLogger("flask"), "handlers", [_TestHandler()])
|
2017-07-29 05:55:52 +08:00
|
|
|
|
|
|
|
with pytest.raises(TemplateNotFound) as excinfo:
|
2019-05-07 03:39:41 +08:00
|
|
|
c.get("/missing")
|
2017-07-29 05:55:52 +08:00
|
|
|
|
2019-05-07 03:39:41 +08:00
|
|
|
assert "missing_template.html" in str(excinfo.value)
|
2014-09-04 02:50:54 +08:00
|
|
|
|
|
|
|
assert len(called) == 1
|
2015-04-06 20:55:01 +08:00
|
|
|
|
2017-05-24 06:18:39 +08:00
|
|
|
|
2015-04-06 20:55:01 +08:00
|
|
|
def test_custom_jinja_env():
|
|
|
|
class CustomEnvironment(flask.templating.Environment):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class CustomFlask(flask.Flask):
|
2015-06-06 12:29:24 +08:00
|
|
|
jinja_environment = CustomEnvironment
|
2015-04-06 20:55:01 +08:00
|
|
|
|
|
|
|
app = CustomFlask(__name__)
|
|
|
|
assert isinstance(app.jinja_env, CustomEnvironment)
|