我在我的烧瓶应用程序上看到了一个相当奇怪的行为:嵌套的app_contexts在我的测试套件上不能正常工作,因此current_app localproxy没有指向正确的应用程序。它是完全同步的代码,所以没有线程,corroutines或任何东西。
¿有人可以提供任何指导吗?
> /.../browsepy/tests/deprecated/test_plugins.py(173)test_register_plugin()
171 self.manager = self.manager_module.PluginManager(self.app)
172 with self.app.app_context():
--> 173 self.manager.load_plugin('player')
174 self.assertIn(self.player_module.player, self.app.blueprints.values())
175
ipdb> self.app
<Flask 'TestIntegration'>
ipdb> type(self.app)
<class 'flask.app.Flask'>
ipdb> d
> /.../browsepy/manager.py(151)load_plugin()
149 module = super(RegistrablePluginManager, self).load_plugin(plugin)
150 if hasattr(module, 'register_plugin'):
--> 151 module.register_plugin(self)
152 return module
153
ipdb> current_app
<Flask 'browsepy'>
ipdb> type(current_app)
<class 'werkzeug.local.LocalProxy'>
答案 0 :(得分:1)
问题出在其他地方,pdb在使用flask current_app时效果不佳。
修改强>
我在没有fail-fast选项的情况下运行测试套件,因此在注入事后调试器之前运行了其他测试。
无论如何,烧瓶的行为仍然很成问题:它在使用app.test_client方法后没有清理它们的上下文全局变量,这是我试图调试的错误的来源和我发现的调试问题。
以下是我必须使用的功能来清洁烧瓶的环境,以防止烧瓶本身在测试中混合来自不同应用的东西:
import flask
def clear_localstack(stack):
'''
Clear given werkzeug LocalStack instance.
:param ctx: local stack instance
:type ctx: werkzeug.local.LocalStack
'''
while stack.pop():
pass
def clear_flask_context():
'''
Clear flask current_app and request globals.
When using :meth:`flask.Flask.test_client`, even as context manager,
the flask's globals :attr:`flask.current_app` and :attr:`flask.request`
are left dirty, so testing code relying on them will probably fail.
This function clean said globals, and should be called after testing
with :meth:`flask.Flask.test_client`.
'''
clear_localstack(flask._app_ctx_stack)
clear_localstack(flask._request_ctx_stack)