12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- from flask import url_for
- from app.config import EMAIL_DOMAIN, MAX_NB_EMAIL_FREE_PLAN
- from app.extensions import db
- from app.models import User, ApiKey, GenEmail
- from app.utils import random_word
- def test_success(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()
- word = random_word()
- r = flask_client.post(
- url_for("api.new_custom_alias", hostname="www.test.com"),
- headers={"Authentication": api_key.code},
- json={"alias_prefix": "prefix", "alias_suffix": f".{word}@{EMAIL_DOMAIN}"},
- )
- assert r.status_code == 201
- assert r.json["alias"] == f"prefix.{word}@{EMAIL_DOMAIN}"
- def test_out_of_quota(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 MAX_NB_EMAIL_FREE_PLAN custom alias to run out of quota
- for _ in range(MAX_NB_EMAIL_FREE_PLAN):
- GenEmail.create_new(user.id, prefix="test")
- word = random_word()
- r = flask_client.post(
- url_for("api.new_custom_alias", hostname="www.test.com"),
- headers={"Authentication": api_key.code},
- json={"alias_prefix": "prefix", "alias_suffix": f".{word}@{EMAIL_DOMAIN}"},
- )
- assert r.status_code == 400
- assert r.json == {
- "error": "You have reached the limitation of a free account with the maximum of 3 aliases, please upgrade your plan to create more aliases"
- }
|