2022-03-17 19:03:36 +01:00
|
|
|
import email
|
2020-11-15 19:34:13 +01:00
|
|
|
import json
|
2022-03-17 19:03:36 +01:00
|
|
|
import os
|
2022-03-18 15:44:07 +01:00
|
|
|
import random
|
|
|
|
import string
|
2022-03-17 19:03:36 +01:00
|
|
|
from email.message import EmailMessage
|
2022-03-18 15:55:59 +01:00
|
|
|
from typing import Optional, Dict
|
2020-11-15 19:34:13 +01:00
|
|
|
|
2022-03-18 15:44:07 +01:00
|
|
|
import jinja2
|
2019-08-10 17:03:51 +02:00
|
|
|
from flask import url_for
|
|
|
|
|
2022-03-21 12:03:11 +01:00
|
|
|
from app.models import User
|
2019-08-10 17:03:51 +02:00
|
|
|
|
2022-04-15 16:59:44 +02:00
|
|
|
|
|
|
|
def create_new_user() -> User:
|
|
|
|
# new user has a different email address
|
2019-08-10 17:03:51 +02:00
|
|
|
user = User.create(
|
2022-04-14 18:46:11 +02:00
|
|
|
email=f"user{random.random()}@mailbox.test",
|
2020-12-31 13:59:03 +01:00
|
|
|
password="password",
|
|
|
|
name="Test User",
|
|
|
|
activated=True,
|
2022-04-15 16:59:44 +02:00
|
|
|
flush=True,
|
2019-08-10 17:03:51 +02:00
|
|
|
)
|
|
|
|
|
2022-04-15 16:59:44 +02:00
|
|
|
return user
|
|
|
|
|
|
|
|
|
|
|
|
def login(flask_client) -> User:
|
|
|
|
user = create_new_user()
|
|
|
|
|
2019-08-10 17:03:51 +02:00
|
|
|
r = flask_client.post(
|
|
|
|
url_for("auth.login"),
|
2022-04-15 16:59:44 +02:00
|
|
|
data={"email": user.email, "password": "password"},
|
2019-08-10 17:03:51 +02:00
|
|
|
follow_redirects=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
assert r.status_code == 200
|
|
|
|
assert b"/auth/logout" in r.data
|
|
|
|
|
|
|
|
return user
|
2020-11-15 19:34:13 +01:00
|
|
|
|
|
|
|
|
2022-04-18 11:55:14 +02:00
|
|
|
def random_domain() -> str:
|
|
|
|
return random_token() + ".test"
|
|
|
|
|
|
|
|
|
2022-03-18 15:44:07 +01:00
|
|
|
def random_token(length: int = 10) -> str:
|
|
|
|
return "".join(random.choices(string.ascii_lowercase + string.digits, k=length))
|
|
|
|
|
|
|
|
|
2020-11-15 19:34:13 +01:00
|
|
|
def pretty(d):
|
|
|
|
"""pretty print as json"""
|
|
|
|
print(json.dumps(d, indent=2))
|
2022-03-17 19:03:36 +01:00
|
|
|
|
|
|
|
|
2022-03-18 15:55:59 +01:00
|
|
|
def load_eml_file(
|
|
|
|
filename: str, template_values: Optional[Dict[str, str]] = None
|
|
|
|
) -> EmailMessage:
|
2022-03-17 21:36:25 +01:00
|
|
|
emails_dir = os.path.join(
|
|
|
|
os.path.dirname(os.path.realpath(__file__)), "example_emls"
|
|
|
|
)
|
2022-03-17 19:03:36 +01:00
|
|
|
fullpath = os.path.join(emails_dir, filename)
|
2022-03-21 12:03:11 +01:00
|
|
|
with open(fullpath) as fd:
|
|
|
|
template = jinja2.Template(fd.read())
|
|
|
|
if not template_values:
|
|
|
|
template_values = {}
|
|
|
|
rendered = template.render(**template_values)
|
|
|
|
return email.message_from_string(rendered)
|