mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
3a75686898
* Create a token to exchange for a cookie * Added Route to exchange token for cookie * add missing migration Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
30 lines
718 B
Python
30 lines
718 B
Python
from flask import url_for
|
|
|
|
from app.models import ApiToCookieToken, ApiKey
|
|
from tests.utils import create_new_user
|
|
|
|
|
|
def test_get_cookie(flask_client):
|
|
user = create_new_user()
|
|
api_key = ApiKey.create(
|
|
user_id=user.id,
|
|
commit=True,
|
|
)
|
|
token = ApiToCookieToken.create(
|
|
user_id=user.id,
|
|
api_key_id=api_key.id,
|
|
commit=True,
|
|
)
|
|
token_code = token.code
|
|
token_id = token.id
|
|
|
|
r = flask_client.get(
|
|
url_for(
|
|
"auth.api_to_cookie", token=token_code, next=url_for("dashboard.setting")
|
|
),
|
|
follow_redirects=True,
|
|
)
|
|
|
|
assert ApiToCookieToken.get(token_id) is None
|
|
assert r.headers.getlist("Set-Cookie") is not None
|