mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 08:58:30 +01:00
5e48d86efa
* Revert "Revert "Use canonical email when registering users (#1458)" (#1474)"
This reverts commit c8ab1c747e
.
* Only canonicalize gmail and proton
Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
28 lines
830 B
Python
28 lines
830 B
Python
from flask import url_for
|
|
|
|
from app import config
|
|
from app.models import EmailChange
|
|
from app.utils import canonicalize_email
|
|
from tests.utils import login, random_email, create_new_user
|
|
|
|
|
|
def test_setup_done(flask_client):
|
|
config.SKIP_MX_LOOKUP_ON_CHECK = True
|
|
user = create_new_user()
|
|
login(flask_client, user)
|
|
noncanonical_email = f"nonca.{random_email()}"
|
|
|
|
r = flask_client.post(
|
|
url_for("dashboard.setting"),
|
|
data={
|
|
"form-name": "update-email",
|
|
"email": noncanonical_email,
|
|
},
|
|
follow_redirects=True,
|
|
)
|
|
|
|
assert r.status_code == 200
|
|
email_change = EmailChange.get_by(user_id=user.id)
|
|
assert email_change is not None
|
|
assert email_change.new_email == canonicalize_email(noncanonical_email)
|
|
config.SKIP_MX_LOOKUP_ON_CHECK = False
|