hurl/integration/tests_ok/cookie_jar.py

32 lines
689 B
Python
Raw Normal View History

2023-04-20 19:31:11 +03:00
from flask import request, make_response
from app import app
@app.route("/cookie-jar")
def set_cookie_jar():
resp = make_response()
resp.set_cookie(
"LSID",
"DQAAAKEaem_vYg",
path="/accounts",
httponly=True,
expires="Thu, 13 Jan 2078 22:23:01 GMT",
)
resp.set_cookie(
"HSID",
"AYQEVnDKrdst",
domain=".localhost",
path="/",
expires="Thu, 13 Jan 2078 22:23:01 GMT",
httponly=True,
)
resp.set_cookie(
"SSID",
"Ap4PGTEq",
domain=".localhost",
path="/",
expires="Thu, 13 Jan 2078 22:23:01 GMT",
httponly=True,
)
return resp