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
|
from __future__ import annotations
import typing as t
from unittest.mock import MagicMock
from unittest.mock import patch
import pytest
from flask import Flask
from flask import Response
from flask.testing import FlaskClient
from flask_debugtoolbar import DebugToolbarExtension
def load_app(name: str) -> FlaskClient:
app: Flask = __import__(name).app
app.config["TESTING"] = True
return app.test_client()
def test_basic_app() -> None:
app = load_app("basic_app")
index = app.get("/")
assert index.status_code == 200
assert b'<div id="flDebug"' in index.data
def app_with_config(
app_config: dict[str, t.Any], toolbar_config: dict[str, t.Any]
) -> Flask:
app = Flask(__name__, **app_config)
app.config["DEBUG"] = True
app.config["SECRET_KEY"] = "abc123"
for key, value in toolbar_config.items():
app.config[key] = value
DebugToolbarExtension(app)
return app
def test_toolbar_is_host_matching_but_flask_is_not() -> None:
with pytest.raises(ValueError) as e:
app_with_config(
app_config=dict(host_matching=False),
toolbar_config=dict(
DEBUG_TB_ENABLED=True, DEBUG_TB_ROUTES_HOST="myapp.com"
),
)
assert str(e.value) == (
"`DEBUG_TB_ROUTES_HOST` should only be set if your Flask app is "
"using `host_matching`."
)
def test_flask_is_host_matching_but_toolbar_is_not() -> None:
with pytest.warns(UserWarning) as record:
app_with_config(
app_config=dict(host_matching=True, static_host="static.com"),
toolbar_config=dict(DEBUG_TB_ENABLED=True),
)
assert isinstance(record[0].message, UserWarning)
assert record[0].message.args[0] == (
"Flask-DebugToolbar requires DEBUG_TB_ROUTES_HOST to be set if Flask "
"is running in `host_matching` mode. Static assets for the toolbar "
"will not be served correctly unless this is set."
)
def test_toolbar_host_variables_rejected() -> None:
with pytest.raises(ValueError) as e:
app_with_config(
app_config=dict(host_matching=True, static_host="static.com"),
toolbar_config=dict(
DEBUG_TB_ENABLED=True, DEBUG_TB_ROUTES_HOST="<host>.com"
),
)
assert str(e.value) == (
"`DEBUG_TB_ROUTES_HOST` must either be a host name with no "
"variables, to serve all Flask-DebugToolbar assets from a single "
"host, or `*` to match the current request's host."
)
def test_toolbar_in_host_mode_injects_toolbar_html() -> None:
app = app_with_config(
app_config=dict(host_matching=True, static_host="static.com"),
toolbar_config=dict(DEBUG_TB_ENABLED=True, DEBUG_TB_ROUTES_HOST="myapp.com"),
)
@app.route("/", host="myapp.com")
def index() -> str:
return "<html><head></head><body>OK</body></html>"
with app.test_client() as client:
with app.app_context():
response = client.get("/", headers={"Host": "myapp.com"})
assert '<div id="flDebug" ' in response.text
@pytest.mark.parametrize(
"tb_routes_host, request_host, expected_static_path",
(
("myapp.com", "myapp.com", "/_debug_toolbar/static/"),
("toolbar.com", "myapp.com", "http://toolbar.com/_debug_toolbar/static/"),
("*", "myapp.com", "/_debug_toolbar/static/"),
),
)
def test_toolbar_injects_expected_static_path_for_host(
tb_routes_host: str, request_host: str, expected_static_path: str
) -> None:
app = app_with_config(
app_config=dict(host_matching=True, static_host="static.com"),
toolbar_config=dict(DEBUG_TB_ENABLED=True, DEBUG_TB_ROUTES_HOST=tb_routes_host),
)
@app.route("/", host=request_host)
def index() -> str:
return "<html><head></head><body>OK</body></html>"
with app.test_client() as client:
with app.app_context():
response = client.get("/", headers={"Host": request_host})
assert (
"""<script type="text/javascript">"""
f"""var DEBUG_TOOLBAR_STATIC_PATH = '{expected_static_path}'"""
"""</script>"""
) in response.text
@patch(
"flask.helpers.werkzeug.utils.send_from_directory",
return_value=Response(b"some-file", mimetype="text/css", status=200),
)
@pytest.mark.parametrize(
"tb_routes_host, request_host, expected_status_code",
(
("toolbar.com", "toolbar.com", 200),
("toolbar.com", "myapp.com", 404),
("toolbar.com", "static.com", 404),
("*", "toolbar.com", 200),
("*", "myapp.com", 200),
("*", "static.com", 200),
),
)
def test_toolbar_serves_assets_based_on_host_configuration(
mock_send_from_directory: MagicMock,
tb_routes_host: str,
request_host: str,
expected_status_code: int,
) -> None:
app = app_with_config(
app_config=dict(host_matching=True, static_host="static.com"),
toolbar_config=dict(DEBUG_TB_ENABLED=True, DEBUG_TB_ROUTES_HOST=tb_routes_host),
)
with app.test_client() as client:
with app.app_context():
response = client.get(
"/_debug_toolbar/static/js/toolbar.js", headers={"Host": request_host}
)
assert response.status_code == expected_status_code
|