mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
78 lines
1.8 KiB
Python
78 lines
1.8 KiB
Python
from flask import url_for
|
|
|
|
from app.extensions import db
|
|
from app.models import User, ApiKey
|
|
|
|
|
|
def test_user_in_trial(flask_client):
|
|
user = User.create(
|
|
email="a@b.c", password="password", name="Test User", activated=True
|
|
)
|
|
db.session.commit()
|
|
|
|
# create api_key
|
|
api_key = ApiKey.create(user.id, "for test")
|
|
db.session.commit()
|
|
|
|
r = flask_client.get(
|
|
url_for("api.user_info"), headers={"Authentication": api_key.code}
|
|
)
|
|
|
|
assert r.status_code == 200
|
|
assert r.json == {
|
|
"is_premium": True,
|
|
"name": "Test User",
|
|
"email": "a@b.c",
|
|
"in_trial": True,
|
|
}
|
|
|
|
|
|
def test_wrong_api_key(flask_client):
|
|
r = flask_client.get(
|
|
url_for("api.user_info"), headers={"Authentication": "Invalid code"}
|
|
)
|
|
|
|
assert r.status_code == 401
|
|
|
|
assert r.json == {"error": "Wrong api key"}
|
|
|
|
|
|
def test_create_api_key(flask_client):
|
|
# create user, user is activated
|
|
User.create(email="a@b.c", password="password", name="Test User", activated=True)
|
|
db.session.commit()
|
|
|
|
# login user
|
|
flask_client.post(
|
|
url_for("auth.login"),
|
|
data={"email": "a@b.c", "password": "password"},
|
|
follow_redirects=True,
|
|
)
|
|
|
|
# create api key
|
|
r = flask_client.post(url_for("api.create_api_key"), json={"device": "Test device"})
|
|
|
|
assert r.status_code == 201
|
|
assert r.json["api_key"]
|
|
|
|
|
|
def test_logout(flask_client):
|
|
# create user, user is activated
|
|
User.create(email="a@b.c", password="password", name="Test User", activated=True)
|
|
db.session.commit()
|
|
|
|
# login user
|
|
flask_client.post(
|
|
url_for("auth.login"),
|
|
data={"email": "a@b.c", "password": "password"},
|
|
follow_redirects=True,
|
|
)
|
|
|
|
# logout
|
|
r = flask_client.get(
|
|
url_for("auth.logout"),
|
|
follow_redirects=True,
|
|
)
|
|
|
|
assert r.status_code == 200
|