为了测试这个资源,我写了这些测试:
import appimport unittestclass Test(unittest.TestCase): def setUp(self): self.app = app.app.test_clIEnt() def test_without_session(self): resp = self.app.get('/') self.assertEqual('without session',resp.data) def test_with_session(self): with self.app as c: with c.session_transaction() as sess: sess['logged'] = True resp = c.get('/') self.assertEqual('with session',resp.data)if __name__ == '__main__': unittest.main()@H_404_4@我的app.py是这样的:
from flask import Flask,sessionapp = Flask(__name__)@app.route('/')def home(): if 'logged' in session: return 'with session' return 'without session'if __name__ == '__main__': app.run(deBUG=True)@H_404_4@当我运行测试我有这个错误:
ERROR: test_pippo_with_session (__main__.Test)----------------------------------------------------------------------Traceback (most recent call last): file "test_pippo.py",line 17,in test_pippo_with_session with c.session_transaction() as sess: file "/usr/lib/python2.7/contextlib.py",in __enter__ return self.gen.next() file "/home/tommaso/repos/prova-flask/local/lib/python2.7/site-packages/flask/testing.py",line 74,in session_transaction raise RuntimeError('Session backend dID not open a session. 'RuntimeError: Session backend dID not open a session. Check the configuration@H_404_4@我没有在Google上找到任何解决方案.
解决方法 如果没有设置自定义的app.session_interface,那么你忘了设置一个 secret key:def setUp(self): app.config['SECRET_KEY'] = 'sekrit!' self.app = app.app.test_clIEnt()@H_404_4@这只是为测试设置了一个模拟秘密密钥,但是为了让您的应用程序工作,您需要生成一个生产秘密密钥,请参阅sessions section in the Quickstart documentation获取有关如何生成良好密钥的提示.
没有密钥,默认session implementation无法创建会话.
总结以上是内存溢出为你收集整理的python – 如何在烧瓶资源中测试会话全部内容,希望文章能够帮你解决python – 如何在烧瓶资源中测试会话所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)