我正在尝试使用 pytest-flask 为 Flask 应用程序实现单元测试。我的查询的输出取决于当前时间。
对于一致的单元测试,我试图冻结时间。我习惯了freezegun,所以这是我尝试过的:
# Session for scope, otherwise server is reloaded everytime
@pytest.fixture(scope="session")
@freeze_time("2018-04-15")
def app():
os.environ["FLASK_ENV"] = "development"
app = create_app()
# http://flask.pocoo.org/docs/1.0/api/#flask.Flask.test_client
app.testing = True
return app
@pytest.mark.usefixtures("live_server")
class TestLiveServer:
# Freeze time to get consistent output.
@freeze_time("2018-04-15")
def test_export(self):
q = "Chocapic"
r = requests.post(
url_for("query_direct", _external=True), json={"query": q}
)
print(r.text)
export_path = os.path.join("tests", "fake_responses", q)
with open(export_path, "w") as outfile:
json.dump(r.json(), outfile, indent=4)
with open(export_path, "r") as infile:
data = json.load(infile)
assert r.json() == data
我可以在日志中看到我的应用程序以正确的冻结时间启动。但是当测试运行时,我可以看到查询端点是用实际的当前时间完成的。夹具似乎live_server
重置了当前时间。
你有没有遇到过这个问题?