mirror of
https://github.com/simple-login/app.git
synced 2024-11-13 07:31:12 +01:00
233 lines
6.6 KiB
Python
233 lines
6.6 KiB
Python
import json
|
|
|
|
from flask import url_for
|
|
|
|
from app.config import EMAIL_DOMAIN, MAX_NB_EMAIL_FREE_PLAN, PAGE_LIMIT
|
|
from app.extensions import db
|
|
from app.models import User, ApiKey, GenEmail, ForwardEmail, ForwardEmailLog
|
|
from app.utils import random_word
|
|
|
|
|
|
def test_error_without_pagination(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.get_aliases"), headers={"Authentication": api_key.code}
|
|
)
|
|
|
|
assert r.status_code == 400
|
|
assert r.json["error"]
|
|
|
|
|
|
def test_success_with_pagination(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 more aliases than PAGE_LIMIT
|
|
for _ in range(PAGE_LIMIT + 1):
|
|
GenEmail.create_new_random(user)
|
|
db.session.commit()
|
|
|
|
# get aliases on the 1st page, should return PAGE_LIMIT aliases
|
|
r = flask_client.get(
|
|
url_for("api.get_aliases", page_id=0), headers={"Authentication": api_key.code}
|
|
)
|
|
assert r.status_code == 200
|
|
assert len(r.json["aliases"]) == PAGE_LIMIT
|
|
|
|
# assert returned field
|
|
for a in r.json["aliases"]:
|
|
assert "id" in a
|
|
assert "email" in a
|
|
assert "creation_date" in a
|
|
assert "creation_timestamp" in a
|
|
assert "nb_forward" in a
|
|
assert "nb_block" in a
|
|
assert "nb_reply" in a
|
|
assert "enabled" in a
|
|
assert "note" in a
|
|
|
|
# get aliases on the 2nd page, should return 2 aliases
|
|
# as the total number of aliases is PAGE_LIMIT +2
|
|
# 1 alias is created when user is created
|
|
r = flask_client.get(
|
|
url_for("api.get_aliases", page_id=1), headers={"Authentication": api_key.code}
|
|
)
|
|
assert r.status_code == 200
|
|
assert len(r.json["aliases"]) == 2
|
|
|
|
|
|
def test_delete_alias(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()
|
|
|
|
gen_email = GenEmail.create_new_random(user)
|
|
db.session.commit()
|
|
|
|
r = flask_client.delete(
|
|
url_for("api.delete_alias", alias_id=gen_email.id),
|
|
headers={"Authentication": api_key.code},
|
|
)
|
|
|
|
assert r.status_code == 200
|
|
assert r.json == {"deleted": True}
|
|
|
|
|
|
def test_toggle_alias(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()
|
|
|
|
gen_email = GenEmail.create_new_random(user)
|
|
db.session.commit()
|
|
|
|
r = flask_client.post(
|
|
url_for("api.toggle_alias", alias_id=gen_email.id),
|
|
headers={"Authentication": api_key.code},
|
|
)
|
|
|
|
assert r.status_code == 200
|
|
assert r.json == {"enabled": False}
|
|
|
|
|
|
def test_alias_activities(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()
|
|
|
|
gen_email = GenEmail.create_new_random(user)
|
|
db.session.commit()
|
|
|
|
# create some alias log
|
|
forward_email = ForwardEmail.create(
|
|
website_email="marketing@example.com",
|
|
reply_email="reply@a.b",
|
|
gen_email_id=gen_email.id,
|
|
)
|
|
db.session.commit()
|
|
|
|
for _ in range(int(PAGE_LIMIT / 2)):
|
|
ForwardEmailLog.create(forward_id=forward_email.id, is_reply=True)
|
|
|
|
for _ in range(int(PAGE_LIMIT / 2) + 2):
|
|
ForwardEmailLog.create(forward_id=forward_email.id, blocked=True)
|
|
|
|
r = flask_client.get(
|
|
url_for("api.get_alias_activities", alias_id=gen_email.id, page_id=0),
|
|
headers={"Authentication": api_key.code},
|
|
)
|
|
|
|
assert r.status_code == 200
|
|
assert len(r.json["activities"]) == PAGE_LIMIT
|
|
for ac in r.json["activities"]:
|
|
assert ac["action"]
|
|
assert ac["from"]
|
|
assert ac["action"]
|
|
assert ac["action"]
|
|
|
|
# second page, should return 1 or 2 results only
|
|
r = flask_client.get(
|
|
url_for("api.get_alias_activities", alias_id=gen_email.id, page_id=1),
|
|
headers={"Authentication": api_key.code},
|
|
)
|
|
assert len(r.json["activities"]) < 3
|
|
|
|
|
|
def test_update_alias(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()
|
|
|
|
gen_email = GenEmail.create_new_random(user)
|
|
db.session.commit()
|
|
|
|
r = flask_client.put(
|
|
url_for("api.update_alias", alias_id=gen_email.id),
|
|
headers={"Authentication": api_key.code},
|
|
json={"note": "test note"},
|
|
)
|
|
|
|
assert r.status_code == 200
|
|
assert r.json == {"note": "test note"}
|
|
|
|
|
|
def test_alias_contacts(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()
|
|
|
|
gen_email = GenEmail.create_new_random(user)
|
|
db.session.commit()
|
|
|
|
# create some alias log
|
|
for i in range(PAGE_LIMIT + 1):
|
|
forward_email = ForwardEmail.create(
|
|
website_email=f"marketing-{i}@example.com",
|
|
reply_email=f"reply-{i}@a.b",
|
|
gen_email_id=gen_email.id,
|
|
)
|
|
db.session.commit()
|
|
|
|
ForwardEmailLog.create(forward_id=forward_email.id, is_reply=True)
|
|
db.session.commit()
|
|
|
|
r = flask_client.get(
|
|
url_for("api.get_alias_contacts_route", alias_id=gen_email.id, page_id=0),
|
|
headers={"Authentication": api_key.code},
|
|
)
|
|
|
|
assert r.status_code == 200
|
|
assert len(r.json["contacts"]) == PAGE_LIMIT
|
|
for ac in r.json["contacts"]:
|
|
assert ac["creation_date"]
|
|
assert ac["creation_timestamp"]
|
|
assert ac["last_email_sent_date"]
|
|
assert ac["last_email_sent_timestamp"]
|
|
assert ac["contact"]
|
|
assert ac["reverse_alias"]
|
|
|
|
# second page, should return 1 result only
|
|
r = flask_client.get(
|
|
url_for("api.get_alias_contacts_route", alias_id=gen_email.id, page_id=1),
|
|
headers={"Authentication": api_key.code},
|
|
)
|
|
assert len(r.json["contacts"]) == 1
|