4.21.3
This commit is contained in:
88
app/tests/auth/test_register.py
Normal file
88
app/tests/auth/test_register.py
Normal file
@ -0,0 +1,88 @@
|
||||
from flask import url_for
|
||||
|
||||
from app import config
|
||||
from app.db import Session
|
||||
from app.models import DailyMetric, User
|
||||
from app.utils import canonicalize_email
|
||||
from tests.utils import create_new_user, random_email
|
||||
|
||||
|
||||
def setup_module():
|
||||
config.SKIP_MX_LOOKUP_ON_CHECK = True
|
||||
|
||||
|
||||
def teardown_module():
|
||||
config.SKIP_MX_LOOKUP_ON_CHECK = False
|
||||
|
||||
|
||||
def test_register_success(flask_client):
|
||||
email = random_email()
|
||||
r = flask_client.post(
|
||||
url_for("auth.register"),
|
||||
data={"email": email, "password": "password"},
|
||||
follow_redirects=True,
|
||||
)
|
||||
|
||||
assert r.status_code == 200
|
||||
# User arrives at the waiting activation page.
|
||||
assert b"An email to validate your email is on its way" in r.data
|
||||
|
||||
|
||||
def test_register_increment_nb_new_web_non_proton_user(flask_client):
|
||||
daily_metric = DailyMetric.get_or_create_today_metric()
|
||||
Session.commit()
|
||||
nb_new_web_non_proton_user = daily_metric.nb_new_web_non_proton_user
|
||||
|
||||
r = flask_client.post(
|
||||
url_for("auth.register"),
|
||||
data={"email": random_email(), "password": "password"},
|
||||
follow_redirects=True,
|
||||
)
|
||||
|
||||
assert r.status_code == 200
|
||||
new_daily_metric = DailyMetric.get_or_create_today_metric()
|
||||
assert new_daily_metric.nb_new_web_non_proton_user == nb_new_web_non_proton_user + 1
|
||||
|
||||
|
||||
def test_register_disabled(flask_client):
|
||||
"""User cannot create new account when DISABLE_REGISTRATION."""
|
||||
|
||||
config.DISABLE_REGISTRATION = True
|
||||
|
||||
r = flask_client.post(
|
||||
url_for("auth.register"),
|
||||
data={"email": "abcd@gmail.com", "password": "password"},
|
||||
follow_redirects=True,
|
||||
)
|
||||
|
||||
config.DISABLE_REGISTRATION = False
|
||||
assert b"Registration is closed" in r.data
|
||||
|
||||
|
||||
def test_register_non_canonical_if_canonical_exists_is_not_allowed(flask_client):
|
||||
"""User cannot create new account if the canonical name clashes"""
|
||||
email = f"noncan.{random_email()}"
|
||||
canonical_email = canonicalize_email(email)
|
||||
create_new_user(email=canonical_email)
|
||||
|
||||
r = flask_client.post(
|
||||
url_for("auth.register"),
|
||||
data={"email": email, "password": "password"},
|
||||
follow_redirects=True,
|
||||
)
|
||||
|
||||
assert f"Email {canonical_email} already used".encode("utf-8") in r.data
|
||||
|
||||
|
||||
def test_register_non_canonical_is_canonicalized(flask_client):
|
||||
"""User cannot create new account if the canonical name clashes"""
|
||||
email = f"noncan.{random_email()}"
|
||||
|
||||
r = flask_client.post(
|
||||
url_for("auth.register"),
|
||||
data={"email": email, "password": "password"},
|
||||
follow_redirects=True,
|
||||
)
|
||||
|
||||
assert b"An email to validate your email is on its way" in r.data
|
||||
assert User.get_by(email=canonicalize_email(email)) is not None
|
Reference in New Issue
Block a user