-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incompatibility with flask-babel #187
Comments
Thanks to @tkteck insight I could narrow down the test to this: import pytest
from flask import Flask
from flask import request
from flask import g
@pytest.fixture
def app():
app = Flask(__name__)
@app.route("/")
def index():
if "lang" not in g:
g.lang = request.args["lang"]
return g.get("lang")
return app
def test_foobar(app):
client_app = app.test_client()
res = client_app.get("/?lang=fr")
assert res.text == "fr"
res = client_app.get("/?lang=en")
assert res.text == "en" # This assertion fails So it seems that |
a test request context is automatically pushed, this might throw flask-babel off however i believe that test client requests ought to happen in a pushed context, so its not clear to me whats going on there |
based on https://flask.palletsprojects.com/en/2.3.x/testing/#accessing-and-modifying-the-session i under the impression that the pytest-flask default behaviour is wrong |
The code responsible for pushing a new context is this one: pytest-flask/src/pytest_flask/plugin.py Lines 106 to 133 in f04d3c2
This seems to be on purpose so |
Yes,and based on modern flasks tests utilities,one should use the context Managers for correct control over globals |
If flask changed the rules, I wonder if there is a solution that would keep the same behavior in pytest-flask. Maybe providing |
Im currently not deeply working with flask, so I am unable to provide a correct assessment of the details I just inferred from the examples in flask that the tools in pytest-flask are overstepping I'll send this question towards the flask maintainers |
I found an incompatibility when using at the same time flask-babel 4.0.0 and pytest-flask 1.3.0.
I am not sure whose responsability it is, maybe both, maybe neither, so I post this issue on both bugtrackers.
Here is the link to the issue at flask-babel.
In the following snippet, a dummy view translates a dummy string and returns the current lang code.
The lang code is dynamically set by a request argument
lang
.In this test environment the first visit is successful and sets the lang to
fr
but the second visit fails and the lang is not set touk
but still isfr
.Note that this test fails if
pytest-flask
is installed in the environment, but passes ifpytest-flask
is not installed. In production, the behavior is OK too, so there is going on withpytest-flask
.With a little debugging, I can see that the
locale_selector
method is only called once.That explains why the language stays to
fr
.Looking closer, it seems that the
get_locale
method from flask-babel saves the loaded lang in the current context and reuses it on following calls.On different requests the language would indeed be recomputed.
https://github.com/python-babel/flask-babel/blob/a754eade39d9850693dd2b645ae8a2545df7fdf7/flask_babel/__init__.py#L257-L258
However, as far as I understand,
pytest-flask
loads a context for the unit tests (sosession
andg
are accessible without loading a new context). That probably makesflask-babel
not recomputing the locale, because the same context is used, and leads to my test failing.Please correct me if my analysis is wrong. I don't know if there is a mis-usage from my side or if the two libraries do not belong together. If they don't, I hope we can find a solution by bringing every one in the same room :)
What do you think?
The text was updated successfully, but these errors were encountered: