本文整理汇总了Python中flak.Flak.config['SESSION_REFRESH_EACH_REQUEST']方法的典型用法代码示例。如果您正苦于以下问题:Python Flak.config['SESSION_REFRESH_EACH_REQUEST']方法的具体用法?Python Flak.config['SESSION_REFRESH_EACH_REQUEST']怎么用?Python Flak.config['SESSION_REFRESH_EACH_REQUEST']使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类flak.Flak
的用法示例。
在下文中一共展示了Flak.config['SESSION_REFRESH_EACH_REQUEST']方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_session_cookie_setting
# 需要导入模块: from flak import Flak [as 别名]
# 或者: from flak.Flak import config['SESSION_REFRESH_EACH_REQUEST'] [as 别名]
def test_session_cookie_setting():
app = Flak(__name__)
app.secret_key = 'dev key'
is_permanent = True
@app.route('/bump')
def bump(cx):
rv = cx.session['foo'] = cx.session.get('foo', 0) + 1
cx.session.permanent = is_permanent
return str(rv)
@app.route('/read')
def read(cx):
return str(cx.session.get('foo', 0))
def run_test(expect_header):
with app.test_client() as c:
assert c.get('/bump').data == b'1'
assert c.get('/bump').data == b'2'
assert c.get('/bump').data == b'3'
rv = c.get('/read')
set_cookie = rv.headers.get('set-cookie')
assert (set_cookie is not None) == expect_header
assert rv.data == b'3'
is_permanent = True
app.config['SESSION_REFRESH_EACH_REQUEST'] = True
run_test(expect_header=True)
is_permanent = True
app.config['SESSION_REFRESH_EACH_REQUEST'] = False
run_test(expect_header=False)
is_permanent = False
app.config['SESSION_REFRESH_EACH_REQUEST'] = True
run_test(expect_header=False)
is_permanent = False
app.config['SESSION_REFRESH_EACH_REQUEST'] = False
run_test(expect_header=False)