2020-05-23 18:53:29 +02:00
|
|
|
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
|
2020-05-23 22:51:00 +02:00
|
|
|
assert r.json["more"] is False
|
|
|
|
assert len(r.json["notifications"]) == 2
|
|
|
|
for n in r.json["notifications"]:
|
2020-05-23 18:53:29 +02:00
|
|
|
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},
|
|
|
|
)
|
2020-05-23 22:51:00 +02:00
|
|
|
assert r.json["more"] is False
|
|
|
|
assert len(r.json["notifications"]) == 0
|
2020-05-23 18:53:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
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
|
2021-08-05 19:44:56 +02:00
|
|
|
notification = Notification.first()
|
2020-05-23 18:53:29 +02:00
|
|
|
assert notification.read
|