测试需要Flask应用程序或请求上下文的代码

时间:2013-06-29 00:03:16

标签: python flask

我在测试中尝试访问working outside of request context时收到session。当我测试需要的内容时,如何设置上下文?

import unittest
from flask import Flask, session

app = Flask(__name__)

@app.route('/')
def hello_world():
    t = Test()
    hello = t.hello()
    return hello

class Test:
    def hello(self):
        session['h'] = 'hello'
        return session['h']

class MyUnitTest(unittest.TestCase):
    def test_unit(self):
        t = tests.Test()
        t.hello()

1 个答案:

答案 0 :(得分:86)

如果您想向您的应用程序发出请求,请使用test_client

c = app.test_client()
response = c.get('/test/url')
# test response

如果要测试使用应用程序上下文(current_appgurl_for)的代码,请按app_context

with app.app_context():
    # test your app context code

如果您想要使用请求上下文(requestsession)的测试代码,请按test_request_context

with current_app.test_request_context():
    # test your request context code

app和请求上下文也可以手动推送,这在使用解释器时非常有用。

>>> ctx = app.app_context()
>>> ctx.push()

Flask-Script或新的Flask cli会在运行shell命令时自动推送应用程序上下文。


Flask-Testing是一个有用的库,其中包含用于测试Flask应用程序的帮助程序。