mirror of
https://github.com/simple-login/app.git
synced 2024-11-15 13:14:36 +08:00
64 lines
1.7 KiB
Python
64 lines
1.7 KiB
Python
|
from flask import url_for
|
||
|
|
||
|
from app.extensions import db
|
||
|
from app.models import User, ApiKey, Notification
|
||
|
|
||
|
|
||
|
def test_get_notifications(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()
|
||
|
|
||
|
# create some notifications
|
||
|
Notification.create(user_id=user.id, message="Test message 1")
|
||
|
Notification.create(user_id=user.id, message="Test message 2")
|
||
|
db.session.commit()
|
||
|
|
||
|
r = flask_client.get(
|
||
|
url_for("api.get_notifications", page=0),
|
||
|
headers={"Authentication": api_key.code},
|
||
|
)
|
||
|
|
||
|
assert r.status_code == 200
|
||
|
assert len(r.json) == 2
|
||
|
for n in r.json:
|
||
|
assert n["id"] > 0
|
||
|
assert n["message"]
|
||
|
assert n["read"] is False
|
||
|
assert n["created_at"]
|
||
|
|
||
|
# no more post at the next page
|
||
|
r = flask_client.get(
|
||
|
url_for("api.get_notifications", page=1),
|
||
|
headers={"Authentication": api_key.code},
|
||
|
)
|
||
|
assert len(r.json) == 0
|
||
|
|
||
|
|
||
|
def test_mark_notification_as_read(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()
|
||
|
|
||
|
Notification.create(id=1, user_id=user.id, message="Test message 1")
|
||
|
db.session.commit()
|
||
|
|
||
|
r = flask_client.post(
|
||
|
url_for("api.mark_as_read", notification_id=1),
|
||
|
headers={"Authentication": api_key.code},
|
||
|
)
|
||
|
|
||
|
assert r.status_code == 200
|
||
|
notification = Notification.get(1)
|
||
|
assert notification.read
|