hurl/integration/tests/cookie_storage.py
Fabrice Reix 6eaaf88d0d Request cookies must not change the cookie storage
Change to cookie storage are made explicit with directives (experimental feature)
@cookie_storage_set
@cookie_storage_clear
2020-09-23 20:35:00 +02:00

17 lines
428 B
Python

from flask import request, make_response
from tests import app
@app.route("/cookie-storage/assert-that-cookie1-is-valueA")
def cookiestorage_assert_that_cookie1_is_valuea():
assert request.cookies['cookie1'] == 'valueA'
return ''
@app.route("/cookie-storage/assert-that-cookie1-is-not-in-session")
def cookiestorage_assert_that_cookie1_is_not_in_session():
assert'cookie1' not in request.cookies
return ''